/* ================================================================
   Font de l'Oca — Shared Stylesheet
   ================================================================ */

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --cream: #F8F4EF;
  --warm: #FEFCFA;
  --stone: #CEC0A8;
  --stone-lt: #E8DFD4;
  --terra: #BF8B6A;        /* softened — was #B5744E */
  --terra-lt: #D4A88A;     /* softened — was #D4916D */
  --earth: #A08068;        /* lightened — was #7A5C45 */
  --dark: #3D2C1E;
  --olive: var(--sage);
  --text: #2A1F15;
  --text-lt: #7A6A5E;      /* slightly lighter — was #6B5A4E */
  --border: #E6DCD2;       /* lighter — was #DDD0C0 */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* ── Sage / Logo Green ── */
  --sage:      #4A5E52;    /* softened — was #3C4E40 */
  --sage-mid:  #7A9688;    /* softened — was #6A8572 */
  --sage-pale: #C8DAD2;
  --sage-mist: #EFF5F2;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── SCROLL PROGRESS ─────────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--terra); z-index: 9999; transition: width 0.1s linear; pointer-events: none;
}

/* ── LANGUAGE ─────────────────────────────────────────────────────── */
/* Language switching is handled entirely by JS (data-i18n / setLang).
   The old CSS show/hide rules were removed — they were hiding the
   lang-btn elements because those also carry data-lang attributes. */

/* ── NAVIGATION ───────────────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 2rem 3rem; display: flex; justify-content: space-between;
  align-items: center; transition: all 0.5s var(--ease);
}
#main-nav.scrolled {
  background: rgba(247, 242, 236, 0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 1rem 3rem; box-shadow: 0 1px 30px rgba(61, 44, 30, 0.07);
}
#main-nav.nav-solid {
  background: rgba(247, 242, 236, 0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 1rem 3rem; box-shadow: 0 1px 30px rgba(61, 44, 30, 0.07);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 400; color: #fff; letter-spacing: 0.05em; transition: color 0.4s;
}
#main-nav.scrolled .nav-logo,
#main-nav.nav-solid .nav-logo { color: var(--dark); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85); font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
  height: 1px; background: var(--terra); transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
#main-nav.scrolled .nav-links a,
#main-nav.nav-solid .nav-links a { color: var(--text-lt); }
#main-nav.scrolled .nav-links a:hover,
#main-nav.nav-solid .nav-links a:hover { color: var(--terra); }
#main-nav.scrolled .nav-links a.active,
#main-nav.nav-solid .nav-links a.active { color: var(--terra); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.lang-switcher { display: flex; gap: 0.3rem; }
.lang-btn {
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8); padding: 0.22rem 0.6rem; font-size: 0.65rem;
  letter-spacing: 0.12em; cursor: pointer; transition: all 0.3s; font-family: 'Jost', sans-serif;
}
#main-nav.scrolled .lang-btn,
#main-nav.nav-solid .lang-btn { border-color: var(--border); color: var(--text-lt); }
.lang-btn.active, .lang-btn:hover { background: var(--terra); border-color: var(--terra); color: #fff; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 1px; background: #fff; transition: all 0.4s; }
#main-nav.scrolled .hamburger span,
#main-nav.nav-solid .hamburger span { background: var(--dark); }

/* ── MOBILE DRAWER ────────────────────────────────────────────────── */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(20, 13, 8, 0.5);
  z-index: 550; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 88vw);
  background: var(--warm); z-index: 600; transform: translateX(100%);
  transition: transform 0.45s var(--ease); padding: 5rem 2rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.4rem; overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem;
  color: var(--dark); font-style: italic; transition: color 0.3s;
  min-height: 44px; display: flex; align-items: center;
}
.nav-drawer a:hover { color: var(--terra); }
.drawer-close {
  position: absolute; top: 1.25rem; right: 1.25rem; background: none;
  border: none; cursor: pointer; font-size: 1.4rem; color: var(--text-lt);
  line-height: 1; min-width: 44px; min-height: 44px; display: flex;
  align-items: center; justify-content: center;
}
/* Language switcher inside mobile drawer */
.drawer-lang {
  margin-top: auto; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.drawer-lang-label {
  display: block; font-size: 0.58rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text-lt); margin-bottom: 0.75rem;
  font-family: 'Jost', sans-serif;
}
.drawer-lang-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.drawer-lang-btns .lang-btn {
  padding: 0.5rem 1rem; font-size: 0.7rem; min-height: 40px;
}

/* ── HERO (full-page) ─────────────────────────────────────────────── */
.hero {
  height: 100vh; min-height: 640px; position: relative; display: flex;
  align-items: center; justify-content: center; text-align: center; overflow: hidden;
  background: var(--dark) url('images/entrance.jpg') center/cover no-repeat;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,13,8,0.15) 0%, rgba(20,13,8,0.45) 60%, rgba(20,13,8,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 0 2rem; }
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s 0.4s var(--ease) forwards;
}
.hero h1 {
  font-size: clamp(3.8rem, 9vw, 7.5rem); color: var(--warm); font-style: italic;
  font-weight: 300; margin-bottom: 1.25rem; line-height: 0.95;
  opacity: 0; animation: fadeUp 1.1s 0.65s var(--ease) forwards;
}
.hero-tagline {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em; margin-bottom: 2.75rem; font-weight: 300;
  opacity: 0; animation: fadeUp 1s 0.9s var(--ease) forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.1s var(--ease) forwards;
}
.btn-outline {
  display: inline-block; border: 1px solid rgba(255, 255, 255, 0.6); color: #fff;
  padding: 0.9rem 2.5rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  transition: all 0.35s; font-family: 'Jost', sans-serif; font-weight: 400;
}
.btn-outline:hover { background: var(--terra); border-color: var(--terra); }
.btn-film {
  display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem;
  font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85); border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.9rem 2.5rem; cursor: pointer; background: transparent;
  font-family: 'Jost', sans-serif; transition: all 0.35s;
}
.btn-film:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-film svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.scroll-cue {
  position: absolute; bottom: 2.25rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0; animation: fadeIn 1s 1.7s ease forwards;
}
.scroll-line {
  width: 1px; height: 52px; background: rgba(255, 255, 255, 0.18);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%;
  height: 100%; background: rgba(255, 255, 255, 0.65); animation: drip 2.4s ease infinite;
}
.scroll-label { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255, 255, 255, 0.38); }

/* ── PAGE HERO (interior pages) ──────────────────────────────────── */
.page-hero {
  height: 60vh; min-height: 420px; position: relative; display: flex;
  align-items: flex-end; justify-content: flex-start; overflow: hidden;
  background: var(--dark) center/cover no-repeat;
}
.page-hero .hero-overlay { background: linear-gradient(to top, rgba(20,13,8,0.82) 0%, rgba(20,13,8,0.25) 60%, rgba(20,13,8,0.1) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 4rem 5rem; max-width: 800px; }
.page-hero-content .section-label { color: var(--stone); margin-bottom: 0.75rem; }
.page-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem); color: var(--warm); font-style: italic;
  font-weight: 300; line-height: 1.05;
}
.page-hero-content p { color: rgba(255,255,255,0.7); margin-top: 1rem; font-size: 1rem; max-width: 520px; }

/* ── ANIMATIONS ───────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes drip { 0% { top: -100%; } 100% { top: 110%; } }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; } .reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.36s; } .reveal-d4 { transition-delay: 0.5s; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── LAYOUT ───────────────────────────────────────────────────────── */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 3rem; }
.section-label {
  display: block; font-size: 0.65rem; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 1.25rem;
}
.divider { width: 38px; height: 1px; background: var(--terra); margin: 1.5rem 0 2rem; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn-terra {
  display: inline-block; background: var(--terra); color: #fff;
  padding: 0.9rem 2.5rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background 0.3s; font-family: 'Jost', sans-serif;
}
.btn-terra:hover { background: var(--earth); }
.btn-ghost {
  display: inline-block; border: 1px solid var(--terra); color: var(--terra);
  padding: 0.9rem 2.5rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  transition: all 0.3s; font-family: 'Jost', sans-serif;
}
.btn-ghost:hover { background: var(--terra); color: #fff; }
.btn-solid {
  background: var(--terra); color: #fff; padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.3s; align-self: flex-start; display: inline-block;
}
.btn-solid:hover { background: var(--earth); }

/* ── MARQUEE ──────────────────────────────────────────────────────── */
.marquee-strip { background: var(--dark); overflow: hidden; padding: 1rem 0; }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 34s linear infinite; }
.marquee-item {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--stone); padding: 0 3.5rem; white-space: nowrap; flex-shrink: 0;
}
.marquee-sep { color: var(--terra); }

/* ── WELCOME / INTRO BLOCK ────────────────────────────────────────── */
.welcome { background: var(--warm); }
.welcome-inner { max-width: 720px; margin: 0 auto; text-align: center; padding: 0 3rem; }
.welcome h2 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); margin-bottom: 1.5rem; font-style: italic; }
.welcome p { font-size: 1.05rem; color: var(--text-lt); line-height: 1.9; margin-bottom: 1.25rem; }
.welcome blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.55rem;
  font-style: italic; color: var(--terra); line-height: 1.4; margin: 2.5rem 0;
}
.welcome-sig { font-size: 0.9rem; color: var(--text-lt); letter-spacing: 0.06em; font-style: italic; margin-top: 0.5rem; }
.welcome-cta { margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT / TWO-COLUMN ───────────────────────────────────────────── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); margin-bottom: 1rem; font-style: italic; }
.about-text p { color: var(--text-lt); margin-bottom: 1rem; font-size: 1rem; }
.img-wrap { position: relative; overflow: hidden; cursor: pointer; }
.img-wrap img { width: 100%; height: 580px; object-fit: cover; transition: transform 0.8s var(--ease); }
.img-wrap:hover img { transform: scale(1.04); }
.img-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7);
  background: rgba(30, 18, 10, 0.45); padding: 0.4rem 0.8rem; backdrop-filter: blur(4px);
}
.img-expand {
  position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.45); display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: opacity 0.3s; background: rgba(0, 0, 0, 0.3);
}
.img-wrap:hover .img-expand { opacity: 1; }
.img-expand svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 1.5; }

/* ── OUR STORY ────────────────────────────────────────────────────── */
.our-story { background: var(--dark); }
.our-story .section-label { color: var(--stone); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.story-text h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); font-style: italic; color: var(--warm); margin-bottom: 1rem; }
.story-text p { color: rgba(253, 250, 247, 0.68); margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.85; }
.story-text .story-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem;
  font-style: italic; color: var(--stone); border-left: 2px solid var(--terra);
  padding-left: 1.5rem; margin: 2rem 0; line-height: 1.45;
}
.story-sig { font-size: 0.88rem; color: var(--stone); letter-spacing: 0.06em; font-style: italic; }
.story-img-wrap { position: relative; overflow: hidden; cursor: pointer; }
.story-img-wrap img { width: 100%; height: 640px; object-fit: cover; transition: transform 0.8s var(--ease); }
.story-img-wrap:hover img { transform: scale(1.04); }

/* ── THE PLACE ────────────────────────────────────────────────────── */
.the-place { background: var(--warm); }
.place-intro { max-width: 660px; margin-bottom: 4rem; }
.place-intro h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); font-style: italic; margin-bottom: 1rem; }
.place-intro p { color: var(--text-lt); font-size: 1rem; line-height: 1.85; }
.place-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; margin-bottom: 4rem; }
.place-card { border-top: 1px solid var(--border); padding-top: 1.75rem; }
.place-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; margin-bottom: 0.75rem; color: var(--dark); }
.place-card p { font-size: 0.92rem; color: var(--text-lt); line-height: 1.75; }
.place-images { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; margin-top: 1rem; }
.place-img-item { overflow: hidden; cursor: pointer; height: 280px; }
.place-img-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s; }
.place-img-item:hover img { transform: scale(1.05); filter: brightness(0.9); }

/* ── HISTORY ──────────────────────────────────────────────────────── */
.history { background: var(--warm); }
.history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.history-text h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); font-style: italic; margin-bottom: 1rem; }
.history-text p { color: var(--text-lt); margin-bottom: 1.1rem; font-size: 0.98rem; line-height: 1.85; }
.history-pillars { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.h-pillar { display: flex; gap: 1.25rem; align-items: flex-start; }
.h-pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--terra); opacity: 0.35; line-height: 1; min-width: 2.5rem; }
.h-pillar-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; margin-bottom: 0.3rem; color: var(--dark); }
.h-pillar-text p { font-size: 0.88rem; color: var(--text-lt); margin: 0; line-height: 1.7; }
.history-img-stack { display: grid; gap: 4px; }
.history-img-stack .hi-main { height: 400px; overflow: hidden; cursor: pointer; }
.history-img-stack .hi-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.history-img-stack .hi-main:hover img { transform: scale(1.04); }
.history-img-stack .hi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.history-img-stack .hi-sm { height: 200px; overflow: hidden; cursor: pointer; }
.history-img-stack .hi-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.history-img-stack .hi-sm:hover img { transform: scale(1.05); }

/* ── TILE STRIP ───────────────────────────────────────────────────── */
.tiles-strip { display: flex; overflow: hidden; height: 220px; }
.tiles-strip img {
  flex: 1; object-fit: cover; filter: brightness(0.8) saturate(0.88);
  transition: flex 0.65s var(--ease), filter 0.4s ease; cursor: pointer;
}
.tiles-strip img:hover { flex: 2.8; filter: brightness(1) saturate(1.1); }

/* ── VISION ───────────────────────────────────────────────────────── */
.vision { background: var(--cream); }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.vision-img-wrap { position: relative; overflow: hidden; cursor: pointer; }
.vision-img-wrap img { width: 100%; height: 600px; object-fit: cover; transition: transform 0.8s var(--ease); }
.vision-img-wrap:hover img { transform: scale(1.04); }
.vision-text h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); margin-bottom: 1rem; font-style: italic; }
.vision-text p { color: var(--text-lt); margin-bottom: 1rem; }
.vision-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.vf-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem;
  border: 1px solid var(--border); transition: border-color 0.3s, box-shadow 0.3s;
}
.vf-item:hover { border-color: var(--terra); box-shadow: 0 4px 20px rgba(181, 116, 78, 0.1); }
.vf-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--terra); opacity: 0.4; line-height: 1; min-width: 2rem; }
.vf-text strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; margin-bottom: 0.2rem; }
.vf-text p { font-size: 0.88rem; color: var(--text-lt); margin: 0; }

/* ── WAYS / CARDS ─────────────────────────────────────────────────── */
.ways { background: var(--dark); padding: 6rem 0; }
.ways-head { text-align: center; margin-bottom: 4rem; }
.ways-head .section-label { color: var(--stone); }
.ways-head h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--warm); font-style: italic; }
.ways-head p { color: rgba(253, 250, 247, 0.6); max-width: 560px; margin: 1rem auto 0; font-size: 0.98rem; }
.ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.way-card {
  background: rgba(255, 255, 255, 0.04); padding: 3.5rem;
  border: 1px solid rgba(200, 184, 154, 0.12); transition: background 0.4s, border-color 0.4s;
}
.way-card:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(181, 116, 78, 0.3); }
.way-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--terra); opacity: 0.3; line-height: 1; margin-bottom: 1.25rem; }
.way-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-style: italic; color: var(--warm); margin-bottom: 1rem; }
.way-card p { color: rgba(253, 250, 247, 0.6); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.way-link {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); border-bottom: 1px solid rgba(200, 184, 154, 0.3);
  padding-bottom: 0.2rem; transition: color 0.3s, border-color 0.3s; display: inline-block;
}
.way-card:hover .way-link { color: var(--terra); border-color: var(--terra); }

/* ── VALUES ───────────────────────────────────────────────────────── */
.values { background: var(--earth); padding: 6rem 0; }
.values-head { text-align: center; margin-bottom: 4rem; }
.values-head .section-label { color: rgba(253, 250, 247, 0.5); }
.values-head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--warm); font-style: italic; }
.values-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.value-item { padding: 2.5rem 2.25rem; border: 1px solid rgba(253, 250, 247, 0.08); text-align: left; }
.value-icon { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--stone); margin-bottom: 0.6rem; font-style: italic; opacity: 0.5; display: block; }
.value-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--warm); margin-bottom: 0.6rem; font-weight: 400; }
.value-item p { font-size: 0.88rem; color: rgba(253, 250, 247, 0.6); line-height: 1.75; }

/* ── GALLERY ──────────────────────────────────────────────────────── */
.gallery { background: var(--dark); padding: 7rem 0; }
.gallery-head { text-align: center; margin-bottom: 3.5rem; }
.gallery-head .section-label { color: var(--stone); }
.gallery-head h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--warm); font-style: italic; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 0 4px; }
.g-item { position: relative; overflow: hidden; cursor: pointer; background: #1a1008; height: 280px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease), filter 0.4s ease; }
.g-item:hover img { transform: scale(1.07); filter: brightness(0.85); }
.g-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(20, 13, 8, 0.78)); opacity: 0; transition: opacity 0.4s ease;
}
.g-item:hover .g-caption { opacity: 1; }
.g-caption span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); }
.g-expand-icon {
  position: absolute; top: 1rem; right: 1rem; width: 30px; height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4); display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: opacity 0.3s; background: rgba(0, 0, 0, 0.3);
}
.g-item:hover .g-expand-icon { opacity: 1; }
.g-expand-icon svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 1.5; }
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 564px; }
.g-item:nth-child(6) { grid-column: span 2; }
.g-item:nth-child(11) { grid-column: span 2; grid-row: span 2; height: 564px; }
.g-item:nth-child(16) { grid-column: span 2; }

/* Gallery page — full masonry */
.gallery-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 0; }
.gallery-page-grid .g-item { height: 320px; }
.gallery-page-grid .g-item:nth-child(4n+1) { grid-column: span 2; height: 400px; }
.gallery-page-grid .g-item:nth-child(n) { grid-column: unset; height: 320px; }
.gallery-page-grid .g-item:nth-child(1),
.gallery-page-grid .g-item:nth-child(8),
.gallery-page-grid .g-item:nth-child(15) { grid-column: span 2; height: 420px; }

/* ── LIGHTBOX ─────────────────────────────────────────────────────── */
#lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10, 6, 3, 0.97); display: flex; align-items: center;
  justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
#lightbox.open { opacity: 1; pointer-events: all; }
.lb-inner { position: relative; max-width: 90vw; max-height: 88vh; transform: scale(0.93); transition: transform 0.4s var(--ease); }
#lightbox.open .lb-inner { transform: scale(1); }
#lb-img { max-width: 88vw; max-height: 82vh; object-fit: contain; display: block; margin: 0 auto; }
#lb-caption { text-align: center; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin-top: 1rem; }
#lb-counter { position: fixed; top: 2rem; right: 2rem; font-size: 0.68rem; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.35); }
#lb-close {
  position: fixed; top: 1.5rem; left: 1.5rem; width: 44px; height: 44px;
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.22); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: border-color 0.3s;
}
#lb-close:hover { border-color: var(--terra); }
#lb-close svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.5; }
.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px;
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s; z-index: 2001;
}
.lb-arrow:hover { border-color: var(--terra); background: rgba(181, 116, 78, 0.12); }
.lb-arrow svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.5; }
#lb-prev { left: 1.5rem; }
#lb-next { right: 1.5rem; }

/* ── VIDEO MODAL ──────────────────────────────────────────────────── */
.video-modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(10, 6, 3, 0.94);
  z-index: 3000; align-items: center; justify-content: center;
}
.video-modal-overlay.open { display: flex; }
.video-modal-inner {
  position: relative; width: min(92vw, 1100px); aspect-ratio: 16/9;
  background: #000; border-radius: 2px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.video-modal-inner iframe { width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute; top: -48px; right: 0; color: rgba(255,255,255,0.8);
  font-size: 1.6rem; background: none; border: none; cursor: pointer; font-family: 'Jost', sans-serif;
}

/* ── NEWSLETTER ───────────────────────────────────────────────────── */
.newsletter { background: #EDE6DC; padding: 5.5rem 0; }
.nl-inner { max-width: 540px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.nl-inner h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--dark); font-style: italic; margin-bottom: 0.75rem; }
.nl-inner p { color: var(--text-lt); margin-bottom: 2rem; font-size: 0.95rem; }
.nl-form { display: flex; max-width: 420px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 0.9rem 1.25rem; background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border); border-right: none; color: var(--text);
  font-family: 'Jost', sans-serif; font-size: 0.88rem; font-weight: 300; outline: none; transition: border-color 0.3s;
}
.nl-form input::placeholder { color: var(--stone); }
.nl-form input:focus { border-color: var(--terra); }
.nl-form button {
  padding: 0.9rem 1.5rem; background: var(--terra); border: none;
  color: #fff; font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer; transition: background 0.3s; white-space: nowrap;
}
.nl-form button:hover { background: var(--earth); }

/* ── CONTACT ──────────────────────────────────────────────────────── */
.contact { background: var(--warm); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-text h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); margin-bottom: 1rem; font-style: italic; }
.contact-text p { color: var(--text-lt); margin-bottom: 0.5rem; font-size: 0.95rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.contact-detail svg { width: 16px; height: 16px; stroke: var(--terra); flex-shrink: 0; fill: none; stroke-width: 1.5; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-lt); }
.form-field input, .form-field textarea, .form-field select {
  padding: 0.85rem 1rem; border: 1px solid var(--border); background: var(--cream);
  color: var(--text); font-family: 'Jost', sans-serif; font-size: 0.9rem;
  font-weight: 300; outline: none; transition: border-color 0.3s; resize: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--terra); }
.form-field textarea { min-height: 120px; }
.map-wrap { margin-top: 4rem; overflow: hidden; height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: sepia(18%) contrast(0.92); }

/* ── FOOTER ───────────────────────────────────────────────────────── */
footer { background: var(--dark); padding: 3.5rem 0 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--warm); font-style: italic; font-weight: 300; }
.footer-tagline { font-size: 0.72rem; color: var(--stone); letter-spacing: 0.15em; margin-top: 0.35rem; }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); transition: color 0.3s; }
.footer-links a:hover { color: var(--terra); }
.footer-copy { width: 100%; text-align: center; font-size: 0.65rem; color: rgba(200, 184, 154, 0.3); letter-spacing: 0.12em; padding-top: 2rem; border-top: 1px solid rgba(200, 184, 154, 0.08); margin-top: 1rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(200, 184, 154, 0.2); transition: border-color 0.3s, background 0.3s;
}
.footer-social a:hover { border-color: var(--terra); background: rgba(181, 116, 78, 0.12); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--stone); fill: none; stroke-width: 1.5; }
.footer-social a:hover svg { stroke: var(--terra-lt); }

/* ── SCROLL TO TOP ────────────────────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px;
  background: var(--terra); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
  z-index: 400; transform: translateY(12px);
}
#scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#scroll-top svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.5; }
#scroll-top:hover { background: var(--earth); }

/* ── BOOKING PAGE ─────────────────────────────────────────────────── */
.booking-tabs { background: var(--warm); border-bottom: 1px solid var(--border); position: sticky; top: 70px; z-index: 100; }
.booking-tabs-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; display: flex; gap: 0; }
.tab-btn {
  padding: 1.25rem 2rem; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  border: none; background: transparent; cursor: pointer; color: var(--text-lt);
  border-bottom: 2px solid transparent; transition: all 0.3s; font-family: 'Jost', sans-serif;
  margin-bottom: -1px;
}
.tab-btn.active { color: var(--terra); border-bottom-color: var(--terra); }
.tab-btn:hover { color: var(--terra); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.host-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 3rem; }
.host-card {
  padding: 3rem; background: var(--cream); border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.host-card:hover { border-color: var(--sage-mid); box-shadow: 0 4px 30px rgba(60,78,64,0.1); }
.host-icon { width: 40px; height: 40px; margin-bottom: 1.5rem; stroke: var(--terra); fill: none; stroke-width: 1; }
.host-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; margin-bottom: 0.75rem; }
.host-card p { font-size: 0.92rem; color: var(--text-lt); line-height: 1.75; margin-bottom: 1.5rem; }
.host-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.host-tag { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.3rem 0.75rem; border: 1px solid var(--border); color: var(--text-lt); }
.enquire-link { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); border-bottom: 1px solid var(--terra); padding-bottom: 0.15rem; }
.calendar-placeholder {
  background: var(--cream); border: 1px solid var(--border); padding: 4rem 3rem; text-align: center; margin-top: 3rem;
}
.calendar-placeholder h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-style: italic; margin-bottom: 1rem; }
.calendar-placeholder p { color: var(--text-lt); max-width: 500px; margin: 0 auto 2rem; font-size: 0.95rem; }
.calendar-legend { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.1em; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.retreat-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.retreat-type-card {
  padding: 2rem; border-top: 2px solid var(--sage); background: var(--cream);
}
.retreat-type-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; margin-bottom: 0.5rem; }
.retreat-type-card p { font-size: 0.85rem; color: var(--text-lt); line-height: 1.7; }

/* ── VENUE PAGE ───────────────────────────────────────────────────── */
.venue-section { padding: 6rem 0; }
.venue-section.cream-bg { background: var(--cream); }
.venue-section.warm-bg { background: var(--warm); }
.venue-section.dark-bg { background: var(--dark); }
.venue-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.venue-split.reverse { direction: rtl; }
.venue-split.reverse > * { direction: ltr; }
.venue-split-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-style: italic; margin-bottom: 1rem; }
.venue-split-text h2.light { color: var(--warm); }
.venue-split-text p { color: var(--text-lt); margin-bottom: 1rem; font-size: 0.98rem; line-height: 1.85; }
.venue-split-text p.light { color: rgba(253,250,247,0.68); }
.venue-split-img { overflow: hidden; }
.venue-split-img img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.8s var(--ease); }
.venue-split-img:hover img { transform: scale(1.03); }
.amenity-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.amenity-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.92rem; color: var(--text-lt); }
.amenity-list li::before { content: '—'; color: var(--terra); flex-shrink: 0; margin-top: 0.05rem; }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.activity-card { padding: 2rem; border-top: 1px solid var(--sage-pale); }
.activity-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; margin-bottom: 0.5rem; }
.activity-card p { font-size: 0.88rem; color: var(--text-lt); line-height: 1.7; }
.transport-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2rem; }
.transport-card { padding: 1.75rem; border: 1px solid var(--border); }
.transport-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; margin-bottom: 0.5rem; color: var(--dark); }
.transport-card p { font-size: 0.88rem; color: var(--text-lt); line-height: 1.7; }

/* ── ROOMS PAGE ───────────────────────────────────────────────────── */
.rooms-intro { background: var(--warm); padding: 6rem 0; }
.rooms-intro-inner { max-width: 720px; margin: 0 auto; text-align: center; padding: 0 3rem; }
.rooms-intro h2 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-style: italic; margin-bottom: 1.25rem; }
.rooms-intro p { color: var(--text-lt); font-size: 1.02rem; line-height: 1.9; }
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.room-card { position: relative; overflow: hidden; cursor: pointer; }
.room-card-img { height: 480px; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,13,8,0.88) 40%);
  padding: 4rem 2rem 2rem;
}
.room-card-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; color: var(--warm); margin-bottom: 0.25rem; }
.room-card-info p { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }
.room-card-features { margin-top: 0.75rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.room-feature { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(200,184,154,0.8); }
.room-feature::before { content: '·'; margin-right: 0.5rem; color: var(--terra); }
.room-detail { background: var(--cream); padding: 6rem 0; }
.room-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-bottom: 5rem; }
.room-detail-grid:last-child { margin-bottom: 0; }
.room-detail-grid.reverse { direction: rtl; }
.room-detail-grid.reverse > * { direction: ltr; }
.room-detail-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-style: italic; margin-bottom: 0.5rem; }
.room-detail-text .room-type-label { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--terra); margin-bottom: 1rem; display: block; }
.room-detail-text p { color: var(--text-lt); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1rem; }
.room-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; margin-top: 1.5rem; }
.room-amenity { font-size: 0.82rem; color: var(--text-lt); display: flex; align-items: center; gap: 0.5rem; }
.room-amenity::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
.room-detail-img { overflow: hidden; }
.room-detail-img img { width: 100%; height: 520px; object-fit: cover; transition: transform 0.8s var(--ease); }
.room-detail-img:hover img { transform: scale(1.03); }
.all-stays { background: var(--dark); padding: 5rem 0; }
.all-stays-inner { max-width: 900px; margin: 0 auto; padding: 0 3rem; text-align: center; }
.all-stays h2 { color: var(--warm); font-size: clamp(2rem, 4vw, 2.8rem); font-style: italic; margin-bottom: 1rem; }
.all-stays p { color: rgba(253,250,247,0.6); margin-bottom: 3rem; }
.includes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.include-card { background: rgba(255,255,255,0.04); padding: 2.5rem 2rem; border: 1px solid rgba(200,184,154,0.1); }
.include-card svg { width: 28px; height: 28px; stroke: var(--stone); fill: none; stroke-width: 1; margin-bottom: 1rem; }
.include-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--warm); font-style: italic; margin-bottom: 0.5rem; }
.include-card p { font-size: 0.82rem; color: rgba(253,250,247,0.5); line-height: 1.7; }

/* ── OUR STORY PAGE ───────────────────────────────────────────────── */
.story-page { background: var(--warm); }
.story-long { max-width: 820px; margin: 0 auto; padding: 0 3rem; }
.story-long h2 { font-size: clamp(2.4rem, 4.5vw, 3.5rem); font-style: italic; margin-bottom: 1.5rem; }
.story-long p { color: var(--text-lt); font-size: 1.02rem; line-height: 1.95; margin-bottom: 1.5rem; }
.story-long blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic;
  color: var(--terra); border-left: 2px solid var(--terra); padding-left: 2rem;
  margin: 3rem 0; line-height: 1.45;
}
.story-image-break { margin: 4rem 0; overflow: hidden; }
.story-image-break img { width: 100%; height: 480px; object-fit: cover; transition: transform 10s ease; }
.story-image-break:hover img { transform: scale(1.04); }
.story-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.story-value { padding: 2rem; border-top: 1px solid var(--sage-pale); }
.story-value h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; margin-bottom: 0.5rem; color: var(--dark); }
.story-value p { font-size: 0.88rem; color: var(--text-lt); line-height: 1.75; }

/* ── CONTACT PAGE ─────────────────────────────────────────────────── */
.social-links { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.social-link {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  border: 1px solid var(--border); transition: border-color 0.3s, box-shadow 0.3s;
}
.social-link:hover { border-color: var(--terra); box-shadow: 0 4px 20px rgba(181,116,78,0.08); }
.social-link svg { width: 22px; height: 22px; stroke: var(--terra); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.social-link-text strong { display: block; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.15rem; }
.social-link-text span { font-size: 0.8rem; color: var(--text-lt); }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ways-grid { grid-template-columns: 1fr 1fr; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .retreat-types { grid-template-columns: repeat(2, 1fr); }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px — tablet portrait & below ─────────────────────────────── */
@media (max-width: 900px) {
  /* Nav */
  #main-nav { padding: 1rem 1.25rem; }
  #main-nav.scrolled, #main-nav.nav-solid { padding: 0.75rem 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Hide lang switcher from nav bar on mobile — it lives in the drawer */
  .desktop-lang { display: none; }

  /* Layout */
  section { padding: 4rem 0; }
  .container, .container-narrow { padding: 0 1.25rem; }
  .welcome-inner { padding: 0 1.25rem; }

  /* Page hero */
  .page-hero { height: 50vh; min-height: 300px; }
  .page-hero-content { padding: 2.5rem 1.5rem; }
  .page-hero-content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  /* Grids → single column */
  .about-grid, .story-grid, .vision-grid, .contact-grid, .history-grid,
  .venue-split, .room-detail-grid, .rooms-grid { grid-template-columns: 1fr; gap: 2rem; }
  .venue-split.reverse, .room-detail-grid.reverse { direction: ltr; }
  .ways-grid, .values-row { grid-template-columns: 1fr; }
  .place-grid, .host-types { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .story-values-grid { grid-template-columns: 1fr; }
  .retreat-types { grid-template-columns: 1fr; }

  /* Images */
  .img-wrap img, .story-img-wrap img, .vision-img-wrap img { height: 280px; }
  .room-card-img { height: 300px; }
  .venue-split-img img { height: 300px; }
  .history-img-stack .hi-main { height: 260px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item:nth-child(1) { height: 260px; }
  .g-item:nth-child(11) { height: 260px; }

  /* Misc */
  .tiles-strip { height: 130px; }
  #lb-prev { left: 0.5rem; }
  #lb-next { right: 0.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
}

/* ── 600px — large phones ─────────────────────────────────────────── */
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .container, .container-narrow { padding: 0 1rem; }
  .welcome-inner { padding: 0 1rem; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 4rem); line-height: 1.05; }
  .hero-sub { font-size: 0.75rem; letter-spacing: 0.18em; }

  /* Page hero */
  .page-hero { height: 45vh; min-height: 260px; }
  .page-hero-content { padding: 2rem 1.25rem; }
  .page-hero-content h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .page-hero-content p { font-size: 0.88rem; margin-top: 0.6rem; }

  /* Images — tighter on phones */
  .img-wrap img, .story-img-wrap img, .vision-img-wrap img { height: 220px; }
  .room-card-img { height: 240px; }
  .venue-split-img img { height: 240px; }
  .history-img-stack .hi-main { height: 220px; }

  /* Headings */
  h2 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  h3 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Buttons — full width on phones */
  .btn-terra, .btn-ghost, .btn-solid {
    display: block; width: 100%; text-align: center;
    padding: 1rem 1.5rem;
  }

  /* Newsletter */
  .nl-form { flex-direction: column; }
  .nl-form input {
    border-right: 1px solid rgba(255,255,255,0.2);
    border-bottom: none; width: 100%;
  }
  .nl-form button { width: 100%; padding: 0.9rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .form-group input, .form-group select, .form-group textarea,
  .form-field input, .form-field select, .form-field textarea {
    font-size: 16px; /* prevent iOS zoom */
  }

  /* Gallery */
  .g-item, .g-item:nth-child(1), .g-item:nth-child(6),
  .g-item:nth-child(11), .g-item:nth-child(16) { height: 160px !important; }

  /* Gallery page */
  .place-images { grid-template-columns: 1fr; }

  /* Grids */
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .room-amenities { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }

  /* Tiles strip */
  .tiles-strip { height: 110px; }

  /* Spec cards */
  .spec-card { padding: 1.1rem 1rem; }

  /* Footer */
  .footer-links { flex-wrap: wrap; gap: 0.75rem; }
  .footer-social { gap: 0.6rem; }
}

/* ── 400px — small phones ─────────────────────────────────────────── */
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item, .g-item:nth-child(1), .g-item:nth-child(6),
  .g-item:nth-child(11), .g-item:nth-child(16) { height: 220px !important; }
  .includes-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
}

/* ================================================================
   NEW COMPONENTS — Facilitator & Booking
   ================================================================ */

/* ── SPEC GRID ──────────────────────────────────────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem;
  margin: 0 0 2.5rem;
}
.spec-card {
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
}
.spec-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
  font-family: 'Jost', sans-serif;
}
.spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

/* ── BOOKING STEPS ─────────────────────────────────────────────── */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.5rem;
  margin: 0 0 2rem;
}
.booking-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--sage-mid);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.step-content h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

/* ── FAQ ACCORDION ───────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 0 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--terra); }
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  line-height: 1;
  font-family: 'Jost', sans-serif;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem;
  color: var(--text-lt);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s;
  padding: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }

/* ── PACK DOWNLOAD CARD ──────────────────────────────────────────── */
.pack-card {
  background: var(--dark);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 0 2.5rem;
}
.pack-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--stone-lt);
  margin-bottom: 0.35rem;
}
.pack-desc {
  font-size: 0.78rem;
  color: rgba(253,250,247,0.45);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.pack-download-btn {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s;
}
.pack-download-btn:hover { background: var(--earth); }

/* ── TWO-COL INCLUDES ───────────────────────────────────────────── */
.includes-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2.5rem 0;
}

/* ── PULL QUOTE BOX ─────────────────────────────────────────────── */
.pull-quote-box {
  padding: 1.75rem 2rem;
  background: var(--sage-mist);
  border-left: 2px solid var(--sage);
  margin-top: 2rem;
}
.pull-quote-box p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.pull-quote-box .attribution {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
}

/* ── DARK CARDS GRID ─────────────────────────────────────────────── */
.dark-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.dark-card {
  border: 1px solid rgba(200,184,154,0.18);
  padding: 2.5rem;
}
.dark-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--stone-lt);
  margin-bottom: 1rem;
}
.dark-card p {
  font-size: 0.88rem;
  color: rgba(253,250,247,0.5);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.dark-card-link {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 1px solid rgba(200,184,154,0.35);
  padding-bottom: 0.2rem;
}

/* ── RESPONSIVE — NEW COMPONENTS ────────────────────────────────── */
@media (max-width: 768px) {
  .includes-two-col { grid-template-columns: 1fr; }
  .pack-card { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-steps { grid-template-columns: 1fr; gap: 2rem; }
  .dark-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .booking-step { padding: 1.5rem 1.25rem; }
}

/* ================================================================
   SAGE GREEN ACCENTS & LOGO NAV
   ================================================================ */

/* ── NAV LOGO MARK ────────────────────────────────────────────────── */
.nav-logo-wrap {
  display: flex; align-items: center; gap: 0.6rem; text-decoration: none;
}
.nav-logo-mark {
  height: 38px; width: auto; flex-shrink: 0;
  /* On transparent hero: keep green visible */
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
#main-nav.scrolled .nav-logo-mark,
#main-nav.nav-solid .nav-logo-mark {
  filter: none;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 400; color: #fff; letter-spacing: 0.05em; transition: color 0.4s;
}
#main-nav.scrolled .nav-logo-text,
#main-nav.nav-solid .nav-logo-text { color: var(--dark); }

/* ── SAGE SECTION LABEL VARIANT ───────────────────────────────────── */
.section-label.sage { color: var(--sage-mid); }

/* ── SAGE DIVIDER VARIANT ─────────────────────────────────────────── */
.divider.sage { background: var(--sage); }

/* ── SAGE ACCENT TAG ──────────────────────────────────────────────── */
.tag-sage {
  display: inline-block; background: var(--sage-mist); color: var(--sage);
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border: 1px solid var(--sage-pale);
}

/* ── SAGE HIGHLIGHT STRIP (used on home) ─────────────────────────── */
.sage-strip {
  background: var(--sage); padding: 0.9rem 0; overflow: hidden;
}
.sage-strip .marquee-item { color: var(--sage-pale); }
.sage-strip .marquee-sep { color: rgba(196,214,204,0.45); }

/* ── BTN SAGE ─────────────────────────────────────────────────────── */
.btn-sage {
  display: inline-block; background: var(--sage); color: #fff;
  padding: 0.9rem 2.5rem; font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; transition: background 0.3s;
  font-family: 'Jost', sans-serif;
}
.btn-sage:hover { background: var(--sage-mid); }

/* ── GALLERY CAROUSEL ─────────────────────────────────────────────── */
.carousel-outer { background: var(--dark); }
.gallery-carousel-wrap {
  position: relative; overflow: hidden;
  /* width: 100% of its parent */
}
.gallery-carousel {
  display: flex; transition: transform 0.7s var(--ease);
  cursor: grab; user-select: none;
  /* DO NOT set width here — it grows naturally from slides */
}
.gallery-carousel.dragging { cursor: grabbing; transition: none; }
.carousel-slide {
  /* Each slide = 1/3 of the CONTAINER (overflow-hidden wrapper), not the track */
  flex: 0 0 calc(100% / 3); padding: 0 2px;
  height: 440px; position: relative; overflow: hidden;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s;
  display: block;
}
.carousel-slide:hover img { transform: scale(1.05); filter: brightness(0.88); }
.carousel-slide .g-caption {
  position: absolute; bottom: 0; left: 2px; right: 2px;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(20,13,8,0.75));
  opacity: 0; transition: opacity 0.4s;
}
.carousel-slide:hover .g-caption { opacity: 1; }
.carousel-slide.featured { flex: 0 0 calc(50%); }
/* Controls */
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: 1.5rem 0 2rem;
  background: var(--dark);
}
.carousel-btn {
  width: 44px; height: 44px; border: 1px solid rgba(200,184,154,0.25);
  background: transparent; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.3s;
}
.carousel-btn:hover { border-color: var(--sage-mid); background: rgba(106,133,114,0.15); }
.carousel-btn svg { width: 18px; height: 18px; stroke: var(--stone); fill: none; stroke-width: 1.5; }
.carousel-btn:hover svg { stroke: var(--sage-pale); }
.carousel-dots {
  display: flex; gap: 0.5rem; align-items: center;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(200,184,154,0.25); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.carousel-dot.active {
  background: var(--sage-mid); width: 20px; border-radius: 3px;
}
/* Responsive */
@media (max-width: 900px) {
  .carousel-slide { flex: 0 0 calc(50%); height: 300px; }
  .carousel-slide.featured { flex: 0 0 calc(50%); }
}
@media (max-width: 600px) {
  .carousel-slide { flex: 0 0 calc(100%); height: 260px; padding: 0; }
  .carousel-slide.featured { flex: 0 0 100%; }
}

/* ── GALLERY PAGE CAROUSEL VARIANT ───────────────────────────────── */
.gallery-full-carousel .carousel-slide { height: 520px; }
@media (max-width: 900px) {
  .gallery-full-carousel .carousel-slide { height: 320px; }
}
@media (max-width: 600px) {
  .gallery-full-carousel .carousel-slide { height: 260px; }
}

/* ── SAGE HIGHLIGHT ON ACTIVITY / SPACES ─────────────────────────── */
.activity-card.sage-accent { border-top-color: var(--sage-mid); }
.activity-card.sage-accent h4 { color: var(--sage); }

/* ── CONTACT PAGE (full layout) ──────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
  padding: 6rem 2rem 7rem;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.contact-info .divider { margin: 0 0 1.5rem; }
.contact-info p { color: var(--text-lt); line-height: 1.85; margin-bottom: 1rem; font-size: 1rem; }
.contact-detail-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact-detail-list li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  margin-bottom: 1.1rem; color: var(--text); font-size: 0.95rem;
}
.contact-detail-list li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--terra); margin-top: 2px; }
.contact-detail-list li a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); transition: color 0.2s, border-color 0.2s; }
.contact-detail-list li a:hover { color: var(--terra); border-color: var(--terra); }
.contact-social { margin-top: 2.5rem; }
.contact-social h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; font-style: italic; color: var(--dark); margin-bottom: 1rem; }
.social-link-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 1.2rem; border: 1px solid var(--border); border-radius: 6px;
  text-decoration: none; color: var(--text); font-size: 0.9rem;
  letter-spacing: 0.01em; transition: border-color 0.2s, background 0.2s, color 0.2s;
  margin-bottom: 0.75rem;
}
.social-link-row:hover { border-color: var(--terra); background: rgba(181,116,78,0.04); color: var(--terra); }
.social-link-row svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--terra); }
.social-link-row .social-handle { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--text-lt); margin-left: auto; }
.contact-form-wrap {
  background: var(--warm); border: 1px solid var(--border);
  border-radius: 10px; padding: 2.8rem 3rem;
}
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; font-style: italic; color: var(--dark); margin-bottom: 0.3rem; }
.contact-form-wrap > p { font-size: 0.88rem; color: var(--text-lt); margin-bottom: 2rem; line-height: 1.7; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--border);
  border-radius: 5px; background: #fff; font-family: 'Jost', sans-serif;
  font-size: 0.92rem; color: var(--text); transition: border-color 0.2s; box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--terra); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B5A4E' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 16px; padding-right: 2.2rem;
}
.form-submit-btn {
  width: 100%; padding: 0.9rem 1.5rem; background: var(--terra); color: #fff;
  border: none; border-radius: 5px; font-family: 'Jost', sans-serif;
  font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; margin-top: 0.5rem;
}
.form-submit-btn:hover { background: var(--earth); }
.form-submit-btn:disabled { opacity: 0.6; cursor: wait; }
#form-success { display: none; text-align: center; padding: 2rem 0; color: var(--dark); }
#form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; margin-bottom: 0.5rem; }
#form-success p { color: var(--text-lt); }
.map-section { padding: 0 0 7rem; }
.map-section .container { max-width: 1060px; }
.map-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; font-style: italic; color: var(--dark); margin-bottom: 1rem; }
.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-note { font-size: 0.85rem; color: var(--text-lt); margin-top: 0.75rem; line-height: 1.7; }
@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.25rem 4rem; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
}
@media (max-width: 600px) {
  .contact-wrap { padding: 2.5rem 1rem 3.5rem; }
  .map-wrap { height: 280px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
  .form-submit-btn { font-size: 0.75rem; padding: 1rem; }
}
