/* =========================================================
   FlowerSpa — Design system
   Japanese-inspired luxury head spa, Pohořelice
   Palette: ivory / warm beige / champagne gold / blush / ink
   Display: Cormorant · Body: Jost · Signature motif: ink-line
   botanical branch (single flower / 花) referencing Japanese
   ikebana + the "Flower" in FlowerSpa.
   ========================================================= */

:root{
  /* ---- color tokens ---- */
  --ivory:        #FAF5EC;
  --ivory-deep:   #F4EDE0;
  --beige:        #EEE2CC;
  --beige-deep:   #E4D5B7;
  --gold:         #B9935A;
  --gold-dark:    #93733F;
  --gold-soft:    #D8BD8C;
  --blush:        #E7C0BB;
  --blush-soft:   #F1DAD6;
  --rose-deep:    #8B5A52;
  --ink:          #2F2A22;
  --ink-soft:     #6B6253;
  --ink-faint:    #948B79;
  --white:        #FFFFFF;

  /* ---- elevation / shadow (warm-tinted, never grey) ---- */
  --shadow-sm:    0 2px 12px rgba(139,90,82,0.10);
  --shadow-md:    0 12px 32px rgba(139,90,82,0.14);
  --shadow-lg:    0 24px 60px rgba(47,42,34,0.16);

  /* ---- radius ---- */
  --r-sm: 10px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* ---- type ---- */
  --f-display: "Cormorant", "Times New Roman", serif;
  --f-body: "Jost", "Segoe UI", sans-serif;

  /* ---- layout ---- */
  --container: 1180px;
  --container-narrow: 760px;
  --section-pad: clamp(64px, 9vw, 140px);

  /* ---- motion ---- */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------------------------------------------------------
   Reset
   --------------------------------------------------------- */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family: var(--f-display); font-weight:500; color: var(--ink); }
p{ margin:0; }

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

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

.visually-hidden{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap;
}

/* ---------------------------------------------------------
   Layout helpers
   --------------------------------------------------------- */
.container{
  max-width: var(--container);
  margin-inline:auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.container--narrow{ max-width: var(--container-narrow); }

.section{ padding-block: var(--section-pad); position:relative; }
.section--alt{ background: var(--ivory-deep); }
.section--beige{ background: var(--beige); }
.section--ink{ background: var(--ink); color: var(--ivory); }
.section--ink h2, .section--ink h3{ color: var(--ivory); }

.grid{ display:grid; gap: clamp(24px, 4vw, 48px); }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 980px){
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .grid-2,.grid-3,.grid-4{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   Eyebrow / labels / headings
   --------------------------------------------------------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 22px; height:1px;
  background: var(--gold);
}

h1{ font-size: clamp(40px, 6vw, 76px); line-height:1.05; letter-spacing: -.01em; }
h2{ font-size: clamp(30px, 4vw, 46px); line-height:1.12; }
h3{ font-size: clamp(21px, 2.4vw, 26px); line-height:1.3; }

.lede{
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 620px;
  font-weight: 300;
}

.section-head{ max-width: 680px; margin-bottom: 56px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--gold-dark); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn-ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover{ background: var(--ink); color: var(--ivory); transform: translateY(-2px); }

.btn-ghost-light{
  background: transparent;
  border-color: rgba(250,245,236,.55);
  color: var(--ivory);
}
.btn-ghost-light:hover{ background: var(--ivory); color: var(--ink); }

.btn-small{ padding: 11px 22px; font-size: 13px; }
.btn-block{ width:100%; justify-content:center; }

/* ---------------------------------------------------------
   Header / nav
   --------------------------------------------------------- */
.site-header{
  position: sticky; top:0; z-index: 60;
  background: rgba(250,245,236,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47,42,34,.07);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding-block: 18px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.brand .mark{ width:26px; height:26px; color: var(--gold); flex-shrink:0; }

.nav-links{
  display:flex; align-items:center; gap: clamp(18px, 2.4vw, 36px);
  font-size: 14px; font-weight: 400; letter-spacing:.02em;
}
.nav-links a{ position:relative; padding-block: 4px; }
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px;
  background: var(--gold); transform: scaleX(0); transform-origin:left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ transform: scaleX(1); }
.nav-links a[aria-current="page"]{ color: var(--rose-deep); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-cta .btn{ gap:0; }
.nav-toggle{
  display:none; background:none; border:none; padding:8px;
  flex-direction:column; gap:5px;
}
.nav-toggle span{ width:24px; height:1.5px; background:var(--ink); display:block; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px){
  .nav-links{
    position:fixed; top:0; left:0; right:0; bottom:0;
    width:100vw; height:100vh; height:100dvh;
    background: var(--ivory);
    flex-direction:column; justify-content:center; gap:28px;
    font-size:22px; transform: translateY(-12px); opacity:0; pointer-events:none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    z-index: 70; margin:0;
  }
  .nav-links.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav-toggle{ display:flex; position:relative; z-index: 80; }
  .nav-cta .btn span{ display:none; }
}

/* ---------------------------------------------------------
   Botanical motif (signature element)
   --------------------------------------------------------- */
.motif{ color: var(--gold); }
.motif-watermark{
  position:absolute; pointer-events:none; opacity:.16; z-index:0;
}
.divider{
  display:flex; align-items:center; justify-content:center;
  gap:18px; margin-block: 56px; color: var(--gold);
}
.divider::before,.divider::after{
  content:""; height:1px; flex:1; max-width:120px;
  background: linear-gradient(90deg, transparent, currentColor);
}
.divider::after{ background: linear-gradient(90deg, currentColor, transparent); }
.divider svg{ width:34px; height:34px; flex-shrink:0; }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex; align-items:center;
  overflow:hidden;
  background: var(--ivory);
}
.hero-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items:center;
  width:100%;
}
.hero-copy{ position:relative; z-index:2; }
.hero h1{ margin-bottom:22px; }
.hero h1 em{ font-style:italic; color: var(--rose-deep); }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top:36px; }
.hero-figure{
  position:relative; border-radius: var(--r-lg);
  aspect-ratio: 4/5; overflow:hidden; box-shadow: var(--shadow-lg);
}
.hero-kanji{
  position:absolute; top:-6%; right:-4%;
  font-size: min(34vw, 460px);
  font-family: var(--f-display);
  color: var(--gold); opacity:.10; line-height:1; z-index:0;
  user-select:none;
}
@media (max-width: 980px){
  .hero{ min-height:auto; padding-block: 64px 48px; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-figure{ order:-1; aspect-ratio: 16/11; }
  .hero-kanji{ display:none; }
}

/* generic image placeholder ("photo will go here") */
.ph{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(155deg, var(--beige) 0%, var(--blush-soft) 100%);
  color: var(--rose-deep);
  border-radius: var(--r-md);
  overflow:hidden;
  text-align:center;
}
.ph::before{
  content:""; position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(45deg, rgba(139,90,82,.05) 0 2px, transparent 2px 14px);
}
.ph-label{
  position:relative; z-index:1; font-size:13px; letter-spacing:.08em;
  text-transform:uppercase; padding: 14px 22px; max-width:78%;
  font-weight:500;
}
.ph-icon{ width:30px; height:30px; margin: 0 auto 10px; opacity:.7; }

/* ---------------------------------------------------------
   Cards
   --------------------------------------------------------- */
.card{
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.voucher-card{ cursor:pointer; }
.voucher-card .voucher-go{ width:16px; height:16px; margin-left:12px; color: var(--gold-dark); flex-shrink:0; transition: transform .3s var(--ease); }
.voucher-card:hover .voucher-go{ transform: translateX(4px); }

.service-card .ph{ aspect-ratio: 5/4; border-radius:0; }
.service-card-wide{ display:grid; grid-template-columns:.8fr 1.2fr; align-items:stretch; }
.service-card-wide .ph{ border-radius:0; min-height:240px; aspect-ratio:auto; }
.service-card-wide .service-card-body{ align-self:center; }
@media (max-width: 640px){
  .service-card-wide{ grid-template-columns:1fr; align-items:start; }
  .service-card-wide .ph{ aspect-ratio:auto; min-height:0; height:210px; }
}
.service-card-body{ padding: 28px 28px 30px; }
.service-meta{
  display:flex; align-items:center; gap:10px; margin-bottom:14px;
  font-size:13px; color: var(--ink-soft); letter-spacing:.03em;
}
.chip{
  display:inline-flex; align-items:center; gap:6px;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--ivory-deep); font-size:12.5px; font-weight:500;
  color: var(--rose-deep);
}
.chip.gold{ background: rgba(185,147,90,.16); color: var(--gold-dark); }
.service-card h3{ margin-bottom:10px; }
.service-card p{ color: var(--ink-soft); font-size:15px; margin-bottom:20px; }
.card-link{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:500; color: var(--rose-deep);
  border-bottom: 1px solid currentColor; padding-bottom:2px;
}
.card-link svg{ width:14px; height:14px; transition: transform .3s var(--ease); }
.card-link:hover svg{ transform: translateX(4px); }

/* benefit list */
.benefits{ display:grid; gap:28px; }
.benefit{ display:flex; gap:18px; align-items:flex-start; }
.benefit-icon{
  flex-shrink:0; width:46px; height:46px; border-radius:50%;
  background: var(--beige); display:flex; align-items:center; justify-content:center;
  color: var(--gold-dark);
}
.benefit-icon svg{ width:22px; height:22px; }
.benefit h4{ font-family:var(--f-body); font-weight:500; font-size:16px; margin-bottom:4px; }
.benefit p{ color: var(--ink-soft); font-size:14.5px; }

/* numbered process steps (genuine sequence) */
.steps{ display:grid; gap:0; }
.step{
  display:grid; grid-template-columns: 64px 1fr; gap:24px;
  padding-block:28px; border-top: 1px solid rgba(47,42,34,.1);
}
.step:first-child{ border-top:none; }
.step-num{
  font-family: var(--f-display); font-size:34px; color: var(--gold);
  font-weight:500; line-height:1;
}
.step h4{ font-family:var(--f-body); font-weight:500; font-size:17px; margin-bottom:6px; }
.step p{ color: var(--ink-soft); font-size:15px; max-width:520px; }

@media (max-width:640px){
  .step{ grid-template-columns: 44px 1fr; }
  .step-num{ font-size:26px; }
}

/* ---------------------------------------------------------
   Accordion (FAQ)
   --------------------------------------------------------- */
.accordion-group{ margin-bottom:44px; }
.accordion-group-title{
  font-size:13px; letter-spacing:.14em; text-transform:uppercase;
  color: var(--rose-deep); font-weight:500; margin-bottom:18px;
}
.accordion-item{ border-bottom: 1px solid rgba(47,42,34,.12); }
.accordion-q{
  width:100%; background:none; border:none; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding: 22px 4px; font-family: var(--f-body); font-size:16.5px; font-weight:400; color: var(--ink);
}
.accordion-q .plus{
  flex-shrink:0; width:22px; height:22px; position:relative;
}
.accordion-q .plus::before,.accordion-q .plus::after{
  content:""; position:absolute; background: var(--gold-dark);
  transition: transform .35s var(--ease);
}
.accordion-q .plus::before{ top:50%; left:0; width:100%; height:1.5px; transform:translateY(-50%); }
.accordion-q .plus::after{ left:50%; top:0; height:100%; width:1.5px; transform:translateX(-50%); }
.accordion-item.is-open .accordion-q .plus::after{ transform: translateX(-50%) rotate(90deg); opacity:0; }
.accordion-a{
  max-height:0; overflow:hidden; transition: max-height .4s var(--ease);
}
.accordion-a-inner{ padding: 0 4px 24px; color: var(--ink-soft); font-size:15px; max-width:680px; }

/* ---------------------------------------------------------
   Testimonials (placeholder-ready state)
   --------------------------------------------------------- */
.testimonial{
  border: 1px solid var(--beige-deep);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align:center;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.testimonial .stars{
  color: var(--gold);
  font-size:15px;
  letter-spacing:3px;
  margin-bottom:16px;
}
.testimonial blockquote{
  font-family: var(--f-display);
  font-style: italic;
  font-size:19px;
  line-height:1.5;
  color: var(--ink);
  margin:0 0 18px;
}
.testimonial cite{
  font-family: var(--f-body);
  font-style: normal;
  font-weight:500;
  font-size:13.5px;
  letter-spacing:.02em;
  color: var(--gold-dark);
}

/* ---------------------------------------------------------
   Forms / inline widgets
   --------------------------------------------------------- */
.widget-frame{
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(16px, 3vw, 28px);
}
.widget-frame iframe{ border-radius: var(--r-md); width:100%; border:0; display:block; }
.widget-fallback{
  margin-top:14px; text-align:center; font-size:13.5px; color: var(--ink-soft);
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer{ background: var(--ink); color: var(--ivory-deep); padding-block: 72px 32px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-brand .brand{ color: var(--ivory); margin-bottom:14px; }
.footer-brand p{ color: rgba(250,245,236,.62); font-size:14.5px; max-width:280px; }
.footer-col h5{
  font-family: var(--f-body); font-size:13px; letter-spacing:.12em; text-transform:uppercase;
  color: var(--gold-soft); font-weight:500; margin-bottom:18px;
}
.footer-col ul{ display:grid; gap:11px; font-size:14.5px; color: rgba(250,245,236,.78); }
.footer-col a:hover{ color: var(--gold-soft); }
.footer-bottom{
  border-top: 1px solid rgba(250,245,236,.14); padding-top:24px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:12.5px; color: rgba(250,245,236,.5);
}
.footer-socials{ display:flex; gap:14px; }
.footer-socials a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(250,245,236,.25);
  display:flex; align-items:center; justify-content:center; transition: background .3s var(--ease), border-color .3s var(--ease); }
.footer-socials a:hover{ background: var(--gold); border-color: var(--gold); }
.footer-socials svg{ width:16px; height:16px; }

@media (max-width: 880px){
  .footer-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   Cookie consent banner (GDPR)
   --------------------------------------------------------- */
#cookie-banner{
  position:fixed; left:20px; right:20px; bottom:20px; z-index:200;
  max-width:560px; margin-inline:auto;
  background: var(--white); color: var(--ink);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 26px 26px 22px;
  transform: translateY(140%); transition: transform .5s var(--ease);
}
#cookie-banner.is-visible{ transform: translateY(0); }
#cookie-banner h4{ font-family:var(--f-body); font-weight:500; font-size:16px; margin-bottom:8px; }
#cookie-banner p{ font-size:13.5px; color: var(--ink-soft); margin-bottom:18px; }
#cookie-banner .cookie-actions{ display:flex; gap:10px; flex-wrap:wrap; }
#cookie-banner a.link{ text-decoration:underline; color: var(--rose-deep); }
.cookie-detail{ margin-top:14px; display:none; gap:10px; }
.cookie-detail.is-open{ display:grid; }
.cookie-detail label{ display:flex; align-items:center; gap:10px; font-size:13.5px; }

/* ---------------------------------------------------------
   Gallery ("Jak to u nás vypadá")
   --------------------------------------------------------- */
.gallery{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.gallery-item{
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow:hidden;
  position:relative;
}
.gallery-item img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img{ transform: scale(1.05); }
.gallery-item .ph{ width:100%; height:100%; border-radius:0; }
@media (max-width: 980px){
  .gallery{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px){
  .gallery{ grid-template-columns: repeat(2, 1fr); gap:10px; }
}

/* ---------------------------------------------------------
   Reveal-on-scroll
   --------------------------------------------------------- */
[data-reveal]{ opacity:0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible{ opacity:1; transform:none; }

/* ---------------------------------------------------------
   Page hero (sub-pages, no full image grid)
   --------------------------------------------------------- */
.page-hero{
  padding-block: 160px 80px;
  text-align:center;
  position:relative;
  background: var(--ivory);
}
.page-hero.is-tight{ padding-block: 104px 64px; }
.voucher-hero{ padding-block: 104px 0; }
.legal-hero{ padding-block: 104px 56px; }
.page-hero .container{ position:relative; z-index:1; }
@media (max-width: 980px){
  .page-hero{ padding-block: 64px 44px; }
  .page-hero.is-tight{ padding-block: 56px 40px; }
  .voucher-hero{ padding-block: 56px 0; }
  .legal-hero{ padding-block: 56px 36px; }
}

/* ---------------------------------------------------------
   Misc utility
   --------------------------------------------------------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0 !important; }
.muted{ color: var(--ink-soft); }
.stack{ display:grid; gap:18px; }

/* =========================================================
   Fotky v placeholderech + slider galerie  (přidáno)
   ========================================================= */
.ph > img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; display:block; z-index:2;
}
.hero-figure > img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; display:block;
}

/* ---- Galerie jako carousel (1 zvětšená fotka, šipky/auto) ---- */
.gallery-slider{ position:relative; max-width:760px; margin:0 auto; }
.gallery-viewport{
  position:relative; aspect-ratio:4/5; border-radius:var(--r-lg);
  overflow:hidden; box-shadow:var(--shadow-lg); background:var(--beige);
}
.gallery-track{ display:flex; height:100%; transition:transform .6s var(--ease); will-change:transform; }
.gallery-slide{ flex:0 0 100%; height:100%; }
.gallery-slide img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border-radius:50%; border:none; cursor:pointer;
  background:rgba(255,255,255,.82); color:var(--rose-deep);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); transition:background .3s var(--ease), transform .3s var(--ease);
  z-index:3;
}
.gallery-arrow:hover{ background:#fff; transform:translateY(-50%) scale(1.06); }
.gallery-arrow svg{ width:22px; height:22px; }
.gallery-arrow.prev{ left:14px; }
.gallery-arrow.next{ right:14px; }
.gallery-dots{ display:flex; justify-content:center; gap:9px; margin-top:20px; flex-wrap:wrap; }
.gallery-dot{
  width:9px; height:9px; border-radius:50%; border:none; padding:0; cursor:pointer;
  background:var(--blush-soft); transition:background .3s var(--ease), transform .3s var(--ease);
}
.gallery-dot.is-active{ background:var(--gold); transform:scale(1.25); }
@media (max-width:560px){
  .gallery-arrow{ width:40px; height:40px; }
  .gallery-viewport{ aspect-ratio:3/4; }
}
@media (prefers-reduced-motion: reduce){
  .gallery-track{ transition:none; }
}
