/* ============================================
   RAINYDAYADVENTURECLUB — ANGERS
   Indoor leisure for rainy days
   Storm-blue + warm amber + cream paper
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --cream:      #f6efe1;
  --cream-2:    #efe6d2;
  --cream-3:    #e6dabe;
  --paper:      #fbf6ea;
  --ink:        #1a2331;
  --ink-2:      #2c3849;
  --ink-soft:   #5a6877;
  --ink-mute:   #8b9aab;
  --storm:      #2e4d6e;
  --storm-d:    #1f3450;
  --storm-soft: #5479a3;
  --amber:      #d68433;
  --amber-d:    #b56a1e;
  --amber-soft: #e9a866;
  --forest:     #4d6849;
  --forest-d:   #354a32;
  --brick:      #b04d3c;
  --line:       rgba(26, 35, 49, 0.12);
  --line-2:     rgba(26, 35, 49, 0.22);
  --shadow-sm:  0 2px 6px rgba(26, 35, 49, 0.06);
  --shadow:     0 14px 30px -10px rgba(26, 35, 49, 0.16);
  --shadow-lg:  0 28px 56px -16px rgba(26, 35, 49, 0.22);

  --font-display: 'Fraunces', Georgia, serif;
  --font-sans:    'Manrope', -apple-system, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.2rem, 4vw, 2.2rem);
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26, 35, 49, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--amber); color: var(--ink); }

/* TYPO */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-variation-settings: "opsz" 96, "SOFT" 50;
}

h1 { font-size: clamp(2.8rem, 7.5vw, 5.4rem); letter-spacing: -0.03em; font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-variation-settings: "opsz" 36, "SOFT" 50; }
h4 { font-size: 1.2rem; font-weight: 600; font-variation-settings: "opsz" 24, "SOFT" 50; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--amber-d); font-weight: 500; }

p { color: var(--ink-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber-d);
}

.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--amber);
}

.eyebrow.solo::after { display: none; }

.eyebrow.storm { color: var(--storm-d); }
.eyebrow.storm::before, .eyebrow.storm::after { background: var(--storm); }
.eyebrow.forest { color: var(--forest-d); }
.eyebrow.forest::before, .eyebrow.forest::after { background: var(--forest); }

/* LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); position: relative; }
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* WEATHER STRIP — top */
.weather-strip {
  background: var(--storm-d);
  color: var(--cream);
  padding: 0.6rem 0;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.weather-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.04) 49%, rgba(255,255,255,0.04) 51%, transparent 51%);
  background-size: 18px 18px;
  animation: rain 8s linear infinite;
}

@keyframes rain {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.weather-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.weather-strip .raindrop {
  display: inline-block;
  width: 6px;
  height: 8px;
  background: var(--amber-soft);
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
  margin-right: 0.7rem;
  vertical-align: middle;
}

@media (max-width: 720px) {
  .weather-strip-inner > span:nth-child(2) { display: none; }
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 225, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 32, "SOFT" 100;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--storm);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 8px;
  background: var(--cream);
  border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
}

.brand-icon::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--amber);
  border-radius: 0 50% 50% 50%;
  transform-origin: top;
  transform: translateX(-50%) rotate(15deg);
}

.brand-name { line-height: 1; }
.brand-name em { font-style: italic; color: var(--amber-d); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.93rem;
  color: var(--ink-soft);
  font-weight: 600;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a:hover { color: var(--amber-d); }
.nav-links a.active { color: var(--ink); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.nav-cta {
  background: var(--storm);
  color: var(--cream);
  padding: 0.7rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--amber-d);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line-2);
  color: var(--ink);
  padding: 0.4rem 0.7rem;
  font-size: 1.1rem;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter);
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 999px;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--amber-d);
  border-color: var(--amber-d);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-amber {
  background: var(--amber-d);
  color: var(--cream);
  border-color: var(--amber-d);
}
.btn-amber:hover { background: var(--ink); border-color: var(--ink); }

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-arrow { transition: transform 0.2s; font-size: 1.1em; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* HERO */
.hero {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--storm-d);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.hero-tag .drop {
  width: 7px;
  height: 9px;
  background: var(--amber);
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
  display: inline-block;
}

.hero h1 {
  margin-bottom: 1.8rem;
  letter-spacing: -0.03em;
}

.hero h1 .amber {
  color: var(--amber-d);
  font-style: italic;
  font-weight: 500;
}

.hero h1 .storm { color: var(--storm-d); }

.hero-lead {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-marker {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-marker strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  background: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--ink);
}

.hero-badge.weather-now {
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-badge.weather-now .icon {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--storm-d);
  line-height: 1;
}

.hero-badge.weather-now .label {
  font-size: 0.66rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

.hero-badge.weather-now .value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
  line-height: 1;
}

.hero-badge.spots {
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--amber-d);
  color: var(--cream);
  border-color: var(--amber-d);
}

.hero-badge.spots .label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
  opacity: 0.85;
}

.hero-badge.spots .value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
}

/* QUICK STATS — handwritten note style */
.notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.note {
  background: var(--paper);
  padding: 1.8rem 1.5rem;
  border-radius: 20px;
  border: 1.5px solid var(--ink);
  position: relative;
  text-align: center;
  transition: transform 0.25s;
}

.note:hover { transform: translateY(-4px) rotate(-1deg); }
.note:nth-child(2):hover { transform: translateY(-4px) rotate(1deg); }
.note:nth-child(3):hover { transform: translateY(-4px) rotate(-1.5deg); }
.note:nth-child(4):hover { transform: translateY(-4px) rotate(0.5deg); }

.note::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 14px;
  background: var(--amber);
  border-radius: 4px;
  opacity: 0.85;
}

.note-icon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--amber-d);
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.note-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-variation-settings: "opsz" 48;
  letter-spacing: -0.03em;
}

.note-value em { font-style: italic; color: var(--storm-d); }

.note-label {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

@media (max-width: 800px) { .notes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .notes { grid-template-columns: 1fr; } }

/* SECTION HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.center { justify-content: center; text-align: center; }
.section-header.center .section-header-text { max-width: 740px; }
.section-header-text { max-width: 720px; }
.section-header .eyebrow { margin-bottom: 1.2rem; }

.section-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  transition: all 0.25s;
}

.section-link:hover {
  background: var(--ink);
  color: var(--cream);
}

/* 6 SPACES — masonry-ish ticket cards */
.spaces {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.space {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.space:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.space:nth-child(1) { grid-column: span 4; }
.space:nth-child(2) { grid-column: span 2; }
.space:nth-child(3) { grid-column: span 2; }
.space:nth-child(4) { grid-column: span 2; }
.space:nth-child(5) { grid-column: span 2; }
.space:nth-child(6) { grid-column: span 6; }

.space:nth-child(1) .space-image { aspect-ratio: 16/9; }
.space:nth-child(6) .space-image { aspect-ratio: 21/9; }

.space-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-bottom: 1.5px solid var(--ink);
}

.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.space:hover .space-image img { transform: scale(1.05); }

.space-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(46, 77, 110, 0.15));
}

.space-ticket {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 600;
  color: var(--storm-d);
  z-index: 2;
  font-variation-settings: "opsz" 14;
}

.space-age {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--amber);
  color: var(--ink);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  border: 1.5px solid var(--ink);
}

.space-age.adult { background: var(--storm); color: var(--cream); }
.space-age.all { background: var(--forest); color: var(--cream); }

.space-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.space-body .eyebrow { margin-bottom: 0.8rem; font-size: 0.66rem; }
.space-body .eyebrow::after { display: none; }

.space-body h3 {
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}

.space:hover h3 { color: var(--amber-d); }

.space-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  flex: 1;
  line-height: 1.55;
}

.space-meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--line-2);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.space-meta strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

@media (max-width: 1000px) {
  .spaces { grid-template-columns: repeat(4, 1fr); }
  .space:nth-child(n) { grid-column: span 2; }
}

@media (max-width: 600px) {
  .spaces { grid-template-columns: 1fr; }
  .space:nth-child(n) { grid-column: span 1; }
}

/* SCHEDULE BOARD */
.schedule {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
}

.schedule-row {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: 2rem;
  align-items: center;
  padding: 1.4rem 2rem;
  border-bottom: 1px solid var(--line);
}

.schedule-row:last-child { border-bottom: none; }

.schedule-row.weekend { background: var(--cream-2); }
.schedule-row.today { background: var(--amber-soft); }

.schedule-day {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.2rem;
  font-variation-settings: "opsz" 24;
}

.schedule-hours {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 1.05rem;
}

.schedule-status {
  text-align: right;
  font-size: 0.84rem;
  color: var(--storm-d);
  font-weight: 600;
}

.schedule-row.today .schedule-status::before {
  content: '◉';
  margin-right: 0.4rem;
  color: var(--brick);
}

@media (max-width: 700px) {
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 1.2rem 1.5rem;
  }
  .schedule-status { text-align: left; }
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s;
}

.price:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.price.featured {
  background: var(--storm-d);
  color: var(--cream);
}

.price.featured h3, .price.featured .price-amount { color: var(--cream); }
.price.featured .price-label { color: var(--amber-soft); }
.price.featured li { color: rgba(246, 239, 225, 0.88); }
.price.featured li::before { background: var(--amber-soft); }
.price.featured .price-currency { color: rgba(246, 239, 225, 0.7); }
.price.featured .price-tagline { color: rgba(246, 239, 225, 0.75); }

.price.featured::before {
  content: 'PRÉFÉRÉE';
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--amber);
  color: var(--ink);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1.5px solid var(--ink);
}

.price-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-d);
  margin-bottom: 0.8rem;
}

.price h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.price-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  font-variation-settings: "opsz" 18;
}

.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--line-2);
}

.price.featured .price-amount-row { border-bottom-color: rgba(246, 239, 225, 0.25); }

.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 48;
}

.price-currency {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.price ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.price li {
  padding: 0.5rem 0;
  font-size: 0.94rem;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.price li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.price .btn { width: 100%; justify-content: center; }

.price.featured .btn {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}

.price.featured .btn:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

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

/* SERVICES TRIO */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1.5px solid var(--ink);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service:hover .service-image img { transform: scale(1.04); }

.service-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.service h3 { margin-bottom: 0.7rem; }
.service p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; margin-bottom: 1.2rem; }

.service-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed var(--line-2);
  font-size: 0.84rem;
}

.service-meta .price-tag { color: var(--amber-d); font-weight: 700; }
.service-meta .duration { color: var(--ink-soft); }

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

/* MANIFESTO — pull quote */
.manifesto {
  background: var(--storm-d);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--amber);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.18;
  top: -200px;
  right: -150px;
}

.manifesto > * { position: relative; z-index: 1; }

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.manifesto .eyebrow {
  color: var(--amber-soft);
  margin-bottom: 1.5rem;
}
.manifesto .eyebrow::before, .manifesto .eyebrow::after { background: var(--amber-soft); }

.manifesto h2 { color: var(--cream); }
.manifesto h2 em { color: var(--amber-soft); }

.manifesto-deck {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(246, 239, 225, 0.92);
  line-height: 1.5;
  font-weight: 400;
  font-variation-settings: "opsz" 24;
  margin-top: 1.5rem;
}

.manifesto-points {
  list-style: none;
  counter-reset: pt;
}

.manifesto-points li {
  counter-increment: pt;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(246, 239, 225, 0.15);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
}

.manifesto-points li:last-child { border-bottom: 1px solid rgba(246, 239, 225, 0.15); }

.manifesto-points li::before {
  content: counter(pt, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-soft);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  font-variation-settings: "opsz" 48;
}

.manifesto-points strong {
  color: var(--cream);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-variation-settings: "opsz" 24;
}

.manifesto-points span {
  color: rgba(246, 239, 225, 0.75);
  font-size: 0.95rem;
}

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

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.testimonial:hover { transform: rotate(-1deg) translateY(-4px); box-shadow: var(--shadow); }
.testimonial:nth-child(2):hover { transform: rotate(1deg) translateY(-4px); }
.testimonial:nth-child(3):hover { transform: rotate(-0.5deg) translateY(-4px); }

.testimonial-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--amber);
  line-height: 0.4;
  margin-bottom: 1.2rem;
  font-variation-settings: "opsz" 96;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 400;
  flex: 1;
  font-variation-settings: "opsz" 18;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.3rem;
  border-top: 1px dashed var(--line-2);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--amber);
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-info strong {
  display: block;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 18;
}

.testimonial-info span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

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

/* CTA */
.cta-card {
  background: var(--amber-d);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--storm-d);
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.4;
  bottom: -180px;
  left: -120px;
}

.cta-card > * { position: relative; z-index: 1; }

.cta-card h2 { color: var(--cream); margin-bottom: 1.2rem; }
.cta-card h2 em { color: var(--ink); }

.cta-card p {
  color: rgba(246, 239, 225, 0.92);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 18;
}

.cta-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.4rem;
  background: var(--cream);
  padding: 0.45rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
}

.cta-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: none;
  background: transparent;
  outline: none;
  color: var(--ink);
}

.cta-form input::placeholder { color: var(--ink-mute); }

.cta-form button {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 999px;
}

.cta-form button:hover { background: var(--storm-d); }

.cta-note {
  font-size: 0.84rem;
  color: rgba(246, 239, 225, 0.8);
  margin-top: 1.5rem;
}

.cta-note a { color: var(--cream); border-bottom: 1px solid var(--cream); }

@media (max-width: 600px) {
  .cta-form { flex-direction: column; padding: 1rem; gap: 0.6rem; border-radius: 24px; }
  .cta-form button { padding: 1rem; }
}

/* FOOTER */
footer {
  background: var(--cream-3);
  border-top: 1.5px solid var(--ink);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 380px;
  font-size: 0.94rem;
}

.footer-address {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.7;
}

.footer-address strong {
  color: var(--amber-d);
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.footer-phone {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--storm-d);
  font-variation-settings: "opsz" 20;
}

footer h4 {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 1.3rem;
  font-family: var(--font-sans);
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; }
footer a { color: var(--ink-soft); font-size: 0.92rem; }
footer a:hover { color: var(--amber-d); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
  color: var(--ink-mute);
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* INTERIOR */
.page-header {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--amber);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.18;
  top: -150px;
  right: -100px;
}

.page-header-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.breadcrumb a:hover { color: var(--amber-d); }
.breadcrumb .sep { color: var(--ink-mute); }

.page-header .eyebrow { margin-bottom: 1.2rem; }

.page-header h1 {
  max-width: 940px;
  margin-bottom: 1.2rem;
}

.page-header .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-2);
  max-width: 720px;
  font-weight: 400;
  font-variation-settings: "opsz" 24;
}

/* PROSE */
.prose {
  max-width: 740px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-2);
}

.prose h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.prose h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.prose p, .prose ul, .prose ol { margin-bottom: 1.2rem; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--amber-d); font-style: italic; }

.prose a {
  color: var(--storm-d);
  border-bottom: 1.5px solid var(--storm);
}
.prose a:hover { color: var(--amber-d); border-color: var(--amber-d); }

.prose blockquote {
  border-left: 3px solid var(--amber);
  background: var(--paper);
  padding: 1.6rem 1.9rem;
  margin: 2rem 0;
  border-radius: 0 16px 16px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  font-weight: 400;
  font-variation-settings: "opsz" 24;
}

.prose .info-box {
  background: var(--paper);
  border: 1.5px solid var(--amber);
  border-radius: 20px;
  padding: 1.4rem 1.7rem;
  margin: 1.8rem 0;
  font-size: 0.96rem;
}

.prose .info-box strong { color: var(--amber-d); }

/* SPACE DETAIL */
.space-detail {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  padding: 2.2rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.space-detail-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px;
  border: 1.5px solid var(--ink);
}

.space-detail-image img { width: 100%; height: 100%; object-fit: cover; }

.space-detail-ticket {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--storm-d);
  color: var(--amber-soft);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 18;
}

.space-detail h3 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.space-detail .meta-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
  margin: 1.2rem 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.space-detail .meta-row strong {
  display: block;
  color: var(--ink);
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 780px) {
  .space-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .space-detail-image { max-width: 320px; }
  .space-detail .meta-row { grid-template-columns: 1fr; }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-block {
  background: var(--paper);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  border-left: 5px solid var(--amber);
}

.contact-block .eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.66rem;
}

.contact-block .eyebrow::after { display: none; }

.contact-block .value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
  font-variation-settings: "opsz" 18;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 14px;
}

.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--amber); }
.field textarea { resize: vertical; min-height: 140px; }

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.field-checkbox input { width: auto; margin-top: 0.3rem; }

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

/* COOKIE */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 460px;
  background: var(--paper);
  color: var(--ink);
  padding: 1.5rem;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  z-index: 1000;
  display: none;
  box-shadow: var(--shadow-lg);
}

.cookie-banner.show { display: block; }

.cookie-banner h4 { color: var(--ink); font-size: 1.2rem; margin-bottom: 0.6rem; }
.cookie-banner p { font-size: 0.9rem; margin-bottom: 1.2rem; color: var(--ink-2); }
.cookie-banner a { color: var(--amber-d); border-bottom: 1.5px solid var(--amber); }

.cookie-banner .actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.cookie-banner button {
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  transition: all 0.2s;
}

.cookie-banner .accept { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cookie-banner .accept:hover { background: var(--amber-d); border-color: var(--amber-d); }
.cookie-banner .decline:hover { background: var(--ink); color: var(--cream); }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
}

@media print {
  .nav, footer, .cookie-banner, .weather-strip { display: none; }
  body { background: white; color: black; }
}
