/* ==========================================================================
   Ambasto Photography — public site styles

   Structure:
     1. Tokens        design variables (colours, spacing, type)
     2. Reset & base
     3. Layout        wrap, sections, grids
     4. Components    buttons, forms, cards, pills
     5. Header/footer
     6. Home          hero and its sections
     7. Portfolio     masonry + lightbox
     8. Pricing
     9. Reviews
    10. Booking       calendar and slots
    11. Utilities
    12. Responsive
    13. Motion & print

   The accent colour is injected inline from the admin panel in base.html,
   so --accent below is only a fallback.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --accent: #b08d57;
  --accent-dark: #8f7043;
  --ink: #26221e;
  --ink-soft: #5b544d;
  --ink-faint: #8a8078;
  --paper: #fdfcfa;
  --paper-alt: #f5f2ed;
  --line: #e6e0d8;
  --white: #ffffff;
  --danger: #a8342a;
  --success: #2f6b46;
  --warn: #8a6516;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(38, 34, 30, .07);
  --shadow: 0 4px 20px rgba(38, 34, 30, .09);
  --shadow-lg: 0 18px 50px rgba(38, 34, 30, .16);

  --font-body: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;

  --step: 1.5rem;
  --wrap: 1180px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }
a { color: var(--ink); text-decoration-color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--white);
  padding: .7rem 1.1rem; z-index: 999; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: var(--white); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap.narrow { max-width: 720px; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--paper-alt); }

.section-heading { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .8rem; }
.section-heading.centered, .centered { text-align: center; }
.small-heading { font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase;
                 font-family: var(--font-body); color: var(--ink-soft); }

.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}

.page-head {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 1.5rem;
  border-bottom: 1px solid var(--line);
}
.page-intro { max-width: 62ch; color: var(--ink-soft); font-size: 1.08rem; }

.prose p:last-child { margin-bottom: 0; }
.prose.small { font-size: .95rem; color: var(--ink-soft); }

/* ---------- 4. Components ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .78rem 1.5rem;
  font: inherit; font-size: .97rem; font-weight: 500;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: background .16s ease, color .16s ease,
              border-color .16s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark);
                     color: var(--white); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-ghost { background: rgba(255, 255, 255, .1); color: inherit;
             border-color: currentColor; }
.btn-ghost:hover { background: currentColor; }
.btn-ghost:hover { color: var(--paper); }

.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { background: #8c2b22; color: var(--white); }

.btn-small { padding: .45rem .95rem; font-size: .87rem; }
.btn-large { padding: .95rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-block; font-size: .95rem; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.link-arrow::after { content: " →"; transition: margin .15s ease; }
.link-arrow:hover::after { margin-left: .25rem; }

.link-button {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px;
}

.pill {
  display: inline-block; padding: .18rem .6rem; border-radius: 999px;
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; vertical-align: middle;
}
.pill-pending, .pill-new, .pill-open { background: #fdf1d8; color: var(--warn); }
.pill-confirmed { background: #dcefe3; color: var(--success); }
.pill-completed, .pill-used { background: #e2e6ec; color: #40506b; }
.pill-declined, .pill-cancelled, .pill-rejected,
.pill-revoked, .pill-expired { background: #f6dedb; color: var(--danger); }
.pill-approved { background: #dcefe3; color: var(--success); }
.pill-featured { background: #efe3f3; color: #6a3f7a; }

.stars { color: var(--accent); letter-spacing: .1em; font-size: 1.05rem; }
.stars.large { font-size: 1.7rem; }
.stars.small { font-size: .9rem; }

.notice {
  padding: 1.4rem 1.6rem; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--white); margin-bottom: 1.5rem;
}
.notice-success { border-color: #bcd9c8; background: #f2f9f5; }
.notice-info { border-color: #cddcea; background: #f3f7fb; }
.notice-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em;
                color: var(--ink-faint); margin-bottom: .3rem; }

.flash-area { margin-top: 1rem; }
.flash {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .85rem 1.1rem; border-radius: var(--radius);
  border: 1px solid var(--line); margin-bottom: .6rem; font-size: .95rem;
}
.flash-success { background: #f2f9f5; border-color: #bcd9c8; color: var(--success); }
.flash-error { background: #fdf3f2; border-color: #eec6c1; color: var(--danger); }
.flash-info, .flash-warning { background: #fdf8ec; border-color: #ecdcb8; color: var(--warn); }
.flash-close { background: none; border: 0; font-size: 1.3rem; line-height: 1;
               cursor: pointer; color: inherit; opacity: .6; }
.flash-close:hover { opacity: 1; }

.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state h2 { margin-bottom: .4rem; }

.setup-hint {
  background: #fdf8ec; border: 1px dashed #d9c188; color: var(--warn);
  padding: .7rem 1rem; border-radius: var(--radius);
  font-size: .9rem; margin-bottom: 1.4rem;
}

/* Forms */
.form .field { margin-bottom: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

label { display: block; font-size: .92rem; font-weight: 500; margin-bottom: .38rem; }
.req { color: var(--danger); }

input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="password"], input[type="date"], input[type="time"],
input[type="number"], input[type="search"], select, textarea {
  width: 100%; padding: .68rem .85rem;
  font: inherit; font-size: .97rem; color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, .16);
}
textarea { resize: vertical; min-height: 90px; }

.field-hint { font-size: .84rem; color: var(--ink-faint); margin: .35rem 0 0; }

.checkbox { display: flex; align-items: center; gap: .55rem; font-weight: 400;
            cursor: pointer; margin-bottom: .5rem; }
.checkbox input { width: auto; margin: 0; }

/* Honeypot — visually gone, still focusable by bots that ignore CSS. */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* ---------- 5. Header / footer ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 252, 250, .93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: var(--header-h);
}

.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-size: 1.28rem; letter-spacing: .02em; }
.brand-tagline { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em;
                 color: var(--ink-faint); }
.brand-logo { max-height: 44px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  text-decoration: none; font-size: .94rem; color: var(--ink-soft);
  padding: .3rem 0; border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: .5rem;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink);
                   transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-footer { background: var(--ink); color: #cfc8c0; padding: 3.5rem 0 1.5rem;
               margin-top: 0; }
.site-footer a { color: #e9e3db; }
.site-footer a:hover { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--paper);
                margin-bottom: .5rem; }
.footer-heading { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em;
                  color: var(--ink-faint); font-family: var(--font-body); margin-bottom: .8rem; }
.plain { list-style: none; margin: 0; padding: 0; }
.plain li { margin-bottom: .45rem; font-size: .93rem; }
.footer-base { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 2.5rem;
               padding-top: 1.2rem; }
.site-footer .muted { color: #9d958c; }

/* ---------- 6. Home ---------- */
.hero {
  position: relative; min-height: min(88vh, 780px);
  display: flex; align-items: center;
  background-size: cover; background-position: center; background-color: var(--ink);
  color: var(--white); text-align: center;
  padding: 5rem 0;
}
.hero-empty { background: linear-gradient(150deg, #3a342d, #26221e); }
.hero-left { text-align: left; }
.hero-right { text-align: right; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25) 40%, rgba(0,0,0,.6));
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-left .hero-content { margin-inline: 0 auto; }
.hero-right .hero-content { margin-inline: auto 0; }

.hero-headline {
  color: var(--white); font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  margin-bottom: .35em; text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.hero-sub {
  font-size: clamp(1.03rem, 2vw, 1.28rem); color: rgba(255, 255, 255, .93);
  max-width: 56ch; margin: 0 auto 2rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .4);
}
.hero-left .hero-sub, .hero-right .hero-sub { margin-inline: 0; }
.hero-right .hero-sub { margin-inline: auto 0; }

.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; justify-content: center; }
.hero-left .hero-actions { justify-content: flex-start; }
.hero-right .hero-actions { justify-content: flex-end; }
.centered-actions { justify-content: center; }
.hero .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, .8); }
.hero .btn-ghost:hover { background: var(--white); color: var(--ink); }
.hero .btn-primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero .btn-primary:hover { background: var(--accent); border-color: var(--accent);
                           color: var(--white); }

.hero-note { margin-top: 1.6rem; font-size: .9rem; color: rgba(255, 255, 255, .8); }

.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
               z-index: 2; }
.hero-scroll span { display: block; width: 1px; height: 42px;
                    background: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.75)); }

.intro-grid { display: grid; grid-template-columns: 380px 1fr; gap: 3.5rem;
              align-items: center; }
.intro-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.intro-body-wide { grid-column: 1 / -1; max-width: 68ch; margin-inline: auto;
                   text-align: center; }

.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                 gap: 1.4rem; margin-top: 2.5rem; }
.category-card {
  display: block; padding: 1.9rem 1.6rem; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow);
                       border-color: var(--accent); }
.category-card h3 { margin-bottom: .4rem; }
.category-card p { font-size: .92rem; color: var(--ink-soft); }

.section-cta { background: var(--ink); color: var(--paper); }
.section-cta .cta-heading { color: var(--white); font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.section-cta .cta-body { color: rgba(253, 252, 250, .78); max-width: 52ch;
                         margin: 0 auto 2rem; }
.section-cta .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, .55); }
.section-cta .btn-ghost:hover { background: var(--white); color: var(--ink); }
.section-cta .btn-primary { background: var(--accent); border-color: var(--accent); }
.section-cta .btn-primary:hover { background: var(--white); color: var(--ink);
                                  border-color: var(--white); }

/* ---------- 7. Portfolio ---------- */
.masonry { columns: 3; column-gap: 1.1rem; }
.masonry-wide { columns: 3; }
.masonry-item {
  display: block; position: relative; break-inside: avoid;
  margin-bottom: 1.1rem; border-radius: var(--radius);
  overflow: hidden; background: var(--paper-alt); text-decoration: none;
}
.masonry-item img { width: 100%; transition: transform .5s ease, filter .3s ease; }
.masonry-item:hover img { transform: scale(1.035); }
.masonry-caption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .8rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .68));
  color: var(--white); font-size: .87rem; opacity: 0; transition: opacity .22s ease;
}
.masonry-item:hover .masonry-caption { opacity: 1; }

.filter-bar { border-bottom: 1px solid var(--line); background: var(--paper);
              position: sticky; top: var(--header-h); z-index: 40; }
.filter-inner { display: flex; gap: .5rem; padding: .9rem 0; overflow-x: auto;
                scrollbar-width: thin; }
.filter-chip {
  flex: none; padding: .42rem 1rem; border-radius: 999px; text-decoration: none;
  font-size: .89rem; color: var(--ink-soft); border: 1px solid var(--line);
  background: var(--white); transition: all .15s ease;
}
.filter-chip:hover { border-color: var(--accent); color: var(--ink); }
.filter-chip.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(18, 16, 14, .95);
  display: flex; align-items: center; justify-content: center;
  padding: 3.5rem 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { margin: 0; max-width: 92vw; max-height: 88vh; text-align: center; }
.lightbox-figure img { max-width: 92vw; max-height: 80vh; width: auto; height: auto;
                       object-fit: contain; border-radius: 3px; margin-inline: auto; }
.lightbox-figure figcaption { color: rgba(255, 255, 255, .8); font-size: .9rem;
                              margin-top: .9rem; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255, 255, 255, .1); color: var(--white);
  border: 0; cursor: pointer; border-radius: 50%;
  width: 46px; height: 46px; font-size: 1.7rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, .25); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- 8. Pricing ---------- */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
                gap: 1.6rem; align-items: start; }
.package-card {
  position: relative; padding: 2.2rem 1.8rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); display: flex; flex-direction: column; height: 100%;
}
.package-card.is-featured { border-color: var(--accent); border-width: 2px;
                            box-shadow: var(--shadow); }
.package-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .1em; padding: .28rem .9rem;
  border-radius: 999px; white-space: nowrap;
}
.package-head h2 { font-size: 1.4rem; margin-bottom: .2rem; }
.package-tagline { font-size: .9rem; color: var(--ink-faint); margin-bottom: 1rem; }
.package-price { font-family: var(--font-display); font-size: 2.2rem;
                 color: var(--ink); margin: .4rem 0 .1rem; }
.package-duration { font-size: .88rem; color: var(--ink-faint); margin-bottom: 1.2rem; }
.feature-list { list-style: none; margin: 1.2rem 0; padding: 0; flex: 1; }
.feature-list li { position: relative; padding-left: 1.6rem; margin-bottom: .55rem;
                   font-size: .94rem; color: var(--ink-soft); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent);
                           font-weight: 700; }
.package-cta { margin-top: auto; width: 100%; }
.pricing-footnote { max-width: 70ch; margin: 3rem auto 0; text-align: center; }

.session-type-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                     gap: 1.2rem; margin-top: 2rem; }
.session-type-card { background: var(--white); border: 1px solid var(--line);
                     border-radius: var(--radius-lg); padding: 1.5rem; }
.session-type-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.session-duration { font-size: .88rem; color: var(--ink-faint); margin-bottom: .2rem; }
.session-price { font-weight: 600; color: var(--accent-dark); margin-bottom: .6rem; }

.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq-item summary { cursor: pointer; font-weight: 500; font-size: 1.03rem;
                    list-style: none; position: relative; padding-right: 2rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: -2px;
                           font-size: 1.4rem; color: var(--accent); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item > div { padding-top: .8rem; }

/* ---------- 9. Reviews ---------- */
.rating-summary { display: grid; grid-template-columns: 220px 1fr; gap: 3rem;
                  align-items: center; }
.rating-number { font-family: var(--font-display); font-size: 3.6rem; line-height: 1;
                 margin: 0 0 .2rem; }
.rating-score { text-align: center; }
.rating-bar-row { display: grid; grid-template-columns: 62px 1fr 34px;
                  align-items: center; gap: .8rem; margin-bottom: .45rem; font-size: .87rem; }
.rating-bar-track { height: 8px; background: var(--line); border-radius: 999px;
                    overflow: hidden; }
.rating-bar-fill { display: block; height: 100%; background: var(--accent);
                   border-radius: 999px; }
.rating-bar-count { text-align: right; color: var(--ink-faint); }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
               gap: 1.5rem; }
.review-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.4rem; }
.review-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem; margin: 0;
}
.review-card.is-featured { border-color: var(--accent); }
.review-card-head { display: flex; justify-content: space-between; align-items: center;
                    gap: .8rem; margin-bottom: .8rem; flex-wrap: wrap; }
.review-title { font-size: 1.12rem; margin-bottom: .5rem; }
.review-card blockquote { margin: 0 0 1.1rem; font-size: .98rem; color: var(--ink-soft);
                          line-height: 1.7; }
.review-card figcaption { font-size: .9rem; }
.verified-badge {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .07em;
  background: #dcefe3; color: var(--success); padding: .2rem .6rem; border-radius: 999px;
}
.review-reply { margin-top: 1.1rem; padding: .9rem 1.1rem; background: var(--paper-alt);
                border-radius: var(--radius); font-size: .9rem; }
.review-reply-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em;
                      color: var(--ink-faint); margin-bottom: .3rem; }

/* ---------- 10. Booking ---------- */
.booking-form { max-width: 900px; margin-inline: auto; }
.booking-step { margin-bottom: 3rem; padding-bottom: 2.2rem;
                border-bottom: 1px solid var(--line); }
.booking-step:last-of-type { border-bottom: 0; }
.step-heading { display: flex; align-items: center; gap: .8rem; font-size: 1.35rem;
                margin-bottom: 1.4rem; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  font-family: var(--font-body); font-size: .95rem; flex: none;
}

.session-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
                  gap: .9rem; }
.session-option { position: relative; display: block; cursor: pointer;
                  border: 1px solid var(--line); border-radius: var(--radius-lg);
                  padding: 1.1rem 1.2rem; background: var(--white);
                  transition: border-color .15s ease, box-shadow .15s ease; }
.session-option:hover { border-color: var(--accent); }
.session-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.session-option:has(input:checked),
.session-option.is-selected { border-color: var(--accent); border-width: 2px;
                              box-shadow: 0 0 0 3px rgba(176, 141, 87, .12); }
.session-option:has(input:focus-visible) { outline: 2px solid var(--accent);
                                           outline-offset: 2px; }
.session-option-name { display: block; font-weight: 600; margin-bottom: .15rem; }
.session-option-meta { display: block; font-size: .85rem; color: var(--accent-dark); }
.session-option-desc { display: block; font-size: .84rem; color: var(--ink-faint);
                       margin-top: .4rem; }

.availability-hint { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.availability-hint.warn { color: var(--warn); }

.calendar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem;
                   align-items: start; }
.calendar-panel { background: var(--white); border: 1px solid var(--line);
                  border-radius: var(--radius-lg); padding: 1.2rem; }
.calendar-header { display: flex; align-items: center; justify-content: space-between;
                   margin-bottom: 1rem; }
.calendar-title { font-size: 1.1rem; margin: 0; }
.calendar-nav { background: none; border: 1px solid var(--line); border-radius: var(--radius);
                width: 34px; height: 34px; cursor: pointer; font-size: 1.2rem;
                line-height: 1; color: var(--ink); }
.calendar-nav:hover:not(:disabled) { border-color: var(--accent); }
.calendar-nav:disabled { opacity: .3; cursor: not-allowed; }

.calendar-grid-head, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr);
                                      gap: 4px; }
.calendar-grid-head { margin-bottom: .5rem; }
.calendar-grid-head span { text-align: center; font-size: .74rem; text-transform: uppercase;
                           letter-spacing: .05em; color: var(--ink-faint); }
.cal-day {
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  border: 1px solid transparent; border-radius: var(--radius);
  background: var(--paper-alt); font-size: .92rem; cursor: pointer;
  color: var(--ink); font-family: inherit; padding: 0;
}
.cal-day.is-empty { background: none; cursor: default; }
.cal-day.is-open:hover { border-color: var(--accent); background: #fdf6ea; }
.cal-day.is-open { background: #f0f7f2; color: var(--success); font-weight: 600; }
.cal-day.is-limited { background: #fdf5e4; color: var(--warn); font-weight: 600; }
.cal-day.is-unavailable { background: var(--paper-alt); color: #c4bcb3; cursor: not-allowed; }
.cal-day.is-selected { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cal-day-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor;
               opacity: .65; }

.calendar-legend { display: flex; gap: 1.2rem; list-style: none; padding: 0;
                   margin: 1rem 0 0; font-size: .8rem; color: var(--ink-faint);
                   flex-wrap: wrap; }
.calendar-legend li { display: flex; align-items: center; gap: .4rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-open { background: #7fb894; }
.dot-limited { background: #e0b657; }
.dot-full { background: #cfc7be; }

.date-fallback { margin-bottom: 1.2rem; }
.slots-panel { background: var(--white); border: 1px solid var(--line);
               border-radius: var(--radius-lg); padding: 1.3rem; }
.slots-heading { font-size: 1rem; font-family: var(--font-body); font-weight: 600;
                 margin-bottom: .9rem; }
.slot-list { display: grid; gap: .5rem; max-height: 420px; overflow-y: auto; }
.slot { position: relative; display: block; cursor: pointer; text-align: center;
        padding: .6rem; border: 1px solid var(--line); border-radius: var(--radius);
        font-size: .93rem; transition: all .13s ease; }
.slot:hover { border-color: var(--accent); background: #fdf9f3; }
.slot input { position: absolute; opacity: 0; width: 0; height: 0; }
.slot:has(input:checked), .slot.is-selected { background: var(--ink); color: var(--white);
                                              border-color: var(--ink); }
.slot:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }

.booking-summary { background: var(--paper-alt); border-radius: var(--radius-lg);
                   padding: 1.4rem 1.6rem; margin-bottom: 1.5rem; }
.booking-summary h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
                      color: var(--ink-faint); font-family: var(--font-body);
                      margin-bottom: .8rem; }
.booking-summary dl { display: flex; gap: 2.5rem; flex-wrap: wrap; margin: 0; }
.booking-summary dt { font-size: .78rem; color: var(--ink-faint); text-transform: uppercase;
                      letter-spacing: .05em; }
.booking-summary dd { margin: .15rem 0 0; font-weight: 600; }
.booking-terms { background: #fdf8ec; border-left: 3px solid var(--accent);
                 padding: 1rem 1.2rem; border-radius: 0 var(--radius) var(--radius) 0;
                 margin-bottom: 1.5rem; }

.confirm-card { text-align: center; padding: 2.5rem 2rem; }
.confirm-tick { width: 62px; height: 62px; border-radius: 50%; background: #dcefe3;
                color: var(--success); font-size: 2rem; display: flex; align-items: center;
                justify-content: center; margin: 0 auto 1.2rem; }
.confirm-details { text-align: left; max-width: 420px; margin: 1.8rem auto; }
.confirm-details > div { display: flex; justify-content: space-between; gap: 1rem;
                         padding: .6rem 0; border-bottom: 1px solid var(--line); }
.confirm-details dt { color: var(--ink-faint); font-size: .88rem; }
.confirm-details dd { margin: 0; font-weight: 500; text-align: right; }
.lead { font-size: 1.08rem; color: var(--ink-soft); }
.next-steps { margin-top: 3rem; }

.danger-zone { border: 1px solid #eec6c1; background: #fdf6f5; border-radius: var(--radius-lg);
               padding: 1.6rem; margin-top: 2rem; }
.danger-zone h2 { font-size: 1.1rem; color: var(--danger); }

/* Review form stars */
.star-field { border: 0; padding: 0; margin: 0 0 1.5rem; }
.star-field legend { font-size: .92rem; font-weight: 500; margin-bottom: .5rem; padding: 0; }
.star-input { display: inline-flex; flex-direction: row-reverse; gap: .2rem; }
.star-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-input label { font-size: 2.1rem; color: var(--line); cursor: pointer; margin: 0;
                    line-height: 1; transition: color .12s ease; }
.star-input label:hover, .star-input label:hover ~ label,
.star-input input:checked ~ label { color: var(--accent); }
.star-input input:focus-visible + label { outline: 2px solid var(--accent);
                                          outline-offset: 2px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 320px 1fr; gap: 3.5rem;
                align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.contact-list li { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.contact-label { display: block; font-size: .74rem; text-transform: uppercase;
                 letter-spacing: .1em; color: var(--ink-faint); margin-bottom: .2rem; }
.contact-value { font-size: 1.02rem; }
.contact-note { margin-bottom: 2rem; }
.contact-cta-box { background: var(--paper-alt); border-radius: var(--radius-lg);
                   padding: 1.4rem; }
.contact-cta-box p { margin-bottom: .5rem; }

/* Errors */
.error-page { padding: 5rem 0; }
.error-code { font-family: var(--font-display); font-size: 5rem; color: var(--line);
              line-height: 1; margin: 0 0 .5rem; }

/* ---------- 11. Utilities ---------- */
.muted { color: var(--ink-faint); }
.small { font-size: .9rem; }
.tiny { font-size: .8rem; }
.block { display: block; }
.inline { display: inline; }
.nowrap { white-space: nowrap; }
.right { text-align: right; }
.mt-4 { margin-top: .4rem; }

/* ---------- 12. Responsive ---------- */
@media (max-width: 980px) {
  .masonry, .masonry-wide { columns: 2; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .calendar-layout { grid-template-columns: 1fr; }
  .rating-summary { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.6rem; box-shadow: var(--shadow);
    transform: translateY(-120%); transition: transform .25s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav a { display: block; padding: .85rem 0; font-size: 1rem; }
  .nav-cta { margin-top: 1rem; }

  .masonry, .masonry-wide { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: 78vh; }
  .booking-summary dl { flex-direction: column; gap: .8rem; }
  .filter-bar { position: static; }
  .lightbox-prev { left: .4rem; }
  .lightbox-next { right: .4rem; }
}

/* ---------- 13. Motion & print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .site-footer, .hero-actions, .nav-toggle,
  .booking-form button, .danger-zone { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .section { padding: 1rem 0; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .85em; }
}
