:root {
  --cream:      #f0ede6;
  --cream-card: #e8e4dc;
  --ink:        #111111;
  --ink-muted:  #555555;
  --slate:      #2d3748;
  --white:      #ffffff;
  --pad-x:      8%;
  --radius-sm:  8px;
  --radius-lg:  24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}

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


/* ── HEADER ─────────────────────────────────────── */

.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  gap: 24px;
}

.logo-link { flex-shrink: 0; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-eb {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: -1px;
}

.logo-divider {
  font-size: 26px;
  font-weight: 200;
  color: var(--ink-muted);
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
}

.logo-line1,
.logo-line2 {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.site-nav a {
  font-size: 15px;
  color: var(--ink);
  transition: opacity 0.15s;
}

.site-nav a:hover { opacity: 0.55; }

.btn-solutions {
  background: var(--slate);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background 0.15s;
}

.btn-solutions:hover { background: var(--ink); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 12px var(--pad-x) 24px;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  display: block;
  color: var(--ink);
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.btn-solutions--mobile {
  display: inline-block;
  margin-top: 20px;
  text-align: center;
  border-radius: var(--radius-sm);
}


/* ── HERO ────────────────────────────────────────── */

.hero { padding: 100px var(--pad-x); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

h1 {
  font-family: Georgia, serif;
  font-size: clamp(52px, 7vw, 108px);
  font-weight: normal;
  line-height: 1.02;
  max-width: 1000px;
  margin-bottom: 36px;
}

.hero > p {
  font-size: clamp(17px, 2vw, 24px);
  color: var(--ink-muted);
  max-width: 900px;
  margin-bottom: 48px;
}

.buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 17px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.15s;
}

.btn:hover { opacity: 0.82; }
.btn-dark  { background: var(--ink); color: var(--white); }
.btn-light { border: 1.5px solid var(--ink); color: var(--ink); }


/* ── SECTIONS ────────────────────────────────────── */

.section { padding: 100px var(--pad-x); }

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.section h2 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: normal;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 24px;
}

.section > p {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 860px;
  margin-bottom: 60px;
}


/* ── CARDS ───────────────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--cream-card);
  padding: 52px 48px;
  border-radius: var(--radius-lg);
}

.card-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.card h3 {
  font-family: Georgia, serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: normal;
  line-height: 1.15;
  margin-bottom: 18px;
}

.card p {
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.card a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: opacity 0.15s;
}

.card a:hover { opacity: 0.55; }


/* ── WHO WE WORK WITH ────────────────────────────── */

.audience { padding: 100px var(--pad-x); background: var(--cream-card); }

.audience h2 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: normal;
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 56px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
}

.audience-card h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 14px;
}

.audience-card p {
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.audience-card a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}


/* ── CTA BAND ────────────────────────────────────── */

.cta-band {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 120px var(--pad-x);
}

.cta-band h2 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: normal;
  margin-bottom: 20px;
}

.cta-band p {
  font-size: 18px;
  opacity: 0.65;
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-band .btn-dark {
  background: var(--white);
  color: var(--ink);
}


/* ── FOOTER ──────────────────────────────────────── */

.site-footer { background: var(--slate); color: rgba(255,255,255,0.85); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding: 80px var(--pad-x) 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-eb {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: normal;
  color: var(--white);
  line-height: 1;
}

.footer-logo-div {
  font-size: 22px;
  font-weight: 200;
  color: rgba(255,255,255,0.35);
}

.footer-logo-words {
  display: flex;
  flex-direction: column;
}

.footer-logo-words span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s;
}

.footer-social a:hover { background: rgba(255,255,255,0.18); color: var(--white); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }


/* ── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 1100px) {
  :root { --pad-x: 6%; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .site-nav,
  .btn-solutions:not(.btn-solutions--mobile) { display: none; }
  .mobile-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --pad-x: 5%; }
  .hero, .section, .audience, .cta-band { padding: 72px var(--pad-x); }
  .buttons { flex-direction: column; align-items: flex-start; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .audience-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}
