:root {
  --orange: #e85d04;
  --orange-deep: #c44a00;
  --orange-soft: #fff4ec;
  --orange-mid: #f48c06;
  --white: #ffffff;
  --ink: #1a120b;
  --ink-soft: #4a3b2f;
  --muted: #7a6758;
  --line: rgba(232, 93, 4, 0.18);
  --header-h: 4.5rem;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.eyebrow.light {
  color: var(--orange-mid);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.section-lead {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(26, 18, 11, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--ink);
}

.logo-text span {
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  background: var(--orange);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--orange-deep);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero — full bleed, brand first */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 18, 11, 0.78) 0%, rgba(26, 18, 11, 0.45) 48%, rgba(232, 93, 4, 0.35) 100%),
    linear-gradient(to top, rgba(26, 18, 11, 0.7) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-mid);
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero-lead {
  max-width: 32rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.6s forwards;
}

.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: pulse 2.4s ease-in-out infinite;
}

/* Strip */
.strip {
  background: var(--orange);
  color: var(--white);
  padding: 1.75rem clamp(1.25rem, 4vw, 3rem);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.strip-item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.strip-item span {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* About */
.about {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  overflow: hidden;
}

.about-visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: var(--orange);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.check-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 600;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--orange);
}

.mini-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}

.mini-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.mini-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* Values */
.values {
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 10vw, 7rem);
  background: var(--ink);
  color: var(--white);
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.values .eyebrow {
  color: var(--orange-mid);
}

.values .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  margin-top: 2.5rem;
}

.value {
  padding-top: 1.25rem;
  border-top: 2px solid var(--orange);
}

.value h3 {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.value p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 28rem;
}

/* Process */
.process {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  counter-reset: none;
}

.process-steps li {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0 0;
  border-top: 3px solid var(--orange);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.process-steps p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.services {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, var(--orange-soft) 0%, var(--white) 40%);
}

.services .section-head,
.businesses .section-head {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.service {
  display: grid;
  grid-template-columns: 5rem 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.service:last-child {
  border-bottom: 1px solid var(--line);
}

.service-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.service-body p {
  color: var(--muted);
  max-width: 28rem;
}

.service-media {
  overflow: hidden;
}

.service-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service:hover .service-media img {
  transform: scale(1.05);
}

/* Projects banner */
.projects {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  color: var(--white);
  overflow: hidden;
}

.projects-bg {
  position: absolute;
  inset: 0;
}

.projects-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 18, 11, 0.88) 0%, rgba(232, 93, 4, 0.55) 100%);
}

.projects-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.projects-inner p {
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.88);
}

/* Businesses */
.businesses {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
}

.biz-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.biz-nav a {
  display: inline-flex;
  padding: 0.7rem 1.15rem;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.25s, color 0.25s;
}

.biz-nav a:hover {
  background: var(--orange);
  color: var(--white);
}

/* Venture detail pages */
.venture {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
}

.venture-alt {
  background: var(--orange-soft);
}

.venture-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.venture-grid.reverse {
  grid-template-columns: 1.05fr 1fr;
}

.venture-grid.reverse .venture-media {
  order: 2;
}

.venture-grid.reverse .venture-copy {
  order: 1;
}

.venture-media {
  position: relative;
  overflow: hidden;
}

.venture-media::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--orange);
}

.venture-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.venture-tag {
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.venture-copy > p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.venture-sub {
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.cta-band {
  padding: clamp(3.5rem, 8vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--orange);
  color: var(--white);
  text-align: center;
}

.cta-band-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-band p {
  margin-bottom: 1.5rem;
  opacity: 0.92;
}

.cta-band .hero-actions {
  justify-content: center;
  opacity: 1;
  animation: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* Founder */
.founder {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--orange-soft);
}

.founder-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.founder-role {
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.founder-copy > p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.founder-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.founder-meta dt {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.founder-meta dd {
  font-weight: 700;
  font-size: 0.95rem;
}

.founder-visual {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.founder-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: var(--white);
}

.founder-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(26, 18, 11, 0.92), transparent);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.founder-caption strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.founder-caption span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Contact */
.contact {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, #1a120b 0%, #2d1a0f 55%, #c44a00 140%);
  color: var(--white);
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 28rem;
}

.contact-list {
  display: grid;
  gap: 1.35rem;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-mid);
  margin-bottom: 0.3rem;
}

.contact-list a,
.contact-list address {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-list a:hover {
  color: var(--orange-mid);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  resize: vertical;
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  color: var(--ink);
  background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: transparent;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(6px);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.82rem;
  }
}

@media (max-width: 960px) {
  .section-grid,
  .founder-grid,
  .contact-grid,
  .venture-grid,
  .venture-grid.reverse {
    grid-template-columns: 1fr;
  }

  .venture-grid.reverse .venture-media,
  .venture-grid.reverse .venture-copy {
    order: unset;
  }

  .service {
    grid-template-columns: 3.5rem 1fr;
  }

  .service-media {
    grid-column: 1 / -1;
  }

  .values-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .founder-meta {
    grid-template-columns: 1fr;
  }

  .about-visual img,
  .venture-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    text-transform: uppercase;
  }

  .nav-cta {
    background: transparent;
    color: var(--orange) !important;
    padding: 0;
  }

  .hero {
    align-items: center;
    padding-bottom: 5rem;
  }

  .hero-scroll {
    display: none;
  }

  .values-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
