/* =========================================================
   THE MINDFUL CUP — Luxury Hospitality Experiences
   Design system + site styles
   ========================================================= */

:root {
  /* ---- Palette ---- */
  --cream:        #FBF6EE;
  --cream-deep:   #F3E9D8;
  --paper:        #FFFDF9;
  --blush:        #F5E1DB;
  --blush-deep:   #EDCFC7;
  --gold:         #A9835A;
  --gold-text:    #7E6243; /* darkened gold for text/AA contrast (eyebrows, tags, gold buttons) */
  --rose-text:    #753F48; /* darkened rose for headings/accents on light backgrounds (AA contrast) */
  --gold-light:   #C7A876;
  --gold-pale:    #E4D2AE;
  --rose:         #B07A6E;
  --rose-deep:    #9C5560;
  --ink:          #3F332A;
  --ink-soft:     #6E5D4F;
  --ink-faint:    #9C8C7B;
  --white:        #FFFFFF;

  /* ---- Type ---- */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Alex Brush', cursive;
  --font-body:    'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Spacing ---- */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;

  /* ---- Misc ---- */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;
  --shadow-sm: 0 8px 24px -12px rgba(63, 51, 42, 0.18);
  --shadow-md: 0 20px 50px -18px rgba(63, 51, 42, 0.28);
  --shadow-lg: 0 30px 80px -20px rgba(63, 51, 42, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

/* =========================================================
   RESET + BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

@media (min-width: 700px) {
  .container { padding: 0 var(--sp-5); }
}

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 600;
}

.script {
  font-family: var(--font-script);
  color: var(--rose);
  font-weight: 400;
  line-height: 1.3;
  font-size: 2.6rem;
}
.script.script-lg { font-size: 3.4rem; }
.script.script-sm { font-size: 1.9rem; }
.script.on-blush { color: var(--rose-deep); }

h1, h2, h3, .display {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: 0.06em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

.section-kicker {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  text-align: center;
}

.lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 600;
}

/* =========================================================
   DIVIDERS + DECORATIVE
   ========================================================= */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  color: var(--gold);
  margin: var(--sp-3) auto;
}
.divider .line {
  height: 1px;
  width: 64px;
  background: var(--gold-light);
  opacity: 0.7;
}
.divider svg { width: 16px; height: 16px; }

.icon {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--paper);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.05rem 2.2rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--rose-deep); }

.btn-gold {
  background: var(--gold-text);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--rose-deep); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.75);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); }

.btn-block { width: 100%; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: var(--sp-2) 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.site-header.is-solid {
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px -18px rgba(63,51,42,0.3);
  padding: var(--sp-1) 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand svg { width: 34px; height: 34px; color: var(--gold); flex-shrink: 0; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--gold-text);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { right: 0; }

.nav-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 60;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,31,23,0.55) 0%, rgba(40,31,23,0.15) 38%, rgba(40,31,23,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-7) 0 var(--sp-6);
  text-align: center;
}
.hero-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto var(--sp-2);
  color: var(--white);
}
.hero-content .eyebrow-line {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  font-family: var(--font-display);
  font-weight: 600;
}
.hero-content h1 {
  color: var(--white);
  margin: 0.3rem 0;
}
.hero-content .sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: var(--sp-2);
}
.hero-content .script {
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.hero-actions {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: var(--sp-3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 20px;
}
.scroll-cue::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--white);
  border-radius: 50%;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue { 0%{ transform: translateY(0); opacity:1;} 70%{opacity:0.3;} 100% { transform: translateY(12px); opacity: 0; } }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,31,23,0.62) 0%, rgba(40,31,23,0.3) 55%, rgba(40,31,23,0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--sp-7);
  text-align: center;
  width: 100%;
}
.page-hero-content .script { color: var(--white); margin-top: var(--sp-1); }
.page-hero-content h1 { color: var(--white); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: var(--sp-7) 0; }
.section-sm { padding: var(--sp-6) 0; }
.section.on-cream-deep { background: var(--cream-deep); }
.section.on-blush { background: var(--blush); }
.section.on-paper { background: var(--paper); }
.section.on-ink { background: var(--ink); color: var(--cream); }
.section-head { max-width: 720px; margin: 0 auto var(--sp-5); text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 0.6rem; }
.section-head p { margin-top: var(--sp-2); }

/* ---- Story / Philosophy split layout ---- */
.split {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .split.reverse .split-media { order: 2; }
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-body .eyebrow { display: block; margin-bottom: 0.3rem; }
.split-body .script { margin: 0.2rem 0 var(--sp-3); }
.split-body p + p { margin-top: var(--sp-2); }
.split-body .accent {
  color: var(--rose-text);
  font-weight: 500;
}
.split-body .script-out {
  margin-top: var(--sp-3);
}

/* ---- Philosophy pillars ---- */
.pillars {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.pillar {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(169,131,90,0.25);
}
.pillar:last-child { border-bottom: none; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.pillar p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---- Card grids (experiences) ---- */
.card-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.exp-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.exp-card:hover img { transform: scale(1.06); }
.exp-card::after {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(40,31,23,0) 35%, rgba(40,31,23,0.82) 100%);
}
.exp-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: var(--sp-3);
  color: var(--white);
  text-align: center;
}
.exp-card-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.7rem;
  color: var(--white);
}
.exp-card-icon svg { width: 24px; height: 24px; }
.exp-card-body h4 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.exp-card-body p { font-size: 0.85rem; color: rgba(255,255,255,0.88); }

/* ---- Feature list (icon + text, 2col) ---- */
.feature-grid {
  display: grid;
  gap: var(--sp-4) var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .feature-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 760px) { .feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .feature-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }
.feature {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.feature p { font-size: 0.9rem; color: var(--ink-soft); }

.feature.stacked {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---- Banner (CTA strips) ---- */
.banner {
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-4);
  text-align: center;
}
.banner p:first-child {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.banner .script { display: block; margin-top: 0.2rem; }
.banner.on-ink { background: var(--ink); color: var(--cream); }
.banner.on-ink .script { color: var(--gold-pale); }
.banner.on-ink p:first-child { color: var(--cream); }

/* ---- Photo hero band (corporate/uni/markets) ---- */
.feature-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 46vh;
  display: flex;
  align-items: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.feature-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(40,31,23,0.35), rgba(40,31,23,0.72)); }
.feature-hero-body { position: relative; z-index: 2; padding: var(--sp-5); text-align: center; width: 100%; }
.feature-hero-body .script { color: var(--white); }
.feature-hero-body h2 { color: var(--white); }

/* ---- Gallery (mosaic) ---- */
.mosaic {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: repeat(4, 1fr);
}
.mosaic-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
}
.mosaic-item.tall { grid-row: span 2; aspect-ratio: 1/2.05; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mosaic-item:hover img { transform: scale(1.08); }
.mosaic-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.7rem 0.6rem;
  background: linear-gradient(180deg, rgba(40,31,23,0), rgba(40,31,23,0.85));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 700px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic-item.tall { grid-row: span 1; aspect-ratio: 1; }
}

.mosaic-top {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.mosaic-col { display: grid; grid-template-rows: 1fr 1fr; gap: var(--sp-2); }
.mosaic-tall { aspect-ratio: auto !important; height: 100%; }
.mosaic-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}
@media (max-width: 760px) {
  .mosaic-top { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .mosaic-top .mosaic-item.mosaic-tall { grid-column: span 2; aspect-ratio: 16/9 !important; height: auto; }
  .mosaic-bottom { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Menu ---- */
.menu-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: var(--sp-4);
}
.menu-cat .eyebrow { display:block; margin-bottom: 0.9rem; text-align: center;}
.menu-cat h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--rose-text);
  text-align: center;
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold-pale);
}
.menu-cat ul li {
  text-align: center;
  font-size: 0.92rem;
  padding: 0.32rem 0;
  color: var(--ink-soft);
}
.menu-photo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
  margin: var(--sp-5) 0;
}
.menu-photo-row img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow-sm); }
@media (max-width: 700px) { .menu-photo-row { grid-template-columns: repeat(3, 1fr); } }

.card-flat {
  background: var(--paper);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
}

/* ---- Extras grid ---- */
.extras-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.extra-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow .4s var(--ease);
}
.extra-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.extra-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.extra-card-body { padding: var(--sp-3); }
.extra-card-body .icon-circle { width: 46px; height: 46px; margin-bottom: 0.7rem; }
.extra-card-body .icon-circle svg { width: 20px; height: 20px; }
.extra-card-body h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.extra-card-body p { font-size: 0.87rem; color: var(--ink-soft); }

/* ---- Steps (How it works) ---- */
.steps {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
  margin-top: var(--sp-4);
}
.step .icon-circle { margin: 0 auto var(--sp-2); width: 74px; height: 74px; }
.step .icon-circle svg { width: 30px; height: 30px; }
.step h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.step p { font-size: 0.85rem; color: var(--ink-soft); }
.step .step-no {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: .2em;
  margin-bottom: 0.4rem;
}

/* ---- Prompt cards (Letters to Tomorrow) ---- */
.prompt-row {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.prompt-card {
  background: var(--paper);
  border: 1px solid var(--blush-deep);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
}
.prompt-card .icon-circle { margin: 0 auto 0.7rem; width: 48px; height: 48px; border-color: var(--rose); color: var(--rose); }
.prompt-card .icon-circle svg { width: 20px; height: 20px; }
.prompt-card h4 { font-family: var(--font-display); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.35rem; }
.prompt-card p { font-size: 0.82rem; color: var(--ink-soft); }

/* ---- Quote block ---- */
.quote-block {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  text-align: center;
  position: relative;
}
.quote-block .mark { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-light); line-height: 1; }
.quote-block p.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  max-width: 640px;
  margin: 0.6rem auto 0;
  line-height: 1.5;
}

/* ---- Promise grid ---- */
.promise-grid {
  display: grid;
  gap: var(--sp-4) var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .promise-grid { grid-template-columns: 1fr 1fr; } }

/* ---- Photo trio / quad strips ---- */
.strip {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--sp-4);
}
.strip.of-4 { grid-template-columns: repeat(4, 1fr); }
.strip img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-sm); }
@media (max-width: 640px) {
  .strip, .strip.of-4 { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--sp-6) 0 var(--sp-3);
}
.footer-top {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1.3fr 1fr 1fr;
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(251,246,238,0.15);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { display: flex; gap: 0.7rem; align-items: center; font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.06em;}
.footer-brand svg { width: 38px; height: 38px; color: var(--gold-light); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-2);
}
.footer-col ul li { margin-bottom: 0.55rem; font-size: 0.92rem; color: rgba(251,246,238,0.82); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-script { color: var(--gold-pale); margin-top: 0.6rem; font-size: 1.6rem; }
.social-row { display: flex; gap: 0.7rem; margin-top: var(--sp-2); }
.social-row a {
  width: 40px; height: 40px;
  border: 1px solid rgba(251,246,238,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, border-color .3s ease;
}
.social-row a:hover { background: var(--gold-light); border-color: var(--gold-light); }
.social-row svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: var(--sp-3);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(251,246,238,0.55);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   FORMS (Booking page)
   ========================================================= */
.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-5);
}
.form-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .field-full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-pale);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(176,122,110,0.15);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem 1rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--rose-deep); }
.field-hint { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.4rem; }
.honeypot-field { position: absolute; left: -9999px; top: -9999px; }

/* =========================================================
   THANK YOU + 404
   ========================================================= */
.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-6) var(--sp-3);
}
.status-page .icon-circle { width: 84px; height: 84px; margin: 0 auto var(--sp-3); }
.status-page .icon-circle svg { width: 34px; height: 34px; }
.status-page h1 { margin-bottom: var(--sp-2); }
.status-page p.lede { margin: 0 auto var(--sp-4); }

/* =========================================================
   UTILITIES
   ========================================================= */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.max-w { max-width: 720px; margin-left:auto; margin-right:auto; }
.hidden-sr { position:absolute; width:1px;height:1px; overflow:hidden; clip:rect(0 0 0 0); }
