/* Päikeseraja talu — design tokens */
:root {
  --bg: #FAF6EE;
  --bg-2: #F4EDDD;
  --ink: #2A2A28;
  --ink-soft: #5A574F;
  --line: rgba(42,42,40,0.12);
  --line-soft: rgba(42,42,40,0.06);
  --gold: #E8B84F;
  --gold-soft: #F2C879;
  --gold-pale: #F8E6B5;
  --sand: #D9C7B0;
  --sand-pale: #ECE0CC;
  --sage: #7D8C7C;
  --sage-pale: #C8D2C5;
  --pond: #8FA9B4;
  --rose-pale: #EAD6CC;
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-1: 0 1px 2px rgba(42,42,40,0.04), 0 8px 24px rgba(42,42,40,0.06);
  --shadow-2: 0 2px 6px rgba(42,42,40,0.06), 0 24px 60px rgba(42,42,40,0.10);
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 500;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 246, 238, 0.0);
  transition: background 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled:not(.transparent) {
  background: rgba(250, 246, 238, 0.85);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 28px;
  gap: 16px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 250ms ease;
}
.nav.transparent .nav-brand { color: #FAF6EE; text-shadow: 0 1px 12px rgba(0,0,0,0.35); }
.nav.transparent .nav-link { color: rgba(255,255,255,0.92); text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
.nav.transparent .lang-switch button { color: rgba(255,255,255,0.85); }
.nav.transparent .lang-switch button.active { color: #fff; }
.nav.transparent .nav-cta {
  background: rgba(255,255,255,0.95); color: var(--ink);
}
.nav-brand { margin-right: 4px; }
.nav-brand img { height: 60px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
  transition: color 150ms ease;
}
.nav-link:hover { color: var(--ink); }
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
}
.lang-switch button {
  padding: 6px 8px; color: var(--ink-soft); opacity: 0.6;
  transition: opacity 150ms ease, color 150ms ease;
}
.lang-switch button.active { color: var(--ink); opacity: 1; }
.lang-switch button:hover { opacity: 1; }
.lang-divider { width: 1px; height: 12px; background: currentColor; opacity: 0.3; }
.nav-cta {
  background: var(--ink); color: var(--bg);
  padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 500;
  transition: transform 150ms ease, background 150ms ease;
}
.nav-cta:hover { transform: translateY(-1px); background: #1a1a18; }
.nav-mobile-toggle { display: none; }
@media (max-width: 880px) {
  .nav-links .nav-link { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  color: #FAF6EE;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('assets/drone.jpg') center 30% / cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 30s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.0) 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(250,246,238,0.0) 80%, rgba(250,246,238,1) 100%);
}
.hero-inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold-soft);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 14ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: italic; font-weight: 300;
  color: var(--gold-soft);
}
.hero p.lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  max-width: 46ch;
  color: rgba(255,255,255,0.92);
  margin: 0 0 36px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--bg); color: var(--ink);
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: transform 150ms ease, box-shadow 150ms ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn-primary svg { width: 14px; height: 14px; }
.btn-ghost {
  background: rgba(255,255,255,0.10);
  color: #fff;
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  transition: background 150ms ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-weight: 500;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6) translateY(8px); opacity: 1; }
}

/* ---------- SECTION SHELL ---------- */
section { padding: 120px 0; }
@media (max-width: 720px) { section { padding: 80px 0; } }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; margin-bottom: 48px;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 12px 0 0; max-width: 18ch;
}
.section-head h2 em { font-style: italic; color: var(--sage); }
.section-head p {
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0;
}
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: stretch; gap: 16px; margin-bottom: 36px; }
}

/* ---------- INTRO STORY STRIP ---------- */
.intro {
  background: var(--bg);
  padding-top: 64px;
}
.intro-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 880px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }
.intro-text h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 14px 0 24px;
}
.intro-text h2 em { font-style: italic; color: var(--sage); }
.intro-text p { color: var(--ink-soft); font-size: 16.5px; margin: 0 0 18px; }
.intro-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-stats > div {
  padding: 20px 0;
  border-right: 1px solid var(--line);
  text-align: left;
}
.intro-stats > div:last-child { border-right: 0; }
.intro-stats > div:not(:first-child) { padding-left: 18px; }
.intro-stats .num {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  letter-spacing: -0.02em; line-height: 1;
}
.intro-stats .num em { font-style: italic; color: var(--gold); font-size: 24px; }
.intro-stats .label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 6px;
}
.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
}
.intro-image-tag {
  position: absolute; left: 20px; bottom: 20px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; font-weight: 500;
  z-index: 2;
}

/* ---------- GALLERY MOSAIC ---------- */
.gallery {
  background: var(--bg-2);
}
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.mosaic figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-md); background: var(--sand-pale); }
.mosaic figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mosaic figure:hover img { transform: scale(1.04); }
.mosaic figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  background: rgba(0,0,0,0.25); padding: 6px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.m1 { grid-column: span 4; grid-row: span 2; }
.m2 { grid-column: span 2; grid-row: span 1; }
.m3 { grid-column: span 2; grid-row: span 1; }
.m4 { grid-column: span 2; grid-row: span 2; }
.m5 { grid-column: span 2; grid-row: span 1; }
.m6 { grid-column: span 2; grid-row: span 1; }
.m7 { grid-column: span 3; grid-row: span 2; }
.m8 { grid-column: span 3; grid-row: span 2; }
@media (max-width: 880px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .m1 { grid-column: span 2; grid-row: span 2; }
  .m2, .m3, .m4, .m5, .m6, .m7, .m8 { grid-column: span 1; grid-row: span 1; }
}

/* ---------- AMENITIES ---------- */
.amenities { background: var(--bg); }
.amen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .amen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .amen-grid { grid-template-columns: 1fr; } }
.amen {
  background: var(--bg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 140px;
  position: relative;
  transition: background 200ms ease;
}
.amen:hover { background: var(--bg-2); }
.amen-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sage);
  margin-bottom: 6px;
}
.amen-icon svg { width: 24px; height: 24px; stroke-width: 1.3; }
.amen h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 19px; margin: 0; letter-spacing: -0.01em;
}
.amen p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

/* ---------- PRICING ---------- */
.pricing { background: var(--bg-2); }
.price-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--line-soft);
}
@media (max-width: 880px) { .price-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; } }
.price-rows { display: flex; flex-direction: column; gap: 0; }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.price-row:last-child { border-bottom: 0; }
.price-row .label {
  font-family: var(--serif); font-size: 18px;
}
.price-row .label small {
  display: block; font-family: var(--sans); font-size: 12px;
  color: var(--ink-soft); letter-spacing: 0.04em; margin-top: 2px;
  font-weight: 400;
}
.price-row .amount {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  letter-spacing: -0.02em; white-space: nowrap;
}
.price-row .amount em { font-style: italic; color: var(--gold); }
.price-aside {
  background: linear-gradient(180deg, var(--gold-pale), var(--bg-2));
  border-radius: var(--r-md);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.price-aside h4 {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.price-aside p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.price-aside .deposit {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed rgba(42,42,40,0.2);
  font-size: 13px; color: var(--ink-soft);
}
.price-aside .deposit strong { color: var(--ink); display: block; font-size: 15px; margin-bottom: 2px; }

/* ---------- CALENDAR ---------- */
.booking { background: var(--bg); }
.cal-wrap {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px;
  align-items: start;
}
@media (max-width: 980px) { .cal-wrap { grid-template-columns: 1fr; } }
.calendar {
  background: var(--bg-2);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--line-soft);
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.cal-head h3 {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  letter-spacing: -0.01em; margin: 0;
}
.cal-nav { display: inline-flex; gap: 4px; }
.cal-nav button {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 150ms ease, transform 150ms ease;
}
.cal-nav button:hover { background: var(--gold-pale); }
.cal-nav button svg { width: 14px; height: 14px; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center; padding: 6px 0; font-weight: 500;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
  background: var(--bg);
  border: 1px solid transparent;
  position: relative;
  transition: all 150ms ease;
}
.cal-day.empty { background: transparent; }
.cal-day.past { color: var(--ink-soft); opacity: 0.35; cursor: not-allowed; }
.cal-day.booked {
  color: var(--ink-soft); opacity: 0.4;
  background: repeating-linear-gradient(45deg, transparent 0 4px, rgba(42,42,40,0.08) 4px 5px), var(--bg);
  cursor: not-allowed;
}
.cal-day.available {
  background: var(--bg);
  cursor: pointer;
  color: var(--ink);
}
.cal-day.available:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.cal-day.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cal-day.in-range {
  background: var(--gold-pale);
  color: var(--ink);
}
.cal-day.today::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.cal-day.selected.today::after { background: var(--gold-soft); }
.cal-legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 20px;
  font-size: 12px; color: var(--ink-soft);
}
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-dot { width: 12px; height: 12px; border-radius: 4px; }
.cal-dot.av { background: var(--bg); border: 1px solid var(--line); }
.cal-dot.bk { background: repeating-linear-gradient(45deg, transparent 0 3px, rgba(42,42,40,0.18) 3px 4px), var(--bg); border: 1px solid var(--line); }
.cal-dot.sl { background: var(--ink); }

/* booking sidebar */
.book-side {
  position: sticky; top: 96px;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--line-soft);
}
.book-side .eyebrow { margin-bottom: 6px; }
.book-side h3 {
  font-family: var(--serif); font-weight: 400; font-size: 26px;
  letter-spacing: -0.01em; margin: 0 0 6px;
}
.book-side .sub { color: var(--ink-soft); font-size: 14px; margin: 0 0 20px; }
.book-summary {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.book-summary .row { display: flex; justify-content: space-between; gap: 12px; }
.book-summary .row .k { color: var(--ink-soft); }
.book-summary .row .v { font-weight: 500; }
.book-summary .row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px; padding-top: 14px;
  font-family: var(--serif); font-size: 22px; font-weight: 300;
}
.book-summary .row.total .v { font-weight: 400; }
.book-cta {
  margin-top: 20px;
  width: 100%;
  background: var(--ink); color: var(--bg);
  padding: 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: transform 150ms ease, opacity 150ms ease;
}
.book-cta:disabled { opacity: 0.4; cursor: not-allowed; }
.book-cta:not(:disabled):hover { transform: translateY(-1px); }

/* ---------- BOOKING MODAL ---------- */
.modal-back {
  position: fixed; inset: 0;
  background: rgba(42,42,40,0.5);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  animation: fadeIn 200ms ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg);
  border-radius: var(--r-lg);
  width: 100%; max-width: 720px; max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2);
  position: relative;
  animation: slideUp 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--bg-2);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
}
.modal-close:hover { background: var(--sand-pale); }
.modal-header {
  padding: 36px 40px 24px;
  border-bottom: 1px solid var(--line);
}
.modal-header .eyebrow { margin-bottom: 8px; }
.modal-header h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0;
}
.modal-header h2 em { font-style: italic; color: var(--sage); }
.modal-steps {
  display: flex; gap: 8px; margin-top: 20px;
  font-size: 12px;
}
.modal-step {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink-soft);
  font-weight: 500;
}
.modal-step.active { background: var(--ink); color: var(--bg); }
.modal-step.done { background: var(--sage-pale); color: var(--ink); }
.modal-step .num {
  width: 18px; height: 18px; border-radius: 999px;
  background: rgba(0,0,0,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
}
.modal-step.active .num { background: var(--gold); color: var(--ink); }
.modal-step.done .num { background: var(--sage); color: #fff; }
.modal-body { padding: 32px 40px 40px; }
@media (max-width: 600px) {
  .modal-header, .modal-body { padding-left: 24px; padding-right: 24px; }
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px;
  padding: 12px 14px; border-radius: 10px;
  background: var(--bg-2); border: 1px solid transparent;
  color: var(--ink);
  transition: border-color 150ms ease, background 150ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--bg);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.checkbox-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold-pale), var(--bg-2));
  border-radius: var(--r-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 150ms ease;
  margin-bottom: 18px;
}
.checkbox-card.checked { border-color: var(--gold); }
.checkbox-card input { margin-top: 4px; accent-color: var(--gold); width: 18px; height: 18px; }
.checkbox-card .cc-body { flex: 1; }
.checkbox-card h5 { font-family: var(--serif); font-size: 18px; font-weight: 400; margin: 0 0 4px; }
.checkbox-card p { margin: 0; font-size: 13px; color: var(--ink-soft); }
.checkbox-card .cc-price {
  font-family: var(--serif); font-size: 20px; font-weight: 400; margin-left: 12px;
}
.lang-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-pill {
  padding: 8px 16px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid transparent;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 150ms ease;
}
.lang-pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.lang-pill .note {
  display: block; font-size: 10px; color: var(--ink-soft); font-weight: 400; margin-top: 2px;
  letter-spacing: 0.04em;
}
.lang-pill.active .note { color: rgba(255,255,255,0.7); }

.modal-actions {
  display: flex; justify-content: space-between; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.btn-back { color: var(--ink-soft); font-size: 14px; padding: 12px 0; font-weight: 500; }
.btn-back:hover { color: var(--ink); }
.btn-next {
  background: var(--ink); color: var(--bg);
  padding: 12px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
}
.btn-next:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-next:not(:disabled):hover { transform: translateY(-1px); }

/* payment step */
.pay-summary {
  background: var(--bg-2); border-radius: var(--r-md);
  padding: 24px; margin-bottom: 24px;
}
.pay-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  font-size: 14px;
}
.pay-row.total {
  border-top: 1px solid var(--line); padding-top: 14px; margin-top: 8px;
  font-family: var(--serif); font-size: 22px; font-weight: 300;
}
.swed {
  display: flex; align-items: center; gap: 14px;
  padding: 18px; border-radius: var(--r-md);
  background: linear-gradient(135deg, #FFEDB8, var(--bg-2));
  border: 1px solid rgba(232, 184, 79, 0.3);
}
.swed-logo {
  width: 56px; height: 56px; border-radius: 12px;
  background: #FE5000;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: var(--serif); font-size: 22px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.swed h5 { margin: 0 0 2px; font-family: var(--serif); font-size: 18px; font-weight: 400; }
.swed p { margin: 0; font-size: 13px; color: var(--ink-soft); }
.btn-pay {
  width: 100%; margin-top: 20px;
  background: var(--ink); color: var(--bg);
  padding: 16px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-pay svg { width: 16px; height: 16px; }

.success-icon {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--sage-pale);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 28px; height: 28px; color: var(--sage); }
.success-body { text-align: center; padding: 20px 0; }
.success-body h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: 28px; margin: 0 0 10px; letter-spacing: -0.01em;
}
.success-body p { color: var(--ink-soft); margin: 0 auto 24px; max-width: 40ch; }

/* ---------- LOCATION ---------- */
.location { background: var(--bg-2); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
@media (max-width: 880px) { .loc-grid { grid-template-columns: 1fr; gap: 32px; } }
.loc-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  background:
    radial-gradient(circle at 30% 40%, rgba(143,169,180,0.5), transparent 25%),
    radial-gradient(circle at 70% 70%, rgba(143,169,180,0.4), transparent 20%),
    linear-gradient(135deg, var(--sage-pale), var(--bg-2));
  border: 1px solid var(--line);
}
.loc-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.loc-pin {
  position: absolute; top: 48%; left: 52%;
  transform: translate(-50%, -100%);
  width: 36px; height: 48px;
  display: flex; align-items: flex-start; justify-content: center;
  z-index: 2;
}
.loc-pin::before {
  content: '';
  width: 36px; height: 36px;
  border-radius: 50% 50% 50% 0;
  background: var(--ink);
  transform: rotate(-45deg);
  box-shadow: var(--shadow-2);
  position: absolute;
  top: 0;
}
.loc-pin::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 6px; border-radius: 50%;
  background: rgba(0,0,0,0.18);
  filter: blur(3px);
}
.loc-pin-dot {
  position: absolute; top: 9px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-soft);
  z-index: 3;
}
.loc-pulse {
  position: absolute; top: 16px; left: 50%; transform: translate(-50%, 0);
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--ink);
  opacity: 0;
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0% { transform: translate(-50%, 0) scale(0.4); opacity: 0.6; }
  100% { transform: translate(-50%, 0) scale(1.4); opacity: 0; }
}
.loc-label {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--serif); font-size: 16px;
  background: var(--bg);
  padding: 8px 14px; border-radius: 999px;
  box-shadow: var(--shadow-1);
}
.loc-coord {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; letter-spacing: 0.12em;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  padding: 6px 10px; border-radius: 6px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  color: var(--ink-soft);
}
.loc-text h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.6vw, 42px); margin: 14px 0 16px; letter-spacing: -0.02em; line-height: 1.1; }
.loc-text h2 em { font-style: italic; color: var(--sage); }
.loc-text p { color: var(--ink-soft); margin: 0 0 20px; }
.nearby {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.nearby li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
  gap: 16px;
}
.nearby li .n-name { font-family: var(--serif); font-size: 17px; }
.nearby li .n-dist {
  font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.nearby ul { padding: 0; margin: 0; }

/* ---------- REVIEWS ---------- */
.reviews { background: var(--bg); }
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 18px;
}
.review-stars { display: flex; gap: 2px; color: var(--gold); }
.review-stars svg { width: 16px; height: 16px; }
.review-text { font-family: var(--serif); font-size: 19px; line-height: 1.45; font-weight: 400; }
.review-foot {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sand-pale);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; color: var(--ink);
  font-weight: 500;
}
.review-meta { font-size: 13px; }
.review-meta .name { font-weight: 500; }
.review-meta .when { color: var(--ink-soft); font-size: 12px; }

/* ---------- HOUSE RULES ---------- */
.rules { background: var(--bg-2); }
.rules-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 720px) { .rules-grid { grid-template-columns: 1fr; } }
.rule {
  display: flex; gap: 18px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
}
.rule-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sage);
}
.rule-icon svg { width: 22px; height: 22px; stroke-width: 1.4; }
.rule h4 { font-family: var(--serif); font-weight: 400; font-size: 18px; margin: 0 0 4px; }
.rule p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ---------- CONTACT / FOOTER ---------- */
.footer {
  background: var(--ink); color: var(--bg);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { width: 80px; filter: brightness(1.5); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; max-width: 28ch; }
.footer h5 {
  font-family: var(--sans); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 11px; color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer ul a { color: rgba(255,255,255,0.85); }
.footer ul a:hover { color: var(--gold-soft); }
.footer-contact { font-family: var(--serif); font-size: 18px; font-weight: 300; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-foot {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
.platforms { display: flex; gap: 16px; align-items: center; }
.platform-chip {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
  transition: background 150ms ease;
}
.platform-chip:hover { background: rgba(255,255,255,0.16); }

/* utility */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
