/*
Theme Name: Kiyomi Concierge
Theme URI: https://kiyomiconcierge.jp
Author: Shoki
Author URI: https://kiyomiconcierge.jp
Description: A custom theme for Kiyomi Concierge Japan.
Version: 1.0.0
Text Domain: kiyomiconcierge
*/

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

:root {
  --ink: #18160f;
  --gold: #9d7e45;
  --gold-l: #c4a96b;
  --stone: #78726a;
  --sand: #ede8e0;
  --cream: #f7f4ef;
  --white: #fdfcfa;
  --rule: rgba(157, 126, 69, 0.18);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── PAGE TABS (dev nav) ───────────────────────────── */
.dev-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  gap: 2px;
  background: rgba(24, 22, 15, 0.92);
  padding: 10px;
  border-top: 1px solid rgba(157, 126, 69, 0.2);
}
.dev-tab {
  padding: 8px 20px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.4);
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 400;
  border: 1px solid transparent;
}
.dev-tab:hover {
  color: var(--gold-l);
}
.dev-tab.active {
  color: var(--gold-l);
  border-color: rgba(157, 126, 69, 0.3);
}

/* .page { display: none; } */
/* .page.active { display: block; } */

/* ═══════════════════════════════════════════════════
   NAV — centred logo, links split either side (Image 1)
═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 52px;
  height: 78px;
  background: rgba(253, 252, 250, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(157, 126, 69, 0.12);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  transition: color 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-logo-block {
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.nav-logo-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}
.nav-logo-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════════════════ */
.page-wrapper {
  padding-top: 78px;
}

/* ═══════════════════════════════════════════════════
   HERO — centered, clean (Image 2 style)
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 22, 15, 0.28), rgba(24, 22, 15, 0.35)),
    url("./images/home-main.jpg") center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.3s forwards;
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  /* Sits above content but doesn't push text */
}
.hero-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.82;
}
.hero-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.55);
  display: block;
  margin-bottom: 20px;
}
.hero-rule {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(196, 169, 107, 0.6),
    transparent
  );
  margin: 0 auto 20px;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  display: block;
  margin-bottom: 6px;
}
.hero-title-japan {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.65);
  display: block;
  margin-bottom: 24px;
}
.hero-sub {
  font-family: "Jost", sans-serif;
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 300;
  color: rgba(253, 252, 250, 0.58);
  letter-spacing: 5px;
  display: block;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   STATEMENT — centered, larger text
═══════════════════════════════════════════════════ */
.statement {
  padding: 110px 80px;
  text-align: center;
  background: var(--white);
  max-width: 960px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}
.statement h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
}
.statement h2 em {
  font-style: italic;
  color: var(--gold);
}
.statement p {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.95;
  max-width: 620px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   EDITORIAL BLOCKS — centered text
═══════════════════════════════════════════════════ */
.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.editorial-block.flip {
  direction: rtl;
}
.editorial-block.flip > * {
  direction: ltr;
}

.edit-img {
  overflow: hidden;
  min-height: 460px;
}
.edit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 7s ease;
}
.editorial-block:hover .edit-img img {
  transform: scale(1.04);
}

.edit-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 72px 64px;
  background: var(--white);
}
.editorial-block.sand .edit-text {
  background: var(--sand);
}
.editorial-block.cream .edit-text {
  background: var(--cream);
}

.edit-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--ink);
  margin: 18px 0 20px;
}
.edit-text p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 380px;
}
.btn-text {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
  text-decoration: underline;
}
.btn-text:hover {
  gap: 16px;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════
   EXPERIENCE CATEGORIES — Austin "Our Services" style
   (Image 4 & 5: title centered above, 4 cards with
    image + label centered + bordered button below)
═══════════════════════════════════════════════════ */
.exp-section {
  padding: 100px 60px;
  background: var(--cream);
}
.exp-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.exp-section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
}

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

.exp-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2/3;
  background: var(--sand);
}
.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
  filter: brightness(0.72);
}
.exp-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.55);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  gap: 20px;
}
.exp-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.exp-card-btn {
  border: 1px solid var(--white);
  padding: 12px 28px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
  background: transparent;
  text-decoration: none;
}
.exp-card:hover .exp-card-btn {
  background: rgba(253, 252, 250, 0.15);
}

/* ═══════════════════════════════════════════════════
   WHY KIYOMI
═══════════════════════════════════════════════════ */
.why-section {
  padding: 100px 60px;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--ink);
  margin: 18px 0 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.why-card {
  background: var(--cream);
  padding: 48px 36px;
  text-align: center;
  border-top: 2px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.why-card:hover {
  border-top-color: var(--gold);
  background: var(--sand);
}
.why-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 18px;
  transition: color 0.3s;
}
.why-card:hover .why-num {
  color: var(--rule);
}
.why-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 14px;
}
.why-body {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS — centered text, updated copy
═══════════════════════════════════════════════════ */
.how-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--white);
}
.how-left {
  background: var(--sand);
  padding: 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.how-left h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin: 18px 0 20px;
}
.how-left p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 32px;
}
.how-price-note {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}
.how-steps {
  padding: 80px 64px;
}
.how-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.how-step:first-child {
  border-top: 1px solid var(--rule);
}
.how-step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-l);
  line-height: 1;
}
.how-step-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 8px;
}
.how-step-body {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════
   INTENTIONALLY LIMITED — Image 6 style
   Full-width photo, big serif centered text, white
   outlined button (no gold fill)
═══════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  /* Using an Unsplash natural/neutral tone as stand-in for the Google Drive image */
  background:
    linear-gradient(rgba(24, 22, 15, 0.38), rgba(24, 22, 15, 0.42)),
    url("./images/cta.jpg") center/cover;
}
.cta-band-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 860px;
}
.cta-band-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.cta-band-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(15px, 1.8vw, 20px);
  font-style: italic;
  font-weight: 300;
  color: rgba(253, 252, 250, 0.65);
  letter-spacing: 1px;
  margin-bottom: 44px;
}
/* Austin-style: white text + white outlined border button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9d7e45;
  text-decoration: none;
  padding: 16px 48px;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9d7e45;
  cursor: pointer;
  background: transparent;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.btn:hover {
  background: #9d7e45;
  border-color: #9d7e45;
  color: white;
}
.btn-consult {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253, 252, 250, 0.7);
  padding: 16px 48px;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  background: transparent;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.btn-consult:hover {
  background: rgba(253, 252, 250, 0.12);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════════
   FOOTER — minimal centered cream
═══════════════════════════════════════════════════ */
footer {
  background: var(--cream);
  padding: 72px 64px 48px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.footer-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: brightness(0.55) sepia(0.3) saturate(0.6);
  opacity: 0.6;
}
.footer-brand-name {
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 48px;
}
.footer-nav a {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 4px 10px;
  transition: color 0.25s;
  font-weight: 400;
}
.footer-nav a:hover {
  color: var(--gold);
  text-decoration: none;
}
.footer-dash {
  font-size: 10px;
  color: rgba(157, 126, 69, 0.3);
  padding: 0 2px;
}
.footer-bottom-line {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.footer-bottom-line p {
  font-size: 11px;
  color: var(--stone);
  opacity: 0.5;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════
   FOUNDER — centered, no photo
═══════════════════════════════════════════════════ */
.founder-centered {
  padding: 96px 64px;
  background: var(--white);
}
.founder-centered-inner {
  max-width: 720px;
  margin: 0 auto;
}
.founder-centered-inner .founder-para {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.95;
  margin-bottom: 20px;
  text-align: center;
}
.founder-centered-inner .founder-para strong {
  color: var(--ink);
  font-weight: 400;
}
.founder-centered-inner .founder-quote {
  margin: 36px 0;
  padding: 28px 36px;
  border-left: 2px solid var(--gold);
  background: var(--cream);
}
.founder-centered-inner .founder-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.7;
  text-align: left;
}
/* ═══════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 22, 15, 0.42), rgba(24, 22, 15, 0.58)),
    url("./images/about.jpg") center/cover;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}
.about-hero-content .eyebrow {
  color: var(--gold-l);
  margin-bottom: 18px;
}
.about-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(11px, 1.5vw, 16px);
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.75);
  margin-bottom: 14px;
}
.about-hero-rule {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(196, 169, 107, 0.55),
    transparent
  );
  margin: 0 auto 16px;
}
.about-hero-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(253, 252, 250, 0.62);
  letter-spacing: 1px;
  font-style: italic;
}

.founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.founder-img {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.founder-img-inner {
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1590086782957-93c06ef21604?w=900&q=85")
    center 20% / cover;
}
.founder-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  padding: 12px 18px;
  border-left: 2px solid var(--gold);
}
.founder-caption p {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
}
.founder-text {
  padding: 80px 64px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-text .eyebrow {
  margin-bottom: 18px;
}
.founder-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
}
.founder-role {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--stone);
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 400;
}
.founder-para {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 18px;
}
.founder-para strong {
  color: var(--ink);
  font-weight: 400;
}
.founder-quote {
  margin: 30px 0;
  padding: 26px 30px;
  border-left: 2px solid var(--gold);
  background: var(--cream);
}
.founder-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.65;
}

.mission-section {
  padding: 100px 64px;
  background: var(--cream);
}
.mission-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mission-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  margin: 18px 0 28px;
}
.mission-inner p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.95;
  margin-bottom: 18px;
}
.mission-statement {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  color: var(--gold);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.diff-section {
  padding: 100px 64px;
  background: var(--white);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.diff-card {
  background: var(--sand);
  padding: 52px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.diff-card:hover {
  border-top-color: var(--gold);
  background: var(--cream);
}
.diff-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 300;
  font-style: italic;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 14px;
}
.diff-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 12px;
}
.diff-body {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.85;
  max-width: 340px;
}

/* ═══════════════════════════════════════════════════
   EXPERIENCES PAGE
═══════════════════════════════════════════════════ */
.exp-hero {
  position: relative;
  height: 62vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.exp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 22, 15, 0.45), rgba(24, 22, 15, 0.6)),
    url("./images/experiences.jpg") center/cover;
}
.exp-hero-content {
  position: relative;
  z-index: 2;
}
.exp-hero-content .eyebrow {
  color: var(--gold-l);
  margin-bottom: 18px;
}
.exp-hero-rule {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(196, 169, 107, 0.55),
    transparent
  );
  margin: 0 auto 16px;
}
/* exp-hero text mirrors about-hero exactly */
.exp-hero-label {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(11px, 1.5vw, 16px);
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.75);
  margin-bottom: 14px;
  display: block;
}
.exp-hero-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(253, 252, 250, 0.62);
  letter-spacing: 1px;
  font-style: italic;
}

.beyond-section {
  padding: 90px 64px;
  background: var(--white);
  text-align: center;
}
.beyond-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  margin: 18px 0 22px;
}
.beyond-section p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.95;
  max-width: 660px;
  margin: 0 auto;
}

.exp-cat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--sand);
}
.exp-cat.flip {
  direction: rtl;
}
.exp-cat.flip > * {
  direction: ltr;
}
.exp-cat-img {
  position: relative;
  overflow: hidden;
}
.exp-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 7s ease;
  filter: brightness(0.88);
}
.exp-cat:hover .exp-cat-img img {
  transform: scale(1.04);
}
.exp-cat-big-num {
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  color: rgba(253, 252, 250, 0.15);
  line-height: 1;
}
.exp-cat-text {
  padding: 64px 60px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.exp-cat.alt .exp-cat-text {
  background: var(--cream);
}
.exp-cat-text .eyebrow {
  margin-bottom: 16px;
}
.exp-cat-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}
.exp-cat-body {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 10px;
  max-width: 380px;
}
.exp-cat-divider {
  width: 36px;
  height: 1px;
  background: var(--rule);
  margin: 24px auto;
}
.exp-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.exp-detail {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: var(--stone);
}
.exp-detail::before {
  content: "—";
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.personal-section {
  padding: 100px 64px;
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.personal-text {
  text-align: center;
}
.personal-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin: 18px 0 24px;
}
.personal-text p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 16px;
}
.personal-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.personal-img {
  overflow: hidden;
}
.personal-img:first-child {
  margin-top: 36px;
}
.personal-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════════════════
   INQUIRY PAGE placeholder
═══════════════════════════════════════════════════ */
.inquiry-placeholder {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 60px 40px;
  text-align: center;
  background: var(--white);
}
.inquiry-placeholder h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.inquiry-placeholder h2 em {
  font-style: italic;
  color: var(--gold);
}
.inquiry-placeholder p {
  font-size: 15px;
  color: var(--stone);
  max-width: 420px;
  line-height: 1.85;
}

/* ─── Shared hero logo (all pages) ──────────────────── */
.page-hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.page-hero-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.82;
}
/* ═══════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════════════ */
.faq-hero {
  position: relative;
  height: 62vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.faq-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 22, 15, 0.44), rgba(24, 22, 15, 0.6)),
    url("./images/faq.jpg") center/cover;
}
.faq-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.faq-hero-rule {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(196, 169, 107, 0.55),
    transparent
  );
  margin: 0 auto 16px;
}
.faq-hero-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(11px, 1.5vw, 16px);
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.75);
  display: block;
  margin-bottom: 14px;
}
.faq-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
}
.faq-hero h1 em {
  font-style: italic;
  color: var(--gold-l);
}
.faq-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 96px 52px 120px;
}
.faq-intro {
  text-align: center;
  margin-bottom: 72px;
}
.faq-intro p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 36px 0;
}
.faq-item:first-of-type {
  border-top: 1px solid var(--rule);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
}
.faq-q-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}
.faq-toggle {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
  margin-top: -2px;
  user-select: none;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.faq-a {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.95;
  max-width: 720px;
  margin-top: 20px;
  display: none;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-close {
  margin-top: 72px;
  text-align: center;
  padding-top: 52px;
  border-top: 1px solid var(--rule);
}
.faq-close p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   INQUIRY PAGE
═══════════════════════════════════════════════════ */
.inq-hero {
  position: relative;
  height: 56vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.inq-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(24, 22, 15, 0.46), rgba(24, 22, 15, 0.62)),
    url("./images/inquiry.jpg") center/cover;
}
.inq-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.inq-hero-rule {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(196, 169, 107, 0.55),
    transparent
  );
  margin: 0 auto 16px;
}
.inq-hero-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(11px, 1.5vw, 16px);
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.75);
  display: block;
  margin-bottom: 14px;
}
.inq-hero-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(253, 252, 250, 0.62);
  letter-spacing: 1px;
  font-style: italic;
}
.inq-body {
  display: grid;
  grid-template-columns: 380px 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 52px 120px;
  gap: 72px;
  align-items: start;
}
/* Left sidebar */
.inq-left {
  position: sticky;
  top: 96px;
}
.inq-left-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.inq-roe-note {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.inq-sig {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}
.inq-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
}
.inq-sig-text p {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
.inq-sig-text span {
  font-size: 13px;
  color: var(--stone);
}
.inq-steps-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.inq-step {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.inq-step:first-of-type {
  border-top: 1px solid var(--rule);
}
.inq-step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--gold);
  padding-top: 1px;
}
.inq-step h5 {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3px;
  letter-spacing: 0.3px;
}
.inq-step p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
}
.inq-scarcity {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--sand);
  border-left: 2px solid var(--gold);
}
.inq-scarcity p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}
.inq-scarcity strong {
  color: var(--ink);
  font-weight: 400;
}
/* Form */
.inq-form {
}
.form-section {
  margin-bottom: 42px;
}
.form-section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(120, 114, 106, 0.2);
  padding: 13px 16px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(157, 126, 69, 0.07);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(120, 114, 106, 0.4);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239D7E45' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.field textarea {
  resize: none;
  line-height: 1.7;
  min-height: 120px;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid rgba(120, 114, 106, 0.18);
  cursor: pointer;
  transition: border-color 0.2s;
}
.check-item:hover {
  border-color: var(--gold);
}
.check-item input[type="checkbox"] {
  width: 13px;
  height: 13px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.check-item span {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
}
.dur-group {
  display: flex;
  gap: 8px;
}
.dur-pill {
  flex: 1;
  padding: 13px 8px;
  background: var(--white);
  border: 1px solid rgba(120, 114, 106, 0.18);
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.dur-pill:hover,
.dur-pill.on {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(157, 126, 69, 0.04);
}
.submit-area {
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.submit-note {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 22px;
}
.btn-submit {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 17px 32px;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn-submit:hover {
  background: var(--gold);
}
.privacy-note {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--stone);
  opacity: 0.65;
}

/* CF7 Form Styling */
.wpcf7-form-control-wrap {
  display: contents;
}
.wpcf7-form-control {
  width: 100% !important;
  background: var(--white) !important;
  border: 1px solid rgba(120, 114, 106, 0.2) !important;
  padding: 13px 16px !important;
  font-family: "Jost", sans-serif !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: var(--ink) !important;
  outline: none !important;
  transition:
    border-color 0.25s,
    box-shadow 0.25s !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.wpcf7-form-control:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(157, 126, 69, 0.07) !important;
}
.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-tel::placeholder,
.wpcf7-textarea::placeholder {
  color: rgba(120, 114, 106, 0.4) !important;
}
.wpcf7-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239D7E45' stroke-width='1.2' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 38px !important;
  cursor: pointer !important;
}
.wpcf7-checkbox {
  accent-color: var(--gold) !important;
}
.wpcf7-submit {
  cursor: pointer !important;
}

/* CF7 Radio Button Styling (for Preferred Length of Stay) */
.wpcf7-form-control.wpcf7-radio {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100% !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(120, 114, 106, 0.18);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
  color: var(--stone);
  cursor: pointer;
  margin: 0 !important;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item:first-child {
  margin-top: 0 !important;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type="radio"] {
  display: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  margin: 0 !important;
  accent-color: var(--gold) !important;
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
  margin: 0 !important;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  width: 100%;
  text-align: left;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: inherit !important;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item:hover,
.wpcf7-form-control.wpcf7-radio
  .wpcf7-list-item
  input[type="radio"]:focus-visible
  + .wpcf7-list-item-label,
.wpcf7-form-control.wpcf7-radio
  .wpcf7-list-item
  input[type="radio"]:focus-visible
  + label {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(157, 126, 69, 0.04) !important;
}
.wpcf7-form-control.wpcf7-radio
  .wpcf7-list-item
  input[type="radio"]:checked
  + .wpcf7-list-item-label,
.wpcf7-form-control.wpcf7-radio
  .wpcf7-list-item
  input[type="radio"]:checked
  + label {
  border-width: 1px !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(157, 126, 69, 0.1) !important;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  display: block !important;
}

.wpcf7-list-item:has(input[type="radio"]:checked) {
  border-color: var(--gold);
  background: rgba(157, 126, 69, 0.04);
  color: var(--gold);
}

/* CF7 Checkbox Styling (for Experience Interests) */
.wpcf7-form-control.wpcf7-checkbox {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  width: auto !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  margin: 0 !important;
  background: var(--white);
  border: 1px solid rgba(120, 114, 106, 0.18);
  cursor: pointer;
  transition: border-color 0.2s;
}
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item:hover {
  border-color: var(--gold);
}
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
  width: 13px;
  height: 13px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
}

/* CF7 Textarea Styling */
.wpcf7-textarea {
  resize: none !important;
  line-height: 1.7 !important;
  min-height: 120px !important;
}

/* CF7 Submit Button */
.wpcf7-submit {
  width: 100% !important;
  background: var(--ink) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 17px 32px !important;
  font-family: "Jost", sans-serif !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  transition: background 0.25s !important;
}
.wpcf7-submit:hover {
  background: var(--gold) !important;
  cursor: pointer !important;
}

/* ═══════════════════════════════════════════════════
   TERMS OF USE / PRIVACY POLICY (Long-form)
═══════════════════════════════════════════════════ */
.is-page-content {
}

/* Legal section title (e.g. "Terms of Use") */
.is-page-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  color: var(--ink);
  margin: 36px 0 16px 0;
  letter-spacing: 0.2px;
}
.is-page-content ul {
  margin: 16px 0;
}
.is-page-content ul li {
  margin: 0.5em 0;
  list-style-position: inside;
}
.is-page-content p {
  line-height: 1.95;
  margin: 1em 0;
}

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVENESS
═══════════════════════════════════════════════════ */
.hamburger {
  display: none;
}
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  /* ── NAV & MOBILE MENU ── */
  .nav {
    padding: 0 20px;
    grid-template-columns: 1fr auto 1fr;
  }
  .nav-left, .nav-right {
    display: none !important;
  }
  
  .nav-logo-block {
    grid-column: 2;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    grid-column: 3;
    justify-self: end;
    padding: 0;
  }
  .hamburger span {
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: all 0.3s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    background: rgba(253, 252, 250, 0.98);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 899;
  }
  .mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .mobile-nav .nav-link {
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--ink);
  }
  body.no-scroll {
    overflow: hidden;
  }

  /* ── GLOBAL SPACING ── */
  .statement, .exp-section, .why-section, .how-left, .how-steps, 
  .cta-band-content, footer, .founder-centered, .founder-text, 
  .mission-section, .diff-section, .beyond-section, .exp-cat-text, 
  .personal-section, .inquiry-placeholder, .faq-body, .inq-body {
    padding: 60px 24px;
  }

  /* ── GRID CONVERSIONS ── */
  .editorial-block, .founder-split, .diff-grid, .exp-cat, .personal-section,
  .how-section, .inq-body {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  
  .exp-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  @media (max-width: 480px) {
    .exp-grid, .why-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ── FLIP OVERRIDES (Keep Image on Top) ── */
  .editorial-block.flip, .exp-cat.flip {
    direction: ltr;
  }
  .edit-img, .founder-img, .exp-cat-img, .personal-img {
    min-height: 300px;
  }

  /* ── TYPOGRAPHY TWEAKS ── */
  .hero-title {
    font-size: 36px;
    letter-spacing: 4px;
  }
  .statement h2 {
    font-size: 32px;
  }
  .faq-hero h1 {
    font-size: 40px;
  }
  .faq-q-text {
    font-size: 18px;
  }

  /* ── COMPONENT SPECIFIC FIXES ── */
  .personal-imgs {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .personal-img:first-child {
    margin-top: 0;
  }
  .how-left {
    padding: 60px 24px;
  }
  .how-step {
    grid-template-columns: 40px 1fr;
  }
  .inq-left {
    position: static;
  }
  .inq-body {
    gap: 40px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
  .footer-dash {
    display: none;
  }
}
