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

/* ─────────────────────────────────────────────────────────────────
   Marjan & Juana · Hochzeit · Reservierungsanfrage
   Earthy / sage / warm taupe palette · editorial type · mobile-first
   ───────────────────────────────────────────────────────────────── */

:root {
  --bg:        #f3eee3;
  --paper:     #fbf7ec;
  --paper-2:   #f7f1e3;
  --ink:       #2a2823;
  --muted:     #7a7363;
  --line:      #d6cdbb;
  --line-soft: #e4dcc9;
  --soft:      #ebe5d5;
  --accent:    #6e7f60;
  --accent-ink:#56664c;
  --accent-2:  #b08769;

  --shadow-sm: 0 6px 18px rgba(58, 48, 32, .06);
  --shadow:    0 18px 46px rgba(58, 48, 32, .08);
  --shadow-lg: 0 26px 60px rgba(58, 48, 32, .12);

  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 32px;

  --serif:  "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:   Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Petit Formal Script", "Cormorant Garamond", cursive;

  --container-narrow: 720px;
  --container:        980px;
  --container-wide:  1180px;

  --space-1: .35rem;
  --space-2: .65rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.25rem;
  --space-6: 3.25rem;
  --space-7: 4.75rem;
  --space-8: 6.5rem;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  background-image:
    linear-gradient(180deg, #f5f0e4 0%, #ede6d4 100%),
    /* faint paper grain */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.15  0 0 0 0 0.13  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-blend-mode: multiply;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a {
  color: var(--accent-ink);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  transition: color .18s ease, border-color .18s ease;
}
a:hover { color: var(--ink); border-bottom-color: var(--accent); }

::selection { background: color-mix(in srgb, var(--accent) 38%, transparent); color: var(--ink); }

/* Page shell */
.page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: var(--space-7);
}

/* ─────────────────────────────────────────────────────────────────
   Wordmark (small, top of page — used on index AND thankyou)
   ───────────────────────────────────────────────────────────────── */
.wordmark {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  padding: 1.3rem 1.25rem .35rem;
  text-align: center;
}

.wordmark-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
}

.wordmark-date {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: .85rem;
  border-left: 1px solid var(--line);
}

/* ─────────────────────────────────────────────────────────────────
   Hero banner (Hofgut photo)
   ───────────────────────────────────────────────────────────────── */
.hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(260px, 46vw, 520px);
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 24, 18, 0.10) 0%,
    rgba(28, 24, 18, 0.05) 35%,
    var(--bg) 100%
  );
}

/* ─────────────────────────────────────────────────────────────────
   Hero intro — names + date (asymmetric, sits over banner edge)
   ───────────────────────────────────────────────────────────────── */
.hero-intro {
  position: relative;
  z-index: 3;
  max-width: var(--container-narrow);
  margin: -3.5rem auto 0;
  padding: var(--space-5) var(--space-4) var(--space-5);
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 var(--space-3);
  padding: .35rem .8rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 999px;
}

.hero-names {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(3rem, 11vw, 6.4rem);
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--ink);
}

.hero-names .amp {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  font-size: .82em;
  color: var(--accent-ink);
  padding: 0 .12em;
  vertical-align: -.04em;
}

.hero-subtitle {
  margin: var(--space-3) auto 0;
  max-width: 520px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  font-style: italic;
  font-variation-settings: "opsz" 14;
  line-height: 1.45;
  color: var(--muted);
}

.hero-lead {
  margin: var(--space-4) auto 0;
  max-width: 540px;
  color: var(--muted);
  line-height: 1.7;
}

/* Decorative hairline under hero */
.hero-divider {
  display: block;
  width: 60px;
  height: 22px;
  margin: var(--space-4) auto 0;
  color: var(--accent);
  opacity: .8;
}

/* ─────────────────────────────────────────────────────────────────
   Notice card (price / dates)
   ───────────────────────────────────────────────────────────────── */
.notice-card {
  position: relative;
  max-width: var(--container);
  margin: var(--space-5) auto 0;
  padding: var(--space-4) var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: var(--space-2);
}

.notice-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .15rem;
  padding: .35rem 0;
  border-bottom: 1px dashed var(--line-soft);
}
.notice-row:last-of-type { border-bottom: 0; }

.notice-row dt {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.notice-row dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}

.notice-note {
  margin: var(--space-3) 0 0;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
  text-align: left;
}
.notice-note strong { color: var(--accent-ink); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────
   Section
   ───────────────────────────────────────────────────────────────── */
.section {
  position: relative;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--space-7) var(--space-4) 0;
}

.section-heading {
  margin-bottom: var(--space-5);
  text-align: left;
  max-width: 640px;
}

.section-heading .eyebrow {
  display: block;
  margin: 0 0 .55rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.2rem, 5.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
}

.section-heading p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  max-width: 520px;
}

/* ─────────────────────────────────────────────────────────────────
   Cards (accommodation)
   ───────────────────────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.card:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2) var(--space-3);
  margin-bottom: var(--space-3);
}

.card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 60;
  font-size: clamp(1.6rem, 4vw, 2rem);
  line-height: 1.1;
  color: var(--ink);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  padding: .42rem .9rem;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
}

.price-badge-free {
  background: color-mix(in srgb, var(--accent) 14%, var(--paper));
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  color: var(--accent-ink);
  font-weight: 600;
}

.card-text {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  line-height: 1.7;
}
.card-text strong { color: var(--ink); font-weight: 600; }

.details-list {
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none;
  display: grid;
  gap: .35rem;
  color: var(--muted);
}
.details-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .96rem;
}
.details-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: .55rem;
  height: 1px;
  background: var(--accent);
}

/* Gallery */
.gallery {
  display: grid;
  gap: .6rem;
  margin-bottom: var(--space-3);
}
.gallery-two   { grid-template-columns: 1fr; }
.gallery-three { grid-template-columns: 1fr; }

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}

.zoomable { cursor: zoom-in; }
.zoomable:hover { transform: scale(1.025); }

.gallery-note {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: .88rem;
  font-style: italic;
}

/* Card placeholder where Camping doesn't have a photo gallery — small motif */
.card-motif {
  display: grid;
  place-items: center;
  height: 130px;
  margin: 0 0 var(--space-3);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 8%, var(--paper-2)), var(--paper-2) 70%);
  border: 1px dashed var(--line);
  color: var(--accent);
}
.card-motif svg { width: 64px; height: 64px; opacity: .85; }

/* CTA button on cards */
.card-cta {
  align-self: flex-start;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--accent-ink);
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .65rem .25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: color .18s ease, gap .18s ease;
  margin-top: auto;
}
.card-cta::after {
  content: "→";
  font-size: 1.1em;
  transition: transform .18s ease;
}
.card-cta:hover { color: var(--ink); gap: .85rem; }
.card-cta:hover::after { transform: translateX(2px); }

/* Phase 2 hook — placeholder for per-room slots, hidden in Phase 1 */
.room-slots {
  display: none;
  margin: var(--space-3) 0;
  gap: .4rem;
  flex-wrap: wrap;
}
.room-slots:not(:empty) { display: flex; }

/* ─────────────────────────────────────────────────────────────────
   Form
   ───────────────────────────────────────────────────────────────── */
.form-section { padding-bottom: var(--space-7); }

.form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: start;
}

.form-info {
  padding: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form-info h3 {
  margin: 0 0 var(--space-2);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--ink);
}

.form-info p {
  margin: var(--space-2) 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.field.full { grid-column: 1 / -1; }
.field[hidden] { display: none; }

.field > .field-label {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
}

.field > .field-hint {
  font-size: .78rem;
  color: var(--muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  min-height: 48px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path d='M3 6l5 5 5-5' fill='none' stroke='%237a7363' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

textarea { resize: vertical; min-height: 130px; line-height: 1.55; }

input[readonly] {
  color: var(--muted);
  background: var(--soft);
  cursor: default;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}

::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); }

/* Submit button */
.submit-btn {
  grid-column: 1 / -1;
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 1.05rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .08em;
  cursor: pointer;
  min-height: 52px;
  transition: background .18s ease, transform .12s ease;
}
.submit-btn:hover  { background: var(--accent-ink); }
.submit-btn:active { transform: translateY(1px); }
.submit-btn[disabled] {
  background: var(--muted);
  cursor: progress;
  opacity: .85;
}

/* ─────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────── */
.footer {
  max-width: var(--container-wide);
  margin: var(--space-6) auto 0;
  padding: var(--space-5) var(--space-4) 0;
  text-align: center;
  border-top: 1px solid var(--line-soft);
}

.footer-mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.footer-mark .amp {
  font-family: var(--script);
  font-style: normal;
  color: var(--accent-ink);
  padding: 0 .1em;
}

.footer-line {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .86rem;
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────────────────────────────
   Lightbox
   ───────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(20, 16, 12, .9);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }
.lightbox.has-siblings .lightbox-nav { display: inline-flex; }

/* ─────────────────────────────────────────────────────────────────
   Botanical decorations (two deliberate accents, not four corners)
   ───────────────────────────────────────────────────────────────── */
.botanical {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  background-repeat: no-repeat;
  background-size: contain;
}

.botanical-top {
  top: 70px;
  left: -28px;
  width: 130px;
  height: 240px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 240' fill='none'><g stroke='%23566649' stroke-width='1.4' stroke-linecap='round'><path d='M86 232 C 70 200 56 168 50 140 C 44 110 46 80 58 50 C 64 36 72 22 84 12'/><path d='M70 188 L 96 174'/><path d='M62 162 L 88 148'/><path d='M54 134 L 80 122'/><path d='M50 108 L 76 100'/><path d='M48 80  L 70 76'/></g><g fill='%236e7f60' fill-opacity='.7'><ellipse cx='102' cy='168' rx='10' ry='5' transform='rotate(-30 102 168)'/><ellipse cx='94' cy='142' rx='10' ry='5' transform='rotate(-32 94 142)'/><ellipse cx='86' cy='116' rx='10' ry='5' transform='rotate(-30 86 116)'/><ellipse cx='80' cy='92' rx='9' ry='4.5' transform='rotate(-26 80 92)'/><ellipse cx='76' cy='68' rx='8' ry='4' transform='rotate(-20 76 68)'/><ellipse cx='44' cy='178' rx='10' ry='5' transform='rotate(28 44 178)'/><ellipse cx='42' cy='152' rx='10' ry='5' transform='rotate(30 42 152)'/><ellipse cx='42' cy='126' rx='10' ry='5' transform='rotate(28 42 126)'/><ellipse cx='44' cy='100' rx='9' ry='4.5' transform='rotate(24 44 100)'/></g></svg>");
}

.botanical-bottom {
  bottom: 40px;
  right: -22px;
  width: 110px;
  height: 200px;
  transform: scaleX(-1);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 200' fill='none'><g stroke='%23566649' stroke-width='1.3' stroke-linecap='round'><path d='M68 192 C 56 162 44 132 40 108 C 36 84 40 62 52 42'/><path d='M52 158 L 76 144'/><path d='M46 132 L 70 122'/><path d='M42 104 L 64 96'/></g><g fill='%236e7f60' fill-opacity='.68'><ellipse cx='82' cy='140' rx='9' ry='4.5' transform='rotate(-28 82 140)'/><ellipse cx='74' cy='114' rx='9' ry='4.5' transform='rotate(-26 74 114)'/><ellipse cx='66' cy='88' rx='8' ry='4' transform='rotate(-22 66 88)'/><ellipse cx='36' cy='148' rx='9' ry='4.5' transform='rotate(28 36 148)'/><ellipse cx='34' cy='120' rx='9' ry='4.5' transform='rotate(26 34 120)'/></g><g fill='%23b08769' fill-opacity='.6'><circle cx='86' cy='70' r='3.8'/><circle cx='82' cy='62' r='2.6'/><circle cx='90' cy='62' r='2.6'/></g></svg>");
}

/* ─────────────────────────────────────────────────────────────────
   Thank-you page — shares the same design system as index
   ───────────────────────────────────────────────────────────────── */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thankyou-hero {
  position: relative;
  text-align: center;
  padding: var(--space-5) var(--space-4) var(--space-4);
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.thankyou-eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
  padding: .35rem .85rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 999px;
}

.thankyou-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  line-height: 1;
  color: var(--ink);
}

.thankyou-figure {
  max-width: var(--container);
  margin: var(--space-5) auto 0;
  padding: 0 var(--space-4);
}

.thankyou-figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.thankyou-body {
  max-width: 560px;
  margin: var(--space-5) auto 0;
  padding: 0 var(--space-4);
  text-align: center;
  color: var(--muted);
}

.thankyou-body p {
  margin: var(--space-3) 0;
  line-height: 1.75;
}

.thankyou-body p.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
}

.thankyou-actions {
  margin: var(--space-5) auto var(--space-6);
  text-align: center;
}

.thankyou-button {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .08em;
  text-decoration: none;
  border: 0;
  transition: background .18s ease;
}
.thankyou-button:hover { background: var(--accent-ink); }
.thankyou-button::before {
  content: "←";
  font-size: 1.05em;
}

/* ─────────────────────────────────────────────────────────────────
   Scroll reveal — opt-out via prefers-reduced-motion
   ───────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────────────────────────
   Breakpoints (mobile-first — only `min-width` rules below)
   ───────────────────────────────────────────────────────────────── */

/* Small tablet & large phone landscape */
@media (min-width: 640px) {
  .hero-intro     { padding: var(--space-6) var(--space-5); margin-top: -4.5rem; }
  .notice-card    { padding: var(--space-5) var(--space-5); grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-5); }
  .notice-note    { grid-column: 1 / -1; }
  .gallery-two    { grid-template-columns: 1fr 1fr; }
  .gallery-three  { grid-template-columns: repeat(3, 1fr); }
  .booking-form   { grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-4); padding: var(--space-5); }
  .form-info      { padding: var(--space-5); }
}

/* Tablet / desktop */
@media (min-width: 900px) {
  .wordmark       { padding: 1.75rem 1.5rem .5rem; }
  .wordmark-name  { font-size: 1.35rem; }
  .hero-banner    { height: clamp(360px, 44vw, 520px); }
  .hero-intro     { margin-top: -5.5rem; padding: var(--space-7) var(--space-5); }
  .cards          { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .form-wrap      { grid-template-columns: .85fr 1.15fr; gap: var(--space-5); }
  .section        { padding: var(--space-8) var(--space-5) 0; }
  .section-heading { text-align: left; }
  .footer         { padding: var(--space-6) var(--space-5) 0; }
}

/* Wide desktop — three accommodation cards in a row */
@media (min-width: 1200px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .botanical-top    { left: 14px; }
  .botanical-bottom { right: 14px; }
}

/* Touch input — keep iOS from zooming on focus */
@media (hover: none) and (pointer: coarse) {
  input, select, textarea { font-size: 16px; }
  .botanical { opacity: .35; }
}
