@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── Variables ── */
:root {
  --amber:      #b5763a;
  --amber-l:    #e8c48a;
  --navy:       #2d4a6b;
  --navy-l:     #3d5f87;
  --navy-pale:  #e8edf3;
  --dark:       #1a1916;
  --dark2:      #2e2b27;
  --body:       #5a5448;
  --muted:      #9a8e7e;
  --border:     #d4d0c8;
  --bg:         #f7f5f0;
  --bg2:        #edeae3;
  --cream:      #fdf8f2;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: var(--amber);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: transparent;
  color: var(--dark);
  border: 0.5px solid var(--dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--dark); color: var(--bg); }

.btn-navy {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: var(--navy);
  color: #f0f4f8;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-navy:hover { opacity: 0.88; }

.btn-group { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 38px; height: 38px; object-fit: contain; }
.nav-brand { display: flex; flex-direction: column; gap: 2px; }
.nav-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.nav-name em { font-style: italic; color: var(--muted); }
.nav-sub {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--body);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: var(--amber);
  color: var(--cream);
  border: none;
  font-family: var(--sans);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 0.5px solid var(--border);
}
.hero-text {
  padding: 72px 52px 72px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
  font-weight: 400;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 300;
  line-height: 1.06;
  color: var(--dark);
  margin-bottom: 18px;
}
.hero-h1 em { font-style: italic; color: #8a7e6e; }
.hero-subhead {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 14px;
}
.hero-support {
  font-size: 13px;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 32px;
  max-width: 340px;
}
.hero-img {
  overflow: hidden;
  border-left: 0.5px solid var(--border);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── STATS ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
}
.stat {
  padding: 30px 22px;
  border-right: 0.5px solid var(--navy-l);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--amber-l);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-l {
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7a9abc;
  line-height: 1.5;
}

/* ── HIRE ME WHEN ── */
.hire {
  padding: 80px 40px;
  border-bottom: 0.5px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.hire-wrap { max-width: 1200px; margin: 0 auto; }
.hire-eyebrow { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; font-weight: 400; }
.hire-h {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 40px;
  max-width: 600px;
}
.hire-h em { font-style: italic; color: #8a7e6e; }
.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}
.hire-card {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hire-icon { width: 36px; height: 36px; }
.hire-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}
.hire-items { display: flex; flex-direction: column; gap: 10px; }
.hire-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.75;
  color: var(--body);
}
.hire-bullet {
  width: 3px;
  height: 3px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── SERVICES ── */
.services {
  padding: 80px 40px;
  border-bottom: 0.5px solid var(--border);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.sec-hdr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.sec-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--dark);
}
.pill {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 0.5px solid var(--muted);
  color: var(--muted);
}
.sec-intro {
  font-size: 13px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}
.svc-card {
  background: var(--bg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-num { font-family: var(--serif); font-size: 14px; font-style: italic; color: var(--amber); }
.svc-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--dark); line-height: 1.25; }
.svc-desc { font-size: 12px; line-height: 1.8; color: var(--body); flex: 1; }
.svc-best {
  font-size: 11px;
  color: var(--navy);
  padding-top: 12px;
  border-top: 0.5px solid var(--border);
  line-height: 1.6;
}
.svc-best strong { font-weight: 500; }
.svc-range { font-size: 10px; color: var(--muted); margin-top: 2px; }
.svc-note {
  padding: 18px 26px;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--body);
  font-style: italic;
  margin-top: 1px;
}

/* ── ABOUT ── */
.about { border-bottom: 0.5px solid var(--border); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
.about-img {
  overflow: hidden;
  border-right: 0.5px solid var(--border);
  min-height: 480px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-text {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-h {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--dark);
}
.about-h em { font-style: italic; color: #8a7e6e; }
.about-body { font-size: 13px; line-height: 1.9; color: var(--body); }
.cred-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.cred-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--body); }
.cred-icon { width: 18px; height: 18px; flex-shrink: 0; }
.prev-roles {
  font-size: 10px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 0.5px solid var(--border);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.about-stripe {
  background: var(--navy);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 100%;
}
.stripe-q {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: #f0f4f8;
  line-height: 1.45;
}
.stripe-attr {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-l);
  white-space: nowrap;
}

/* ── IMPACT ── */
.impact {
  padding: 80px 40px;
  border-bottom: 0.5px solid var(--border);
}
.impact-inner { max-width: 1200px; margin: 0 auto; }
.impact-eyebrow { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 28px; font-weight: 400; }
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  margin-bottom: 28px;
}
.impact-card { background: var(--bg); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; }
.impact-h {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--navy);
}
.impact-body { font-size: 12.5px; line-height: 1.9; color: var(--body); }

/* ── RESULTS ── */
.results {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 0.5px solid var(--border);
}
.results-label {
  padding: 60px 32px;
  border-right: 0.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  padding-top: 64px;
}
.results-label p {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.results-grid {
  padding: 60px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.result-item { display: flex; gap: 14px; align-items: flex-start; }
.result-n {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  min-width: 68px;
}
.result-d { font-size: 12px; line-height: 1.8; color: var(--body); padding-top: 3px; }

/* ── TESTIMONIALS ── */
.proof {
  padding: 80px 40px;
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border);
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-hdr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.proof-co { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.feat-q {
  background: var(--navy);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-bottom: 1px;
}
.fq-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: #f0f4f8;
  line-height: 1.4;
}
.fq-attr { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-l); white-space: nowrap; }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}
.testi { background: var(--bg); padding: 28px; }
.testi-text {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 12px;
}
.testi-attr { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ── AWAE CALLOUT ── */
.awae-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
}
.awae-left {
  padding: 64px 52px 64px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border-right: 0.5px solid var(--border);
}
.awae-eyebrow { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); font-weight: 400; }
.awae-h { font-family: var(--serif); font-size: 28px; font-weight: 300; line-height: 1.3; color: var(--dark); }
.awae-h em { font-style: italic; color: #8a7e6e; }
.awae-body { font-size: 13px; line-height: 1.85; color: var(--body); }
.awae-right {
  padding: 64px 40px;
  background: var(--navy-pale);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.awae-tagline {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
  border-left: 2px solid var(--navy);
  padding-left: 18px;
}
.awae-destinations { display: flex; flex-direction: column; gap: 10px; }
.awae-dest { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--navy); }
.awae-dest-dot { width: 3px; height: 3px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }
.awae-url { font-size: 10px; color: var(--navy); letter-spacing: 0.08em; }

/* ── CTA ── */
.cta {
  padding: 96px 40px;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}
.cta-h {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 14px;
}
.cta-h em { font-style: italic; color: #8a7e6e; }
.cta-sub { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.cta-loc {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
}
.cta-contact { font-size: 11px; color: var(--muted); margin-top: 20px; letter-spacing: 0.04em; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-logo-img { width: 28px; height: 28px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.55); }
.footer-name { font-family: var(--serif); font-size: 15px; color: #f0f4f8; letter-spacing: 0.06em; }
.footer-name em { font-style: italic; color: #7a9abc; }
.footer-tag { font-size: 9px; color: #3a5470; letter-spacing: 0.05em; line-height: 1.75; max-width: 440px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #7a9abc; transition: color 0.2s; }
.footer-links a:hover { color: #f0f4f8; }
.footer-links a.awae-link { color: var(--amber-l); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 0.5px solid var(--border);
    padding: 24px;
    gap: 20px;
    z-index: 99;
  }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 52px 24px; max-width: 100%; }
  .hero-h1 { font-size: 36px; }
  .hero-img { min-height: 320px; border-left: none; border-top: 0.5px solid var(--border); }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 0.5px solid var(--navy-l); border-top: 0.5px solid var(--navy-l); }
  .stat:nth-child(4) { border-right: none; border-top: 0.5px solid var(--navy-l); }

  .hire { padding: 52px 24px; }
  .hire-h { font-size: 30px; }
  .hire-grid { grid-template-columns: 1fr; }

  .services { padding: 52px 24px; }
  .svc-grid { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; }
  .about-img { min-height: 300px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .about-text { padding: 40px 24px; }
  .about-stripe { flex-direction: column; align-items: flex-start; gap: 12px; padding: 28px 24px; }

  .impact { padding: 52px 24px; }
  .impact-grid { grid-template-columns: 1fr; }

  .results { grid-template-columns: 1fr; }
  .results-label { border-right: none; border-bottom: 0.5px solid var(--border); padding: 24px; }
  .results-grid { padding: 40px 24px; grid-template-columns: 1fr; }

  .proof { padding: 52px 24px; }
  .feat-q { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px; }
  .testi-grid { grid-template-columns: 1fr; }

  .awae-section { grid-template-columns: 1fr; }
  .awae-left { padding: 48px 24px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .awae-right { padding: 40px 24px; }

  .cta { padding: 64px 24px; }
  .cta-h { font-size: 32px; }
  .cta-contact { font-size: 10px; }

  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}
