/* ==========================================================================
   Artful Moments — shared site stylesheet
   Used by every page. Page-specific sections are appended below the shared
   components and clearly labeled with a "Page:" comment header.
   ========================================================================== */

:root{
  --rose: #c98a99;
  --rose-dark: #ad6c7c;
  --rose-light: #f3d9dd;
  --blush: #faf0ee;
  --cream: #fdf9f6;
  --dark: #33291f;
  --text: #5f564d;
  --text-light: #948a80;
  --border: #ece1dc;
  --shadow: 0 20px 50px -25px rgba(51, 41, 31, 0.35);
  --radius: 18px;
  --serif: "Playfair Display", serif;
  --sans: "Poppins", sans-serif;
  --script: "Alex Brush", cursive;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
section{ padding: 96px 0; }
.container{ width:100%; max-width:1240px; margin:0 auto; padding:0 24px; }
h1,h2,h3,h4{ font-family: var(--serif); color: var(--dark); font-weight:600; line-height:1.2; }
.eyebrow{
  display:inline-block; font-family: var(--sans); letter-spacing:.18em; text-transform:uppercase;
  font-size:.75rem; font-weight:600; color: var(--rose-dark); margin-bottom:14px;
}
.section-head{ text-align:center; max-width:640px; margin:0 auto 56px; }
.section-head h2{ font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom:14px; }
.section-head p{ color: var(--text-light); font-size:1.02rem; }
.divider{
  width:70px; height:2px; background: var(--rose); margin: 18px auto; position:relative;
}
.divider::before{
  content:"♥"; color:var(--rose); position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  background:var(--cream); font-size:.8rem; padding:0 10px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--sans); font-weight:600; font-size:.82rem; letter-spacing:.06em; text-transform:uppercase;
  padding:16px 32px; border-radius:40px; border:1px solid transparent; cursor:pointer;
  transition: all .25s ease; white-space:nowrap;
}
.btn-primary{ background: var(--rose); color:#fff; }
.btn-primary:hover{ background: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline{ background: transparent; border-color: var(--rose); color: var(--rose-dark); }
.btn-outline:hover{ background: var(--rose); color:#fff; transform: translateY(-2px); }
.btn-light{ background:#fff; color: var(--rose-dark); }
.btn-light:hover{ background: var(--rose-dark); color:#fff; }
.btn-sm{ padding:11px 22px; font-size:.72rem; width:100%; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; pointer-events:none; }
.btn:active{ transform: scale(.96); }

/* ==========================================================================
   Animation system
   - .reveal / .in-view: scroll-triggered fade-up, auto-applied by main.js to
     common content blocks (cards, section heads, etc.) — no per-page markup
     needed. Staggered via an inline transition-delay set in JS.
   - Hero + page-banner entrance: plain CSS keyframes, run once on load.
   - Respects prefers-reduced-motion throughout.
   ========================================================================== */
.reveal{
  opacity:0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
}
.reveal.in-view{ opacity:1; transform:none; }

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(22px); }
  to{ opacity:1; transform: translateY(0); }
}
.hero-badge{ animation: fadeUp .7s .1s cubic-bezier(.16,.8,.3,1) both; }
.hero-content h1{ animation: fadeUp .7s .22s cubic-bezier(.16,.8,.3,1) both; }
.hero-content .lede{ animation: fadeUp .7s .34s cubic-bezier(.16,.8,.3,1) both; }
.hero-actions{ animation: fadeUp .7s .46s cubic-bezier(.16,.8,.3,1) both; }

.page-banner .eyebrow{ animation: fadeUp .6s .05s cubic-bezier(.16,.8,.3,1) both; }
.page-banner h1{ animation: fadeUp .6s .16s cubic-bezier(.16,.8,.3,1) both; }
.page-banner p{ animation: fadeUp .6s .27s cubic-bezier(.16,.8,.3,1) both; }
.page-banner .crumbs{ animation: fadeUp .6s .38s cubic-bezier(.16,.8,.3,1) both; }

@keyframes heroZoom{ from{ transform: scale(1); } to{ transform: scale(1.07); } }
.hero-bg img{ animation: heroZoom 16s ease-in-out infinite alternate; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero-badge, .hero-content h1, .hero-content .lede, .hero-actions,
  .page-banner .eyebrow, .page-banner h1, .page-banner p, .page-banner .crumbs{
    animation:none; opacity:1; transform:none;
  }
  .hero-bg img{ animation:none; }
  .logo-marquee .logo-track{ animation-duration: 60s; }
}

/* Header */
.site-header{
  position: sticky; top:0; z-index:1000; border-bottom:1px solid var(--border);
}
/* backdrop-filter lives on a pseudo-element, not .site-header itself, so it
   doesn't create a new containing block for the fixed-position mobile nav */
.site-header::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background: rgba(253,249,246,.9); backdrop-filter: blur(10px);
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; }
.logo{ display:flex; align-items:center; gap:10px; }
.logo img{ height:52px; width:auto; }
.logo-text{ font-family: var(--serif); font-size:1.15rem; letter-spacing:.08em; color: var(--rose-dark); line-height:1.1; text-transform:uppercase; }
.nav-links{ display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links li{ list-style:none; }
.nav-links a{
  font-size:.85rem; font-weight:500; letter-spacing:.03em; color: var(--dark); position:relative; padding:4px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--rose);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after{ width:100%; }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a{ color: var(--rose-dark); }
.nav-extra{ display:none; }
.nav-actions{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none; position:relative; width:34px; height:34px; background:none; border:none;
  cursor:pointer; padding:0; transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.nav-toggle.active{ transform: rotate(90deg); }
/* Rose backdrop that blooms in behind the bars when the menu opens */
.nav-toggle::before{
  content:""; position:absolute; inset:0; margin:auto; width:34px; height:34px; border-radius:50%;
  background: color-mix(in srgb, var(--rose) 22%, transparent); transform: scale(0); opacity:0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
}
.nav-toggle.active::before{ transform: scale(1); opacity:1; }
.nav-toggle span{
  display:block; position:relative; z-index:1; width:20px; height:2px; background: var(--dark);
  margin:6px auto; transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .2s ease .15s, width .3s ease;
  transform-origin: center;
}
.nav-toggle span:nth-child(2){ width:26px; }
.nav-toggle.active span{ width:22px; }
.nav-toggle.active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; transform: translateX(-16px); transition-delay:0s; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* Menu is a fixed overlay, so the body behind it must not scroll while it's open. */
body.nav-open{ overflow:hidden; }

@media (prefers-reduced-motion: reduce){
  .nav-toggle, .nav-toggle::before, .nav-toggle span{ transition:none; }
  .nav-links, .nav-links > li, .nav-links > a, .nav-links::before, .nav-extra{ transition:none; }
  #primary, .site-footer{ transition:none; }
  body.nav-open #primary, body.nav-open .site-footer{ transform:none; filter:none; }
}

/* Hero */
.hero{
  position:relative; display:flex; align-items:center; min-height:88vh; overflow:hidden;
  background: linear-gradient(120deg, var(--blush) 40%, transparent 40%);
}
.hero-bg{
  position:absolute; inset:0; z-index:0;
}
.hero-bg img{ width:100%; height:100%; object-fit:cover; object-position: 70% 45%; }
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, var(--blush) 0%, rgba(250,240,238,.85) 32%, rgba(250,240,238,.15) 62%, rgba(250,240,238,0) 100%);
}
.hero-inner{ position:relative; z-index:1; width:100%; }
.hero-content{ max-width:560px; padding: 60px 0; }
.hero-badge{
  display:inline-flex; align-items:center; gap:7px; background: rgba(255,255,255,.75); backdrop-filter: blur(4px);
  border:1px solid rgba(255,255,255,.85); color: var(--rose-dark); font-family: var(--sans); font-size:.7rem; font-weight:600;
  letter-spacing:.09em; text-transform:uppercase; padding:8px 16px; border-radius:30px; margin-bottom:18px;
}
.hero-content h1{ font-size: clamp(2.6rem, 5vw, 4rem); }
.hero-content .script{ font-family: var(--script); color: var(--rose); font-size: clamp(3rem, 6vw, 4.6rem); font-weight:400; line-height:1; display:inline-block; margin-top:6px; }
.hero-content .lede{ margin: 26px 0 34px; font-size:1.05rem; color: var(--text); max-width:440px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-features{
  position:relative; z-index:1; background: rgba(255,255,255,.55); border-top:1px solid var(--border);
  backdrop-filter: blur(6px);
}
.hero-features .container{
  display:grid; grid-template-columns: repeat(4,1fr); gap:24px; padding:28px 24px;
}
.hf-item{ display:flex; align-items:center; gap:14px; }
.hf-item svg{ flex-shrink:0; width:34px; height:34px; color: var(--rose-dark); }
.hf-item strong{ display:block; font-family: var(--serif); font-size:.95rem; color: var(--dark); }
.hf-item span{ font-size:.8rem; color: var(--text-light); }

/* Page header banner (used by inner pages instead of the full home hero) */
.page-banner{
  position:relative; padding: 210px 0 90px; text-align:center; overflow:hidden;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}
.page-banner .container{ position:relative; z-index:1; }
.page-banner .eyebrow{ display:block; }
.page-banner h1{ font-size: clamp(2.4rem, 4.5vw, 3.4rem); margin-bottom:16px; }
.page-banner p{ color: var(--text-light); max-width:560px; margin:0 auto; font-size:1.02rem; }
.page-banner .crumbs{ margin-top:22px; font-size:.8rem; color: var(--text-light); }
.page-banner .crumbs a{ color: var(--rose-dark); font-weight:600; }
.page-banner .crumbs span{ margin: 0 6px; }
.page-banner::before{
  content:""; position:absolute; top:-120px; right:-120px; width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%); opacity:.6;
}

/* Partner logo bar — continuous marquee */
.partners{ background: var(--cream); padding: 56px 0; border-bottom:1px solid var(--border); }
.partners .eyebrow-center{ display:block; text-align:center; margin-bottom:32px; }
.logo-marquee{
  overflow:hidden; width:100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-track{
  display:flex; align-items:center; gap:72px; width:max-content;
  animation: logo-scroll 30s linear infinite;
}
.logo-marquee:hover .logo-track{ animation-play-state: paused; }
.logo-item{
  flex-shrink:0; height:34px; display:flex; align-items:center;
  filter: grayscale(1); opacity:.55; transition: opacity .25s, filter .25s;
}
.logo-item:hover{ filter: grayscale(0); opacity:1; }
.logo-item img{ height:100%; width:auto; object-fit:contain; }
@keyframes logo-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .logo-track{ animation: none; }
}

/* About / Why choose */
.about{ background: var(--cream); }
.about .container{ display:grid; grid-template-columns: 1fr 1fr; gap:70px; align-items:center; }
.about-media{ position:relative; }
.about-media img{ border-radius: var(--radius); box-shadow: var(--shadow); width:100%; height:520px; object-fit:cover; }
.about-media .badge{
  position:absolute; bottom:-28px; left:-28px; background:#fff; padding:20px 26px; border-radius:16px;
  box-shadow: var(--shadow); text-align:center; border:1px solid var(--border);
}
.about-media .badge strong{ font-family: var(--serif); font-size:2rem; color: var(--rose-dark); display:block; }
.about-media .badge span{ font-size:.75rem; letter-spacing:.05em; text-transform:uppercase; color: var(--text-light); }
.about-text h2{ font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom:20px; }
.about-text > p{ margin-bottom:28px; color: var(--text); }
.check-list{ display:grid; gap:16px; }
.check-list li{ display:flex; align-items:flex-start; gap:14px; font-size:.98rem; color: var(--dark); }
.check-list svg{ width:22px; height:22px; flex-shrink:0; color:#fff; background: var(--rose); border-radius:50%; padding:4px; margin-top:2px; }

/* Workshops */
.workshops{ background: var(--blush); }
.workshops .section-head{ display:flex; align-items:flex-end; justify-content:space-between; text-align:left; max-width:none; margin-bottom:48px; }
.workshops .section-head .htext{ max-width:560px; }
.workshops .section-head h2{ font-size: clamp(1.9rem, 3vw, 2.6rem); }
.view-all{ font-weight:600; font-size:.85rem; color: var(--rose-dark); white-space:nowrap; display:inline-flex; align-items:center; gap:6px; }
.view-all svg{ width:16px; height:16px; transition: transform .2s; }
.view-all:hover svg{ transform: translateX(4px); }

.workshop-card{
  background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow);
  height:100%; display:flex; flex-direction:column; border:1px solid var(--border);
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .35s ease, box-shadow .35s ease;
}
.workshop-card:hover{ transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(51,41,31,.45); }
.workshop-card .thumb{ position:relative; height:230px; overflow:hidden; }
.workshop-card .thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.workshop-card:hover .thumb img{ transform: scale(1.08); }
.workshop-card .price-tag{
  position:absolute; top:16px; right:16px; background: var(--rose); color:#fff; font-weight:600;
  font-size:.78rem; padding:7px 14px; border-radius:30px; box-shadow: 0 8px 16px -6px rgba(0,0,0,.3);
}
.workshop-card .body{ padding:26px 26px 28px; display:flex; flex-direction:column; gap:14px; flex:1; }
.workshop-card h3{ font-size:1.35rem; }
.meta-row{ display:flex; flex-direction:column; gap:8px; margin-bottom:6px; }
.meta-row span{ display:flex; align-items:center; gap:10px; font-size:.85rem; color: var(--text-light); }
.meta-row svg{ width:16px; height:16px; color: var(--rose-dark); flex-shrink:0; }
.workshop-card .btn{ margin-top:auto; }

.swiper{ padding-bottom:56px !important; }
/* Swiper doesn't equalize slide heights on its own — without this, cards with
   shorter content (e.g. a shorter testimonial) end up visibly shorter than
   their neighbors in the same row instead of matching the tallest slide. */
.swiper-wrapper{ align-items: stretch; }
.swiper-slide{ height: auto; align-self: stretch; }
.swiper-pagination-bullet{ background: var(--rose); opacity:.35; }
.swiper-pagination-bullet-active{ opacity:1; background: var(--rose-dark); }
.swiper-button-next, .swiper-button-prev{
  color: var(--rose-dark); background:#fff; width:44px !important; height:44px !important; border-radius:50%;
  box-shadow: var(--shadow); top:42% !important;
}
.swiper-button-next:after, .swiper-button-prev:after{ font-size:16px !important; font-weight:700; }

/* Testimonials */
.testimonials{ background: var(--cream); }
.review-card{
  background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding:36px 32px;
  height:100%; box-shadow: var(--shadow); display:flex; flex-direction:column; gap:18px;
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .35s ease, box-shadow .35s ease;
}
.review-card:hover{ transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(51,41,31,.4); }
.stars{ display:flex; gap:4px; color: var(--rose); }
.stars svg{ width:16px; height:16px; }
.review-card p.quote{ font-size:.98rem; color: var(--text); font-style:italic; flex:1; }
.reviewer{ display:flex; align-items:center; gap:14px; }
.reviewer .avatar{
  width:46px; height:46px; border-radius:50%; background: var(--rose-light); color: var(--rose-dark);
  display:flex; align-items:center; justify-content:center; font-family: var(--serif); font-weight:700;
}
.reviewer strong{ display:block; font-size:.92rem; color: var(--dark); }
.reviewer span{ font-size:.78rem; color: var(--text-light); }

/* Gallery */
.gallery{ background: var(--blush); }
.gallery-swiper .g-item{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); height:340px; }
.gallery-swiper .g-item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.gallery-swiper .g-item:hover img{ transform: scale(1.06); }
/* Homepage gallery only (section.gallery) — shorter tiles than the Private Events gallery */
.gallery .gallery-swiper .g-item{ height:240px; }

/* CTA band */
.cta-band{
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  padding:80px 0; text-align:center; color:#fff;
}
.cta-band h2{ color:#fff; font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom:14px; }
.cta-band p{ opacity:.92; max-width:560px; margin:0 auto 34px; }
.cta-band .hero-actions{ justify-content:center; }
.cta-band .btn-outline{ border-color:#fff; color:#fff; }
.cta-band .btn-outline:hover{ background:#fff; color: var(--rose-dark); }
.cta-band .btn-primary{ background:#fff; color: var(--rose-dark); }
.cta-band .btn-primary:hover{ background: var(--dark); color:#fff; }

/* Dev credit bar (sits above the footer, on every page) */
.artful-dev-credit{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:8px 10px;
  background: var(--cream); border-top:1px solid var(--border); padding:14px 24px;
  text-align:center; font-size:.78rem; color: var(--text-light);
}
.artful-dev-credit .dash{ color: var(--border); }
.artful-dev-credit a{ color: var(--rose-dark); font-weight:600; }
.artful-dev-credit a:hover{ text-decoration:underline; }

/* Footer */
.site-footer{ background: var(--dark); color:#e6ded5; padding-top:80px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap:50px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .logo-text{ color:#f3d9dd; }
.footer-brand p{ margin:18px 0 22px; font-size:.88rem; color:#c9beb2; max-width:280px; }
.social-row{ display:flex; gap:12px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.25); display:flex;
  align-items:center; justify-content:center; transition:.25s;
}
.social-row a:hover{ background: var(--rose); border-color: var(--rose); }
.social-row svg{ width:16px; height:16px; }
.footer-col-toggle{
  display:flex; align-items:center; justify-content:space-between; width:100%;
  background:none; border:none; padding:0; margin-bottom:20px; cursor:default;
  font-family: var(--serif); color:#fff; font-size:1rem; letter-spacing:.03em; text-align:left;
}
.footer-col-toggle::after{ content:""; }
.footer-col-content{ overflow:hidden; }
/* "Get In Touch" is never collapsible — always a plain static heading + content */
.footer-col-heading{ color:#fff; font-size:1rem; margin-bottom:20px; letter-spacing:.03em; }
.footer-static-content{ overflow:visible; }
.footer-links li{ margin-bottom:12px; }
.footer-links a{ font-size:.88rem; color:#c9beb2; transition:.2s; }
.footer-links a:hover{ color: var(--rose-light); padding-left:4px; }
.footer-contact li{ display:flex; gap:12px; margin-bottom:16px; font-size:.86rem; color:#c9beb2; }
.footer-contact svg{ width:18px; height:18px; color: var(--rose-light); flex-shrink:0; margin-top:2px; }
.newsletter{ margin-top:18px; }
/* Everything CF7 injects around the fields (hidden-fields fieldset, the
   loading spinner, the response message) lives outside this div — it only
   ever contains the email field + submit button, so the pill shape can't be
   disturbed by CF7's own markup. */
.newsletter-fields{ display:flex; border:1px solid rgba(255,255,255,.25); border-radius:30px; overflow:hidden; }
.newsletter-fields .wpcf7-form-control-wrap{ flex:1; display:block; }
.newsletter-fields input:not(.wpcf7-submit){
  width:100%; background:transparent; border:none; padding:12px 18px; color:#fff; font-family: var(--sans); font-size:.85rem; outline:none;
}
.newsletter-fields input:not(.wpcf7-submit)::placeholder{ color:#a89c8f; }
.newsletter-fields button,
.newsletter-fields input.wpcf7-submit{
  background: var(--rose); border:none; color:#fff; padding:0 20px; font-weight:600; font-size:.75rem;
  text-transform:uppercase; letter-spacing:.05em; cursor:pointer; flex:0 0 auto;
}
.newsletter-fields button:hover,
.newsletter-fields input.wpcf7-submit:hover{ background: var(--rose-dark); }
.newsletter .wpcf7-spinner{ display:none; } /* the pill has no room for it; the button label is feedback enough */
.newsletter .wpcf7-response-output{ margin:10px 0 0; font-size:.78rem; padding:8px 14px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:.8rem; color:#a89c8f; flex-wrap:wrap; gap:12px;
}
.footer-bottom .legal-links{ display:flex; gap:22px; }
.footer-bottom a:hover{ color:#fff; }

/* ==========================================================================
   Page: Workshops list (workshops.html)
   ========================================================================== */
.filter-bar{
  background:#fff; border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding:24px; display:flex; gap:18px; flex-wrap:wrap; align-items:flex-end; margin-bottom:56px;
}
.filter-field{ display:flex; flex-direction:column; gap:8px; flex:1 1 180px; }
.filter-field label{ font-size:.72rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color: var(--text-light); }
.filter-field select, .filter-field input{
  border:1px solid var(--border); border-radius:10px; padding:12px 14px; font-family: var(--sans);
  font-size:.88rem; color: var(--dark); background:#fdf9f6;
}
.filter-field select:focus, .filter-field input:focus{ outline:2px solid var(--rose-light); border-color: var(--rose); }
.filter-bar .btn{ flex:0 0 auto; }
.workshop-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:32px; }
.workshop-card .seats-left{ font-size:.75rem; color: var(--rose-dark); font-weight:600; }
.workshop-card .card-top-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }

/* ==========================================================================
   Page: Workshop details (workshop-details.html)
   ========================================================================== */
.wd-hero{ padding:170px 0 60px; background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%); }
.wd-crumbs{ font-size:.8rem; color: var(--text-light); margin-bottom:18px; }
.wd-crumbs a{ color: var(--rose-dark); font-weight:600; }
.wd-crumbs span{ margin:0 6px; }
.wd-hero h1{ font-size: clamp(2.2rem, 4vw, 3rem); max-width:680px; margin-bottom:16px; }
.wd-quicktags{ display:flex; gap:12px; flex-wrap:wrap; }
.wd-quicktags span{
  display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--border);
  padding:9px 16px; border-radius:30px; font-size:.8rem; color: var(--text); box-shadow: var(--shadow);
}
.wd-quicktags svg{ width:15px; height:15px; color: var(--rose-dark); }

.wd-layout{ display:grid; grid-template-columns: 1.6fr 1fr; gap:60px; align-items:flex-start; }
.wd-main .gallery-main{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); margin-bottom:16px; height:420px; }
.wd-main .gallery-main img{ width:100%; height:100%; object-fit:cover; }
.wd-thumbs{ display:grid; grid-template-columns: repeat(4,1fr); gap:12px; margin-bottom:50px; }
.wd-thumbs .thumb-btn{ border-radius:12px; overflow:hidden; height:80px; cursor:pointer; border:2px solid transparent; opacity:.7; transition:.2s; }
.wd-thumbs .thumb-btn img{ width:100%; height:100%; object-fit:cover; }
.wd-thumbs .thumb-btn:hover, .wd-thumbs .thumb-btn.active{ opacity:1; border-color: var(--rose); }

.wd-block{ margin-bottom:44px; }
.wd-block h2{ font-size:1.5rem; margin-bottom:16px; }
.wd-block p + p{ margin-top:12px; }
.wd-block ul.plain-list{ display:grid; gap:10px; margin-top:6px; }
.wd-block ul.plain-list li{ display:flex; gap:12px; align-items:flex-start; font-size:.95rem; color: var(--text); }
.wd-block ul.plain-list svg{ width:20px; height:20px; flex-shrink:0; color:#fff; background: var(--rose); border-radius:50%; padding:4px; margin-top:1px; }

.spec-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:24px; }
.spec-card{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:22px; transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .3s ease, box-shadow .3s ease; }
.spec-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.spec-card svg{ width:26px; height:26px; color: var(--rose-dark); margin-bottom:10px; }
.spec-card strong{ display:block; font-family:var(--serif); font-size:1.05rem; color: var(--dark); margin-bottom:6px; }
.spec-card span{ font-size:.86rem; color: var(--text-light); }

.wd-schedule-table{ width:100%; border-collapse:collapse; background:#fff; border-radius:14px; overflow:hidden; box-shadow: var(--shadow); }
.wd-schedule-table th, .wd-schedule-table td{ text-align:left; padding:14px 18px; font-size:.88rem; border-bottom:1px solid var(--border); }
.wd-schedule-table th{ background: var(--blush); color: var(--dark); font-weight:600; text-transform:uppercase; font-size:.72rem; letter-spacing:.05em; }
.wd-schedule-table tr:last-child td{ border-bottom:none; }

/* Sticky booking sidebar */
.booking-card{
  position:sticky; top:110px; background:#fff; border:1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding:30px; display:flex; flex-direction:column; gap:22px;
}
.booking-card .price-line{ display:flex; align-items:baseline; justify-content:space-between; }
.booking-card .price-line strong{ font-family:var(--serif); font-size:2rem; color: var(--rose-dark); }
.booking-card .price-line span{ font-size:.8rem; color: var(--text-light); }
.booking-card .seats-note{ font-size:.8rem; color: var(--rose-dark); font-weight:600; }
.ticket-option{
  border:1px solid var(--border); border-radius:12px; padding:16px; display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.ticket-option.selected{ border-color: var(--rose); background: var(--blush); }
.ticket-option .info strong{ display:block; font-size:.92rem; color: var(--dark); }
.ticket-option .info span{ font-size:.78rem; color: var(--text-light); }
.ticket-option .amount{ font-family:var(--serif); font-weight:700; color: var(--rose-dark); }
.qty-stepper{ display:flex; align-items:center; gap:14px; justify-content:space-between; border:1px solid var(--border); border-radius:12px; padding:10px 16px; }
.qty-stepper button{
  width:30px; height:30px; border-radius:50%; border:1px solid var(--border); background:#fff; color: var(--rose-dark);
  font-size:1.1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:.2s;
}
.qty-stepper button:hover{ background: var(--rose); color:#fff; border-color: var(--rose); }
.qty-stepper span{ font-weight:600; color: var(--dark); min-width:20px; text-align:center; }
.booking-card .total-line{ display:flex; justify-content:space-between; align-items:center; padding-top:14px; border-top:1px dashed var(--border); font-family:var(--serif); font-size:1.15rem; color: var(--dark); }
.booking-card .fine-print{ font-size:.75rem; color: var(--text-light); text-align:center; }
.booking-card .cart-message{ display:block; font-size:.8rem; text-align:center; min-height:1.2em; }
.booking-card .cart-message.error{ color:#c0392b; font-weight:600; }
.booking-card .btn[disabled]{ opacity:.6; cursor:wait; }

/* ==========================================================================
   Page: Cart (cart.html)
   ========================================================================== */
.cart-layout{ display:grid; grid-template-columns: 1.7fr 1fr; gap:50px; align-items:flex-start; }
.cart-table{ background:#fff; border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow:hidden; }
.cart-row{ display:grid; grid-template-columns: 90px 1.6fr 1fr auto; gap:20px; align-items:center; padding:22px; border-bottom:1px solid var(--border); }
.cart-row:last-child{ border-bottom:none; }
.cart-row img{ width:90px; height:90px; object-fit:cover; border-radius:12px; }
.cart-row h3{ font-size:1.05rem; margin-bottom:6px; }
.cart-row .meta{ font-size:.8rem; color: var(--text-light); display:flex; flex-direction:column; gap:3px; }
.cart-row .qty-stepper{ padding:6px 12px; }
.cart-row .remove-btn{ color: var(--text-light); font-size:.78rem; text-decoration:underline; cursor:pointer; background:none; border:none; margin-top:8px; }
.cart-row .remove-btn:hover{ color: var(--rose-dark); }
.cart-row .price-col{ text-align:right; font-family:var(--serif); font-weight:700; color: var(--rose-dark); }
.cart-empty{ text-align:center; padding:60px 20px; color: var(--text-light); }
.cart-summary{
  position:sticky; top:110px; background:#fff; border:1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding:30px; display:flex; flex-direction:column; gap:16px;
}
.cart-summary h3{ font-size:1.2rem; margin-bottom:6px; }
.summary-line{ display:flex; justify-content:space-between; font-size:.92rem; color: var(--text); }
.summary-line.total{ font-family:var(--serif); font-size:1.2rem; color: var(--dark); padding-top:14px; border-top:1px dashed var(--border); }
.promo-row{ display:flex; gap:10px; }
.promo-row input{ flex:1; border:1px solid var(--border); border-radius:10px; padding:11px 14px; font-family:var(--sans); font-size:.85rem; }

/* ==========================================================================
   Page: Checkout (checkout.html)
   ========================================================================== */
.checkout-layout{ display:grid; grid-template-columns: 1.5fr 1fr; gap:50px; align-items:flex-start; }
.checkout-card{ background:#fff; border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding:32px; margin-bottom:28px; }
.checkout-card h2{ font-size:1.25rem; margin-bottom:22px; display:flex; align-items:center; gap:10px; }
.checkout-card h2 .step-num{
  width:28px; height:28px; border-radius:50%; background: var(--rose); color:#fff; font-family:var(--sans);
  font-size:.85rem; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size:.78rem; font-weight:600; color: var(--dark); }
.form-field label .opt{ color: var(--text-light); font-weight:400; }
.form-field input, .form-field select, .form-field textarea{
  border:1px solid var(--border); border-radius:10px; padding:13px 14px; font-family: var(--sans);
  font-size:.9rem; color: var(--dark); background:#fdf9f6; width:100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:2px solid var(--rose-light); border-color: var(--rose); }
.form-field textarea{ resize:vertical; min-height:90px; }
.check-row{ display:flex; align-items:flex-start; gap:10px; font-size:.85rem; color: var(--text); }
.check-row input{ margin-top:3px; accent-color: var(--rose); }
.check-row a{ color: var(--rose-dark); font-weight:600; text-decoration:underline; }

/* Contact Form 7: wraps each field in its own <span>, so let it behave like
   a plain block so the surrounding .form-field / .newsletter layouts don't
   have to change. */
.wpcf7-form-control-wrap{ display:block; width:100%; }
.wpcf7-not-valid-tip{ display:block; margin-top:4px; font-size:.75rem; color:#c0392b; }
.wpcf7-form-control.wpcf7-not-valid{ border-color:#c0392b !important; }
.wpcf7-response-output{
  margin:16px 0 0; padding:12px 16px; border-radius:10px; border:1px solid var(--border);
  font-size:.85rem; color: var(--text);
}
.wpcf7 form.sent .wpcf7-response-output{ background:#eafaf1; color:#1e7e42; border-color:#b7ebc6; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output{ background:#fdecea; color:#c0392b; border-color:#f5c2c0; }
.wpcf7-spinner{ margin:0 0 0 10px; }
.contact-form-card .wpcf7-submit{ margin-top:20px; }
.inquiry-card .wpcf7-submit{ margin-top:24px; }
.pay-methods{ display:flex; gap:14px; margin-top:6px; flex-wrap:wrap; }
.pay-methods label{
  border:1.5px solid var(--border); border-radius:12px; padding:14px 18px; display:flex; align-items:center; gap:10px;
  font-size:.85rem; cursor:pointer; flex:1 1 160px;
}
.pay-methods input{ accent-color: var(--rose); }
.pay-methods label:has(input:checked){ border-color: var(--rose); background: var(--blush); }

.order-summary{
  position:sticky; top:110px; background:#fff; border:1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding:30px; display:flex; flex-direction:column; gap:18px;
}
.order-item{ display:flex; gap:14px; align-items:center; }
.order-item img{ width:56px; height:56px; border-radius:10px; object-fit:cover; }
.order-item .info{ flex:1; }
.order-item .info strong{ display:block; font-size:.88rem; color: var(--dark); }
.order-item .info span{ font-size:.76rem; color: var(--text-light); }
.order-item .amt{ font-family:var(--serif); font-weight:700; color: var(--rose-dark); font-size:.9rem; }

/* ==========================================================================
   Page: About (about.html)
   ========================================================================== */
.mission-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:32px; }
.mission-card{ background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding:36px; box-shadow: var(--shadow); transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .35s ease, box-shadow .35s ease; }
.mission-card:hover{ transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(51,41,31,.4); }
.mission-card svg{ width:36px; height:36px; color: var(--rose-dark); margin-bottom:16px; }
.mission-card h3{ font-size:1.3rem; margin-bottom:12px; }
.team-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:30px; }
.team-card{ text-align:center; }
.team-card .photo{ border-radius: var(--radius); overflow:hidden; height:280px; margin-bottom:18px; box-shadow: var(--shadow); }
.team-card .photo img{ width:100%; height:100%; object-fit:cover; }
.team-card strong{ display:block; font-family:var(--serif); font-size:1.15rem; color: var(--dark); }
.team-card span{ font-size:.82rem; color: var(--rose-dark); }
.stats-strip{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; text-align:center; }
.stats-strip .stat strong{ display:block; font-family:var(--serif); font-size:2.4rem; color: var(--rose-dark); }
.stats-strip .stat span{ font-size:.82rem; color: var(--text-light); text-transform:uppercase; letter-spacing:.04em; }

/* ==========================================================================
   Page: Contact (contact.html)
   ========================================================================== */
.contact-layout{ display:grid; grid-template-columns: 1fr 1.2fr; gap:56px; align-items:flex-start; }
.contact-info-card{ background:#fff; border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding:32px; display:flex; flex-direction:column; gap:22px; }
.contact-info-card .item{ display:flex; gap:16px; align-items:flex-start; }
.contact-info-card .item .ico{
  width:44px; height:44px; border-radius:50%; background: var(--blush); color: var(--rose-dark); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.contact-info-card .item .ico svg{ width:20px; height:20px; }
.contact-info-card .item strong{ display:block; font-size:.9rem; color: var(--dark); margin-bottom:2px; }
.contact-info-card .item span, .contact-info-card .item a{ font-size:.86rem; color: var(--text-light); }
.map-frame{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); height:220px; border:1px solid var(--border); }
.map-frame iframe{ width:100%; height:100%; border:0; }
.contact-form-card{ background:#fff; border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding:36px; }

/* ==========================================================================
   Page: FAQ (faq.html)
   ========================================================================== */
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:#fff; border:1px solid var(--border); border-radius:14px; overflow:hidden; transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1), border-color .25s, box-shadow .25s; }
.faq-item:hover{ border-color: var(--rose); box-shadow: var(--shadow); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 24px;
  background:none; border:none; text-align:left; cursor:pointer; font-family:var(--serif); font-size:1.02rem; color: var(--dark);
}
.faq-q svg{ width:20px; height:20px; color: var(--rose-dark); flex-shrink:0; transition: transform .25s; }
.faq-item.open .faq-q svg{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-a p{ padding:0 24px 22px; font-size:.92rem; color: var(--text); max-width:680px; }
.faq-cats{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:46px; }
.faq-cats button{
  border:1px solid var(--border); background:#fff; padding:10px 20px; border-radius:30px; font-size:.82rem;
  font-weight:600; color: var(--text); cursor:pointer; transition:.2s;
}
.faq-cats button.active, .faq-cats button:hover{ background: var(--rose); border-color: var(--rose); color:#fff; }

/* ==========================================================================
   Page: Private Events (private-events.html)
   ========================================================================== */
.event-type-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; }
.event-type-card{
  background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding:30px 24px; text-align:center;
  box-shadow: var(--shadow); transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .25s ease, border-color .25s ease;
}
.event-type-card:hover{ transform: translateY(-6px); border-color: var(--rose); }
.event-type-card .ico{
  width:56px; height:56px; border-radius:50%; background: var(--blush); color: var(--rose-dark); margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
}
.event-type-card .ico svg{ width:26px; height:26px; }
.event-type-card strong{ display:block; font-family:var(--serif); font-size:1.05rem; color: var(--dark); margin-bottom:6px; }
.event-type-card span{ font-size:.82rem; color: var(--text-light); }

.included-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:28px; }
.included-card{ text-align:center; padding:10px; }
.included-card .ico{
  width:64px; height:64px; border-radius:50%; background: var(--rose); color:#fff; margin:0 auto 18px;
  display:flex; align-items:center; justify-content:center;
}
.included-card .ico svg{ width:28px; height:28px; }
.included-card h3{ font-size:1.1rem; margin-bottom:10px; }
.included-card p{ font-size:.88rem; color: var(--text-light); }

.steps-row{ display:grid; grid-template-columns: repeat(3,1fr); gap:30px; counter-reset: step; }
.step-card{ position:relative; background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding:34px 26px; box-shadow: var(--shadow); transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .35s ease, box-shadow .35s ease; }
.step-card:hover{ transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(51,41,31,.4); }
.step-card .step-no{
  width:40px; height:40px; border-radius:50%; background: var(--rose); color:#fff; font-family:var(--serif); font-weight:700;
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.step-card h3{ font-size:1.05rem; margin-bottom:8px; }
.step-card p{ font-size:.86rem; color: var(--text-light); }

.travel-areas{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.travel-areas span{
  background:#fff; border:1px solid var(--border); padding:10px 20px; border-radius:30px; font-size:.85rem; color: var(--dark);
}

.inquiry-card{ background:#fff; border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding:40px; max-width:820px; margin:0 auto; }

/* ==========================================================================
   Page: Gallery (gallery.html)
   ========================================================================== */
.gallery-cats{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:46px; }
.gallery-cats button{
  border:1px solid var(--border); background:#fff; padding:10px 20px; border-radius:30px; font-size:.82rem;
  font-weight:600; color: var(--text); cursor:pointer; transition:.2s;
}
.gallery-cats button.active, .gallery-cats button:hover{ background: var(--rose); border-color: var(--rose); color:#fff; }
.masonry-grid{ column-count:3; column-gap:24px; }
.masonry-grid .g-card{
  break-inside: avoid; margin-bottom:24px; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow);
  cursor: zoom-in; position:relative;
}
.masonry-grid .g-card img{ width:100%; display:block; transition: transform .5s ease; }
.masonry-grid .g-card:hover img{ transform: scale(1.06); }
.masonry-grid .g-card .g-label{
  position:absolute; left:0; right:0; bottom:0; padding:16px; color:#fff; font-size:.82rem; font-weight:600;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent); opacity:0; transition:.25s;
}
.masonry-grid .g-card:hover .g-label{ opacity:1; }
.lightbox-overlay{
  position:fixed; inset:0; background: rgba(30,22,18,.88); z-index:2000; display:none;
  align-items:center; justify-content:center; padding:40px;
}
.lightbox-overlay.open{ display:flex; }
.lightbox-overlay img{ max-width:90vw; max-height:85vh; border-radius:12px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.lightbox-close{
  position:absolute; top:24px; right:28px; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.3); color:#fff; font-size:1.3rem; cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.lightbox-close:hover{ background: var(--rose); border-color: var(--rose); }

/* ==========================================================================
   Page: Legal pages (terms / privacy / refund-policy / waiver)
   ========================================================================== */
.legal-doc{ max-width:800px; margin:0 auto; }
.legal-doc h2{ font-size:1.3rem; margin:36px 0 14px; }
.legal-doc h2:first-child{ margin-top:0; }
.legal-doc p{ margin-bottom:14px; color: var(--text); font-size:.95rem; }
.legal-doc ul{ margin: 0 0 14px 4px; display:flex; flex-direction:column; gap:8px; }
.legal-doc ul li{ font-size:.95rem; color: var(--text); padding-left:20px; position:relative; }
.legal-doc ul li::before{ content:"•"; color: var(--rose); position:absolute; left:0; }
.legal-doc .updated{ font-size:.82rem; color: var(--text-light); margin-bottom:30px; }
.legal-nav{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-bottom:50px; }
.legal-nav a{
  border:1px solid var(--border); background:#fff; padding:10px 20px; border-radius:30px; font-size:.82rem;
  font-weight:600; color: var(--text);
}
.legal-nav a.active{ background: var(--rose); border-color: var(--rose); color:#fff; }
.mission-card a svg { margin: 0px; }
/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .about .container{ grid-template-columns:1fr; gap:50px; }
  .about-media img{ height:400px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .wd-layout, .cart-layout, .checkout-layout, .contact-layout{ grid-template-columns:1fr; }
  .booking-card, .cart-summary, .order-summary{ position:static; }
  .workshop-grid{ grid-template-columns: repeat(2,1fr); }
  .mission-grid, .event-type-grid, .included-grid, .steps-row{ grid-template-columns: repeat(2,1fr); }
  .team-grid{ grid-template-columns: repeat(2,1fr); }
  .stats-strip{ grid-template-columns: repeat(2,1fr); gap:36px; }
  .spec-grid{ grid-template-columns: 1fr; }
  .masonry-grid{ column-count:2; }
}
@media (max-width: 860px){
  /* Full-screen takeover that blooms open from the hamburger button itself,
     rather than sliding in as a flat rectangle. */
  .nav-links{
    position:fixed; inset:70px 0 0 0; background: var(--cream); flex-direction:column; justify-content:center;
    align-items:flex-start; padding:24px 40px; gap:4px; overflow-y:auto; counter-reset: navlink; z-index:998;
    clip-path: circle(0% at calc(100% - 30px) -18px);
    transition: clip-path .7s cubic-bezier(.22,1,.36,1);
  }
  .nav-links.open{ clip-path: circle(150% at calc(100% - 30px) -18px); }
  /* Soft drifting accent bloom behind the links, purely decorative */
  .nav-links::before{
    content:""; position:absolute; top:-10%; right:-15%; width:60vw; height:60vw; max-width:420px; max-height:420px;
    border-radius:50%; background: radial-gradient(circle, color-mix(in srgb, var(--rose) 20%, transparent) 0%, transparent 70%);
    opacity:0; transform: scale(.6); transition: opacity .8s ease .15s, transform 1s cubic-bezier(.22,1,.36,1) .15s;
    pointer-events:none;
  }
  .nav-links.open::before{ opacity:1; transform: scale(1); }
  .nav-links > li, .nav-links > a{ position:relative; }
  /* Each link is numbered like an editorial index, and cascades in with a
     rise + unblur instead of just fading. Scoped to the actual nav items
     (li or bare a) so it doesn't sweep up the .nav-extra block below. */
  .nav-links > li::before, .nav-links > a::before{
    counter-increment: navlink; content: counter(navlink, decimal-leading-zero);
    display:inline-block; margin-right:12px; font-family: var(--serif); font-size:.7rem;
    color: var(--rose); letter-spacing:.05em; vertical-align:middle;
  }
  .nav-links > li > a, .nav-links > a{ font-size:1.35rem; }
  .nav-links > li, .nav-links > a{
    opacity:0; transform: translateY(30px) scale(.94); filter: blur(6px);
    transition: opacity .5s ease, transform .55s cubic-bezier(.22,1,.36,1), filter .5s ease;
  }
  .nav-links.open > li, .nav-links.open > a{ opacity:1; transform:none; filter:blur(0); }
  .nav-links.open > li:nth-child(1), .nav-links.open > a:nth-child(1){ transition-delay:.18s; }
  .nav-links.open > li:nth-child(2), .nav-links.open > a:nth-child(2){ transition-delay:.24s; }
  .nav-links.open > li:nth-child(3), .nav-links.open > a:nth-child(3){ transition-delay:.30s; }
  .nav-links.open > li:nth-child(4), .nav-links.open > a:nth-child(4){ transition-delay:.36s; }
  .nav-links.open > li:nth-child(5), .nav-links.open > a:nth-child(5){ transition-delay:.42s; }
  .nav-links.open > li:nth-child(6), .nav-links.open > a:nth-child(6){ transition-delay:.48s; }
  .nav-links.open > li:nth-child(7), .nav-links.open > a:nth-child(7){ transition-delay:.54s; }
  .nav-links.open > li:nth-child(8), .nav-links.open > a:nth-child(8){ transition-delay:.60s; }
  .nav-toggle{ display:block; }

  /* Business info + socials, pinned under the links inside the same panel */
  .nav-extra{
    display:flex; flex-direction:column; gap:20px; width:100%; margin-top:auto;
    padding-top:24px; border-top:1px solid var(--border);
    opacity:0; transform: translateY(20px); filter: blur(4px);
    transition: opacity .5s ease .62s, transform .5s cubic-bezier(.22,1,.36,1) .62s, filter .5s ease .62s;
  }
  .nav-links.open .nav-extra{ opacity:1; transform:none; filter:blur(0); }
  .nav-extra-contact{ display:flex; flex-direction:column; gap:6px; font-size:.85rem; color: var(--text); }
  .nav-extra-contact a{ color: var(--rose-dark); font-weight:600; }
  .nav-extra-location{ color: var(--text-light); }
  .nav-extra-social{ display:flex; gap:12px; }
  .nav-extra-social a{
    width:38px; height:38px; border-radius:50%; border:1px solid var(--border);
    display:flex; align-items:center; justify-content:center; color: var(--rose-dark);
    transition: background .25s ease, color .25s ease, transform .25s ease;
  }
  .nav-extra-social a svg{ width:16px; height:16px; }
  .nav-extra-social a:hover{ background: var(--rose); border-color: var(--rose); color:#fff; transform: translateY(-2px); }

  /* The page behind eases back and softens, so the menu reads as sitting in
     front of it rather than just on top of it. */
  #primary, .site-footer{ transition: transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease; }
  body.nav-open #primary, body.nav-open .site-footer{ transform: scale(.96); filter: blur(3px); }

  /* Hero: full-bleed poster — the photo fills the whole hero and the copy is
     pinned to the bottom over a soft gradient wash, instead of being chopped
     into an image strip + plain text block underneath. */
  .hero{ min-height: 92vh; align-items: flex-end; background: var(--cream); }
  .hero-bg img{ object-position: 62% 38%; }
  .hero-bg::after{
    background: linear-gradient(180deg, rgba(51,41,31,.06) 0%, rgba(253,249,246,.05) 36%, rgba(253,249,246,.6) 60%, rgba(253,249,246,.94) 80%, var(--cream) 97%);
  }
  .hero-content{ padding: 0 0 40px; max-width:100%; }
  .hero-content .lede{ margin: 18px 0 26px; }
  .hero-content h1, .hero-content .script{ text-shadow: 0 4px 22px rgba(253,249,246,.9); }
  .hero-badge{ box-shadow: 0 10px 24px -12px rgba(51,41,31,.4); }

  /* Feature strip: swipeable floating cards instead of a plain bordered list */
  .hero-features{ background:transparent; border-top:none; backdrop-filter:none; position:relative; z-index:2; margin-top:-30px; }
  .hero-features .container{
    display:flex; grid-template-columns:unset; overflow-x:auto; scroll-snap-type:x proximity; gap:14px;
    padding:0 24px 8px; -webkit-overflow-scrolling:touch; scrollbar-width:none;
  }
  .hero-features .container::-webkit-scrollbar{ display:none; }
  .hf-item{
    scroll-snap-align:start; flex:0 0 auto; width:176px; flex-direction:column; align-items:flex-start; gap:10px;
    background:#fff; border:1px solid var(--border); border-radius:18px; padding:18px 16px; box-shadow: var(--shadow);
  }
  .hf-item svg{ width:20px; height:20px; padding:9px; box-sizing:content-box; background: var(--blush); border-radius:50%; }

  .workshops .section-head{ flex-direction:column; align-items:flex-start; gap:18px; }
  .workshop-grid{ grid-template-columns: 1fr; }
  .gallery .gallery-swiper .g-item{ height:200px; }
  .event-type-grid, .included-grid, .steps-row{ grid-template-columns: 1fr; }
  .cart-row{ grid-template-columns: 70px 1fr; }
  .cart-row .price-col{ grid-column: 2; text-align:left; }
  .form-grid{ grid-template-columns:1fr; }
}
@media (max-width: 700px){
  /* Footer becomes a single accordion column — tap a heading to expand it */
  .footer-grid{ grid-template-columns:1fr; gap:0; padding-bottom:0; border-bottom:none; }
  .footer-brand{ padding-bottom:28px; margin-bottom:6px; border-bottom:1px solid rgba(255,255,255,.12); }
  .footer-col{ border-bottom:1px solid rgba(255,255,255,.12); }
  .footer-col-toggle{ cursor:pointer; padding:18px 0; margin-bottom:0; position:relative; padding-right:30px; }
  .footer-col-toggle::after{
    content:"+"; position:absolute; right:2px; top:50%; width:16px; height:16px; line-height:16px; text-align:center;
    transform:translateY(-50%); font-size:1.15rem; font-weight:300; color: var(--rose-light); transition: transform .25s;
  }
  .footer-col.open .footer-col-toggle::after{ transform:translateY(-50%) rotate(45deg); }
  .footer-col-content{ max-height:0; transition: max-height .3s ease; }
  .footer-col-content ul{ padding-bottom:8px; }
  .footer-col-content .newsletter{ margin-bottom:22px; }
  .footer-col-heading{ padding:18px 0 0; margin-bottom:16px; }
  .footer-static-content{ padding-bottom:22px; }
}
@media (min-width: 701px){
  .footer-col-content{ max-height:none !important; }
}
@media (max-width: 600px){
  section{ padding:48px 0; }
  .section-head{ margin-bottom:36px; }
  .page-banner{ padding:150px 0 46px; }
  .page-banner p{ font-size:.95rem; }

  .hero-content .lede{ margin: 14px 0 22px; font-size:.96rem; }
  .hero-actions{ gap:12px; }
  .hero-actions .btn{ width:100%; }

  .hero-features .container{ padding:0 20px 6px; gap:12px; }
  .hf-item{ width:158px; padding:16px 14px; }

  .about-media .badge{ left:12px; bottom:-20px; padding:14px 18px; }
  .about-media img{ height:300px; }
  .gallery .gallery-swiper .g-item{ height:170px; }
  .footer-bottom{ flex-direction:column; text-align:center; gap:14px; padding:20px 0; }
  .mission-grid, .team-grid, .stats-strip{ grid-template-columns: 1fr; }
  .filter-bar{ flex-direction:column; align-items:stretch; }
  .masonry-grid{ column-count:1; }

  /* Tighter card padding across the board on small screens */
  .review-card{ padding:26px 22px; }
  .booking-card, .cart-summary, .order-summary{ padding:22px; }
  .checkout-card{ padding:22px; }
  .mission-card{ padding:26px; }
  .contact-info-card, .contact-form-card{ padding:24px; }
  .event-type-card{ padding:22px 18px; }
  .step-card{ padding:26px 20px; }
  .inquiry-card{ padding:24px; }
  .workshop-card .body{ padding:20px 20px 22px; }
}
