/* ── Variables ── */
:root {
  --charcoal:   #343534;
  --charcoal-d: #262726;
  --charcoal-l: #3c3d3c;
  --gold:       #DCBA36;
  --gold-d:     #c4a52e;
  --cream:      #EBDBC6;
  --white:      #FFFFFF;
  --border:     rgba(220, 186, 54, 0.18);
  --text-dim:   rgba(255, 255, 255, 0.65);
  --text-faint: rgba(255, 255, 255, 0.35);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--charcoal);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.section { padding-block: 8rem; }

/* ── Typography helpers ── */
.section-heading {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.section-heading--center { text-align: center; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow--center { justify-content: center; }

.eyebrow__rule {
  display: block;
  flex: 0 0 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal-d);
}
.btn--gold:hover { background: var(--gold-d); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full {
  width: 100%;
  text-align: center;
  padding-block: 1rem;
}

/* ── Reveal animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ──────────────────────────────────────
   Navigation
────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  padding-block: 1.5rem;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}

.nav.is-scrolled {
  background: var(--charcoal-d);
  padding-block: 1rem;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo img {
  height: 50px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--white); }

.nav__contact-link {
  background: var(--gold);
  color: var(--charcoal-d) !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.2rem;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav__contact-link:hover { background: var(--gold-d) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ──────────────────────────────────────
   Hero
────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(30, 31, 30, 0.94) 0%,
    rgba(30, 31, 30, 0.78) 45%,
    rgba(30, 31, 30, 0.38) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
  padding-top: 6rem;
}

.hero__heading {
  font-size: clamp(3.25rem, 7.5vw, 6rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 760px;
}

.hero__heading em {
  font-style: normal;
  color: var(--gold);
}

.hero__line {
  display: block;
}

.hero__line--sm {
  font-size: 52px;
  color: var(--white);
}

.hero__line--lg {
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
}

.hero__body {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero__scroll-line {
  position: relative;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset-block: 0;
  left: -100%;
  width: 100%;
  background: var(--gold);
  animation: scanline 2s ease infinite;
}

@keyframes scanline {
  0%   { left: -100%; }
  100% { left:  100%; }
}

/* ──────────────────────────────────────
   About
────────────────────────────────────── */
.about {
  border-top: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__text p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about__text p:last-child { margin-bottom: 0; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.stat {
  background: var(--charcoal);
  padding: 2.25rem 2rem;
}

.stat__value {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.45;
}

/* ──────────────────────────────────────
   What We Build
────────────────────────────────────── */
.build { padding-bottom: 0; }

.build__intro {
  padding-block: 8rem 4.5rem;
}

.build__intro .section-heading {
  max-width: 640px;
  margin-bottom: 0;
}

.format {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.format--flip { direction: rtl; }
.format--flip > * { direction: ltr; }

.format__media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.format__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.format:hover .format__media img {
  transform: scale(1.04);
}

.format__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(38,39,38,0.6) 100%);
}

.format__media-overlay--flip {
  background: linear-gradient(to left, transparent 50%, rgba(38,39,38,0.6) 100%);
}

.format__badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(26, 27, 26, 0.75);
  backdrop-filter: blur(6px);
  padding: 0.4rem 0.85rem;
}

.format__content {
  background: var(--charcoal-d);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.format__content h3 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.format__content > p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--cream);
  padding-left: 1.2rem;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.format__ideal {
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0 !important;
}

/* ──────────────────────────────────────
   Who We Work With
────────────────────────────────────── */
.for-you {
  background: var(--charcoal-d);
}

.for-you .section-heading--center {
  margin-bottom: 4rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.audience-card {
  background: var(--charcoal-d);
  padding: 3rem 2.5rem;
}

.audience-card__icon {
  margin-bottom: 1.75rem;
}

.audience-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.audience-card > p {
  font-size: 0.925rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.audience-list li {
  font-size: 0.85rem;
  color: var(--cream);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.audience-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.15em;
}

/* ──────────────────────────────────────
   Sustainability
────────────────────────────────────── */
.sustainability {
  position: relative;
  padding-block: 8rem;
  overflow: hidden;
}

.sustainability__media {
  position: absolute;
  inset: 0;
}

.sustainability__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.sustainability__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,27,26,0.97) 0%,
    rgba(26,27,26,0.88) 55%,
    rgba(26,27,26,0.55) 100%
  );
}

.sustainability__inner {
  position: relative;
  z-index: 2;
}

.sustainability__lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar__num {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pillar h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ──────────────────────────────────────
   Our Team
────────────────────────────────────── */
.team {
  border-top: 1px solid var(--border);
}

.team__intro {
  font-size: 1.05rem;
  color: var(--cream);
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.8;
  margin-bottom: 5rem;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.team__member {
  text-align: center;
}

.team__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--charcoal-l);
  position: relative;
  overflow: hidden;
  margin: 0 auto 1.75rem;
}

.team__silhouette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 12px;
}

.team__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team__photo-img--hidden {
  display: none;
}

.team__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.team__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.875rem;
  letter-spacing: 0.02em;
}

.team__bio {
  font-size: 0.9375rem;
  color: var(--cream);
  line-height: 1.75;
}

/* ──────────────────────────────────────
   Contact
────────────────────────────────────── */
.contact {
  border-top: 1px solid var(--border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 7rem;
  align-items: start;
}

.contact__text > p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact__meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__meta-item a,
.contact__meta-item span {
  font-size: 1rem;
  color: var(--cream);
  transition: color 0.2s;
}

.contact__meta-item a:hover { color: var(--gold); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.375rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
}

.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(235, 219, 198, 0.18);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.28);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(235, 219, 198, 0.18);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.875rem 2.75rem 0.875rem 1rem;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}

.select-wrap select:focus { border-color: var(--gold); }

.select-wrap select option {
  background: var(--charcoal-d);
  color: var(--white);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-response-note {
  font-size: 0.85rem;
  color: var(--cream);
  text-align: center;
}

.form-success {
  font-size: 0.88rem;
  color: #7dbf8c;
  min-height: 1.2em;
  text-align: center;
}

/* ──────────────────────────────────────
   Footer
────────────────────────────────────── */
.footer {
  background: var(--charcoal-d);
  border-top: 1px solid var(--border);
  padding-block: 2.75rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__logo {
  height: 30px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer__brand p {
  font-size: 0.72rem;
  color: var(--text-faint);
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--gold); }

.footer__legal {
  text-align: right;
}

.footer__legal p {
  font-size: 0.72rem;
  color: var(--text-faint);
  line-height: 1.65;
}

/* ──────────────────────────────────────
   Responsive
────────────────────────────────────── */

/* ── Tablet and below (≤1024px) ── */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 4rem; }

  .format {
    grid-template-columns: 1fr;
    min-height: auto;
    direction: ltr;
  }

  .format__media { height: 420px; min-height: unset; }

  .format__content { padding: 3.5rem 2.5rem; }

  .format__content h3 { font-size: 2rem; }

  .audience-grid { grid-template-columns: 1fr; }

  .pillars { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .team__grid { grid-template-columns: 1fr; gap: 3.5rem; }

  .contact__grid { grid-template-columns: 1fr; gap: 4rem; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
  .footer__legal { text-align: left; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav__logo img { height: 40px; }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--charcoal-d);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    z-index: 205;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { font-size: 1.25rem; }
  .nav__contact-link { font-size: 1.25rem !important; padding: 0.6rem 1.5rem; }
  .nav__toggle { display: flex; }

  /* Global layout */
  .section { padding-block: 4rem; }
  .container { padding-inline: 1.5rem; }

  /* Hero */
  .hero { min-height: 580px; }
  .hero__content { padding-inline: 1.5rem; padding-top: 5rem; }
  .hero__line--sm { font-size: 2rem; }
  .hero__line--lg { font-size: 2.75rem; }
  .hero__body { font-size: 1rem; max-width: 100%; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hero__scroll-indicator { display: none; }

  /* About */
  .about__stats { grid-template-columns: 1fr 1fr; }

  /* What We Build */
  .build__intro { padding-block: 4rem 2.5rem; }
  .format__media { height: 300px; }
  .format__content { padding: 2.5rem 1.5rem; }
  .format__content h3 { font-size: 1.75rem; }

  /* Audience */
  .audience-card { padding: 2.25rem 1.5rem; }

  /* Sustainability */
  .pillars { grid-template-columns: 1fr; gap: 2rem; }
  .sustainability { padding-block: 5rem; }
  .sustainability__overlay { background: rgba(26,27,26,0.93); }
  .sustainability__lead { font-size: 1rem; margin-bottom: 2.5rem; }

  /* Team */
  .team__intro { font-size: 1rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__nav { gap: 1.25rem; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .section { padding-block: 3rem; }

  /* Hero — max 36px on largest line */
  .hero__line--lg { font-size: 2.25rem; }
  .hero__line--sm { font-size: 1.5rem; }
  .hero__body { font-size: 0.9375rem; }

  /* About */
  .about__stats { grid-template-columns: 1fr 1fr; }
  .stat__value { font-size: 2.25rem; }

  /* What We Build */
  .format__media { height: 240px; }
  .format__content { padding: 2rem 1.25rem; }
  .format__content h3 { font-size: 1.5rem; }
  .feature-list li { font-size: 0.875rem; }

  /* Audience */
  .audience-card { padding: 2rem 1.25rem; }
  .audience-card h3 { font-size: 1.2rem; }

  /* Team */
  .team__grid { gap: 2.5rem; }

  /* Sustainability */
  .pillar h4 { font-size: 1rem; }
  .sustainability__inner .section-heading { font-size: 1.875rem; }

  /* Footer */
  .footer__nav { flex-wrap: wrap; gap: 0.875rem; }
}
