/* ==========================================================================
   RIDING TRIP — editorial landing page
   ========================================================================== */

:root {
  --bg: #EFE6D6;
  --bg-deep: #E4D9C3;
  --ink: #2B1E14;
  --ink-soft: #5A4735;
  --primary: #8A1A1A;
  --primary-deep: #6B1212;
  --paper: #F6EFDF;
  --line: rgba(43, 30, 20, 0.18);
  --line-soft: rgba(43, 30, 20, 0.09);
  --dark: #1A140E;
  --dark-2: #0E0A06;

  --serif: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --display: "Italiana", "Cormorant Garamond", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --gutter: clamp(20px, 5vw, 80px);
  --maxw: 1480px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* Grain overlay */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.12 0 0 0 0 0.08 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ==========================================================================
   NAV (2-tier: wordmark strip + primary nav)
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  display: block;
  background: linear-gradient(to bottom, rgba(239,230,214,1) 70%, rgba(239,230,214,0.85) 90%, rgba(239,230,214,0));
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled { background: rgba(239,230,214,0.98); box-shadow: 0 1px 0 var(--line-soft); }

.nav__brand {
  display: flex;
  justify-content: center;
  padding: 14px var(--gutter) 10px;
}
.nav__wordmark {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--primary);
  font-size: clamp(18px, 1.9vw, 26px);
  letter-spacing: 0.32em;
  line-height: 1;
  padding: 2px 4px;
}
.nav__wordmark:hover { opacity: 0.75; }

.nav__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 6px var(--gutter) 14px;
  gap: 30px;
  border-top: 1px solid var(--line-soft);
}
.nav.is-scrolled .nav__brand { padding-top: 10px; padding-bottom: 6px; }
.nav.is-scrolled .nav__row { padding-top: 4px; padding-bottom: 10px; }

.nav__mark {
  color: var(--primary);
  display: flex; align-items: center;
}
.mark-img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.nav__links {
  display: flex;
  gap: clamp(14px, 2.2vw, 34px);
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity .2s;
}
.nav__links a:hover { opacity: 1; color: var(--primary); }

.nav__lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: 0.1em;
  font-weight: 500;
}
.nav__lang .lang {
  padding: 4px 6px;
  opacity: 0.45;
  transition: opacity .2s, color .2s;
}
.nav__lang .lang.is-active { opacity: 1; color: var(--primary); }
.nav__lang .lang:hover { opacity: 0.85; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__row { grid-template-columns: auto 1fr auto; }
  .nav__wordmark { font-size: 16px; letter-spacing: 0.28em; }
}

/* ==========================================================================
   HERO VIDEO (intro section)
   ========================================================================== */
.hero-video {
  position: relative;
  width: 100%;
  height: clamp(420px, 62vh, 680px);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  margin-top: clamp(96px, 11vh, 130px); /* space for the fixed 2-tier nav */
}
.hero-video__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: saturate(0.95) contrast(1) brightness(1.04);
}
/* Strong, visible fade: cream-coloured overlay that is transparent in the
   centre and opaque at the edges, so the rectangular video bleeds smoothly
   into the page bg on every side (especially the bottom seam). */
.hero-video__veil {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 95% 85% at center, transparent 40%, var(--bg) 100%);
  pointer-events: none;
}

.hero-video__mark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
}
.hero-video__wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7.5vw, 104px);
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--primary);
  margin: 0;
  text-shadow: 0 1px 0 rgba(246,239,223,0.6), 0 0 24px rgba(246,239,223,0.4);
}

.hero-video__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  opacity: 0.7;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.hero-video__scroll:hover { opacity: 1; }
.hero-video__scroll .scroll-line {
  width: 1px;
  height: 32px;
  background: var(--ink);
  opacity: 0.5;
  animation: scrollPulse 1.8s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 0.8; }
}

@media (max-width: 560px) {
  .hero-video { height: clamp(340px, 52vh, 520px); }
  .hero-video__wordmark { letter-spacing: 0.1em; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px var(--gutter) 80px;
  display: grid;
  grid-template-rows: 1fr auto auto auto auto;
  gap: 26px;
  overflow: hidden;
}

.hero__stamp {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}
.hero__stamp::before {
  content: ""; display: inline-block;
  width: 40px; height: 1px;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 14px;
}

.hero__meta {
  display: flex; gap: 14px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.hero__meta .dot { opacity: 0.4; }

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(60px, 12vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 20px 0;
  text-wrap: pretty;
  max-width: 14ch;
}
.hero__title .line { display: block; }
.hero__title .line-1 {
  padding-left: clamp(0px, 8vw, 120px);
  font-weight: 500;
}
.hero__title .line-2 {
  font-weight: 300;
  color: var(--primary);
  font-size: 0.95em;
}
.hero__title .italic {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
.hero__title .line-3 {
  text-align: right;
  padding-right: clamp(0px, 6vw, 60px);
}

/* alt heading styles (from Tweaks) */
body[data-hero="italiana"] .hero__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(48px, 10vw, 160px);
  letter-spacing: 0.01em;
}
body[data-hero="italiana"] .hero__title .italic {
  font-family: var(--display);
  font-style: normal;
}
body[data-hero="mixed"] .hero__title {
  font-style: italic;
}

.hero__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.45;
  max-width: 48ch;
  color: var(--ink-soft);
  font-weight: 400;
}

.hero__ctas {
  display: flex; gap: 18px; flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.btn {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 26px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  transition: all .25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateX(2px);
}
.btn-primary svg path { stroke: currentColor; }
.btn-ghost {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); }

.btn-wide { width: 100%; justify-content: space-between; padding: 22px 26px; }

.hero__quote-frame {
  margin: 60px calc(var(--gutter) * -1) 0;   /* break out of hero's padding, full-bleed */
  position: relative;
  height: clamp(280px, 36vh, 420px);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero__quote-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.92) contrast(1.02);
  z-index: 0;
}
.hero__quote-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at center, rgba(14,10,6,0.45) 0%, rgba(14,10,6,0.72) 80%),
    linear-gradient(180deg, rgba(14,10,6,0.45), rgba(14,10,6,0.6));
  z-index: 1;
}
.hero__quote-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px clamp(30px, 8vw, 120px);
  color: #F6EFDF;
}
/* double-line inset frame, drawn as two pseudo-elements */
.hero__quote-inner::before,
.hero__quote-inner::after {
  content: "";
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  right: clamp(24px, 4vw, 64px);
  height: 5px;
  border-top: 1px solid rgba(246,239,223,0.55);
  border-bottom: 1px solid rgba(246,239,223,0.55);
  pointer-events: none;
}
.hero__quote-inner::before { top: clamp(20px, 3vw, 36px); }
.hero__quote-inner::after  { bottom: clamp(20px, 3vw, 36px); }
.hero__quote-orn {
  font-family: var(--serif);
  font-size: 26px;
  color: rgba(246,239,223,0.75);
  margin-bottom: 18px;
  letter-spacing: 0.6em;
  padding-left: 0.6em; /* center-offset the letterspacing */
}
.hero__quote-orn::before { content: "◦  ◦  "; }
.hero__quote-orn::after  { content: "  ◦  ◦"; }
.hero__quote-text {
  margin: 0;
  font-family: var(--display, var(--serif));
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.3;
  max-width: 28ch;
  text-wrap: balance;
  color: #F6EFDF;
  text-shadow: 0 1px 20px rgba(0,0,0,0.35);
}
.hero__quote-attr {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246,239,223,0.8);
}
@media (max-width: 720px) {
  .hero__quote-frame { height: 320px; margin-inline: calc(var(--gutter) * -1); }
  .hero__quote-inner { padding-inline: 24px; }
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll .scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--ink) 0%, var(--ink) 30%, transparent 100%);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); }
}

/* ==========================================================================
   SHARED SECTION HEADERS
   ========================================================================== */
section { position: relative; padding: clamp(80px, 10vw, 160px) var(--gutter); }

.section-header {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column; gap: 18px;
}
.section-header.center { text-align: center; align-items: center; }

.eyebrow {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}
.eyebrow.light { color: var(--paper); opacity: 0.7; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5.4vw, 80px);
  line-height: 0.98;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.section-title.light { color: var(--paper); }
.section-title .italic { font-style: italic; color: var(--primary); display: block; }

.lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  max-width: 58ch;
  color: var(--ink-soft);
}
.lede.light { color: rgba(246, 239, 223, 0.82); }

.amp {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--primary);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about__photo {
  margin: 0;
  position: relative;
}
.about__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.about__photo figcaption {
  margin-top: 16px;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; justify-content: space-between;
}
.about__photo figcaption::after {
  content: "Fig. 01";
}

.about__text .lede { margin-top: 0; font-style: italic; }
.about__text p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 55ch;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.about__stats dt {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--primary);
  margin: 0;
}
.about__stats dd {
  margin: 8px 0 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

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

/* ==========================================================================
   PHILOSOPHY (full-bleed image)
   ========================================================================== */
.philosophy {
  max-width: var(--maxw);
  margin: 0 auto;
}
.philo-grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  grid-template-rows: auto auto;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.philo-img {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.philo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1.2s ease;
}
.philo-img:hover img { transform: scale(1.03); }
.philo-img figcaption {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.philo-img--tall {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
  max-height: 760px;
}
.philo-img--wide {
  grid-column: 2;
  grid-row: 2;
  /* horse-moon-1.jpg is portrait 3:4 — match it so the image fills the
     frame edge-to-edge with no crop and no letterboxing. */
  aspect-ratio: 3 / 4;
  margin-top: 20px;
  margin-left: clamp(0px, 4vw, 60px);
  max-width: 600px;
}
.philo-text {
  grid-column: 2;
  grid-row: 1;
  padding: clamp(20px, 4vw, 60px) 0 0;
  display: flex; flex-direction: column; gap: 24px;
  max-width: 620px;
}
.philosophy__quote {
  margin: 0;
  color: var(--ink);
}
.philosophy__quote p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  font-style: italic;
  font-weight: 300;
  margin: 0 0 18px;
  text-wrap: pretty;
  color: var(--ink);
}
/* Drop-cap only on the very first paragraph; otherwise the 4-paragraph
   manifesto would get 4 red drop-caps. */
.philosophy__quote p:first-of-type::first-letter {
  color: var(--primary);
  font-size: 1.6em;
  line-height: 0.9;
  padding-right: 4px;
}
.philosophy__quote footer {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-style: normal;
  color: var(--primary);
}
@media (max-width: 900px) {
  .philo-grid { grid-template-columns: 1fr; }
  .philo-img--tall, .philo-img--wide, .philo-text {
    grid-column: 1; grid-row: auto;
    margin-left: 0; max-width: none; max-height: none;
  }
  .philo-img--tall { aspect-ratio: 4 / 5; }
}

/* ==========================================================================
   EXPERIENCES
   ========================================================================== */
.experiences {
  max-width: var(--maxw);
  margin: 0 auto;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.exp-card {
  position: relative;
  padding: 50px 34px 40px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
  min-height: 560px;
}
.exp-card.featured {
  background: var(--ink);
  color: var(--paper);
}
.exp-card.featured .exp-card__num,
.exp-card.featured .exp-card__title .amp { color: var(--paper); }
.exp-card.featured .exp-card__meta { color: rgba(246,239,223,0.6); }
.exp-card.featured p { color: rgba(246,239,223,0.85); }

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -40px rgba(43,30,20,0.3);
}

.exp-card__num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.3em;
  position: absolute;
  top: 26px; right: 30px;
}
.exp-card__art {
  height: 70px;
  margin-bottom: 30px;
  color: var(--ink-soft);
}
.exp-card.featured .exp-card__art { color: var(--paper); opacity: 0.6; }
.ink-art { height: 100%; width: auto; }

.exp-card__title {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.exp-card__title .amp { color: var(--primary); font-size: 0.85em; margin: 0 4px; }

.exp-card__meta {
  display: flex; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.exp-card__meta .dot { opacity: 0.4; }

.exp-card p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 28px;
  flex: 1;
}

.exp-card__link {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  color: var(--primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  align-self: flex-start;
  transition: transform .2s;
}
.exp-card.featured .exp-card__link {
  color: var(--paper);
  border-color: var(--paper);
}
.exp-card__link:hover { transform: translateX(4px); }

@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { min-height: auto; }
}

/* ==========================================================================
   LESSONS (dark split)
   ========================================================================== */
.lessons {
  background: var(--dark);
  color: var(--paper);
  padding-left: 0; padding-right: 0;
}
.lessons__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: stretch;
}
.lessons__left {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
/* Strip default <p> margins inside the lessons left column so consecutive
   .lede paragraphs only get the flex `gap` between them, not gap + margins. */
.lessons__left p { margin: 0; }
/* Same for the booking section, which also stacks two .lede paragraphs. */
.book__left p { margin: 0; }
.lessons__list {
  list-style: none; padding: 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(246,239,223,0.12);
}
.lessons__list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(246,239,223,0.12);
  font-family: var(--serif);
  font-size: 20px;
  transition: padding .3s ease, color .3s ease;
}
.lessons__list li:hover {
  padding-left: 14px;
  color: var(--primary);
}
.lessons__list li span:first-child {
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--primary);
  font-family: var(--sans);
  padding-top: 6px;
}
.lessons__photo {
  margin: 0; position: relative; overflow: hidden;
}
.lessons__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.lessons__photo figcaption {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--paper); opacity: 0.8;
  background: rgba(14,10,6,0.4);
  padding: 8px 12px;
  backdrop-filter: blur(4px);
}

@media (max-width: 900px) {
  .lessons__split { grid-template-columns: 1fr; }
  .lessons__photo { min-height: 50vh; }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing { max-width: var(--maxw); margin: 0 auto; }
.pricing__toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  margin-bottom: 40px;
}
.pt-btn {
  padding: 14px 28px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
  transition: all .2s;
}
.pt-btn:last-child { border-right: 0; }
.pt-btn.is-active {
  background: var(--ink);
  color: var(--paper);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--serif);
}
.price-table thead th {
  text-align: left;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 18px 20px;
  border-bottom: 1px solid var(--ink);
}
.price-table thead th:first-child { padding-left: 0; }
.price-table thead th:last-child { padding-right: 0; }

.price-table tbody td {
  padding: 24px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 20px;
  vertical-align: middle;
}
.price-table tbody tr:hover td { background: rgba(43, 30, 20, 0.03); }
.price-table tbody td:first-child { padding-left: 0; font-weight: 500; }
.price-table tbody td:last-child { padding-right: 0; text-align: right; }
.price-table .price {
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.t-book {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.t-book:hover { color: var(--primary); }

.pricing__note {
  margin-top: 40px;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 720px) {
  .price-table thead th:nth-child(2), .price-table tbody td:nth-child(2) { display: none; }
  .price-table tbody td { padding: 16px 12px; font-size: 16px; }
}

/* ==========================================================================
   BOOKING
   ========================================================================== */
.book {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.book__left { position: sticky; top: 100px; }
.book__info {
  margin-top: 50px;
  display: flex; flex-direction: column; gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.book__info-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 6px;
}
.book__info strong { font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.35; }

.book__form {
  display: flex; flex-direction: column; gap: 28px;
  background: var(--paper);
  padding: clamp(30px, 4vw, 56px);
  border: 1px solid var(--line-soft);
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="time"],
.field input[type="number"],
.field textarea {
  padding: 14px 0;
  font: inherit;
  font-family: var(--serif);
  font-size: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  transition: border-color .2s;
}
.field textarea {
  border: 1px solid var(--line);
  padding: 14px;
  font-family: var(--serif);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

.radio-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.radio-chips label {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: 0; text-transform: none;
  color: var(--ink);
}
.radio-chips label:hover { border-color: var(--ink); }
.radio-chips input { position: absolute; opacity: 0; pointer-events: none; }
.radio-chips input:checked + span { color: var(--paper); }
.radio-chips label:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.pay-placeholder {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(43,30,20,0.05);
  border: 1px dashed var(--line);
  font-family: var(--serif); font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
}

.book__success {
  background: var(--primary);
  color: var(--paper);
  padding: 20px;
  text-align: center;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

@media (max-width: 900px) {
  .book { grid-template-columns: 1fr; }
  .book__left { position: static; }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { max-width: var(--maxw); margin: 0 auto; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 200px 280px 220px;
  gap: 16px;
}
.gallery__grid figure {
  margin: 0; overflow: hidden;
  position: relative;
}
.gallery__grid img,
.gallery__grid video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .8s ease;
  filter: saturate(0.95);
}
.gallery__grid figure:hover img,
.gallery__grid figure:hover video { transform: scale(1.04); }

.g1 { grid-column: 1 / 4; grid-row: 1 / 3; }
.g2 { grid-column: 4 / 6; grid-row: 1 / 2; }
.g3 { grid-column: 6 / 7; grid-row: 1 / 3; }
.g4 { grid-column: 4 / 5; grid-row: 2 / 4; }
.g5 { grid-column: 5 / 7; grid-row: 3 / 4; }
.g6 { grid-column: 1 / 4; grid-row: 3 / 4; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 260px); gap: 10px; }
  .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: auto; grid-row: auto; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  max-width: var(--maxw); margin: 0 auto;
  background: var(--bg-deep);
}
.testimonials { background: transparent; }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 50px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.test {
  margin: 0;
  padding: 40px 30px;
  background: var(--paper);
  border-top: 2px solid var(--primary);
  position: relative;
}
.test::before {
  content: "“";
  position: absolute;
  top: -10px; left: 24px;
  font-family: var(--serif);
  font-size: 100px;
  color: var(--primary);
  line-height: 1;
  opacity: 0.2;
}
.test blockquote {
  font-family: var(--serif);
  font-size: 20px; line-height: 1.45;
  font-style: italic;
  margin: 20px 0 24px;
  color: var(--ink);
}
.test figcaption {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
}
.test figcaption strong { color: var(--primary); font-weight: 500; }

@media (max-width: 900px) {
  .test-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 1000px; margin: 0 auto; }
.faq-list {
  border-top: 1px solid var(--ink);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-list summary {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "＋";
  font-family: var(--sans);
  font-size: 20px;
  color: var(--primary);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-list p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 70ch;
  margin: 16px 0 0;
}

/* ==========================================================================
   CONTACT (dark)
   ========================================================================== */
.contact {
  background: var(--bg-deep);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 80vh;
  align-items: stretch;
}
.contact__left {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
  gap: 20px;
}
.contact__details {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  font-style: normal;
}
.contact__label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--primary);
  display: block; margin-bottom: 8px;
}
.contact__details p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  margin: 0;
  color: var(--ink);
}
.contact__details a { border-bottom: 1px solid rgba(43,30,20,0.25); }
.contact__details a:hover { color: var(--primary); border-color: var(--primary); }

.contact__map { position: relative; min-height: 500px; }
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.5) contrast(0.95) sepia(0.1);
}
.contact__map-overlay {
  position: absolute; top: 24px; left: 24px;
  background: var(--dark);
  color: var(--paper);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid var(--primary);
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .contact__map { min-height: 400px; }
  .contact__details { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   FOOT
   ========================================================================== */
.foot {
  background: var(--bg);
  color: var(--ink);
  padding: 80px var(--gutter) 40px;
}
.foot__top {
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(43,30,20,0.12);
}
.wordmark {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--primary);
  display: inline-block;
}
.foot__tag {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 16px;
}
.foot__bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   TWEAKS PANEL
   ========================================================================== */
.tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 500;
  width: 280px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 20px;
  box-shadow: 0 20px 60px -10px rgba(43,30,20,0.3);
  font-family: var(--sans);
  font-size: 13px;
  display: flex; flex-direction: column; gap: 14px;
}
.tweaks[hidden] { display: none; }
.tweaks header {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.tweaks header button { font-size: 22px; line-height: 1; color: var(--ink-soft); }
.t-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.t-row label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); }
.t-row input[type="color"] { width: 40px; height: 28px; border: 1px solid var(--line); background: transparent; cursor: pointer; padding: 0; }
.t-row select { padding: 6px 8px; border: 1px solid var(--line); background: transparent; font: inherit; font-size: 12px; }
.switch { position: relative; display: inline-block; width: 40px; height: 22px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; background: #ccc; transition: .2s; cursor: pointer; border-radius: 22px; }
.switch span::before { content: ""; position: absolute; height: 16px; width: 16px; left: 3px; bottom: 3px; background: white; transition: .2s; border-radius: 50%; }
.switch input:checked + span { background: var(--primary); }
.switch input:checked + span::before { transform: translateX(18px); }

/* ============================================================================
   Booking widgets — calendar picker, participants repeater, WhatsApp FAB
============================================================================ */

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field-hint {
  margin: 0;
  padding: .55rem .8rem;
  border: 1px dashed rgba(0, 0, 0, .15);
  border-radius: 6px;
  font-size: .9rem;
  color: var(--ink-soft);
  background: transparent;
}

.cal-widget {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: .8rem;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  background: var(--paper);
}

.cal-status {
  font-size: .92rem;
  color: var(--ink-soft);
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: .5rem;
  max-height: 200px;
  overflow-y: auto;
}

.cal-day-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: .55rem .4rem;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-family: inherit;
  font-size: .82rem;
  line-height: 1.2;
  color: var(--ink);
  transition: all .15s;
}

.cal-day-chip:hover { border-color: var(--primary); }

.cal-day-chip.is-active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.cal-day-chip__weekday {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  opacity: .8;
}

.cal-day-chip__date { font-weight: 500; }

.cal-slots {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.cal-slot-chip {
  padding: .42rem .8rem;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 999px;
  background: white;
  font-family: inherit;
  font-size: .9rem;
  cursor: pointer;
  color: var(--ink);
  transition: all .15s;
}

.cal-slot-chip:hover { border-color: var(--primary); }

.cal-slot-chip.is-active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.participant-row {
  padding: .8rem;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  background: rgba(0, 0, 0, .015);
  margin-bottom: .6rem;
}
.participant-row__title {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .6rem;
}
.participant-row__title label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.participant-row .field-row {
  margin-top: .5rem;
}

/* Success card after form submit — placed in the form's grid column so
   it occupies the same space when the form is hidden. */
.book__success-card {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(138, 26, 26, .15);
  border-radius: 10px;
  background: rgba(138, 26, 26, .04);
  color: var(--ink);
}
@media (max-width: 900px) {
  .book__success-card { grid-column: 1 / -1; }
}
.book__success-actions {
  margin-top: .8rem;
}
.book__success-reset {
  appearance: none;
  border: 1px solid rgba(138, 26, 26, .25);
  background: transparent;
  color: var(--primary);
  padding: .55rem 1.2rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: .9rem;
  cursor: pointer;
  transition: background .15s;
}
.book__success-reset:hover {
  background: rgba(138, 26, 26, .08);
}
.book__success-icon {
  color: var(--primary);
}
.book__success-title {
  margin: .2rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
}
.book__success-body {
  margin: 0;
  max-width: 38rem;
  font-size: .98rem;
  color: var(--ink-soft);
}

.book__error {
  margin-top: 1rem;
  padding: .7rem 1rem;
  border-left: 3px solid var(--primary);
  background: rgba(138, 26, 26, .07);
  color: var(--primary);
  font-size: .92rem;
  border-radius: 4px;
}

.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
  transition: transform .2s, box-shadow .2s;
}

.wa-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}

@media (max-width: 600px) {
  .wa-fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}
