:root {
  --charcoal: #232323;
  --charcoal-deep: #1a1a1a;
  --cream: #f2ede2;
  --cream-soft: #f7f4ee;
  --ink: #2c2926;
  --ink-muted: #3f3b37;
  --white: #f0f0e6;
  --white-muted: rgba(240, 240, 230, 0.62);
  --white-faint: rgba(240, 240, 230, 0.16);
  --gold: #cbb99a;
  --gold-deep: #6f5330;
  --nav-h: 84px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--charcoal);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
  padding: 16px 36px;
  background: rgba(26, 26, 26, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--white-faint);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.nav-brand span:first-child {
  font-weight: 800;
  letter-spacing: 0.24em;
  font-size: 1.12rem;
}

.nav-brand span:last-child {
  font-weight: 200;
  letter-spacing: 0.36em;
  font-size: 0.64rem;
  margin-top: 6px;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--white);
  left: 12px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.site-footer {
  background: var(--charcoal-deep);
  color: var(--white);
  padding: 72px 36px 32px;
  border-top: 1px solid var(--white-faint);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}

.footer-brand span:first-child {
  display: block;
  font-weight: 800;
  letter-spacing: 0.32em;
  font-size: 0.95rem;
}

.footer-brand span:last-child {
  display: block;
  font-weight: 200;
  letter-spacing: 0.46em;
  font-size: 0.55rem;
  color: var(--gold);
  margin: 8px 0 20px;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--white-muted);
}

.footer-col h3,
.section-kicker {
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-copy {
  max-width: 1180px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--white-faint);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 24px) 24px 64px;
  background: var(--charcoal);
}

.hero-logo {
  width: min(50%, 640px);
  max-height: 42svh;
  height: auto;
  object-fit: contain;
  margin-bottom: 36px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.hero .tagline,
.lede {
  margin-top: 22px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-muted);
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  max-width: 46ch;
}

.page-hero .lede {
  margin-left: auto;
  margin-right: auto;
}

.hero-contact {
  margin-top: 48px;
}

.hero-contact-kicker {
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
}

.hero-contact-list a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 300;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  color: var(--white);
  transition: color 0.3s ease;
}

.hero-contact-list a span {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.hero-contact-list a:hover {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.page-hero {
  padding: calc(var(--nav-h) + 72px) 24px 64px;
  text-align: center;
  background: var(--charcoal);
}

.page-hero .num {
  display: block;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 200;
  letter-spacing: 0.12em;
  color: rgba(240, 240, 230, 0.08);
  line-height: 0.8;
  margin-bottom: 8px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
}

.section-cream .section-kicker,
.section-cream .pull-quote,
.section-cream .stat-value,
.section-cream .pillar h3 {
  color: var(--gold-deep);
}

.section-cream p,
.section-cream li {
  color: var(--ink);
  font-weight: 400;
}

.section-cream .credit,
.section-cream .stat-label {
  color: #5a5550;
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 32px;
  align-items: end;
  margin-bottom: 48px;
}

.section-num {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 0.8;
  color: rgba(240, 240, 230, 0.1);
}

.section-cream .section-num {
  color: rgba(44, 41, 38, 0.08);
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prose {
  max-width: 72ch;
}

.prose p + p {
  margin-top: 22px;
}

.prose p {
  font-weight: 300;
  font-size: 1.02rem;
}

.pull-quote {
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--gold);
  max-width: 22ch;
  margin: 40px 0;
}

.credit {
  margin-top: 32px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.stat {
  padding: 28px 20px;
  border-top: 1px solid var(--gold);
}

.stat-value {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  font-weight: 300;
}

.about-lede {
  max-width: 42rem;
  margin: 0 auto 56px;
  text-align: center;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
}

.section-cream .about-lede {
  color: var(--ink);
}

.stats.stats-lead {
  margin-top: 0;
  margin-bottom: 64px;
}

.prose-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 72px;
  align-items: start;
}

.prose-columns p {
  font-weight: 300;
  font-size: 1.02rem;
}

.prose-columns p + p {
  margin-top: 22px;
}

.about-close {
  max-width: 46rem;
  margin: 48px auto 0;
  text-align: center;
  font-weight: 300;
  font-size: 1.06rem;
  line-height: 1.8;
}

.section-cream .about-lede,
.section-cream .about-close {
  color: var(--ink);
}

.pillar-grid + .credit,
.why-copy + .credit {
  margin-top: 48px;
}

.quote-panel {
  max-width: 40rem;
  margin: 64px auto 0;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(180, 154, 114, 0.28);
}

.pull-quote.quote-soft {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: clamp(1.12rem, 2.1vw, 1.55rem);
  font-weight: 500;
  max-width: none;
  margin: 0;
  line-height: 1.55;
}

.credit-center {
  text-align: center;
  margin-top: 20px;
}

.vision-feature {
  max-width: 28rem;
  margin-bottom: 48px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}

.pillar {
  padding-top: 20px;
  border-top: 1px solid var(--gold);
}

.pillar h3 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-cream .pillar h3 {
  color: var(--gold-deep);
}

.pillar p {
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.75;
}

.why-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 72px;
  margin-top: 48px;
}

.why-copy p {
  font-weight: 300;
  font-size: 1.02rem;
}

.section-cream .stat-label {
  color: var(--ink-muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 28px 24px;
  border: 1px solid rgba(203, 185, 154, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.section-cream .card {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(44, 41, 38, 0.08);
}

.card h3 {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card p,
.card li {
  font-weight: 300;
  font-size: 0.92rem;
}

.card li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
}

.card li::before {
  content: "";
  width: 5px;
  height: 1px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.75em;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  border: 1px solid rgba(203, 185, 154, 0.35);
  background: transparent;
  color: var(--white-muted);
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-card {
  min-height: 280px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.15), rgba(26, 26, 26, 0.92)),
    radial-gradient(ellipse at 20% 0%, rgba(203, 185, 154, 0.22), transparent 55%),
    linear-gradient(160deg, #3a332c, #1c1c1c 55%, #2b241c);
  border: 1px solid rgba(203, 185, 154, 0.18);
}

.work-card[data-tone="sand"] {
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0.9)),
    linear-gradient(160deg, #6a5340, #2a221c);
}

.work-card[data-tone="gold"] {
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.12), rgba(26, 26, 26, 0.92)),
    linear-gradient(160deg, #8a7354, #231e18);
}

.work-card[data-tone="night"] {
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.2), rgba(26, 26, 26, 0.94)),
    linear-gradient(160deg, #243028, #141414);
}

.work-card .meta {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.work-card h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.work-card p {
  font-weight: 300;
  font-size: 0.86rem;
  color: var(--white-muted);
}

.accordion {
  border-top: 1px solid var(--white-faint);
}

.acc-item {
  border-bottom: 1px solid var(--white-faint);
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.acc-btn .n {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  min-width: 2.2em;
}

.acc-btn h3 {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.acc-btn .plus {
  font-weight: 200;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.acc-panel {
  display: none;
  padding: 0 0 28px 52px;
}

.acc-item.is-open .acc-panel {
  display: block;
}

.acc-panel li {
  font-weight: 300;
  color: var(--white-muted);
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative;
}

.acc-panel li::before {
  content: "";
  width: 5px;
  height: 1px;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.8em;
}

.partners-sheet {
  display: block;
  width: min(1100px, 100%);
  height: auto;
  margin: 0 auto;
}

.letter {
  max-width: 68ch;
  margin: 0 auto;
}

.letter p + p {
  margin-top: 24px;
}

.signoff {
  margin-top: 48px;
}

.signoff strong {
  display: block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.signoff span {
  display: block;
  margin-top: 6px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.agenda {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 0.88rem;
}

.agenda th,
.agenda td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid rgba(203, 185, 154, 0.2);
  font-weight: 300;
}

.agenda th {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-list a {
  display: block;
  margin-bottom: 22px;
}

.contact-list .label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-list .value {
  font-weight: 300;
  letter-spacing: 0.08em;
}

form {
  display: grid;
  gap: 16px;
}

label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

input,
textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(203, 185, 154, 0.35);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 0 12px;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--gold);
}

.form-note {
  font-size: 0.78rem;
  color: var(--white-muted);
  font-weight: 300;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  display: block;
}

@media (max-width: 980px) {
  .split,
  .cards,
  .work-grid,
  .stats,
  .footer-grid,
  .contact-grid,
  .prose-columns,
  .pillar-grid,
  .why-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    flex-direction: column;
    padding: 12px 24px 28px;
    gap: 16px;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .hero-logo {
    width: 86%;
    max-height: 28svh;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(1.28rem, 7vw, 1.85rem);
    letter-spacing: 0.1em;
  }

  .hero .tagline {
    letter-spacing: 0.12em;
    font-size: 0.78rem;
  }

  .hero-contact-list {
    flex-direction: column;
    gap: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .acc-panel {
    padding-left: 0;
  }

  .wrap {
    width: min(1180px, calc(100% - 32px));
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
