:root {
  --navy: #132A44;
  --navy-deep: #0C1B2C;
  --gold: #d29d11;
  --gold-soft: #e8b84a;
  --gold-dark: #b8860e;
  --ink: #1A1F26;
  --muted: #5B6570;
  --line: rgba(19, 42, 68, 0.12);
  --paper: #F7F8FA;
  --mist: #E7EEF4;
  --white: #FFFFFF;
  --success: #1F7A4D;
  --danger: #A11F2C;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(12, 27, 44, 0.12);
  --container: 1320px;
  --gutter: 12px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --header-h: 4.4rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
@media (min-width: 576px) {
  :root { --gutter: 12px; }
}
@media (min-width: 1200px) {
  :root { --gutter: 16px; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link {
  position: absolute; left: 1rem; top: -3rem; background: var(--navy); color: #fff;
  padding: .7rem 1rem; z-index: 100; border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(12,27,44,.08);
}

.top-bar {
  background: var(--gold);
  color: #fff;
  font-size: .78rem;
}
.top-bar-inner {
  min-height: 2.35rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.top-contact, .top-socials {
  display: flex; align-items: center; flex-wrap: wrap; gap: .15rem 1.15rem;
}
.top-bar a {
  color: #fff; text-decoration: none;
  display: inline-flex; align-items: center; gap: .35rem; font-weight: 500;
}
.top-bar a:hover { color: #fff; opacity: .88; }
.top-ico { flex: 0 0 auto; opacity: .95; }

.social-icons {
  display: flex; align-items: center; flex-wrap: wrap; gap: .55rem;
}
.social-icon {
  width: 2rem; height: 2rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: .2s ease;
}
.social-icons-top .social-icon {
  color: #fff;
  background: transparent;
  border: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: .15rem;
}
.social-icons-top .social-icon:hover {
  color: #fff;
  background: transparent;
  border: 0;
  opacity: .82;
}
.social-icons-top .social-icon svg {
  width: 16px;
  height: 16px;
}
.social-icons-footer {
  margin-top: 1.1rem;
}
.social-icons-footer .social-icon {
  color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
}
.social-icons-footer .social-icon:hover {
  color: var(--navy-deep); background: var(--gold-soft); border-color: var(--gold-soft);
}

.navbar-bar {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  position: relative;
  z-index: 72;
}
.brand { display: flex; flex-direction: column; text-decoration: none; color: var(--navy); line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
.brand-tag {
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: capitalize;
  color: var(--gold);
  font-weight: 600;
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; gap: 1.15rem; align-items: center; }
.nav-list a {
  text-decoration: none; color: var(--ink); font-size: .92rem; font-weight: 500;
  position: relative; padding: .25rem 0;
}
.nav-list a.is-active, .nav-list a:hover { color: var(--navy); }
.nav-list a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.2rem;
  height: 2px; background: var(--gold);
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 71;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .28rem;
  transition: background .25s ease, border-color .25s ease;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.15rem;
  background: var(--navy);
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 2.85rem; padding: .7rem 1.25rem; border-radius: 999px;
  border: 1.5px solid transparent; font-family: var(--font-body); font-weight: 600;
  font-size: .92rem; text-decoration: none; cursor: pointer; transition: .2s ease;
  color: #fff;
}
a.btn, a.btn:hover { text-decoration: none; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--navy); border-color: rgba(19,42,68,.25); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(210,157,17,.06); }
.btn-gold,
a.btn-gold,
button.btn-gold {
  background: var(--gold); color: #fff;
}
.btn-gold:hover,
a.btn-gold:hover,
button.btn-gold:hover {
  background: var(--gold-dark); color: #fff;
}
.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-nav { padding-inline: 1.1rem; min-height: 2.5rem; color: #fff; }

/* Hero */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  min-height: clamp(380px, 52vh, 520px);
  gap: 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 5vw, 3.75rem) clamp(0rem, 2vw, 1rem) clamp(2.4rem, 5vw, 3.75rem) 0;
  max-width: 34rem;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: var(--gold);
  margin-bottom: .7rem;
  font-weight: 600;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 3.45rem);
  margin-bottom: .85rem;
  max-width: 12ch;
  line-height: 1.1;
}
.hero-lead {
  color: rgba(255,255,255,.88);
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  max-width: 34ch;
  margin-bottom: 1.45rem;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero-actions .btn-light {
  background: transparent;
  color: #fff;
  border-color: rgba(210, 157, 17, 0.65);
}
.hero-actions .btn-light:hover {
  background: rgba(210, 157, 17, 0.14);
  color: #fff;
  border-color: var(--gold);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hero-visual-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--navy-deep) 0%,
      rgba(12, 27, 44, 0.85) 14%,
      rgba(12, 27, 44, 0.35) 36%,
      rgba(12, 27, 44, 0) 52%,
      rgba(12, 27, 44, 0) 70%,
      rgba(12, 27, 44, 0.35) 86%,
      rgba(12, 27, 44, 0.85) 94%,
      var(--navy-deep) 100%
    );
}

.proof-stage {
  position: relative;
  z-index: 3;
  margin-top: clamp(-2.25rem, -4vw, -1.5rem);
  padding: 0 0 clamp(2rem, 4vw, 2.75rem);
}
.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(12, 27, 44, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.proof-panel-copy {
  position: relative;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: clamp(1.15rem, 2.2vw, 1.55rem) clamp(1.25rem, 2.4vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.proof-panel-copy::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 18%;
  bottom: 18%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.proof-panel-copy h2 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.15;
  margin: 0;
}
.proof-panel-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.proof-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  background: var(--white);
}
.proof-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  min-height: 0;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-tile:nth-child(odd) { border-left: 0; }
.proof-tile:nth-child(3),
.proof-tile:nth-child(4) { border-bottom: none; }
.proof-tile-feature {
  background:
    linear-gradient(160deg, rgba(210, 157, 17, 0.1) 0%, rgba(255, 255, 255, 0) 60%),
    #fff;
}
.proof-tile-outline { background: #fff; }
.proof-tile-dark {
  background: var(--navy-deep);
  color: #fff;
}
.proof-tile-gold {
  background: var(--gold);
  color: #fff;
}
.proof-tile-value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.proof-tile-rule {
  width: 1px;
  align-self: stretch;
  min-height: 1.6rem;
  background: currentColor;
  opacity: 0.28;
  flex-shrink: 0;
}
.proof-tile-dark .proof-tile-value,
.proof-tile-dark .proof-tile-label,
.proof-tile-gold .proof-tile-value,
.proof-tile-gold .proof-tile-label { color: #fff; }
.proof-tile-label {
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--muted);
  max-width: none;
}

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--paper); }
.section-navy {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: #fff;
}
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,.8); }
.section-head { max-width: 40rem; margin-bottom: 2.25rem; }
.section-head h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
.section-head h2::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 3px;
  margin-top: 0.7rem;
  background: var(--gold);
  border-radius: 2px;
}
.section-head p { font-size: 1.02rem; }

.audience-section .section-head { max-width: 28rem; margin-bottom: 2rem; }
.audience-section .section-head h2 { color: var(--gold); }
.audience-section .section-head h2::after { display: none; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}
.audience-card {
  padding: 0 1.4rem;
  border-left: 1px solid var(--gold);
}
.audience-card:first-child {
  border-left: 0;
  padding-left: 0;
}
.audience-card:last-child { padding-right: 0; }
.audience-arrow {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}
.audience-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.55rem;
}
.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card-grid, .product-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-card, .content-card, .product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover, .product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(210, 157, 17, 0.35);
}
.service-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--navy-deep);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.service-card:hover .service-card-media img { transform: scale(1.04); }
.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 27, 44, 0.12) 0%,
    rgba(12, 27, 44, 0.05) 50%,
    rgba(12, 27, 44, 0.4) 100%
  );
  pointer-events: none;
}
.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 0.9rem 1rem;
  gap: 0.35rem;
}
.service-card-body h3 {
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.25;
}
.service-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.service-card-body h3 a:hover { color: var(--gold); }
.service-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-body .card-link {
  margin-top: 0.45rem;
  align-self: flex-start;
  font-size: 0.82rem;
}
.product-card h3 { font-size: 1.3rem; }
.service-index {
  font-family: var(--font-display); color: var(--gold); font-size: 1rem; font-weight: 600;
  margin-bottom: .55rem;
}
.card-link {
  display: inline-flex; margin-top: .85rem; font-weight: 600; color: var(--navy);
  text-decoration: none; border-bottom: 1px solid var(--gold);
}
.card-link:hover { color: var(--gold); }

.resource-list {
  display: grid;
  gap: 1rem;
}
.resource-card {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(210, 157, 17, 0.35);
}
.resource-card-media {
  display: block;
  background: var(--mist);
  min-height: 100%;
}
.resource-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform .5s ease;
}
.resource-card:hover .resource-card-media img { transform: scale(1.04); }
.resource-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.15rem 1.35rem;
}
.resource-card-body h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  margin: 0;
  line-height: 1.25;
  color: var(--gold);
}
.resource-card-body h3 a {
  color: var(--gold);
  text-decoration: none;
}
.resource-card-body h3 a:hover { color: var(--gold-dark); }
.resource-card-body h2,
.resource-card-body h2 a {
  color: var(--gold);
}
.resource-card-body h2 a:hover { color: var(--gold-dark); }
.resource-card-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.resource-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-top: 0.45rem;
}
.resource-card-meta .card-link { margin-top: 0; }
.resource-card-meta .price { margin: 0; }

.insight-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(210, 157, 17, 0.35);
}
.insight-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}
.insight-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.insight-card:hover .insight-card-media img { transform: scale(1.04); }
.insight-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
  padding: 1.05rem 1.15rem 1.25rem;
}
.insight-card-body h3 {
  font-size: 1.12rem;
  margin: 0;
  line-height: 1.3;
}
.insight-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.insight-card-body h3 a:hover { color: var(--gold); }
.insight-card-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.insight-card-body .card-link { margin-top: 0.35rem; align-self: flex-start; }
.section-more { margin-top: 1.75rem; }

.product-hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mist);
}
.product-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-detail-list {
  display: grid;
  gap: 2rem;
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-detail:nth-child(even) {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
}
.service-detail:nth-child(even) .service-detail-media { order: 2; }
.service-detail-media {
  position: relative;
  min-height: 260px;
  background: var(--navy-deep);
}
.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.service-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12, 27, 44, 0.2), rgba(12, 27, 44, 0.45));
  pointer-events: none;
}
.service-detail-media .service-index {
  position: absolute;
  left: 1.15rem;
  bottom: 1rem;
  z-index: 1;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.service-detail-body {
  padding: clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}
.service-detail-body h2 { margin: 0; font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.service-detail-body > p { margin: 0; color: var(--muted); }
.service-detail-body .btn { align-self: flex-start; margin-top: 0.5rem; }

.split {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: 1.05fr .95fr;
}
.portrait-frame {
  border-radius: calc(var(--radius) + 4px); overflow: hidden;
  aspect-ratio: 4 / 5; background:
    linear-gradient(160deg, #1e3a5f, #0c1b2c 60%, #d29d11 140%);
  position: relative;
}
.portrait-frame::after {
  content: "Professional portrait";
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(255,255,255,.7); font-size: .95rem; letter-spacing: .04em;
}
.portrait-frame.has-image::after { display: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }

/* About intro */
.about-intro { padding-top: clamp(2.5rem, 5vw, 3.75rem); }
.about-intro-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  align-items: start;
}
.about-portrait { position: sticky; top: calc(var(--header-h) + 1rem); }
.about-bio h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin-bottom: 1.15rem;
}
.about-bio-block {
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.about-bio-block:last-of-type { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.about-bio-block h3 {
  font-size: 0.82rem;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.55rem;
  font-weight: 600;
}
.about-bio-block p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-bio-block strong { color: var(--navy); font-weight: 600; }
.about-bio mark {
  background: linear-gradient(180deg, transparent 62%, rgba(210, 157, 17, 0.35) 62%);
  color: inherit;
  padding: 0 0.1em;
}
.about-note {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  border-top: 3px solid var(--gold);
}
.about-note p { margin: 0; color: inherit; max-width: none; font-size: 0.95rem; line-height: 1.6; }
.about-note strong { color: var(--gold-soft); }
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.about-focus-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-focus-card {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  border-top: 3px solid var(--gold);
}
.about-focus-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
}
.about-focus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.about-languages {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.about-languages h3 {
  font-size: 1rem;
  margin: 0 0 0.85rem;
}
.about-languages ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}
.about-languages li {
  font-size: 0.9rem;
  color: var(--muted);
}
.about-languages strong { color: var(--navy); display: block; margin-bottom: 0.15rem; }
.about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.about-cta h2 { color: #fff; margin-bottom: 0.45rem; }
.about-cta p { color: rgba(255,255,255,.8); margin: 0; max-width: 40ch; }
.about-cta .about-actions { margin-top: 0; }

.quote-strip {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.quote-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.4rem;
  border-left: 3px solid var(--gold);
}
.quote-card p { color: var(--ink); font-size: 1.02rem; }
.quote-meta { margin-top: 1rem; font-size: .88rem; color: var(--muted); }
.quote-meta strong { color: var(--navy); display: block; }

.newsletter-band {
  display: grid; gap: 1.5rem; align-items: center;
  grid-template-columns: 1.2fr .8fr;
  background:
    linear-gradient(90deg, var(--gold) 0 4px, transparent 4px),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: #fff;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.newsletter-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.newsletter-band p { color: rgba(255,255,255,.8); margin-bottom: 0; }
.newsletter-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 0; border: 0; border-radius: 999px;
  padding: .85rem 1.1rem; font: inherit;
}

/* Booking modal */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.book-modal[hidden] { display: none !important; }
.book-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 27, 44, 0.62);
  backdrop-filter: blur(2px);
}
.book-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(92vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 28px 70px rgba(12, 27, 44, 0.28);
  padding: 1.5rem 1.4rem 1.6rem;
}
.book-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
}
.book-modal-close:hover { background: var(--paper); color: var(--gold); }
.book-modal-head { margin-bottom: 1.1rem; padding-right: 2rem; }
.book-modal-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}
.book-modal-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.book-modal-form .btn { width: 100%; }
body.book-modal-open { overflow: hidden; }

/* Checkout payment modal */
.pay-modal {
  position: fixed; inset: 0; z-index: 1200;
  display: grid; place-items: center; padding: 1rem;
}
.pay-modal[hidden] { display: none !important; }
.pay-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(12, 27, 44, .55);
  backdrop-filter: blur(2px);
}
.pay-modal-dialog {
  position: relative; z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 720px);
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 24px 60px rgba(12, 27, 44, .28);
  display: flex; flex-direction: column;
}
.pay-modal-close {
  position: absolute; top: .7rem; right: .7rem;
  width: 2.25rem; height: 2.25rem; border: 0; border-radius: 50%;
  background: var(--mist); color: var(--navy); font-size: 1.35rem;
  cursor: pointer; line-height: 1;
}
.pay-modal-close:hover { background: var(--paper); color: var(--gold); }
.pay-modal-head { margin-bottom: .85rem; padding-right: 2rem; }
.pay-modal-head h2 {
  margin: 0 0 .25rem; font-size: 1.35rem; color: var(--navy);
}
.pay-modal-sub { margin: 0; color: var(--muted); font-size: .92rem; }
.pay-modal-body {
  flex: 1; min-height: 320px;
  border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; background: var(--mist);
  position: relative;
}
.pay-modal-loading,
.pay-modal-result,
.pay-modal-error {
  position: absolute; inset: 0;
  display: grid; place-content: center; gap: .75rem;
  text-align: center; padding: 1.5rem; background: #fff;
}
.pay-modal-loading[hidden],
.pay-modal-result[hidden],
.pay-modal-error[hidden],
.pay-modal-frame[hidden] { display: none !important; }
.pay-modal-frame {
  width: 100%; height: min(58vh, 520px); border: 0; background: #fff;
}
.pay-spinner {
  width: 36px; height: 36px; margin: 0 auto;
  border: 3px solid var(--line); border-top-color: var(--gold);
  border-radius: 50%; animation: pay-spin .7s linear infinite;
}
@keyframes pay-spin { to { transform: rotate(360deg); } }
.pay-modal-actions {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
}
.pay-modal-ref { margin: .75rem 0 0; text-align: center; }
.pay-modal-fallback {
  margin-top: .65rem; text-align: center; font-size: .85rem;
}
.pay-modal-fallback a { color: var(--gold); font-weight: 600; }
body.pay-modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .pay-modal-dialog { width: 100%; max-height: 96vh; padding: 1rem; }
  .pay-modal-frame { height: min(62vh, 480px); }
}

/* Page hero banner (split + overlapping title bar) */
.page-hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  height: 320px;
  max-height: 320px;
  overflow: hidden;
  background: #fff;
}
.page-hero-banner-panel {
  background: #fff;
  min-height: 100%;
}
.page-hero-banner-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--mist);
}
.page-hero-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.page-hero-banner-rule {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--gold);
  z-index: 1;
  pointer-events: none;
}
.page-hero-banner-bar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: min(68%, 46rem);
  background: var(--gold);
  padding: clamp(1rem, 2.2vw, 1.45rem) clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.page-hero-banner-bar h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.about-bio-wide {
  max-width: 52rem;
  margin-inline: auto;
}
.about-bio-wide h2 { text-align: left; }

/* Page banner (inner pages) */
.page-banner {
  background:
    linear-gradient(120deg, rgba(12,27,44,.94), rgba(19,42,68,.82)),
    linear-gradient(180deg, #1a3554, #0c1b2c);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2.75rem;
  border-bottom: 3px solid var(--gold);
}
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); max-width: 16ch; }
.page-banner p { color: rgba(255,255,255,.82); max-width: 42ch; margin: 0; }

/* Forms */
.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }

.book-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
}
@media (max-width: 900px) {
  .book-layout { grid-template-columns: 1fr; }
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 2rem;
  align-items: start;
}
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.contact-panel-title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 .35rem;
  color: var(--navy);
}
.contact-panel-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 40ch;
}
.contact-form .flash { margin-bottom: .25rem; }
.contact-form-panel > .flash {
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .92rem;
}
.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.25rem;
}
.contact-form-actions .form-note { margin: 0; }

.contact-aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 5.5rem;
}
.contact-channels {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.45rem;
  border: 1px solid transparent;
  box-shadow: inset 0 3px 0 var(--gold);
}
.contact-channels h2 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  color: var(--navy);
}
.contact-channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.contact-channel-list li {
  display: grid;
  gap: .2rem;
}
.contact-channel-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-channel-list a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-channel-list a:hover {
  color: var(--gold-dark);
}
.contact-channel-text {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
}
.contact-channels-cta {
  margin-top: 1.35rem;
  width: 100%;
  justify-content: center;
}
.contact-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.contact-note h3 {
  margin: 0 0 .4rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--navy);
}
.contact-note p {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
}
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: .8rem .95rem; font: inherit; color: var(--ink); background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(210,157,17,.45); border-color: var(--gold);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); }

.flash { padding: .85rem 0; font-weight: 500; }
.flash-success { background: #e8f6ee; color: var(--success); }
.flash-error { background: #fdecee; color: var(--danger); }

/* Blog / shop */
.post-meta { font-size: .85rem; color: var(--muted); margin-bottom: .5rem; }
.post-meta a { color: var(--gold); text-decoration: none; font-weight: 600; }
.price { font-family: var(--font-display); color: var(--navy); font-size: 1.25rem; font-weight: 600; }
.price small {
  display: block;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: .85rem;
}
.breadcrumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-soft); }

.blog-layout {
  display: grid; gap: 2rem; grid-template-columns: minmax(0, 1fr) 300px; align-items: start;
}
.blog-toolbar { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.25rem; }
.blog-toolbar input[type="search"] { flex: 1; min-width: 180px; border-radius: 999px; }
.category-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem .8rem; border-radius: 999px; border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); font-size: .86rem; font-weight: 500; background: #fff;
}
.chip span { color: var(--muted); font-size: .78rem; }
.chip.is-active, .chip:hover {
  background: rgba(210, 157, 17, 0.12);
  color: var(--navy);
  border-color: var(--gold);
}
.chip.is-active span, .chip:hover span { color: var(--gold-dark); }

.blog-list { display: grid; gap: 1.25rem; }
.blog-card {
  display: grid; gap: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.blog-card-row,
.blog-card-featured { grid-template-columns: 1.05fr 1fr; }
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(210, 157, 17, 0.35);
}
.blog-card-media {
  display: block; background: var(--mist); min-height: 100%;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card h2 { font-size: 1.35rem; margin-bottom: .55rem; }
.blog-card h2 a { color: var(--navy); text-decoration: none; }
.blog-card h2 a:hover { color: var(--gold); }
.blog-card-body > p {
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; margin: .75rem 0; }
.tag {
  font-size: .75rem; padding: .25rem .55rem; border-radius: 999px;
  background: var(--mist); color: var(--navy); font-weight: 500;
  text-decoration: none;
}
a.tag:hover { background: rgba(210,157,17,.15); color: var(--gold-dark); }

.pagination {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
  justify-content: space-between; margin-top: 1.75rem;
}
.pagination-status { color: var(--muted); font-size: .9rem; }

.blog-sidebar { display: grid; gap: 1rem; }
.sidebar-card {
  background: var(--paper); border-radius: var(--radius); padding: 1.2rem 1.15rem;
}
.sidebar-card h2 { font-size: 1rem; font-family: var(--font-body); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .85rem; }
.sidebar-card .footer-links a { color: var(--ink); }
.sidebar-card .footer-links a:hover { color: var(--gold); }
.recent-posts { display: grid; gap: .85rem; }
.recent-posts a { color: var(--navy); text-decoration: none; font-weight: 600; font-size: .92rem; }
.recent-posts a:hover { color: var(--gold); }
.recent-posts span { display: block; color: var(--muted); font-size: .8rem; margin-top: .15rem; }
.sidebar-newsletter { background: var(--navy); color: #fff; box-shadow: inset 0 3px 0 var(--gold); }
.sidebar-newsletter h2, .sidebar-newsletter p { color: #fff; }
.sidebar-newsletter p { font-size: .9rem; }

.blog-post-layout { max-width: 760px; }
.blog-post-main.prose { max-width: none; }
.post-cover { margin: 0 0 1.75rem; border-radius: var(--radius); overflow: hidden; }
.post-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.reading-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120;
  background: transparent; pointer-events: none;
}
.reading-progress-bar {
  display: block; height: 100%; width: 0;
  background: var(--gold);
  transition: width .1s linear;
}

.article-banner .article-meta { color: rgba(255,255,255,.78); }
.article-banner .article-meta a { color: var(--gold); }
.article-lead {
  max-width: 42rem;
  margin: .85rem 0 0;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2.25rem;
  align-items: start;
}
.article-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 5.5rem;
}
@media (max-width: 960px) {
  .article-sidebar { position: static; }
}
.article-toc { margin: 0; }
.article-toc ol {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .45rem;
}
.article-toc a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  line-height: 1.35;
  padding-left: .65rem;
  border-left: 2px solid transparent;
}
.article-toc a:hover,
.article-toc a.is-active {
  color: var(--navy);
  border-left-color: var(--gold);
}
.sidebar-share {
  display: grid; gap: .45rem;
}
.sidebar-share a,
.sidebar-share button {
  display: block; width: 100%; text-align: left;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  border-radius: 8px; padding: .5rem .7rem; font: inherit; font-size: .85rem;
  font-weight: 600; cursor: pointer; text-decoration: none;
}
.sidebar-share a:hover,
.sidebar-share button:hover { border-color: var(--gold); color: var(--gold-dark); }

.article-tags { margin-top: 2rem; }
.article-tags-label {
  display: block; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted); margin-bottom: .5rem;
}
.author-card-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .85rem; }

.prose h2[id] { scroll-margin-top: 5.5rem; }
.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  color: var(--ink);
  font-style: italic;
}
.prose img { max-width: 100%; height: auto; border-radius: 8px; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: .92rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .55rem .65rem; text-align: left; }
.prose th { background: var(--mist); }

@media print {
  .site-header, .site-footer, .reading-progress, .article-sidebar,
  .inline-newsletter, .share-bar, .author-card-actions, .book-modal, .pay-modal { display: none !important; }
  .blog-article-layout { display: block; }
  .page-banner { background: #fff !important; color: #000 !important; }
  .article-lead, .article-meta { color: #333 !important; }
}

.inline-newsletter {
  margin: 2rem 0;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--gold) 0 4px, transparent 4px),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: #fff;
}
.inline-newsletter h2 { color: #fff; font-size: 1.35rem; }
.inline-newsletter p { color: rgba(255,255,255,.8); }

.share-bar {
  display: flex; flex-wrap: wrap; gap: .55rem; align-items: center;
  margin: 2rem 0; padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.share-bar > span { font-weight: 600; color: var(--navy); margin-right: .35rem; }
.share-btn {
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  border-radius: 999px; padding: .4rem .8rem; font: inherit; font-size: .85rem;
  font-weight: 600; cursor: pointer; text-decoration: none;
}
.share-btn:hover { border-color: var(--navy); color: var(--navy); }

.author-card {
  display: flex; gap: 1rem; align-items: flex-start; flex-wrap: wrap;
  padding: 1.25rem; border-radius: var(--radius); background: var(--paper); margin: 1.5rem 0;
}
.author-card h2 { font-size: 1.15rem; margin-bottom: .3rem; }
.author-avatar { width: 72px; height: 72px; aspect-ratio: 1; border-radius: 50%; flex: 0 0 auto; }
.author-avatar::after { font-size: .65rem; text-align: center; padding: .5rem; }

.post-adjacent {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem;
}
.adj {
  display: grid; gap: .25rem; padding: 1rem; border: 1px solid var(--line);
  border-radius: var(--radius); text-decoration: none; color: inherit;
}
.adj span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.adj strong { color: var(--navy); font-size: .95rem; }
.adj-next { text-align: right; }
.adj:hover { border-color: var(--gold); }

.faq-list details {
  border-bottom: 1px solid var(--line); padding: 1rem 0;
}
.faq-list summary {
  cursor: pointer; font-weight: 600; color: var(--navy); list-style: none;
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--gold); font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin-top: .75rem; }

.timeline { display: grid; gap: 1.25rem; border-left: 2px solid var(--gold); padding-left: 1.25rem; }
.timeline-item h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.timeline-role { font-size: .85rem; color: var(--gold); font-weight: 600; margin-bottom: .35rem; }

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2rem; }
.prose ul { list-style: disc; padding-left: 1.2rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .4rem; color: var(--muted); }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid; gap: 2rem; grid-template-columns: 1.45fr 1fr 1fr 1.1fr;
  margin-bottom: 2.5rem;
}
.footer-name { font-family: var(--font-display); color: #fff; font-size: 1.4rem; margin-bottom: .35rem; }
.footer-tagline { color: var(--gold); margin-bottom: .75rem; }
.footer-note { font-size: .88rem; max-width: 34ch; }
.footer-heading {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .85rem;
  font-family: var(--font-body);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-heading::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  margin-top: 0.45rem;
  background: var(--gold);
}
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; overflow-wrap: anywhere; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem; font-size: .88rem;
}
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { color: rgba(255,255,255,.7); text-decoration: none; }

.whatsapp-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 40;
  width: 3.3rem; height: 3.3rem; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.2); text-decoration: none;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

img, video, iframe, svg { max-width: 100%; }
.container, .resource-list, .insight-grid, .service-grid, .audience-grid {
  min-width: 0;
}
.elfsight-app-9238cec4-1de4-447e-b17b-5a0ccbb89f9c {
  max-width: 100%;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1200px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .insight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-list { gap: 0.85rem; }
  .nav-list a { font-size: 0.88rem; }
  .site-nav { gap: 1rem; }
  .btn-nav { padding-inline: 0.9rem; font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  .top-bar { display: none; }
  .nav-toggle { display: flex; }
  /* backdrop-filter creates a containing block and breaks full-screen fixed nav */
  .navbar-bar { backdrop-filter: none; -webkit-backdrop-filter: none; }

  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .site-header {
    z-index: 80;
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }
  body.nav-open .navbar-bar {
    background: transparent;
  }
  body.nav-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
  }
  body.nav-open .nav-toggle span { background: #fff; }
  body.nav-open .brand-name { color: #fff; }
  body.nav-open .brand-tag { color: var(--gold-soft); }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2.5rem;
    margin: 0;
    background:
      linear-gradient(160deg, rgba(210, 157, 17, 0.08) 0%, transparent 42%),
      linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .32s ease, visibility .32s ease;
    overflow: auto;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 22rem;
    margin: 0;
  }
  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  .nav-list li:last-child { border-bottom: 0; }
  .nav-list a {
    display: block;
    padding: 0.95rem 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 4.5vw, 1.85rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
  }
  .nav-list a:hover { color: var(--gold-soft); }
  .nav-list a.is-active::after { display: none; }
  .nav-list a.is-active { color: var(--gold); }
  .btn-nav {
    width: auto;
    min-width: 14rem;
    margin-top: 0.5rem;
    background: var(--gold);
    color: #fff;
  }
  .btn-nav:hover { background: var(--gold-dark); color: #fff; }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    order: 2;
    max-width: 100%;
    padding: 1.75rem 0 2.25rem;
  }
  .hero-visual {
    order: 1;
    min-height: 280px;
    max-height: 360px;
  }
  .hero-visual-fade {
    background: linear-gradient(
      180deg,
      rgba(12, 27, 44, 0) 0%,
      rgba(12, 27, 44, 0.15) 55%,
      var(--navy-deep) 100%
    );
  }
  .hero h1 { max-width: none; }
  .hero-lead { max-width: none; }
}

@media (max-width: 960px) {
  .proof-panel { grid-template-columns: 1fr; }
  .proof-panel-copy::after { display: none; }
  .proof-mosaic { grid-template-columns: 1fr 1fr; }
  .split, .newsletter-band, .quote-strip, .about-intro-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; }
  .about-focus-grid { grid-template-columns: 1fr 1fr; }
  .about-languages ul { grid-template-columns: 1fr 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "explore resources"
      "contact contact";
    gap: 1.5rem 1rem;
    margin-bottom: 1.75rem;
  }
  .footer-brand { grid-area: brand; }
  .footer-col-explore {
    grid-area: explore;
    text-align: center;
    min-width: 0;
  }
  .footer-col-resources {
    grid-area: resources;
    text-align: center;
    min-width: 0;
  }
  .footer-col-explore .footer-heading::after,
  .footer-col-resources .footer-heading::after {
    margin-inline: auto;
  }
  .footer-col-contact {
    grid-area: contact;
    text-align: center;
    justify-self: center;
    width: min(100%, 22rem);
  }
  .footer-col-contact .footer-heading::after { margin-inline: auto; }
  .site-footer { padding: 2.75rem 0 1.25rem; }
  .resource-card { grid-template-columns: minmax(140px, 200px) minmax(0, 1fr); }
  .product-grid, .card-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem 0; }
  .audience-card {
    padding: 0 1rem;
    border-left: 0;
    border-right: 1px solid var(--gold);
  }
  .audience-card:first-child { padding-left: 0; }
  .audience-card:nth-child(even) {
    border-right: 0;
    padding-right: 0;
    padding-left: 1rem;
  }
  .blog-layout, .blog-card-row, .blog-card-featured, .post-adjacent, .blog-article-layout { grid-template-columns: 1fr; }
  .service-detail,
  .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-media { order: 0; }
  .service-detail-media { min-height: 0; aspect-ratio: 16 / 10; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form .btn { width: 100%; }
  .blog-toolbar { flex-direction: column; align-items: stretch; }
  .blog-toolbar .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: clamp(2.75rem, 6vw, 4rem) 0; }
}

@media (max-width: 820px) {
  .hero-visual {
    min-height: 240px;
    max-height: 300px;
  }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .proof-stage {
    margin-top: -1.25rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .insight-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .resource-card { grid-template-columns: 1fr; }
  .resource-card-media { aspect-ratio: 16 / 10; min-height: 0; }
  .resource-card-media img { min-height: 0; }
  .resource-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand-name { font-size: 1.2rem; }
  .brand-tag { font-size: 0.68rem; }
  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 3rem;
    height: 3rem;
  }
  .page-hero-banner {
    grid-template-columns: 1fr;
    height: 280px;
    max-height: 280px;
  }
  .page-hero-banner-panel { display: none; }
  .page-hero-banner-media { grid-row: 1; }
  .page-hero-banner-bar {
    width: min(92%, 28rem);
    left: 0;
    padding: 1.15rem 1.35rem;
  }
  .page-banner { padding: 2.25rem 0 1.85rem; }
  .page-banner h1 { max-width: none; }
  .about-focus-grid { grid-template-columns: 1fr; }
  .about-languages ul { grid-template-columns: 1fr 1fr; }
  .about-actions .btn,
  .about-cta .btn { width: 100%; }
  .about-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .about-cta p { max-width: none; }
}

@media (max-width: 560px) {
  .proof-mosaic { grid-template-columns: 1fr; }
  .proof-tile {
    border-left: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .proof-tile:last-child { border-bottom: none !important; }
  .audience-grid { grid-template-columns: 1fr; gap: 1.35rem; }
  .audience-card,
  .audience-card:first-child,
  .audience-card:nth-child(even) {
    padding: 0 0 0 1rem !important;
    border-left: 1px solid var(--gold) !important;
    border-right: 0 !important;
  }
  .hero-actions .btn { width: 100%; }
  .footer-grid {
    gap: 1.25rem 1rem;
    margin-bottom: 1.35rem;
  }
  .footer-note { max-width: none; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    padding-top: 1rem;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-footer { padding-bottom: 1rem; }
}

@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .hero-copy { padding-block: 1.4rem 1.85rem; }
  .section-head h2 { font-size: 1.55rem; }
}
