/*
Theme Name: Holina Healing
Description: Custom theme for Holina Healing Center, Khao Yai, Thailand
Version: 1.1.0
Author: QuantForge HQ
*/

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --orange:      #F7941D;
  --orange-mid:  #FFAC3C;
  --orange-pale: #FFEABE;
  --orange-tint: #FFF9EE;
  --cream:       #F7F1E8;
  --cream-deep:  #EEE4D4;
  --text:        #1A160E;
  --text-mid:    #625442;
  --text-light:  #9E8E76;
  --divider:     #E4D8C8;
  --footer-bg:   #0A0A0A;
  --info-bg:     #F0E8DB;
  --white:       #FFFFFF;
  --warm-white:  #FCFAF5;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

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

/* ── INFO BAR ──────────────────────────────────────────── */
.info-bar {
  background: var(--info-bg);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  font-size: 11.5px;
  border-bottom: 1px solid var(--cream-deep);
}
.info-bar__left {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text-mid);
}
.info-bar__left span { padding: 0 16px; }
.info-bar__left span:first-child { padding-left: 0; }
.info-bar__left .info-bar__sep {
  width: 1px; height: 14px;
  background: var(--divider);
  display: inline-block;
  padding: 0;
  flex-shrink: 0;
}
.info-bar__right {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 11.5px;
}
.info-bar__phone { color: var(--text-mid); padding: 0 16px; font-weight: 500; }
.info-bar__phone:first-child { padding-left: 0; }
.info-bar__divider { width: 1px; height: 14px; background: var(--divider); }

/* ── NAV ───────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--divider);
}
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-nav__logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.site-nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.site-nav__wordmark .wm-top {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: #121820;
  letter-spacing: 0.05em;
}
.site-nav__wordmark .wm-bot {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.site-nav__links > li {
  display: flex;
  align-items: center;
}
.site-nav__links a {
  cursor: pointer;
  font-size: 14px;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.site-nav__links a:hover { color: var(--text); }
.site-nav__links li.active a {
  color: var(--text);
}
.site-nav__links li.active a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.site-nav__cta {
  background: var(--orange);
  color: white;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s;
}
.site-nav__cta:hover { background: #e08510; color: white; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: 0.2s;
  text-align: center;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: #e08510; color: white; }
.btn-outline { background: transparent; color: var(--text-mid); border: 1px solid var(--text-mid); }
.btn-outline:hover { border-color: var(--text); color: var(--text); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.45); }
.btn-outline-light:hover { border-color: white; color: white; }
.btn-ghost { background: var(--cream-deep); color: var(--text-mid); }
.btn-ghost:hover { background: var(--divider); }

/* ── SECTION LABEL ─────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16,10,4,0.38);
}
.hero__content {
  position: absolute;
  bottom: 110px;
  left: 100px;
  max-width: 700px;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215,200,172,0.9);
  margin-bottom: 30px;
}
.hero__title {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 600;
  line-height: 1.04;
  color: white;
  margin-bottom: 10px;
}
.hero__title .accent { color: var(--orange); }
.hero__sub {
  font-size: 15px;
  color: rgba(225,215,196,0.9);
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 48px;
}
.hero__actions { display: flex; gap: 20px; align-items: center; }
.hero__video-badge {
  position: absolute;
  bottom: 26px;
  right: 80px;
  background: rgba(12,8,2,0.78);
  padding: 10px 18px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__video-badge .play-wrap {
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__video-badge .play-wrap::after {
  content: '';
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent white;
  margin-left: 2px;
}
.hero__video-badge .badge-text { font-size: 12px; line-height: 1.55; color: rgba(228,216,194,0.9); }

/* ── ABOUT ─────────────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  border-top: 1px solid var(--divider);
}
.about-section__text {
  padding: 88px 80px 72px 100px;
}
.about-h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 8px;
}
.about-h2 {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--orange);
  margin-bottom: 44px;
}
.about-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.about-section__photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.about-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── WHO WE SERVE ──────────────────────────────────────── */
.who-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--cream);
  border-top: 1px solid var(--cream-deep);
}
.who-section__photo-wrap {
  position: relative;
  overflow: hidden;
}
.who-section__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.who-section__content {
  padding: 80px 72px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.who-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 36px;
}
.who-title .accent { color: var(--orange); }
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-bottom: 44px;
}
.condition-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-deep);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-mid);
}
.condition-item::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.who-closing {
  padding-top: 28px;
  border-top: 1px solid var(--cream-deep);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 44px;
}
.who-actions { display: flex; gap: 20px; align-items: center; }

/* ── PROGRAMS ──────────────────────────────────────────── */
.programs-section {
  background: var(--orange-tint);
  border-top: 1px solid var(--orange-pale);
  padding: 88px 180px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-top: 56px;
}
.program-card {
  background: white;
  border-radius: 10px;
  padding: 40px 36px 36px;
  position: relative;
  border-top: 5px solid var(--cream-deep);
}
.program-card.featured { border-top-color: var(--orange); }
.program-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.program-card__badge.pop { background: var(--orange); color: white; }
.program-card__badge.app { background: var(--cream-deep); color: var(--text-mid); }
.program-card__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}
.program-card hr { border: none; border-top: 1px solid var(--divider); margin: 20px 0; }
.program-card__price {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--orange);
  margin-bottom: 6px;
}
.program-card__price.enquiry { color: var(--text); }
.program-card__note { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.program-card p { font-size: 15px; color: var(--text-mid); line-height: 1.72; }
.program-card .btn { width: 100%; margin-top: 28px; display: block; }
.programs-footnote { font-size: 15px; color: var(--text-light); margin-top: 20px; }
.program-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.program-card__tag.pop { background: var(--orange); color: white; }
.program-card__tag.app { background: var(--cream-deep); color: var(--text-mid); }
.program-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
}
.program-card__includes li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.program-card__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

/* ── SETTING ───────────────────────────────────────────── */
.setting-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 92px 180px;
  border-top: 1px solid var(--divider);
}
.setting-section__text { order: 1; }
.setting-section__title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 32px;
}
.setting-section__title .accent { color: var(--orange); }
.setting-section__body p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.setting-section__photos {
  order: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  height: 620px;
  position: relative;
}
.setting-section__photos::before {
  content: '';
  position: absolute;
  left: -8px; top: 0;
  width: 3px; height: 100%;
  background: var(--orange);
}
.setting-section__photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.setting-section__photos .right-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

/* ── ACCOMMODATIONS ────────────────────────────────────── */
.accom-section {
  background: var(--cream);
  border-top: 1px solid var(--cream-deep);
  padding: 88px 180px;
}
.accom-layout {
  display: grid;
  grid-template-columns: 820px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.accom-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}
.accom-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-deep);
}
.accom-amenities { display: flex; flex-direction: column; gap: 18px; }
.amenity-item { display: flex; gap: 14px; align-items: flex-start; }
.amenity-dash {
  width: 18px; height: 2px;
  background: var(--orange);
  margin-top: 10px;
  flex-shrink: 0;
}
.amenity-title { font-size: 15px; font-weight: 500; color: var(--text); }
.amenity-sub { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section {
  border-top: 1px solid var(--divider);
  padding: 90px 180px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 32px 28px;
  border-left: 4px solid var(--orange);
}
.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}
.testimonial-stars i {
  display: block;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 22px;
}
.testimonial-name { font-size: 14px; font-weight: 500; color: var(--text); }
.testimonial-attr { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ── CTA SECTION ───────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 90px 180px;
  background: var(--orange-tint);
  border-top: 1px solid var(--orange-pale);
}
.cta-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 32px;
}
.cta-title .accent { color: var(--orange); }
.cta-sub { font-size: 15px; color: var(--text-mid); margin-bottom: 48px; }
.cta-contacts {
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 2;
}

/* ── FOOTER ────────────────────────────────────────────── */
/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: #0D1A14;
  border-top: 3px solid var(--orange);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 64px 180px 56px;
  align-items: start;
}
/* Brand column */
.site-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.site-footer__logo-wrap img { width: 44px; height: 44px; object-fit: contain; }
.site-footer__wordmark { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.site-footer__wordmark .wm-top { font-size: 13px; font-weight: 500; color: #D2C3A8; letter-spacing: 0.05em; }
.site-footer__wordmark .wm-bot { font-size: 13px; font-weight: 500; color: var(--orange); letter-spacing: 0.05em; }
.site-footer__tagline {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.site-footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #A89880;
  line-height: 1.55;
}
.site-footer__contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
  opacity: 0.8;
}
/* Nav/link columns */
.site-footer__col-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.site-footer__links { list-style: none; }
.site-footer__links li { margin-bottom: 10px; }
.site-footer__links a { font-size: 13px; color: #A89880; transition: color 0.2s; }
.site-footer__links a:hover { color: white; }
/* Stay connected */
.site-footer__col-desc { font-size: 13px; color: #A89880; line-height: 1.7; margin-bottom: 18px; }
.ft-email-form { display: flex; gap: 0; margin-bottom: 24px; }
.ft-email-form input {
  flex: 1;
  background: #162010;
  border: 1px solid #2E3D28;
  border-right: none;
  border-radius: 3px 0 0 3px;
  padding: 11px 14px;
  font-size: 13px;
  color: #C3B49B;
  outline: none;
  font-family: var(--sans);
}
.ft-email-form input::placeholder { color: #4A5E3F; }
.ft-email-form button {
  background: var(--orange);
  border: none;
  border-radius: 0 3px 3px 0;
  width: 44px;
  cursor: pointer;
  color: white;
  font-size: 18px;
  transition: background 0.2s;
}
.ft-email-form button:hover { background: #e08510; }
.ft-socials { display: flex; gap: 10px; }
.ft-socials a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #2E3D28;
  border-radius: 50%;
  color: #A89880;
  transition: 0.2s;
  flex-shrink: 0;
}
.ft-socials a:hover { border-color: var(--orange); color: var(--orange); }
.site-footer__bottom {
  border-top: 1px solid #1A2A18;
  padding: 16px 180px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #4A5038;
}
.site-footer__bottom a { color: #4A5038; transition: color 0.2s; }
.site-footer__bottom a:hover { color: #A89880; }

/* ── PAGE HERO (internal) ──────────────────────────────── */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
  padding: 48px 180px 64px;
}
.breadcrumb {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 28px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--orange); }
.page-hero__title {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}
.page-hero__title .accent { color: var(--orange); }
.page-hero__sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.78;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .info-bar { padding: 0 24px; font-size: 11px; }
  .info-bar__left span:not(:first-child) { display: none; }
  .info-bar__left .info-sep { display: none; }
  .info-bar__right .info-bar__phone:last-child { display: none; }
  .info-bar__right .info-bar__divider { display: none; }
  .site-nav { padding: 0 24px; }
  .site-nav__links,
  .site-nav__cta { display: none; }
  .site-nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 126px; left: 0; right: 0;
    background: white;
    padding: 20px 24px;
    border-bottom: 1px solid var(--divider);
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-toggle { display: flex; }
  .hero { height: 580px; }
  .hero__title { font-size: 40px; }
  .hero__content { left: 24px; right: 24px; bottom: 80px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__video-badge { display: none; }
  .about-section { grid-template-columns: 1fr; }
  .about-section__photo { min-height: 280px; }
  .about-section__text { padding: 56px 24px; }
  .who-section { grid-template-columns: 1fr; }
  .who-section__photo-wrap { height: 280px; margin: 24px 24px 0; padding: 0; }
  .who-section__content { padding: 40px 24px 56px; }
  .conditions-grid { grid-template-columns: 1fr; }
  .programs-section { padding: 56px 24px; }
  .programs-grid { grid-template-columns: 1fr; }
  .setting-section { grid-template-columns: 1fr; padding: 56px 24px; }
  .setting-section__photos { height: 300px; grid-template-columns: 1fr; }
  .setting-section__photos .right-col { display: none; }
  .accom-section { padding: 56px 24px; }
  .accom-layout { grid-template-columns: 1fr; }
  .testimonials-section { padding: 56px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 56px 24px; }
  .site-footer__inner { grid-template-columns: 1fr; padding: 40px 24px; }
  .site-footer__bottom { padding: 14px 24px; flex-direction: column; gap: 8px; }
  .page-hero { padding: 36px 24px 48px; }
  .page-hero__title { font-size: 36px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .who-title { font-size: 34px; }
  .cta-title { font-size: 30px; }
}

/* ═══════════════════════════════════════════════════════
   INTERNAL PAGE SHARED STYLES
   ═══════════════════════════════════════════════════════ */

/* ── Photo hero (internal pages) ─────────────────────── */
.page-hero--photo {
  position: relative;
  height: 460px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16,10,4,0.48);
}
.page-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 100px;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-top: 16px;
}
.page-hero__title .accent { color: var(--orange); }

/* ── Breadcrumb bar ──────────────────────────────────── */
.breadcrumb-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
  height: 48px;
  display: flex;
  align-items: center;
}
.bc-inner {
  padding: 0 180px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.bc-inner a { color: var(--text-light); }
.bc-inner a:hover { color: var(--text); }
.bc-sep { opacity: 0.5; }
.bc-current { color: var(--text); }

/* ── Section wrappers ────────────────────────────────── */
.content-section {
  padding: 88px 180px 80px;
  border-top: 1px solid var(--divider);
}
.content-section.bg-cream {
  background: var(--cream);
  border-top-color: var(--cream-deep);
}
.content-section.bg-white { background: white; }
.content-section.bg-tint {
  background: var(--orange-tint);
  border-top-color: var(--orange-pale);
}

/* ── Section header (label + h2) ─────────────────────── */
.section-header {
  margin-bottom: 56px;
}
.h2b {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-top: 8px;
}
.h2b .accent { color: var(--orange); }

/* ── Split intro layout ──────────────────────────────── */
.split-intro {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}
.split-intro__left { padding-top: 4px; }
.split-intro__right p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.split-intro__right p:last-child { margin-bottom: 0; }

/* ── Origin photo ────────────────────────────────────── */
.origin-photo-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin: 0 -100px -80px;
}
.origin-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.origin-photo-fade { display: none; }

/* ── Pillars grid ────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.pillar-card {
  padding-left: 24px;
  border-left: 3px solid var(--orange);
}
.pillar-card__bar { display: none; }
.pillar-card__title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}
.pillar-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.78;
}

/* ── Team grid ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.team-card {
  background: var(--warm-white);
  border-radius: 8px;
  overflow: hidden;
}
.team-card__photo {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.team-card__photo-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--orange);
}
.team-card__body {
  padding: 20px 20px 28px;
}
.team-card__role {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}
.card-divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin-bottom: 14px;
}
.team-card__bio {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ── Accreditation bar ───────────────────────────────── */
.accred-bar {
  background: var(--cream);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-light);
  flex-wrap: wrap;
  padding: 0 40px;
}
.accred-bar .dot { opacity: 0.4; }

/* ── CTA section (shared) ────────────────────────────── */
.cta-section {
  background: var(--orange-tint);
  border-top: 1px solid var(--orange-pale);
  text-align: center;
  padding: 90px 180px 100px;
}
.cta-section .cta-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 0;
}
.cta-section .cta-title .accent { color: var(--orange); }
.cta-section .cta-sub {
  font-size: 15px;
  color: var(--text-mid);
  text-align: center;
  max-width: 520px;
  margin: 24px auto 36px;
}
.cta-section .cta-contacts {
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 2.2;
}

/* ── Elementor Popup Override ─────────────────────────── */
.dialog-widget-content {
  border-radius: 8px !important;
  overflow: hidden !important;
  font-family: var(--sans) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18) !important;
}
/* Hide ugly Gravity Forms default title */
.dialog-widget-content .gform_title,
.dialog-widget-content h3.gform_title {
  display: none !important;
}
/* Restyle the popup image/header area */
.dialog-widget-content .elementor-widget-image {
  margin: 0 !important;
}
/* Form wrapper */
.dialog-widget-content .gform_wrapper {
  padding: 32px 40px 40px !important;
  background: white !important;
}
.dialog-widget-content .gform_body {
  margin-bottom: 0 !important;
}
/* Add a heading above form */
.dialog-widget-content .gform_wrapper::before {
  content: 'Request a Confidential Call';
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.dialog-widget-content .gform_wrapper::after {
  content: 'Our team will call you back within a few hours.';
  display: block;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}
/* Form fields */
.dialog-widget-content .gfield input,
.dialog-widget-content .gfield select,
.dialog-widget-content .gfield textarea {
  border: 1px solid var(--divider) !important;
  border-radius: 4px !important;
  padding: 12px 16px !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  color: var(--text) !important;
  background: var(--warm-white) !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
}
.dialog-widget-content .gfield input:focus,
.dialog-widget-content .gfield select:focus {
  border-color: var(--orange) !important;
  outline: none !important;
  background: white !important;
}
.dialog-widget-content .gfield_label {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--text-light) !important;
  margin-bottom: 6px !important;
}
/* Submit button — override Elementor blue */
.dialog-widget-content .gform_footer input[type="submit"],
.dialog-widget-content .gform_page_footer input[type="submit"] {
  background: var(--orange) !important;
  color: white !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 14px 32px !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.2s !important;
}
.dialog-widget-content .gform_footer input[type="submit"]:hover {
  background: #d97f10 !important;
}
/* Close button */
.dialog-close-button {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  width: 36px !important;
  height: 36px !important;
  color: white !important;
  font-size: 22px !important;
  opacity: 0.85 !important;
  top: 12px !important;
  right: 12px !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6) !important;
}

/* ── Responsive (internal pages) ─────────────────────── */
@media (max-width: 900px) {
  .content-section { padding: 56px 24px; }
  .page-hero__content { padding: 0 24px; }
  .page-hero__title { font-size: 40px; }
  .bc-inner { padding: 0 24px; }
  .split-intro { grid-template-columns: 1fr; gap: 32px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .origin-photo-wrap { margin: 0 -24px -56px; }
  .cta-section { padding: 56px 24px; }
  .cta-section .cta-title { font-size: 32px; }
  .h2b { font-size: 34px; }
  .accred-bar { height: auto; padding: 16px 24px; gap: 12px; font-size: 12px; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .page-hero--photo { height: 340px; }
}

/* ── NAV DROPDOWNS ─────────────────────────────────────── */
.nav-item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item--dropdown > .nav-parent {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-caret {
  display: block;
  color: var(--text-light);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 2px;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  padding-top: 16px;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 8px;
  min-width: 230px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  z-index: 500;
  padding: 8px 0;
}
.nav-item--dropdown:hover > .nav-dropdown,
.nav-item--dropdown.open > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-mid);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
}
.nav-dropdown li a:hover {
  color: var(--orange);
  background: var(--cream);
}
.nav-dropdown__all {
  color: var(--orange) !important;
  font-weight: 500;
  border-top: 1px solid var(--divider) !important;
  margin-top: 4px;
}
.nav-dropdown__all:hover {
  background: var(--cream);
}

/* ── NAV DROPDOWN MOBILE ───────────────────────────────── */
@media (max-width: 960px) {
  .nav-item--dropdown > .nav-parent { justify-content: space-between; width: 100%; }
  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--orange);
    border-radius: 0;
    background: transparent;
    display: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
    margin-top: 4px;
  }
  .nav-item--dropdown.open > .nav-dropdown { display: block; }
  .nav-dropdown li a { padding: 8px 0; font-size: 14px; white-space: normal; }
  .nav-dropdown__all { border-top: none !important; margin-top: 0; }
}

/* ============================================================
   POPUP ENQUIRY FORM — Brand overrides for GF inside Elementor
   ============================================================ */
.elementor-popup-modal .eicon-close,
.elementor-popup-modal .dialog-close-button {
  top: 12px !important;
  right: 12px !important;
}
/* Remove default GF wrapper margin/padding */
.elementor-popup-modal .gform_wrapper,
.elementor-popup-modal .gform_wrapper.gravity-theme {
  margin: 0 !important;
}
/* Field rows */
.elementor-popup-modal .gfield {
  padding: 10px 36px !important;
  margin-bottom: 0 !important;
}
/* Labels */
.elementor-popup-modal .gfield_label {
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--text-light) !important;
  margin-bottom: 4px !important;
}
/* Hide GF required star */
.elementor-popup-modal .gfield_required { display: none !important; }
/* Input fields */
.elementor-popup-modal .ginput_container input[type=text],
.elementor-popup-modal .ginput_container input[type=email],
.elementor-popup-modal .ginput_container input[type=tel],
.elementor-popup-modal .ginput_container .name_first input,
.elementor-popup-modal .ginput_container .name_last input {
  border: none !important;
  border-bottom: 1px solid #DDD8D0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 8px 0 !important;
  font-size: 15px !important;
  font-family: var(--sans) !important;
  color: var(--text) !important;
  width: 100% !important;
  background: transparent !important;
  outline: none !important;
}
.elementor-popup-modal .ginput_container input:focus {
  border-bottom-color: var(--orange) !important;
}
/* Name field — hide sub-labels, show as single line */
.elementor-popup-modal .ginput_complex .ginput_full { width: 100% !important; }
.elementor-popup-modal .ginput_complex .gf_left_half,
.elementor-popup-modal .ginput_complex .gf_right_half { width: 100% !important; }
.elementor-popup-modal .ginput_complex .name_last { display: none !important; }
.elementor-popup-modal .ginput_complex span label { display: none !important; }
/* Validation */
.elementor-popup-modal .gfield_error input {
  border-bottom-color: #C0392B !important;
}
.elementor-popup-modal .validation_message {
  font-size: 11px !important;
  color: #C0392B !important;
  padding: 2px 0 0 !important;
}
/* Submit button */
.elementor-popup-modal .gform_footer {
  padding: 20px 36px 32px !important;
  margin: 0 !important;
}
.elementor-popup-modal .gform_button {
  background: var(--orange) !important;
  color: white !important;
  border: none !important;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  width: 100% !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: background 0.2s !important;
}
.elementor-popup-modal .gform_button:hover {
  background: #a87838 !important;
}
/* Success message */
.elementor-popup-modal .gform_confirmation_message {
  font-family: var(--sans) !important;
  font-size: 15px !important;
  color: var(--text-mid) !important;
  padding: 24px 36px !important;
  text-align: center !important;
}
