:root {
  --color-black: #050a12;
  --color-navy: #1b2a4a;
  --color-navy-rgb: 27, 42, 74;
  --color-navy-deep: #121c33;
  --color-navy-deep-rgb: 18, 28, 51;
  --color-navy-mid: #354a73;
  --color-navy-soft: #eef1f6;
  --color-cream: #f4f1ea;
  --color-cream-muted: #e8e0d4;
  --color-gold: #c9a227;
  --color-gold-light: #e8d48a;
  --color-red: #c53030;
  --color-de-red: #dd0000;
  --color-text: #1e293b;
  --color-text-muted: #5a6b7d;
  --font-heading: "Cinzel", "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  --header-height: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-navy-soft);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.antialiased {
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--color-gold);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(var(--color-navy-rgb), 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.site-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo img {
  height: 48px;
  width: auto;
}

@media (min-width: 1024px) {
  .site-logo img {
    height: 52px;
  }
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }
}

#pre-a1,
#grammar {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.site-nav a,
.site-nav button.nav-dropdown-trigger {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.5rem 0.55rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav button.nav-dropdown-trigger:hover,
.site-nav a.is-active {
  color: var(--color-gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  min-width: 15rem;
  padding: 0.5rem 0;
  margin-top: 0.15rem;
  background: #fff;
  border: 1px solid rgba(var(--color-navy-rgb), 0.12);
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(var(--color-navy-deep-rgb), 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  pointer-events: none;
}

.nav-dropdown.is-open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Override .site-nav link colors (white on header) inside the white panel */
.site-nav .nav-dropdown-panel a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
  color: var(--color-navy);
}

.site-nav .nav-dropdown-panel a:hover,
.site-nav .nav-dropdown-panel a:focus-visible {
  color: var(--color-navy-mid);
  background: var(--color-navy-soft);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

.nav-book-course {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-gold) !important;
  border: 1px solid rgba(201, 162, 39, 0.55);
  padding: 0.5rem 0.85rem !important;
  border-radius: 9999px;
}

.nav-book-course:hover {
  background: rgba(201, 162, 39, 0.12) !important;
  color: #fff !important;
}

.nav-cta {
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-gold) !important;
  color: var(--color-navy-deep) !important;
  padding: 0.65rem 1.25rem !important;
  border-radius: 9999px;
  letter-spacing: 0.1em !important;
}

.nav-cta:hover {
  background: #fff !important;
  color: var(--color-navy) !important;
}

.mobile-toggle {
  display: flex;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer a,
.mobile-drawer summary {
  display: block;
  padding: 0.85rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-drawer details a {
  padding-left: 2.5rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.04em;
}

.mobile-drawer summary {
  cursor: pointer;
  list-style: none;
}

.mobile-drawer summary::-webkit-details-marker {
  display: none;
}

/* —— Main offset —— */
main {
  padding-top: var(--header-height);
}

/* —— Footer —— */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 1.25rem 2rem;
  font-size: 0.875rem;
}

.site-footer__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.site-footer__columns {
  display: grid;
  gap: 2rem 1.75rem;
  grid-template-columns: 1fr;
}

.site-footer__columns > div {
  min-width: 0;
}

@media (min-width: 640px) {
  .site-footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .site-footer__columns {
    grid-template-columns: repeat(5, 1fr);
  }
}

.site-footer h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a:hover {
  color: var(--color-gold);
}

.site-footer__contact li {
  margin-bottom: 0.65rem;
}

.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.4;
  word-break: break-word;
}

.site-footer__contact i {
  width: 1rem;
  text-align: center;
  color: var(--color-gold);
}

.contact-channel-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(var(--color-navy-rgb), 0.1);
  border-radius: 1rem;
  box-shadow: var(--shadow-premium);
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-channel:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.contact-channel__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-navy-soft);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-channel__icon--wa {
  background: rgba(37, 211, 102, 0.15);
  color: #128c7e;
}

.contact-channel__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.contact-channel__value {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.95rem;
  line-height: 1.4;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enquiry-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.enquiry-form__field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-navy);
}

.enquiry-form__field .field-hint {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.45;
}

.enquiry-form__field input,
.enquiry-form__field select,
.enquiry-form__field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-text);
  border: 1px solid rgba(var(--color-navy-rgb), 0.15);
  border-radius: 0.5rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.enquiry-form__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230c1f3d' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}

.enquiry-form__field input:focus,
.enquiry-form__field select:focus,
.enquiry-form__field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.enquiry-form__field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.enquiry-form__after {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.5rem;
  border-left: 3px solid var(--color-gold);
}

.enquiry-form__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.enquiry-form__submit i {
  font-size: 1.1rem;
}

/* Content pages — fees, steps, checklists */
.content-steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 36rem;
}

.content-steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.content-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.75rem;
  top: 0.2rem;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(var(--color-navy-rgb), 0.1);
}

.fee-table th,
.fee-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(var(--color-navy-rgb), 0.06);
}

.fee-table th {
  background: var(--color-navy-soft);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.fee-table tr:last-child td {
  border-bottom: none;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.stat-pill {
  flex: 1 1 8rem;
  background: #fff;
  border: 1px solid rgba(var(--color-navy-rgb), 0.08);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.stat-pill strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-navy);
}

.stat-pill span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.partner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.partner-pills span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
}

.bank-details {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.bank-details dt {
  font-weight: 600;
  color: var(--color-navy);
  margin-top: 0.75rem;
}

.bank-details dd {
  margin: 0.15rem 0 0;
}

.policy-doc {
  max-width: 46rem;
}

.policy-doc h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-navy);
  margin: 2.5rem 0 0.85rem;
}

.policy-doc h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-navy);
  margin: 1.75rem 0 0.6rem;
}

.policy-doc p,
.policy-doc li {
  color: var(--color-text-muted);
  line-height: 1.75;
}

.policy-doc ul,
.policy-doc ol {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.policy-doc li {
  margin-bottom: 0.4rem;
}

.policy-toc {
  background: var(--color-navy-soft);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem;
}

.policy-toc h2 {
  margin-top: 0;
  font-size: 0.95rem;
}

.policy-toc ol {
  margin: 0;
  padding-left: 1.15rem;
}

.policy-toc a {
  color: var(--color-navy);
  font-weight: 600;
}

.policy-toc a:hover {
  color: var(--color-gold);
}

.policy-cta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--color-navy-soft);
  border-radius: 0.75rem;
}

.site-footer__bottom {
  max-width: 80rem;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* —— Utilities —— */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--white {
  background: #fff;
}

.section--soft {
  background: var(--color-navy-soft);
}

.section--dark {
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  color: #fff;
}

.eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.heading-display {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-navy);
  margin: 0 0 1rem;
}

.heading-display em {
  font-style: italic;
  color: var(--color-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--color-navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(var(--color-navy-rgb), 0.25);
}

.btn--primary:hover {
  background: var(--color-navy-mid);
}

.btn--secondary {
  background: #fff;
  color: var(--color-navy);
  border: 1px solid rgba(var(--color-navy-rgb), 0.18);
}

.btn--secondary:hover {
  border-color: var(--color-navy);
  background: var(--color-navy-soft);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn--gold:hover {
  background: var(--color-gold-light);
  color: var(--color-navy-deep);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Instructor portraits */
.portrait-frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--color-navy-deep);
  box-shadow: 0 24px 48px -12px rgba(var(--color-navy-deep-rgb), 0.35);
  border: 3px solid #fff;
  outline: 1px solid rgba(201, 162, 39, 0.45);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portrait-frame--hero {
  aspect-ratio: 4/5;
  max-height: 34rem;
}

.portrait-frame--hero img {
  object-position: center 8%;
}

.portrait-frame--square {
  aspect-ratio: 1 / 1;
  max-width: 22rem;
}

.portrait-frame--square img {
  object-position: center 15%;
}

.portrait-frame--editorial {
  aspect-ratio: 3 / 4;
  max-height: 28rem;
}

.portrait-frame--editorial img {
  object-position: center 5%;
}

.portrait-accent {
  position: absolute;
  bottom: -0.75rem;
  left: -0.75rem;
  right: 1.5rem;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-gold) 0%,
    var(--color-gold) 40%,
    transparent 100%
  );
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.instructor-spotlight {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .instructor-spotlight {
    grid-template-columns: minmax(16rem, 22rem) 1fr;
    gap: 3rem;
  }
}

.instructor-spotlight__intro h2 {
  margin-bottom: 0.75rem;
}

.about-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-top: 0.75rem;
}

@media (min-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr minmax(16rem, 20rem);
  }
}

.about-founder-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-founder-grid {
    grid-template-columns: minmax(14rem, 18rem) 1fr;
  }
}

/* Harimanz learning community */
.harimanz-block {
  background: var(--color-navy-deep);
  border-radius: 1.25rem;
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-premium);
}

.harimanz-block img {
  max-width: min(22rem, 100%);
  margin: 0 auto 1.25rem;
  height: auto;
}

.harimanz-block p {
  margin: 0 auto;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}

.harimanz-block .harimanz-tagline {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.harimanz-strip {
  padding: 2.5rem 0;
  background: var(--color-navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.harimanz-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .harimanz-strip__inner {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: 2rem;
  }
}

.harimanz-strip img {
  max-width: 11rem;
  height: auto;
}

.harimanz-strip p {
  margin: 0;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.65;
}

.site-footer .harimanz-footer-mark {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .harimanz-footer-mark img {
  height: 36px;
  width: auto;
  margin-bottom: 0.35rem;
  opacity: 0.95;
}

.site-footer .harimanz-footer-mark p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  opacity: 0.55;
}

.flag-bar {
  height: 4px;
  background: linear-gradient(
    to right,
    #000 33.33%,
    var(--color-de-red) 33.33%,
    var(--color-de-red) 66.66%,
    var(--color-gold) 66.66%
  );
}

.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.floating-wa:hover {
  transform: scale(1.08);
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.25rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.48);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb span {
  margin: 0 0.35rem;
}

/* Heroes — navy band, aligned with the header */
.page-hero,
.home-hero {
  position: relative;
  background: var(--color-navy);
  color: #fff;
  overflow: hidden;
}

.page-hero::after,
.home-hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.page-hero {
  padding: 2.25rem 0 3.25rem;
  border-bottom: 3px solid var(--color-gold);
}

.page-hero .container,
.home-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .heading-display {
  color: #fff;
  margin-top: 0.85rem;
}

.page-hero .eyebrow {
  color: var(--color-gold-light);
}

.page-hero .prose,
.page-hero .prose p,
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero .stat-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 39, 0.28);
}

.page-hero .stat-pill strong {
  color: var(--color-gold-light);
}

.page-hero .stat-pill span {
  color: rgba(255, 255, 255, 0.55);
}

.home-hero {
  padding: 3.25rem 0 4.25rem;
  border-bottom: 3px solid var(--color-gold);
}

.home-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 4rem;
    padding-top: 1rem;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5.6vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0.75rem 0 1.5rem;
  font-weight: 700;
}

.hero-title span {
  display: block;
}

.hero-title__accent {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 600;
}

.home-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin: 0;
}

.home-hero__lead strong {
  color: #fff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.home-hero__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.85rem 0 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(201, 162, 39, 0.28);
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dt {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--color-gold-light);
  margin: 0;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.home-hero__visual {
  position: relative;
  margin: 0;
}

.home-hero .portrait-frame {
  border: 1px solid rgba(201, 162, 39, 0.55);
  outline: none;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35);
}

.home-hero__caption {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.home-hero__caption span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.page-hero .portrait-frame {
  border: 1px solid rgba(201, 162, 39, 0.55);
  outline: none;
}

.prose {
  max-width: 42rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-premium);
  transition: transform 0.25s;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card h3 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.faq-item {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #fff;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-navy-soft);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item .faq-answer-inner {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.faq-item.is-open .faq-answer {
  max-height: 20rem;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-navy-soft);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}
