@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --dark:      #0c1a14;
  --dark-2:    #0f2019;
  --dark-3:    #192c21;
  --dark-card: #142219;
  --green:     #4a8a65;
  --green-lt:  #5fa878;
  --gold:      #c87941;
  --gold-lt:   #d9935d;
  --text:      #eae5dc;
  --muted:     #8fa899;
  --border:    #243d2e;
  --shadow:    0 24px 64px rgba(0,0,0,.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; }

h1,h2,h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); line-height: 1.2; }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.4; }
p { color: var(--muted); line-height: 1.75; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }


/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(10, 22, 16, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  color: var(--muted); font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: .6rem 1.3rem; border-radius: .4rem;
  font-weight: 700 !important; color: var(--dark) !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--dark) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.nav-mobile { display: none; flex-direction: column; gap: 1.25rem; padding: 1.5rem 2rem 2rem; border-top: 1px solid var(--border); background: rgba(10,22,16,.98); }
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--muted); font-size: .9rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-cta { align-self: flex-start; }


/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  padding-top: 78px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(12,26,20,.98) 48%, rgba(12,26,20,.55) 100%);
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--gold); font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--gold); flex-shrink: 0; }
.hero h1 { color: var(--text); margin-bottom: 1.4rem; max-width: 16ch; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.05rem; max-width: 50ch; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 11rem 0 5rem;
  background: linear-gradient(160deg, #070f0b 0%, var(--dark) 60%);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -10%; top: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,121,65,.07), transparent 70%);
}
.page-hero-label {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--gold); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem;
}
.page-hero-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.page-hero h1 { color: var(--text); max-width: 20ch; margin-bottom: 1rem; }
.page-hero p { max-width: 55ch; font-size: 1.05rem; }


/* ── BUTTONS ── */
.btn { display: inline-block; padding: .9rem 2rem; border-radius: .45rem; font-weight: 700; font-size: .9rem; letter-spacing: .03em; transition: all .25s; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-lt); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,121,65,.35); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--dark); color: var(--text); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }


/* ── SECTION LABEL ── */
.label {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--gold); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem;
}
.label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.section-title { color: var(--text); margin-bottom: 1rem; }
.section-sub { max-width: 58ch; }


/* ── CARDS ── */
.card {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: .9rem; padding: 2rem; transition: all .3s;
}
.card:hover { border-color: rgba(200,121,65,.45); transform: translateY(-4px); box-shadow: var(--shadow); }
.card-num { color: var(--gold); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.card h3, .card h4 { color: var(--text); margin-bottom: .65rem; }
.card ul { list-style: disc; padding-left: 1.3rem; }
.card ul li { color: var(--muted); margin-bottom: .4rem; font-size: .92rem; }


/* ── GRIDS ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.g2-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }


/* ── STATS ── */
.stats-band { background: var(--dark-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 2rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.2rem); color: var(--gold); line-height: 1; }
.stat-label { color: var(--muted); font-size: .9rem; margin-top: .5rem; }


/* ── DARK BAND ── */
.dark-band { background: var(--dark-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }


/* ── GOLD BAND ── */
.gold-band { background: var(--gold); padding: 5rem 0; }
.gold-band .label { color: var(--dark); }
.gold-band .label::before { background: var(--dark); }
.gold-band h2 { color: var(--dark); margin-bottom: 1rem; }
.gold-band p { color: rgba(10,22,16,.75); }
.gold-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }


/* ── IMAGE CARD ── */
.img-wrap { border-radius: .9rem; overflow: hidden; border: 1px solid var(--border); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-wrap.tall img { height: 520px; }
.img-wrap.med img { height: 380px; }


/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--gold); padding: 1.75rem 2rem;
  background: var(--dark-3); border-radius: 0 .75rem .75rem 0;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem); color: var(--text); line-height: 1.45;
  margin: 2.5rem 0;
}


/* ── CTA STRIP ── */
.cta-strip {
  background: var(--dark-3); border: 1px solid var(--border); border-radius: 1.2rem;
  padding: 3rem 3.5rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem;
}
.cta-strip h2 { color: var(--text); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .4rem; }


/* ── ARTICLE CARD ── */
.article-card { background: var(--dark-card); border: 1px solid var(--border); border-radius: .9rem; overflow: hidden; transition: all .3s; }
.article-card:hover { border-color: rgba(200,121,65,.4); transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card img { width: 100%; height: 230px; object-fit: cover; }
.article-body { padding: 1.75rem; }
.article-kicker { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .65rem; }
.article-card h3 { color: var(--text); font-size: 1.1rem; margin-bottom: .5rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.article-card .date { color: var(--muted); font-size: .8rem; margin-bottom: .5rem; }
.article-content { display: none; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.article-content.open { display: block; }
.article-content p { margin-bottom: .85rem; font-size: .92rem; }
.article-content h4 { color: var(--gold); margin: 1.25rem 0 .5rem; font-size: .95rem; }
.article-content ul, .article-content ol { padding-left: 1.4rem; list-style: disc; }
.article-content li { color: var(--muted); margin-bottom: .35rem; font-size: .92rem; }
.read-more-btn {
  display: inline-block; margin-top: 1rem; padding: .55rem 1.1rem;
  border: 1px solid var(--gold); color: var(--gold);
  border-radius: .4rem; font-size: .82rem; font-weight: 600; cursor: pointer;
  background: transparent; transition: all .2s; font-family: 'Inter', sans-serif;
}
.read-more-btn:hover, .read-more-btn.open { background: var(--gold); color: var(--dark); }


/* ── FILTERS ── */
.filters { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 2.5rem; }
.filter-tag { padding: .45rem 1rem; border: 1px solid var(--border); border-radius: 999px; font-size: .8rem; color: var(--muted); background: var(--dark-card); }


/* ── WHO GRID ── */
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.client-tile { background: var(--dark-card); border: 1px solid var(--border); border-radius: .7rem; padding: 1.25rem 1.5rem; color: var(--muted); font-size: .9rem; font-weight: 500; transition: all .2s; }
.client-tile:hover { border-color: var(--gold); color: var(--text); }


/* ── APPROACH ── */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.approach-step { padding: 2rem; border: 1px solid var(--border); border-radius: .9rem; background: var(--dark-card); position: relative; }
.approach-step-num { font-family: 'Playfair Display', serif; font-size: 3rem; color: rgba(200,121,65,.2); position: absolute; top: 1rem; right: 1.25rem; line-height: 1; }
.approach-step h4 { color: var(--gold); margin-bottom: .65rem; }


/* ── FORM ── */
.form-wrap { background: var(--dark-card); border: 1px solid var(--border); border-radius: 1rem; padding: 2.5rem; }
label { display: block; color: var(--text); font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .45rem; }
input, select, textarea {
  width: 100%; background: var(--dark-3); border: 1px solid var(--border); border-radius: .45rem;
  padding: .8rem 1rem; color: var(--text); font-size: .92rem; font-family: 'Inter', sans-serif;
  transition: border-color .2s; margin-bottom: 1.1rem;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
select option { background: var(--dark-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }


/* ── VALUES ── */
.value-card { text-align: center; }
.value-card .v-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(200,121,65,.12); border: 1px solid rgba(200,121,65,.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.3rem; }
.value-card h4 { color: var(--text); margin-bottom: .5rem; font-size: 1rem; }


/* ── PRICING ── */
.price-card { position: relative; }
.price-card.featured { border-color: var(--gold); }
.price-card.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--dark); font-size: .72rem; font-weight: 700; padding: .25rem .85rem; border-radius: 999px; letter-spacing: .06em; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; margin: .75rem 0 .25rem; }
.price-amount span { font-size: 1rem; font-family: 'Inter', sans-serif; color: var(--muted); }


/* ── MODULES ── */
.module-card { border-left: 3px solid var(--gold); }


/* ── DIVIDER ── */
hr { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }


/* ── FOOTER ── */
footer { background: #060d09; border-top: 1px solid var(--border); padding: 5.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand img { height: 54px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .88rem; max-width: 28ch; }
.footer-col h4 { color: var(--text); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col li { margin-bottom: .6rem; }
.footer-col li a { color: var(--muted); font-size: .88rem; }
.footer-col li a:hover { color: var(--gold); }
.footer-col p { font-size: .88rem; }
.footer-col .gold { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .82rem; }


/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .g2, .g3, .g4, .g2-services, .approach-grid, .client-grid, .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
  .img-wrap.tall img { height: 340px; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .gold-band-actions { flex-direction: column; }
}
