/* ══════════════════════════════════════════════
   Nomad Nordic Bath — nomad-nordic.css
   All site styles
══════════════════════════════════════════════ */

:root {
  --ink:   #1a1814;
  --ash:   #2e2b26;
  --stone: #4a4540;
  --sand:  #c8b99a;
  --cream: #f0ebe0;
  --mist:  #e8e2d4;
  --water: #7da6b0;
  --pine:  #3a5a4a;
  --ember: #c4703a;
  --gold:  #b8935a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* WordPress admin bar offset */
body.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar nav { top: 46px; } }

/* ── Custom cursor ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--water);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--water);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease, width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0.6;
}
body.cursor-hover .cursor { width: 60px; height: 60px; background: var(--sand); opacity: 0.35; }
body.cursor-hover .cursor-ring { opacity: 0; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.8rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  mix-blend-mode: multiply;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-social { display: flex; align-items: center; gap: 1.2rem; }
.nav-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(240,235,224,0.25);
  border-radius: 50%;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-social-btn:hover { opacity: 1; border-color: var(--sand); transform: scale(1.12); }
.nav-social-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: var(--ash);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(125,166,176,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(58,90,74,0.25) 0%, transparent 55%),
    linear-gradient(160deg, #0d1612 0%, #1e2920 35%, #2a2318 65%, #16100a 100%);
  animation: breathe 14s ease-in-out infinite alternate;
}
@keyframes breathe {
  0%   { filter: brightness(1); }
  100% { filter: brightness(1.06); }
}
.steam { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.steam-particle {
  position: absolute;
  bottom: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
  animation: rise linear infinite;
  opacity: 0;
}
@keyframes rise {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-65vh) scale(2.8); opacity: 0; }
}
.hero-rule {
  position: absolute; top: 50%; left: 3rem;
  width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--sand), transparent);
  transform: translateY(-50%); opacity: 0.4;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 3rem 7rem;
  max-width: 820px;
  margin-left: 8vw;
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--water); margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp 1s 0.4s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(3.4rem, 7vw, 6.5rem); line-height: 1.0;
  color: var(--cream); letter-spacing: -0.01em; margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s 0.65s forwards;
}
.hero-title em { font-style: italic; color: var(--sand); display: block; }
.hero-sub {
  font-size: 0.85rem; letter-spacing: 0.1em; color: var(--mist);
  opacity: 0; max-width: 380px; line-height: 1.9;
  animation: fadeUp 1s 0.9s forwards; margin-bottom: 3rem;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  border-bottom: 1px solid rgba(200,185,154,0.35); padding-bottom: 0.5rem;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
  transition: border-color 0.3s, color 0.3s;
}
.hero-cta:hover { color: var(--sand); border-color: var(--sand); }
.hero-cta-arrow { display: inline-block; transition: transform 0.3s; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(5px); }
.scroll-hint {
  position: absolute; bottom: 2.8rem; right: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0; animation: fadeIn 1s 1.6s forwards;
}
.scroll-hint span {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(240,235,224,0.4); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(200,185,154,0.6), transparent);
  animation: scrollLine 2.5s 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1) translateY(0); opacity: 0.6; }
  50%      { transform: scaleY(0.4) translateY(30px); opacity: 0.2; }
}

/* ── Section common ── */
section { position: relative; overflow: hidden; }
.section-label {
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 1rem;
}

/* ── Experience ── */
.experience {
  background: var(--cream);
  padding: 10rem 3rem 10rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.experience-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1.15;
  color: var(--ash); margin-bottom: 2.4rem;
}
.experience-title em { font-style: italic; color: var(--pine); }
.experience-body {
  font-size: 0.9rem; line-height: 2; color: var(--stone);
  max-width: 480px; margin-bottom: 3rem;
}
.temp-badge {
  display: inline-flex; align-items: baseline; gap: 0.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300; color: var(--water); line-height: 1;
}
.temp-badge sup { font-size: 1.8rem; margin-top: 0.5rem; color: var(--sand); }
.temp-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); margin-top: 0.6rem;
}
.experience-right { position: relative; }
.experience-visual {
  aspect-ratio: 3/4;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(125,166,176,0.22), transparent 60%),
    linear-gradient(165deg, #2a4035 0%, #1a2820 40%, #0f1a16 100%);
  border-radius: 2px; position: relative; overflow: hidden;
}
.visual-steam {
  position: absolute; bottom: 30%; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(125,166,176,0.3) 0%, transparent 70%);
  border-radius: 50%; animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
  50%      { transform: translateX(-50%) scale(1.3); opacity: 0.8; }
}
.visual-water-line {
  position: absolute; bottom: 28%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,166,176,0.5), transparent);
}
.visual-mountains {
  position: absolute; bottom: 28%; left: 0; right: 0; height: 38%;
  background:
    linear-gradient(to bottom, transparent 0%, rgba(30,40,35,0.9) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300'%3E%3Cpolygon points='0,300 100,120 200,200 320,60 440,180 560,40 680,160 800,80 800,300' fill='%23243020' opacity='0.9'/%3E%3Cpolygon points='0,300 80,160 160,220 260,90 360,200 480,70 600,150 720,100 800,140 800,300' fill='%231a2418' opacity='0.8'/%3E%3C/svg%3E") center/cover no-repeat;
}
.visual-caption {
  position: absolute; bottom: 2rem; left: 2rem;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(200,185,154,0.5);
}
.visual-float-pill {
  position: absolute; top: 2rem; right: -1.5rem;
  background: var(--ash); color: var(--sand);
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 0.9rem 1.4rem; writing-mode: vertical-rl;
}

/* ── How it works ── */
.how { background: var(--ash); padding: 9rem 3rem; color: var(--mist); }
.how-header { max-width: 600px; margin: 0 auto 6rem; text-align: center; }
.how-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--cream); margin-bottom: 1.2rem;
}
.how-sub { font-size: 0.85rem; color: var(--sand); opacity: 0.75; line-height: 1.9; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 1100px; margin: 0 auto; position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 2.1rem; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--stone), var(--stone), transparent);
}
.step { text-align: center; padding: 0 1.5rem; position: relative; }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; font-weight: 400;
  color: var(--water); letter-spacing: 0.1em; display: block; margin-bottom: 2.5rem; position: relative;
}
.step-num::before {
  content: ''; display: block; width: 4px; height: 4px;
  background: var(--water); border-radius: 50%; margin: 0 auto 1.2rem;
  box-shadow: 0 0 10px var(--water);
}
.step-icon { font-size: 1.8rem; margin-bottom: 1.2rem; filter: grayscale(0.3); }
.step-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  color: var(--cream); margin-bottom: 0.8rem; font-weight: 400;
}
.step-text { font-size: 0.8rem; line-height: 1.85; color: rgba(232,226,212,0.55); }

/* ── Settings ── */
.settings { background: var(--ink); padding: 9rem 0; overflow: hidden; }
.settings-header {
  padding: 0 3rem; margin-bottom: 5rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.settings-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--cream); line-height: 1.15;
}
.settings-note { font-size: 0.78rem; color: var(--sand); opacity: 0.65; max-width: 280px; line-height: 1.8; text-align: right; }
.cards-track {
  display: flex; gap: 1.5rem; padding: 0 3rem;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.cards-track::-webkit-scrollbar { display: none; }
.setting-card {
  flex: 0 0 360px; height: 500px; border-radius: 2px;
  position: relative; overflow: hidden; cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.setting-card:hover { transform: scale(1.02); }
.card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.setting-card:hover .card-bg { transform: scale(1.06); }
.card-bg-1 {
  background:
    radial-gradient(ellipse 80% 60% at 40% 50%, rgba(125,166,176,0.25), transparent 55%),
    linear-gradient(175deg, #1a3a28 0%, #0d2418 40%, #081810 100%);
}
.card-bg-2 {
  background:
    radial-gradient(ellipse 60% 80% at 70% 30%, rgba(184,147,90,0.2), transparent 55%),
    linear-gradient(175deg, #2a2010 0%, #1a1408 40%, #100c06 100%);
}
.card-bg-3 {
  background:
    radial-gradient(ellipse 70% 60% at 30% 60%, rgba(196,112,58,0.2), transparent 55%),
    linear-gradient(175deg, #2e1a10 0%, #1e1008 40%, #140b06 100%);
}
.card-bg-4 {
  background:
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(90,130,110,0.25), transparent 55%),
    linear-gradient(175deg, #0a1c14 0%, #081610 40%, #040e08 100%);
}
.card-mountains {
  position: absolute; bottom: 35%; left: 0; right: 0; height: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cpolygon points='0,200 60,80 120,130 200,30 270,110 340,50 400,90 400,200' fill='rgba(0,0,0,0.5)'/%3E%3C/svg%3E") bottom/cover no-repeat;
  opacity: 0.7;
}
.card-water {
  position: absolute; bottom: 0; left: 0; right: 0; height: 36%;
  background: linear-gradient(to top, rgba(30,50,45,0.95) 0%, rgba(20,35,30,0.7) 50%, transparent 100%);
}
.card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.card-season { font-size: 0.58rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--water); margin-bottom: 0.7rem; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 0.6rem; }
.card-desc { font-size: 0.75rem; color: rgba(200,185,154,0.65); line-height: 1.7; }
.card-vine { position: absolute; top: 2rem; left: 2rem; font-size: 2rem; opacity: 0.3; filter: sepia(1); }

/* ── Ritual / Benefits ── */
.ritual {
  background: var(--mist); padding: 9rem 3rem;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 8rem; align-items: center;
}
.ritual-numbers { display: flex; flex-direction: column; gap: 3rem; }
.ritual-stat { border-top: 1px solid rgba(74,69,64,0.18); padding-top: 1.8rem; }
.ritual-stat-val {
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300;
  color: var(--pine); line-height: 1; margin-bottom: 0.4rem;
}
.ritual-stat-val em { font-style: italic; color: var(--water); font-size: 0.6em; }
.ritual-stat-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
.ritual-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--ash); line-height: 1.2; margin-bottom: 2rem;
}
.ritual-title em { font-style: italic; color: var(--pine); }
.ritual-body { font-size: 0.88rem; line-height: 2; color: var(--stone); margin-bottom: 2.5rem; }
.ritual-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.benefit { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-dot { width: 5px; height: 5px; background: var(--water); border-radius: 50%; margin-top: 0.55rem; flex-shrink: 0; }
.benefit-text { font-size: 0.78rem; line-height: 1.7; color: var(--stone); }

/* ── Pairing ── */
.pairing {
  background: var(--pine); padding: 9rem 3rem; color: var(--cream);
  text-align: center; position: relative;
}
.pairing::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
}
.pairing-eyebrow { font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.5rem; display: block; position: relative; }
.pairing-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.15; margin-bottom: 1.8rem;
  position: relative; max-width: 760px; margin-left: auto; margin-right: auto;
}
.pairing-title em { font-style: italic; color: var(--sand); }
.pairing-body { font-size: 0.88rem; line-height: 1.95; opacity: 0.75; max-width: 580px; margin: 0 auto 4rem; position: relative; }
.pairing-items { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; position: relative; }
.pairing-item { text-align: center; }
.pairing-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.pairing-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--sand); font-style: italic; }

/* ── Booking ── */
.booking {
  background: var(--ash); padding: 9rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.booking-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--cream); line-height: 1.15; margin-bottom: 2rem;
}
.booking-title em { font-style: italic; color: var(--sand); }
.booking-info { font-size: 0.85rem; line-height: 2; color: rgba(232,226,212,0.65); margin-bottom: 3rem; }
.booking-details { display: flex; flex-direction: column; gap: 1.2rem; }
.booking-row {
  display: flex; align-items: baseline; gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 1.2rem;
}
.booking-key { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--water); min-width: 100px; }
.booking-val { font-size: 0.85rem; color: var(--sand); }
.booking-right { background: var(--ink); padding: 3rem; position: relative; }
.booking-right::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--water), var(--sand));
}
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 0.5rem; font-weight: 300; }
.form-sub { font-size: 0.75rem; color: rgba(200,185,154,0.5); margin-bottom: 2.5rem; line-height: 1.7; }

/* Native form styles */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem; }
.form-input, .booking-right input[type=text], .booking-right input[type=email],
.booking-right input[type=date], .booking-right select, .booking-right textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(74,69,64,0.6);
  color: var(--cream); font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 0.88rem; padding: 0.6rem 0; outline: none;
  transition: border-color 0.3s; cursor: none;
}
.form-input:focus, .booking-right input:focus, .booking-right select:focus, .booking-right textarea:focus { border-color: var(--water); }
.form-input option, .booking-right select option { background: var(--ink); }
.booking-right textarea { resize: vertical; min-height: 80px; }
.form-btn, .booking-right input[type=submit], .booking-right .wpcf7-submit,
.booking-right button[type=submit] {
  width: 100%; background: transparent; border: 1px solid var(--sand);
  color: var(--sand); font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 1.1rem; margin-top: 1rem; cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.form-btn:hover, .booking-right input[type=submit]:hover, .booking-right .wpcf7-submit:hover,
.booking-right button[type=submit]:hover { background: var(--sand); color: var(--ink); }

/* Contact Form 7 overrides */
.wpcf7 { width: 100%; }
.wpcf7 p { margin: 0 0 1.5rem; }
.wpcf7 label { display: block; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem; }
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=date],
.wpcf7 select, .wpcf7 textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(74,69,64,0.6); color: var(--cream);
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 0.88rem; padding: 0.6rem 0; outline: none; transition: border-color 0.3s;
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus { border-color: var(--water); }
.wpcf7 select option { background: var(--ink); }
.wpcf7 .wpcf7-submit {
  width: 100%; background: transparent; border: 1px solid var(--sand);
  color: var(--sand); font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 1.1rem; margin-top: 1rem; cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.wpcf7 .wpcf7-submit:hover { background: var(--sand); color: var(--ink); }
.wpcf7 .wpcf7-response-output {
  font-size: 0.75rem; color: var(--water); border: none !important;
  padding: 1rem 0 0 !important; margin: 0 !important;
}
.wpcf7 .wpcf7-not-valid-tip { color: var(--ember); font-size: 0.7rem; }

/* ── Footer ── */
footer {
  background: var(--ink); padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 2rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; letter-spacing: 0.15em; color: var(--sand); text-transform: uppercase; }
.footer-domain { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--stone); text-transform: uppercase; margin-top: 0.3rem; }
.footer-links { display: flex; gap: 2.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--sand); }
.footer-locale { font-size: 0.65rem; letter-spacing: 0.18em; color: var(--stone); text-align: right; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); text-decoration: none; transition: color 0.2s;
}
.footer-social a:hover { color: var(--sand); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.23,1,0.32,1), transform 0.9s cubic-bezier(0.23,1,0.32,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ── Mobile ── */
@media (max-width: 860px) {
  nav { padding: 1.4rem 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 0 1.5rem 5rem; margin-left: 0; }
  .hero-rule { display: none; }
  .scroll-hint { right: 1.5rem; }
  .experience { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .how { padding: 5rem 1.5rem; }
  .steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .steps::before { display: none; }
  .settings-header { flex-direction: column; align-items: flex-start; padding: 0 1.5rem; }
  .settings-note { text-align: left; }
  .cards-track { padding: 0 1.5rem; }
  .setting-card { flex: 0 0 300px; }
  .ritual { grid-template-columns: 1fr; gap: 4rem; padding: 5rem 1.5rem; }
  .ritual-benefits { grid-template-columns: 1fr; }
  .pairing { padding: 5rem 1.5rem; }
  .booking { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  footer { padding: 3rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .footer-locale { text-align: left; }
  .visual-float-pill { display: none; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
