/* =========================================================
   Kerry M. Kearney — Luxury Travel Advisor
   style.css — Warm, cinematic, human-centered
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
  /* Palette — Slate Blue-Gray / Soft Gold / Silver Sage */
  --espresso:      #3A4A5C;   /* Slate Blue-Gray — header, footer, hero */
  --espresso-mid:  #2E3C4C;   /* Mid Slate */
  --walnut:        #4A5A6C;   /* Light Slate */
  --amber:         #C6A96B;   /* Soft Gold  — accent, buttons, icons */
  --amber-light:   #D4BA84;   /* Light Gold */
  --amber-pale:    #E8D4A8;   /* Pale Gold */
  --terra:         #B85C45;   /* Error red (unchanged role) */
  --terra-light:   #C87860;   /* Light error */
  --sage:          #879C9B;   /* Sage — featured sections */
  --ivory:         #F7F5F2;   /* Soft Ivory  — content, forms */
  --cream:         #E7E3DE;   /* Warm Greige — sections, breathing space */
  --cream-mid:     #DDD8D2;   /* Mid Greige */
  --warm-white:    #F7F5F2;   /* Soft Ivory  — page base */
  --text:          #2B2B2B;   /* Charcoal    — main text */
  --text-mid:      #5A5A5A;   /* Mid Charcoal */
  --text-light:    #8A8A8A;   /* Light Charcoal */
  --border:        #D5D0CA;   /* Greige border */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max-width:   1160px;
  --pad-section: 112px;
  --pad-x:       40px;

  /* Motion */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      0.22s;
  --t-mid:       0.38s;
  --t-slow:      0.65s;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--pad-section) 0; }
.section-warm { background: var(--sage); }

/* Approach section — landscape background with sage overlay */
#approach {
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}
#approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(135, 156, 155, 0.72);
  z-index: 0;
}
#approach .container {
  position: relative;
  z-index: 1;
}
.section-deep { background: var(--espresso); }

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Shared Typography ─────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: 'Ephesis', cursive;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--amber);
  margin-bottom: 4px;
  line-height: 1.2;
}
.eyebrow.light { color: var(--amber-light); }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 20px;
}
.display-title.light { color: var(--ivory); }

.section-intro {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 68px;
}
.section-header .section-intro { margin: 0 auto; }
.section-header::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--amber);
  margin: 28px auto 0;
}
.section-header.no-rule::after {
  content: none;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition:
    background var(--t-mid) var(--ease),
    color var(--t-mid) var(--ease),
    border-color var(--t-mid) var(--ease),
    box-shadow var(--t-mid) var(--ease),
    transform var(--t-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-amber {
  background: var(--amber);
  color: var(--espresso);
  border-color: var(--amber);
}
.btn-amber:hover, .btn-amber:focus-visible {
  background: var(--amber-light);
  border-color: var(--amber-light);
  box-shadow: 0 6px 24px rgba(198, 169, 107, 0.38);
}

.btn-outline-dark {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-outline-dark:hover, .btn-outline-dark:focus-visible {
  background: var(--espresso);
  color: var(--ivory);
}

.btn-outline-light {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  background: var(--amber);
  color: var(--espresso);
  border-color: var(--amber);
}

.btn-lg { padding: 18px 50px; font-size: 0.74rem; }


/* ════════════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: var(--espresso);
  box-shadow: 0 2px 40px rgba(58, 74, 92, 0.38);
  transition: box-shadow var(--t-mid) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 40px rgba(58, 74, 92, 0.55);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity var(--t-mid);
}
.nav-logo:hover { opacity: 0.8; }

/* Processed transparent gold stamp — allowed to bleed above/below nav */
.nav-logo-crop {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  overflow: visible;
  position: relative;
}
.nav-logo-crop img {
  display: block;
  width: 340px;
  max-width: none;
  height: auto;
  position: absolute;
  top: -85px;
  left: -85px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.75);
  transition: color var(--t-mid);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--amber); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--warm-white) !important;
  padding: 9px 16px;
  border: 2px solid var(--amber);
  font-size: 0.58rem !important;
  white-space: nowrap;
  transition: background var(--t-mid), border-color var(--t-mid) !important;
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--amber-light) !important;
  border-color: var(--amber-light) !important;
  color: var(--warm-white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 1px;
  transform-origin: center;
  transition: transform var(--t-mid) var(--ease), opacity var(--t-mid);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10%;        /* extra room for parallax */
  will-change: transform;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

/* Hero carousel crossfade */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }


/* Warm cinematic overlay: amber-tinted vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(58, 74, 92, 0.72) 0%,
      rgba(58, 74, 92, 0.42) 50%,
      rgba(58, 74, 92, 0.78) 100%
    );
}

/* Subtle warm grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 24px;
  max-width: 840px;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-pale);
  margin-bottom: 22px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 2px 20px rgba(0,0,0,0.7), 0 4px 40px rgba(0,0,0,0.5);
}

.hero-name {
  font-family: 'Bebas Neue', var(--font-display);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #EEF2F7;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 28px rgba(0,0,0,0.8), 0 8px 48px rgba(0,0,0,0.6);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  color: #EEF2F7;
  margin-bottom: 48px;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 28px rgba(0,0,0,0.8), 0 8px 48px rgba(0,0,0,0.6);
}
.hero-tagline em {
  font-style: italic;
  color: var(--amber-pale);
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 4px 28px rgba(0,0,0,0.8), 0 8px 48px rgba(0,0,0,0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(247, 242, 234, 0.45);
  transition: color var(--t-mid);
  animation: hero-bounce 2.4s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--amber-pale); }

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* Hero contact bar — solid footer strip pinned to bottom of hero */
.hero-contact-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--espresso);
  border-top: 1px solid rgba(198, 169, 107, 0.4);
}
.hero-contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 245, 242, 0.75);
  white-space: nowrap;
}
.hero-contact-item svg {
  opacity: 0.55;
  flex-shrink: 0;
}
.hero-contact-divider {
  width: 1px;
  height: 18px;
  background: rgba(198, 169, 107, 0.45);
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════
   ABOUT — split layout
   ════════════════════════════════════════════════════════ */
.about.section { padding: 0; }

.about-split {
  display: flex;
  min-height: 760px;
}

/* ── Left: ivory text panel ──────────────────────────── */
.about-left {
  flex: 1;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 40px 90px 60px;
}

.about-left-content {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.about-sage-quote {
  font-family: 'Ephesis', cursive;
  font-size: 2.4rem;
  color: var(--amber);
  text-align: left;
  line-height: 1.4;
  opacity: 0.9;
  position: absolute;
  bottom: 80px;
  left: 230px;
  width: 220px;
}

.about-script-eyebrow {
  font-family: 'Ephesis', cursive;
  font-size: 3.2rem;
  color: var(--amber);
  display: block;
  margin-bottom: 2px;
  line-height: 1.2;
}

.about-left-content .display-title {
  margin-top: 6px;
  margin-bottom: 22px;
}

.about-left-content p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.about-left-content strong {
  color: var(--espresso);
  font-weight: 500;
}

.about-left-content .btn { margin-top: 14px; }

/* ── Right: sage panel with circular photo ─────────── */
.about-right {
  flex: 0 0 38%;
  background: var(--sage);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.about-photo-circle {
  width: 340px;
  height: 620px;
  border-radius: 999px;         /* stadium / pill — both top and bottom arched */
  border: 10px solid #ffffff;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-left: -100px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
  background: transparent;
}

.about-photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}


/* ════════════════════════════════════════════════════════
   SECTION DIVIDER
   ════════════════════════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px 0;
  background: #ffffff;
}

.section-divider-line {
  display: block;
  width: 120px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

.section-divider-diamond {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--amber);
  transform: rotate(45deg);
  opacity: 0.8;
}


/* ════════════════════════════════════════════════════════
   APPROACH — HOW IT WORKS
   ════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.step {
  background: var(--ivory);
  padding: 52px 52px 56px;
  position: relative;
  transition: background var(--t-mid);
}
.step:hover { background: var(--warm-white); }

/* Amber top-border accent on hover */
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.step:hover::before { transform: scaleX(1); }

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(198, 169, 107, 0.28);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.step-body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
}


/* ════════════════════════════════════════════════════════
   EXPERIENCES
   ════════════════════════════════════════════════════════ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.exp-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(58, 74, 92, 0.14);
}

.exp-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.exp-card:hover .exp-img-wrap img { transform: scale(1.07); }

.exp-body {
  padding: 26px 28px 30px;
  background: var(--cream);
  flex: 1;
  border-top: 2px solid transparent;
  transition: border-color var(--t-mid);
}
.exp-card:hover .exp-body { border-color: var(--amber); }

.exp-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.exp-body p {
  font-size: 0.88rem;
  line-height: 1.82;
  color: var(--text-mid);
}


/* ════════════════════════════════════════════════════════
   MOMENTS — TESTIMONIALS
   ════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.review-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--t-mid), box-shadow var(--t-mid);
}
.review-card:hover {
  background: var(--cream);
  box-shadow: 0 4px 20px rgba(58, 74, 92, 0.1);
}

/* Opening quote mark */
.review-card::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--amber);
  opacity: 0.7;
  font-weight: 300;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: var(--espresso);
  flex: 1;
}

.quote-attribution {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: normal;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.quote-attribution cite {
  font-style: normal;
  color: var(--espresso-mid);
  letter-spacing: 0.08em;
}
.quote-attribution cite span {
  display: block;
  color: var(--amber);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════════════════════════ */
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  border: 1.5px solid rgba(198,169,107,0.55);
  padding: 56px 60px;
}

.newsletter-copy {
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.newsletter-row {
  display: flex;
  max-width: 500px;
  margin: 0 auto 14px;
}
.newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border: 1.5px solid var(--border);
  border-right: none;
  background: var(--ivory);
  font-size: 0.9rem;
  color: var(--espresso);
  outline: none;
  transition: border-color var(--t-mid), background var(--t-mid);
}
.newsletter-input:focus {
  border-color: var(--amber);
  background: var(--warm-white);
}
.newsletter-input::placeholder { color: var(--text-light); }
.newsletter-row .btn { border-radius: 0; flex-shrink: 0; }

.newsletter-fine {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}


/* ════════════════════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════════════════════ */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 9px;
}
.req { color: var(--amber); margin-left: 2px; }
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ivory); font-size: 0.7rem; }
.form-note { font-size: 0.82rem; color: var(--ivory); font-style: italic; margin-bottom: 28px; }
.linkedin-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--espresso-mid); text-decoration: none; opacity: 0.75; transition: opacity var(--t-fast); }
.linkedin-link:hover { opacity: 1; }
.linkedin-link--light { color: var(--ivory); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  background: var(--ivory);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--t-mid), background var(--t-mid), box-shadow var(--t-mid);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(198, 169, 107, 0.18);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Error state */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--terra);
  background: #f8f2f2;
}
.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
  box-shadow: 0 0 0 3px rgba(184, 92, 69, 0.14);
}
.field-error {
  font-size: 0.72rem;
  color: var(--terra);
  margin-top: 6px;
  min-height: 18px;
}

.form-submit { text-align: center; margin-top: 14px; }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--warm-white);
  border: 1.5px solid var(--amber);
  border-left: 4px solid var(--amber);
  padding: 22px 28px;
  margin-top: 28px;
}
.form-success svg { flex-shrink: 0; color: var(--amber); margin-top: 2px; }
.form-success p { font-size: 1rem; line-height: 1.65; color: var(--espresso); font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }


/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--espresso);
  padding: 64px 0 36px;
  border-top: 1px solid rgba(198,169,107,0.35);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-logo-crop {
  display: flex;
  align-items: center;
}
.footer-logo-crop img {
  display: block;
  height: 160px;
  width: auto;
}
.footer-virtuoso {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(198, 169, 107, 0.4);
  align-self: center;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}
.footer-social a {
  color: rgba(247, 245, 242, 0.45);
  transition: color var(--t-mid), transform var(--t-fast);
  display: flex;
}
.footer-social a:hover {
  color: var(--amber-light);
  transform: translateY(-2px);
}

.footer-saying {
  text-align: center;
  padding-bottom: 20px;
}
.footer-saying span {
  font-family: 'Ephesis', cursive;
  font-size: 2.6rem;
  color: var(--amber);
  opacity: 0.85;
  line-height: 1.2;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 245, 242, 0.1);
  padding-top: 28px;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(247, 245, 242, 0.3);
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad-section: 88px; }

  /* About — tablet */
  .about-split { min-height: 600px; }
  .about-left { padding: 70px 220px 70px 40px; }
  .about-right { flex: 0 0 40%; }
  .about-photo-circle { width: 310px; height: 490px; margin-left: -155px; }

  .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }

  .steps-grid { gap: 4px; }
  .step { padding: 40px 40px 44px; }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad-section: 72px; --pad-x: 24px; }

  /* Nav */
  .nav-inner { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 110px 0 0 0;
    background: var(--espresso);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
    align-items: stretch;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(247,245,242,0.1); }
  .nav-links a { display: block; padding: 16px 28px; font-size: 0.76rem; }
  .nav-cta { margin: 16px 28px 0 !important; text-align: center; display: block; }

  /* About — mobile stacked */
  .about-split { flex-direction: column; min-height: unset; }
  .about-left { padding: 64px 32px; }
  .about-left-content { max-width: 100%; }
  .about-right { min-height: 340px; justify-content: center; padding: 60px 32px; }
  .about-left { padding: 60px 32px; }
  .about-right { flex: 1; justify-content: center; min-height: 420px; }
  .about-photo-circle { width: 280px; height: 390px; margin-left: 0; }

  /* Approach */
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 36px 28px 40px; }

  /* Experiences */
  .exp-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Testimonials */
  .testimonials-track { min-height: 340px; }

  /* Newsletter */
  .newsletter-row { flex-direction: column; gap: 12px; }
  .newsletter-input { border-right: 1.5px solid var(--border); width: 100%; }
  .newsletter-input:focus { border-color: var(--amber); }
  .newsletter-row .btn { width: 100%; text-align: center; padding: 15px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-virtuoso { align-self: center; }
  .footer-social { padding-top: 0; }
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-tagline { font-size: 1.15rem; }
  .btn-lg { width: 100%; text-align: center; padding: 16px 28px; }
  .section-header::after { display: none; }
  .step { padding: 28px 22px 32px; }
}


/* ════════════════════════════════════════════════════════
   PRINT
   ════════════════════════════════════════════════════════ */
@media print {
  .site-header, .hero-scroll, .nav-toggle,
  .newsletter, .contact { display: none; }
  .hero { height: auto; min-height: 0; padding: 40px 0; }
  .hero-overlay { opacity: 0.15; }
  .reveal { opacity: 1; transform: none; }
}


/* ════════════════════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════════════════════ */

/* Nav active state */
.nav-links a.active {
  color: var(--amber);
}

/* Services Hero */
.services-hero { position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.services-hero-bg { position: absolute; inset: 0; }
.services-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: brightness(1.15) saturate(0.85); }
.services-hero-overlay { position: absolute; inset: 0; background: rgba(15,42,68,0.45); }
.services-hero-content { position: relative; z-index: 2; text-align: center; padding: 60px 24px; max-width: 800px; margin-top: 80px; }
.services-hero-content .eyebrow { text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 2px 20px rgba(0,0,0,0.7); }
.services-hero-content h1 { text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.services-hero-sub { text-shadow: 0 1px 10px rgba(0,0,0,0.9), 0 2px 24px rgba(0,0,0,0.75); }
.services-hero-sub { font-family: var(--font-body); font-size: 1.05rem; color: rgba(247,245,242,0.85); margin-top: 18px; line-height: 1.8; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Services intro */
.services-intro-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.services-intro-inner p { font-size: 1.02rem; line-height: 1.9; color: var(--text-mid); margin-bottom: 20px; }
.services-intro-inner strong { color: var(--espresso); font-weight: 500; }
.services-intro-inner .btn { margin-top: 12px; }

/* Service card grid — Option B */
.svc-grid-section { background: var(--ivory); padding: 60px 0 80px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1280px; margin: 0 auto; padding: 0 48px; align-items: start; }
.svc-card { background: #fff; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.13); }
.svc-card-body { order: 1; padding: 28px 28px 24px; border-bottom: 2px solid var(--amber); min-height: 260px; }
.svc-card-body .eyebrow { font-family: 'Ephesis', cursive; font-size: 1.8rem; letter-spacing: 0; text-transform: none; margin-bottom: 4px; line-height: 1.2; }
.svc-card-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--espresso); margin: 0 0 10px; line-height: 1.25; }
.svc-card-body p { font-family: var(--font-body); font-size: 0.88rem; line-height: 1.8; color: var(--text-mid); }
.svc-card-photo { order: 2; flex: 0 0 240px; overflow: hidden; }
.svc-card-photo img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.svc-card:hover .svc-card-photo img { transform: scale(1.05); }

/* Service banners — full-width cinematic strips */
.svc-banner { position: relative; width: 100%; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; }
.svc-banner-bg { position: absolute; inset: 0; z-index: 0; }
.svc-banner-bg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.svc-banner:hover .svc-banner-bg img { transform: scale(1.03); }

/* gradient from left by default */
.svc-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(10,28,50,0.88) 0%, rgba(10,28,50,0.55) 50%, rgba(10,28,50,0.05) 100%);
}
/* gradient from right for alternating banners */
.svc-banner-overlay-right {
  background: linear-gradient(to left, rgba(10,28,50,0.88) 0%, rgba(10,28,50,0.55) 50%, rgba(10,28,50,0.05) 100%);
}

.svc-banner-body { position: relative; z-index: 2; padding: 64px 80px; max-width: 560px; }
.svc-banner-right .svc-banner-body { margin-left: auto; text-align: right; }
.svc-banner-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: var(--ivory); margin: 6px 0 16px; line-height: 1.2; }
.svc-banner-text { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.85; color: rgba(247,245,242,0.82); }
.svc-banner .eyebrow { color: var(--amber); }

/* Process steps */
.services-process .section-header { margin-bottom: 64px; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.process-step { background: rgba(255,255,255,0.05); padding: 48px 52px; }
.process-step:hover { background: rgba(255,255,255,0.09); }
.process-num { font-family: var(--font-display); font-size: 5rem; color: var(--amber); opacity: 0.35; line-height: 1; margin-bottom: 12px; font-weight: 300; }
.process-step h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--ivory); margin-bottom: 14px; }
.process-step p { font-size: 0.95rem; line-height: 1.85; color: rgba(247,245,242,0.72); }

/* Virtuoso section */
#virtuoso-section { position: relative; }
#virtuoso-section::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; z-index: 0; }
#virtuoso-section::after { content: ''; position: absolute; inset: 0; background: rgba(135,156,155,0.78); z-index: 1; }
#virtuoso-section .container { position: relative; z-index: 2; }
.virtuoso-perks-list { list-style: none; padding: 0; margin: 20px auto 0; max-width: 480px; text-align: left; display: inline-block; }
.virtuoso-perks-list li { font-family: var(--font-body); font-size: 0.95rem; color: rgba(247,245,242,0.88); padding: 8px 0 8px 28px; position: relative; line-height: 1.5; border-bottom: 1px solid rgba(255,255,255,0.12); }
.virtuoso-perks-list li::before { content: '→'; position: absolute; left: 0; color: var(--amber); font-size: 0.9rem; }
.virtuoso-availability { font-family: var(--font-body); font-size: 0.78rem; color: rgba(247,245,242,0.55); margin-top: 14px; text-align: center; font-style: italic; }
.virtuoso-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.virtuoso-card { background: var(--ivory); padding: 36px 28px; text-align: center; }
.virtuoso-card h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--espresso); margin-bottom: 12px; font-weight: 500; }
.virtuoso-card p { font-size: 0.88rem; line-height: 1.8; color: var(--text-mid); }

/* Affiliations */
.affiliations-section {
  background: var(--ivory);
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.affiliations-section .eyebrow {
  display: block;
  margin-bottom: 36px;
}
.affiliations-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.affiliation-logo img {
  height: 36px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.affiliation-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.affiliation-logo--virtuoso img {
  height: 56px;
}
.affiliation-logo--regent img {
  height: 90px;
  max-width: 160px;
}

/* FAQ */
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 1.15rem; color: var(--espresso); font-weight: 400; }
.faq-question .faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform 0.3s ease; }
.faq-question .faq-icon::before, .faq-question .faq-icon::after { content: ''; position: absolute; background: var(--amber); border-radius: 2px; }
.faq-question .faq-icon::before { width: 2px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: opacity 0.3s; }
.faq-question .faq-icon::after { width: 14px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-question .faq-icon::before { opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer p { padding-bottom: 24px; font-size: 0.97rem; line-height: 1.9; color: var(--text-mid); }
.faq-item.open .faq-answer { max-height: 300px; }

/* Services CTA */
.services-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.services-cta-inner p { color: rgba(247,245,242,0.75); font-size: 1rem; line-height: 1.8; margin: 16px 0 32px; }

/* ── Pricing Section ──────────────────────────────── */
.pricing-section { background: var(--cream); padding: 140px 48px 48px; }
.services-frame { background: #ffffff; padding-top: 72px; padding-bottom: 60px; }
/* ── Contact Split Layout ───────────────────────────────── */
.contact { background: var(--sage); padding: 24px; }

.contact-split {
  display: flex;
  min-height: 700px;
}

.contact-split-left {
  flex: 0 0 66.666%;
  background:
    linear-gradient(rgba(135,156,155,0.72), rgba(135,156,155,0.72)),
    url('daniel-leone-g30P1zcOzXo-unsplash.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 72px;
}

.contact-split-left-inner {
  max-width: 480px;
  text-align: center;
  margin: 0 auto;
}

.contact-split-left-inner .display-title {
  font-size: 2.6rem;
  margin: 16px 0 24px;
  line-height: 1.15;
}

.contact-split-intro {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(247,245,242,0.75);
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  color: rgba(247,245,242,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item:hover { color: var(--amber-light); }
.contact-info-item svg { color: var(--amber); flex-shrink: 0; }

.contact-split-social {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.contact-split-social a {
  color: rgba(247,245,242,0.55);
  transition: color 0.2s ease;
}

.contact-split-social a:hover { color: var(--amber-light); }

.contact-split-right {
  flex: 1;
  background: var(--ivory);
  display: flex;
  align-items: center;
  padding: 80px 72px;
}

.contact-split-right .contact-form {
  width: 100%;
  max-width: 600px;
}
.pricing-header { max-width: 720px; margin: 0 auto 56px; text-align: center; padding: 0 24px; }
.pricing-header p { font-size: 1rem; line-height: 1.9; color: var(--text-mid); margin-top: 16px; }

.pricing-item { display: flex; min-height: 500px; border-top: 1px solid rgba(194,163,110,0.2); }
.pricing-item.reverse { flex-direction: row-reverse; }
.pricing-photo { flex: 0 0 45%; overflow: hidden; }
.pricing-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Stacked / overlapping photo pair */
.pricing-photo-stack { background: var(--warm-white); overflow: hidden; position: relative; }
.pricing-photo-stack .stack-back {
  position: absolute;
  width: 55%; height: 80%;
  object-fit: cover;
  top: 4%; left: 3%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.pricing-photo-stack .stack-front {
  position: absolute;
  width: 55%; height: 78%;
  object-fit: cover;
  bottom: 4%; right: 2%;
  border: 5px solid var(--warm-white);
  box-shadow: 0 8px 26px rgba(0,0,0,0.22);
  z-index: 2;
}
.pricing-body { flex: 1; background: var(--ivory); display: flex; align-items: center; justify-content: center; padding: 60px 72px; }
.pricing-body-inner { max-width: 500px; width: 100%; }
.pricing-body-inner h3 { font-family: var(--font-display); font-size: 2.1rem; font-weight: 400; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.pricing-body-inner > p { font-size: 0.93rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 16px; }
.pricing-includes { font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.pricing-list { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-list li { position: relative; padding: 9px 0 9px 22px; font-family: var(--font-body); font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; border-bottom: 1px solid rgba(194,163,110,0.15); }
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before { content: '▶'; position: absolute; left: 0; top: 11px; color: var(--amber); font-size: 0.55rem; line-height: 1; }
.pricing-cost { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mid); font-weight: 500; padding-top: 18px; border-top: 1px solid rgba(194,163,110,0.3); }
.pricing-cost .cost-value { color: var(--amber); font-size: 1rem; letter-spacing: 0.05em; font-weight: 600; }
.pricing-cost .cost-free { color: var(--sage); }
.pricing-cost-note { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.05em; text-transform: none; font-style: italic; }

/* ── Services Sticky Nav Layout ─────────────────────────── */
.services-sticky-layout {
  display: flex;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 100px;
  gap: 72px;
}

.services-sticky-nav {
  flex: 0 0 210px;
  position: sticky;
  top: 110px;
  padding-top: 4px;
}

.services-sticky-nav-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

.services-sticky-nav ul {
  list-style: none;
  border-top: 1px solid rgba(194,163,110,0.35);
}

.services-sticky-nav li {
  border-bottom: 1px solid rgba(194,163,110,0.18);
}

.services-sticky-nav a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.services-sticky-nav a:hover .snav-name { color: var(--espresso); }

.snav-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.25;
  transition: color 0.25s ease;
}

.snav-price {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.55;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.services-sticky-nav a.active .snav-name { color: var(--espresso); font-weight: 500; }
.services-sticky-nav a.active .snav-price { color: var(--amber); opacity: 1; }
.snav-price--free { color: var(--sage) !important; opacity: 0.85; }

.services-sticky-content {
  flex: 1;
  min-width: 0;
}

/* ── Service Panels ─────────────────────────────────────── */
.svc-panel {
  padding: 60px 0;
  border-bottom: 1px solid rgba(194,163,110,0.2);
  scroll-margin-top: 110px;
}

.svc-panel:first-child { padding-top: 0; }
.svc-panel:last-child { border-bottom: none; }

.svc-panel-photo {
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-bottom: 38px;
}

.svc-panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.svc-panel-photo:hover img { transform: scale(1.03); }

.svc-panel-body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-panel-body > p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* Responsive — collapse to stacked on smaller screens */
@media (max-width: 860px) {
  .contact-split { flex-direction: column; }
  .contact-split-left { flex: none; padding: 60px 28px 48px; }
  .contact-split-left-inner { max-width: 100%; }
  .contact-split-right { padding: 48px 28px 60px; }
  .services-sticky-layout {
    flex-direction: column;
    gap: 0;
    padding: 0 24px 60px;
  }
  .services-sticky-nav {
    position: static;
    flex: none;
    width: 100%;
    margin-bottom: 48px;
    top: auto;
  }
  .services-sticky-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .services-sticky-nav li:nth-child(odd) {
    border-right: 1px solid rgba(194,163,110,0.18);
  }
  .svc-panel-photo { height: 240px; }
}

/* Stamp logo overlay — sits at the photo/text divide on the Curated Hotel item */
.pricing-item { position: relative; overflow: visible; }
.pricing-stamp-wrap {
  position: absolute;
  top: 60px;
  left: 51%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.pricing-stamp {
  width: 380px;
  height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* ── Process Visual (MN-style alternating image + text) ── */
.process-visual-header { padding-top: 180px; padding-bottom: 48px; }
.process-steps-wrap { max-width: 1400px; margin: 0 auto; padding: 0 48px; background: #ffffff; overflow: hidden; }

/* White divider strip with overlapping number */
.process-divider {
  background: #ffffff;
  padding: 40px 64px 0;
  position: relative;
  overflow: visible;
  z-index: 2;
}
.process-divider-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 300;
  color: rgba(135,156,155,0.45);
  line-height: 1;
  transform: translateY(50%);
  position: relative;
  z-index: 5;
  user-select: none;
  pointer-events: none;
}
.process-divider-num.align-right { text-align: right; }
.process-divider-num.align-left  { text-align: left; }

.process-visual-step { display: flex; min-height: 480px; position: relative; }
.process-visual-step.step-reverse { flex-direction: row-reverse; }
.process-visual-photo { flex: 0 0 50%; overflow: hidden; }
.process-visual-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.process-visual-text { flex: 1; background: #eae7df; display: flex; align-items: center; justify-content: center; padding: 60px 64px; position: relative; overflow: hidden; }
.process-visual-content { max-width: 400px; text-align: center; position: relative; z-index: 1; }
.process-visual-label { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 10px; font-weight: 500; }
.process-visual-content h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--navy); margin-bottom: 18px; line-height: 1.25; }
.process-visual-content p { font-family: var(--font-body); font-size: 0.92rem; line-height: 1.9; color: #5a5248; }

/* ── Uplevel Your Escape ──────────────────────────── */
.uplevel-section { display: flex; min-height: 420px; }
.uplevel-photo { flex: 0 0 50%; overflow: hidden; }
.uplevel-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.uplevel-body { flex: 1; background: var(--ivory); display: flex; align-items: center; justify-content: center; padding: 80px 64px; }
.uplevel-body-full { flex: 0 0 100%; padding: 80px 64px; }
.uplevel-body-inner { max-width: 600px; text-align: center; }
.uplevel-script { font-family: 'Ephesis', cursive; font-size: 3.2rem; color: var(--amber); display: block; line-height: 1.2; margin-bottom: 8px; }
.uplevel-body-inner h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; color: var(--navy); line-height: 1.25; margin-bottom: 20px; }
.uplevel-body-inner p { font-size: 0.93rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 10px; }
.uplevel-arrow-list { list-style: none; padding: 0; margin: 20px 0 6px; text-align: left; }
.uplevel-arrow-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-family: var(--font-body); font-size: 0.93rem; color: var(--charcoal); border-bottom: 1px solid rgba(194,163,110,0.2); }
.uplevel-arrow-list li:last-child { border-bottom: none; }
.uplevel-arrow-list li::before { content: '→'; color: var(--amber); flex-shrink: 0; font-size: 1rem; }
.uplevel-note { font-size: 0.76rem; color: var(--text-mid); font-style: italic; margin-top: 4px; opacity: 0.75; }
.uplevel-body-inner .btn { margin-top: 28px; }

/* Services Responsive */
@media (max-width: 1024px) {
  .virtuoso-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-body { padding: 48px 40px; }
  .process-visual-text { padding: 48px 40px; }
  .uplevel-body { padding: 60px 40px; }
}
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid-section { padding: 48px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .virtuoso-grid { grid-template-columns: 1fr; }
  .services-hero { min-height: 55vh; }
  .pricing-item, .pricing-item.reverse { flex-direction: column; }
  .pricing-photo { flex: 0 0 260px; min-height: 260px; }
  .pricing-body { padding: 40px 24px; }
  .process-visual-step, .process-visual-step.step-reverse { flex-direction: column; }
  .process-visual-photo { flex: 0 0 260px; min-height: 260px; }
  .process-visual-text { padding: 48px 28px; }
  .uplevel-section { flex-direction: column; }
  .uplevel-photo { flex: 0 0 300px; min-height: 300px; }
  .uplevel-body { padding: 56px 24px; }
}
