/* ==========================================================================
   Blossom Pottery Studio & Cafe — stylesheet
   Mobile-first. Palette pulled from the logo artwork.
   ========================================================================== */

:root {
  /* Brand palette (sampled from the logos) */
  --cream:        #faf6f0;   /* page background */
  --cream-deep:   #f3eae1;   /* alternate section background */
  --blush:        #f6dcd8;   /* light blossom pink */
  --blush-soft:   #fbeeeb;   /* palest pink wash */
  --pink:         #d98e8e;   /* dusty pink — brand script colour */
  --pink-deep:    #c4797b;   /* hover / accents */
  --brown:        #6f4a3d;   /* warm brown — tagline colour, headings */
  --brown-soft:   #8a6355;   /* lighter brown, body text */
  --ink:          #52392f;   /* darkest text */

  /* Type */
  --font-script: "Dancing Script", cursive;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --radius: 18px;
  --shadow-soft: 0 10px 30px rgba(111, 74, 61, 0.10);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--brown-soft);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.container.narrow { max-width: 720px; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-body { margin-bottom: 1.4rem; }

.text-link {
  color: var(--pink-deep);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link:hover { border-bottom-color: var(--pink-deep); color: var(--brown); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9em 1.9em;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(217, 142, 142, 0.45);
}

.btn-primary:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(196, 121, 123, 0.5);
}

.btn-ghost {
  color: var(--brown);
  border: 1.5px solid var(--pink);
  background: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: var(--blush-soft);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217, 142, 142, 0.18);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(111, 74, 61, 0.10); }

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  gap: 1rem;
}

/* Logo left, booking button + burger right */
.brand { margin-right: auto; }

.brand-logo { height: 58px; width: auto; }

/* Header booking button: hidden on small screens (the menu has its own) */
.header-cta {
  display: none;
  font-size: 0.78rem;
  padding: 0.7em 1.5em;
}

@media (min-width: 600px) {
  .header-cta { display: inline-block; }

  /* Avoid showing the booking button twice when the header one is visible */
  .nav-list li:has(> .nav-cta) { display: none; }
}

/* Hamburger (mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(217, 142, 142, 0.2);
  box-shadow: 0 16px 30px rgba(111, 74, 61, 0.12);
  display: none;
}

.site-nav.is-open { display: block; }

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.2rem 0 1.6rem;
}

.nav-link {
  display: inline-block;
  padding: 0.5em 0.9em;
  color: var(--brown);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--pink-deep); }

.nav-cta { margin-top: 0.5rem; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4.5rem 0 6.5rem;
  /*
    PLACEHOLDER: to use a real photo hero, replace this gradient with e.g.
    background: linear-gradient(rgba(250,246,240,.88), rgba(250,246,240,.88)),
                url("../assets/hero.jpg") center/cover;
  */
  background:
    radial-gradient(ellipse at 15% 20%, rgba(246, 220, 216, 0.55), transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(246, 220, 216, 0.6), transparent 50%),
    radial-gradient(ellipse at 70% 90%, rgba(243, 234, 225, 0.9), transparent 60%),
    linear-gradient(180deg, var(--blush-soft), var(--cream-deep));
}

.hero-inner { position: relative; z-index: 2; }

.hero-logo {
  width: min(420px, 78vw);
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 8px 24px rgba(111, 74, 61, 0.12));
}

.hero-title {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-lede {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* Soft watercolour blossom blobs in hero corners */
.hero-blossom {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(217, 142, 142, 0.35), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(246, 220, 216, 0.9), transparent 65%);
}

.hero-blossom-left  { top: -120px; left: -140px; }
.hero-blossom-right { bottom: -100px; right: -150px; }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg { width: 100%; height: 46px; display: block; }

/* --------------------------------------------------------------------------
   Sections (shared)
   -------------------------------------------------------------------------- */

.section { padding: 4.5rem 0; }

.section-alt { background: var(--cream-deep); }

.section-head { text-align: center; margin-bottom: 2.8rem; }

/* About */
.about { text-align: center; }

.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 0 0 1.4rem;
}

.flourish span {
  display: block;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink));
}

.flourish span:last-child { background: linear-gradient(90deg, var(--pink), transparent); }

.flourish img { width: 46px; height: 46px; }

/* --------------------------------------------------------------------------
   Offer cards
   -------------------------------------------------------------------------- */

.offer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

.offer-card {
  background: #fff;
  border: 1px solid rgba(217, 142, 142, 0.18);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(111, 74, 61, 0.14);
}

.offer-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pink-deep);
  background: var(--blush-soft);
  border: 1px solid rgba(217, 142, 142, 0.3);
}

.offer-icon svg { width: 40px; height: 40px; }

.offer-title {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.offer-card p { font-size: 0.95rem; margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

/* Eases from the deeper-cream offer section into the cream gallery below */
.pricing { background: linear-gradient(180deg, var(--cream-deep), var(--cream) 45%); }

.pricing-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
}

.price-card {
  background: #fff;
  border: 1px solid rgba(217, 142, 142, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(111, 74, 61, 0.14);
}

.price-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.8rem;
}

.price-amount {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--brown);
}

.price-per {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0.5rem 0 1rem;
}

.price-note { font-size: 0.95rem; }

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
  text-align: center;
}

.pricing-includes li {
  font-size: 0.92rem;
  color: var(--brown);
}

.pricing-includes li::before {
  content: "✿";
  color: var(--pink);
  margin-right: 0.6em;
}

.pricing-more { text-align: center; margin-top: 1.6rem; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item { border-radius: var(--radius); overflow: hidden; }

.gallery-item-wide { grid-column: span 2; }

/* Placeholder tiles — replace with real <img> elements (see index.html note) */
.gallery-ph {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  position: relative;
}

.gallery-item-wide .gallery-ph { aspect-ratio: 8 / 3; }

.gallery-ph span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(111, 74, 61, 0.65);
  background: rgba(255, 255, 255, 0.55);
  padding: 0.5em 1.1em;
  border-radius: 999px;
}

/* Soft watercolour-wash tints so the grid feels alive before photos exist */
.ph-1 { background: linear-gradient(135deg, #f6dcd8, #ecc7c2); }
.ph-2 { background: linear-gradient(135deg, #f3eae1, #e3cfc0); }
.ph-3 { background: linear-gradient(135deg, #fbeeeb, #e9c4bf 70%, #f3eae1); }
.ph-4 { background: linear-gradient(135deg, #eedfd2, #dcc2ae); }
.ph-5 { background: linear-gradient(135deg, #f9e4e0, #f0cdc7); }
.ph-6 { background: linear-gradient(135deg, #f1e3da, #e0c6ba); }

.gallery-more { text-align: center; margin-top: 1.8rem; }

/* --------------------------------------------------------------------------
   Visit / map
   -------------------------------------------------------------------------- */

.visit-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.visit-info {
  background: #fff;
  border: 1px solid rgba(217, 142, 142, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.2rem 2rem;
}

.visit-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.visit-address, .visit-contact { margin-bottom: 1.6rem; }

.visit-hours-note {
  font-size: 0.85rem;
  font-style: italic;
  margin: -0.8rem 0 1.6rem;
}

.visit-contact a { color: var(--brown); text-decoration: none; }
.visit-contact a:hover { color: var(--pink-deep); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.45em 0;
  border-bottom: 1px dashed rgba(217, 142, 142, 0.35);
}

.hours-table th { font-weight: 600; color: var(--brown); }
.hours-table td { text-align: right; }

.visit-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(217, 142, 142, 0.18);
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-lede { max-width: 520px; margin-inline: auto; }

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.contact-info,
.contact-form {
  background: #fff;
  border: 1px solid rgba(217, 142, 142, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.2rem 2rem;
}

.contact-email { color: var(--pink-deep); text-decoration: none; font-weight: 600; }
.contact-email:hover { color: var(--brown); }

.contact-info p { margin-bottom: 1.6rem; }

.contact-note { font-size: 0.88rem; font-style: italic; margin-bottom: 0 !important; }

.form-row {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

.form-field { margin-bottom: 1.1rem; }

.form-field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.form-field .optional { text-transform: none; letter-spacing: 0.04em; font-weight: 400; color: var(--brown-soft); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(217, 142, 142, 0.35);
  border-radius: 12px;
  padding: 0.75em 1em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(217, 142, 142, 0.18);
}

.contact-form .btn { border: none; cursor: pointer; width: 100%; }

.form-hint {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.8rem;
  color: var(--brown-soft);
}

@media (min-width: 700px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .contact-form .btn { width: auto; }
}

/* --------------------------------------------------------------------------
   Booking page
   -------------------------------------------------------------------------- */

.booking-lede { max-width: 560px; margin-inline: auto; }

/* Events page */
.events-lede { max-width: 560px; margin-inline: auto; }

/* Two columns on larger screens (double-class wins over .offer-grid's three) */
@media (min-width: 700px) {
  .offer-grid.events-grid { grid-template-columns: 1fr 1fr; }
}

.event-detail {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.events-note {
  max-width: 560px;
  margin: 2.6rem auto 0;
  text-align: center;
  font-size: 0.92rem;
}

.events-note a { color: var(--pink-deep); font-weight: 600; }

/* Deposit callout on the booking page */
.booking-price-note {
  max-width: 560px;
  margin: 1.6rem auto 0;
  background: var(--blush-soft);
  border: 1.5px solid var(--pink);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  text-align: center;
  font-size: 0.95rem;
}

.booking-price-headline {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
}

.booking-price-note strong { color: var(--brown); }

.booking-price-note a { color: var(--pink-deep); font-weight: 600; }

.deposit-line {
  text-align: center;
  font-size: 1.05rem;
  margin: 0.4rem 0 0.2rem;
}

.deposit-line strong { color: var(--brown); font-size: 1.2em; }

.deposit-small {
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.deposit-small a { color: var(--pink-deep); }

/* Price list page */
.prices-lede { max-width: 560px; margin-inline: auto; }

.prices-sub {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--brown);
  text-align: center;
  margin: 2.4rem 0 1rem;
}

.prices-table-card {
  background: #fff;
  border: 1px solid rgba(217, 142, 142, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem 1.8rem;
}

.prices-table { width: 100%; border-collapse: collapse; }

.prices-table th,
.prices-table td {
  text-align: left;
  padding: 0.9em 0;
  border-bottom: 1px dashed rgba(217, 142, 142, 0.35);
  font-size: 0.98rem;
}

.prices-table tr:last-child th,
.prices-table tr:last-child td { border-bottom: none; }

.prices-table th { font-weight: 600; color: var(--brown); }

.prices-table td {
  text-align: right;
  font-weight: 600;
  color: var(--pink-deep);
  white-space: nowrap;
  padding-left: 1em;
}

.prices-detail {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--brown-soft);
}

.prices-note {
  font-size: 0.88rem;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

.prices-cta { text-align: center; margin-top: 2.6rem; }

.date-picker {
  max-width: 340px;
  margin: 0 auto 2rem;
  text-align: center;
}

.date-picker label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.date-picker select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(217, 142, 142, 0.35);
  border-radius: 999px;
  padding: 0.75em 1.2em;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.date-picker select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(217, 142, 142, 0.18);
}

.session-list { text-align: center; }

.session-status { margin-bottom: 1.2rem; }

.session-day {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--brown);
  margin: 2rem 0 1rem;
}

.session-list .session-day:first-child { margin-top: 0; }

.session-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.session-card {
  background: #fff;
  border: 1px solid rgba(217, 142, 142, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(111, 74, 61, 0.14);
}

.session-card.is-full { opacity: 0.6; }
.session-card.is-full:hover { transform: none; box-shadow: var(--shadow-soft); }

.session-time {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--brown);
  letter-spacing: 0.06em;
}

.session-title { font-size: 0.88rem; margin: 0.3rem 0 0.5rem; }

.session-spaces {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 1rem;
}

.session-book { padding: 0.7em 2.2em; border: none; cursor: pointer; }

.session-card.is-selected {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(217, 142, 142, 0.25), var(--shadow-soft);
}

@media (min-width: 700px) {
  .session-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Booking panel (details + payment) and success state */
.booking-panel,
.booking-success {
  max-width: 620px;
  margin: 2.4rem auto 0;
  background: #fff;
  border: 1px solid rgba(217, 142, 142, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.2rem 2rem;
  text-align: center;
}

.booking-panel-title {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.booking-summary {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--pink-deep);
  margin-bottom: 1.4rem;
}

.booking-panel form { text-align: left; }

.booking-panel .btn {
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 0.4rem;
}

#payment-element { margin-bottom: 1.2rem; }

.booking-success p { margin-bottom: 1rem; }

/* Thank-you page */
.thanks-next {
  text-align: left;
  background: var(--blush-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

.thanks-next strong { color: var(--brown); }

.thanks-next ul { list-style: none; margin-top: 0.6rem; }

.thanks-next li { margin-bottom: 0.5rem; }

.thanks-next li::before {
  content: "✿";
  color: var(--pink);
  margin-right: 0.6em;
}

.thanks-next a { color: var(--pink-deep); }

.thanks-address { font-size: 0.9rem; }

.booking-fallback {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.booking-fallback a { color: var(--pink-deep); }

.booking-note {
  text-align: center;
  max-width: 520px;
  margin: 1.8rem auto 0;
  font-style: italic;
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   Blog post
   -------------------------------------------------------------------------- */

.post-header { text-align: center; margin-bottom: 2.6rem; }

.post-header .section-title { font-size: clamp(2.2rem, 5vw, 3rem); }

.post-meta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}

.post h2 {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--brown);
  margin: 2.4rem 0 0.7rem;
}

.post h3 {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 1.8rem 0 0.4rem;
}

.post p { margin-bottom: 1rem; }

.post ol {
  margin: 0 0 1rem 1.3rem;
  display: grid;
  gap: 0.5rem;
}

.post ol li::marker { color: var(--pink-deep); font-weight: 600; }

.post a:not(.btn) { color: var(--pink-deep); }
.post a:not(.btn):hover { color: var(--brown); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--brown);
  color: var(--blush);
  text-align: center;
  padding: 3.2rem 0 2.4rem;
}

.footer-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--cream);
  padding: 6px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.4rem;
}

.footer-nav a {
  color: var(--blush);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: #fff; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--blush);
  border: 1px solid rgba(246, 220, 216, 0.4);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-address { font-size: 0.9rem; margin-bottom: 0.4rem; }

.footer-copy { font-size: 0.8rem; opacity: 0.75; }

/* --------------------------------------------------------------------------
   Scroll reveal (progressive enhancement; content visible without JS)
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.is-visible { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Larger screens
   -------------------------------------------------------------------------- */

@media (min-width: 700px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }

  .pricing-grid { grid-template-columns: 1fr 1fr; }

  .pricing-includes {
    flex-direction: row;
    justify-content: center;
    gap: 2.4rem;
  }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item-wide { grid-column: span 2; }

  .visit-grid { grid-template-columns: 1fr 1.2fr; }
  .visit-map { min-height: 100%; }
}

/* The nav is a burger menu at every width; only spacing and the logo
   scale up on larger screens. */
@media (min-width: 920px) {
  .section { padding: 6rem 0; }

  .brand-logo { height: 64px; }

  .nav-list { padding: 1.6rem 0 2rem; gap: 0.6rem; }
}
