/*
Theme Name: Dominika Skrzypek
Theme URI: https://wp.dominikaskrzypek.pl
Author: Skygroup.pl
Description: Custom motyw (ACF Pro, bez page-buildera) odtwarzający 1:1 styl new.dominikaskrzypek.pl.
Version: 1.0.0
Requires PHP: 8.1
Text Domain: dominika-skrzypek
*/

/* ==========================================================================
   Design tokens — 1:1 wartości z new.dominikaskrzypek.pl (src/styles.css)
   ========================================================================== */
:root {
  --radius: 0.25rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);

  --background: oklch(0.977 0.006 80);
  --foreground: oklch(0.235 0.006 60);
  --card: oklch(0.988 0.004 80);
  --card-foreground: oklch(0.235 0.006 60);
  --popover: oklch(0.988 0.004 80);
  --popover-foreground: oklch(0.235 0.006 60);
  --primary: oklch(0.235 0.006 60);
  --primary-foreground: oklch(0.977 0.006 80);
  --secondary: oklch(0.937 0.014 70);
  --secondary-foreground: oklch(0.235 0.006 60);
  --muted: oklch(0.937 0.014 70);
  --muted-foreground: oklch(0.52 0.014 65);
  --accent: oklch(0.78 0.045 62);
  --accent-foreground: oklch(0.235 0.006 60);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.98 0 0);
  --border: oklch(0.9 0.014 70);
  --input: oklch(0.9 0.014 70);
  --ring: oklch(0.78 0.045 62);

  --sand: oklch(0.937 0.014 70); /* ~#F3ECE4 */
  --clay: oklch(0.66 0.05 55);
  --clay-dark: oklch(0.42 0.05 55); /* underline nawigacji, tło paska ogłoszeń/cookie */

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: 3rem; } /* text-5xl */
@media (min-width: 768px) { h1 { font-size: 3.75rem; } } /* md:text-6xl */
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
p { margin: 0; }

/* ==========================================================================
   Layout utilities
   ========================================================================== */
.container-editorial {
  width: 100%;
  margin-inline: auto;
  max-width: 76rem;
  padding-inline: 1.5rem;
}
.bg-sand { background-color: var(--sand); }
.section { padding-block: 5rem; }
.section-tight { padding-block: 3rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { opacity: 0.85; }
.btn-outline {
  border: 1px solid var(--foreground);
  color: var(--foreground);
}
.btn-outline:hover {
  background-color: var(--foreground);
  color: var(--primary-foreground);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
.reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Header (patrz header.php)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  background-color: color-mix(in oklch, var(--background) 85%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo { line-height: 1; text-align: center; }
.site-header__logo-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--foreground);
}
.site-header__logo-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: color-mix(in oklch, var(--foreground) 70%, transparent);
}

.site-nav { display: none; align-items: center; gap: 2.25rem; }
@media (min-width: 1024px) { .site-nav { display: flex; } }
.site-nav__link {
  position: relative;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.375rem;
  height: 1px;
  width: 0;
  background-color: var(--clay-dark);
  transition: width 0.2s ease;
}
.site-nav__link:hover { color: var(--foreground); }
.site-nav__link:hover::after { width: 100%; }
.site-nav__link.is-active { color: var(--foreground); font-weight: 500; }
.site-nav__link.is-active::after { width: 100%; }

.site-nav__item--dropdown { position: relative; }
.site-nav__dropdown-icon { height: 0.75rem; width: 0.75rem; transition: transform 0.2s ease; display: inline-block; vertical-align: -1px; margin-left: 0.35rem; }
.site-nav__item--dropdown:hover .site-nav__dropdown-icon { transform: rotate(180deg); }
.site-nav__submenu {
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 50;
  width: 17rem;
  transform: translateX(-50%);
  padding-top: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.site-nav__item--dropdown:hover .site-nav__submenu { visibility: visible; opacity: 1; }
.site-nav__submenu-inner {
  border-radius: 0.75rem;
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  background-color: var(--background);
  padding: 0.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.site-nav__submenu-link {
  display: block;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-nav__submenu-link:hover { background-color: var(--secondary); color: var(--foreground); }
.site-nav__submenu-link.is-active { color: var(--clay-dark); font-weight: 500; }

.site-header__toggle { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .site-header__toggle { display: none; } }

.site-mobile-nav { display: none; border-top: 1px solid var(--border); background-color: var(--background); }
.site-mobile-nav.is-open { display: block; }
@media (min-width: 1024px) { .site-mobile-nav { display: none !important; } }
.site-mobile-nav__inner { display: flex; flex-direction: column; gap: 1.25rem; padding-block: 1.5rem; }
.site-mobile-nav__link { font-family: var(--font-display); font-size: 1.5rem; color: var(--muted-foreground); }
.site-mobile-nav__link.is-active { color: var(--foreground); }
.site-mobile-nav__oferta-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; font-family: var(--font-display); font-size: 1.5rem; color: var(--muted-foreground); }
.site-mobile-nav__oferta-list { display: none; flex-direction: column; gap: 0.5rem; border-left: 1px solid color-mix(in oklch, var(--border) 60%, transparent); padding-left: 1rem; margin-top: 0.75rem; }
.site-mobile-nav__oferta-list.is-open { display: flex; }
.site-mobile-nav__oferta-list a { font-size: 1rem; color: var(--muted-foreground); }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announcement-bar { background-color: var(--clay-dark); color: var(--background); }
.announcement-bar__inner { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding-block: 0.5rem; text-align: center; }
.announcement-bar__link { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.02em; text-decoration: underline; text-underline-offset: 4px; transition: opacity 0.2s ease; }
.announcement-bar__link:hover { opacity: 0.8; }

/* ==========================================================================
   Footer (patrz footer.php)
   ========================================================================== */
.site-footer { margin-top: 6rem; border-top: 1px solid var(--border); background-color: var(--sand); }
.site-footer__grid { display: grid; gap: 3rem; padding-block: 4rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer__col p { font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.site-footer__col a:hover { color: var(--foreground); }
.site-footer__stars { color: var(--clay); }
.site-footer__social { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.site-footer__social a { color: var(--muted-foreground); transition: color 0.2s ease; }
.site-footer__social a:hover { color: var(--foreground); }
.site-footer__bottom { border-top: 1px solid color-mix(in oklch, var(--border) 70%, transparent); }
.site-footer__bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.5rem; padding-block: 1.5rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom-inner { flex-direction: row; text-align: left; } }
.site-footer__credit { font-size: 0.75rem; color: var(--muted-foreground); }
.site-footer__credit a { color: var(--foreground); }
.site-footer__credit a:hover { text-decoration: underline; }

/* ==========================================================================
   Breadcrumb (single-oferta.php i inne szczegółowe strony)
   ========================================================================== */
.of-breadcrumb { display: flex; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; }
.of-breadcrumb a:hover { color: var(--foreground); }
.of-breadcrumb .is-current { color: var(--foreground); }

/* ==========================================================================
   Strona oferty — sekcje flexible-content
   ========================================================================== */
.of-hero { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; padding-block: 3rem 5rem; }
@media (min-width: 900px) { .of-hero { grid-template-columns: 1fr 1fr; } }
.of-hero__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); }

.of-narrative-wrap { padding-block: 4rem; }
.of-narrative { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .of-narrative { grid-template-columns: 1fr 1fr; } }
.of-narrative--reverse { direction: rtl; }
.of-narrative--reverse > * { direction: ltr; }
.of-narrative__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }
.of-prose p { margin-bottom: 1rem; color: var(--muted-foreground); line-height: 1.7; }
.of-prose p:last-child { margin-bottom: 0; }
.of-prose h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-size: 1.5rem; }
.of-prose h3 { margin-top: 1.75rem; margin-bottom: 0.5rem; font-size: 1.15rem; }
.of-prose ul, .of-prose ol { margin: 1rem 0 1rem 1.25rem; list-style: disc; color: var(--muted-foreground); }
.of-prose ol { list-style: decimal; }
.of-prose li { margin-bottom: 0.4rem; line-height: 1.6; }
.of-prose a { text-decoration: underline; text-underline-offset: 2px; }
.of-prose a:hover { color: var(--foreground); }
.of-prose strong { font-weight: 600; color: var(--foreground); }

.of-feature-list { display: flex; flex-direction: column; gap: 0; }
.of-feature-list li { display: flex; flex-direction: column; gap: 0.25rem; padding-block: 1rem; border-top: 1px solid var(--border); }
.of-feature-list li:last-child { border-bottom: 1px solid var(--border); }
.of-feature-list strong { font-weight: 600; }
.of-feature-list span { color: var(--muted-foreground); font-size: 0.9rem; }

.of-pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .of-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .of-pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.of-package-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; }
.of-package-card.is-highlight { border: 1px solid var(--clay); box-shadow: 0 0 0 1px var(--clay); }
.of-package-card h3 { font-size: 1.25rem; margin-top: 0.5rem; }
.of-package-card__price { font-family: var(--font-display); font-size: 1.75rem; margin-top: 0.5rem; }
.of-package-card__includes { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.of-package-card__includes li { font-size: 0.85rem; color: var(--muted-foreground); padding-left: 1rem; position: relative; }
.of-package-card__includes li::before { content: "—"; position: absolute; left: 0; color: var(--clay); }

.of-addons { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-block: 4rem; }
@media (min-width: 900px) { .of-addons { grid-template-columns: 1fr 1fr; } }
.of-addons__voucher { border-radius: var(--radius-lg); padding: 2rem; }
.of-addons__list { display: flex; flex-direction: column; gap: 0; }
.of-addons__list > div { display: flex; justify-content: space-between; padding-block: 0.75rem; border-top: 1px solid var(--border); font-size: 0.9rem; }
.of-addons__list dt { color: var(--muted-foreground); }
.of-addons__list dd { margin: 0; font-weight: 500; }

.of-gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 700px) { .of-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.of-gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }

.of-other-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .of-other-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .of-other-services-grid { grid-template-columns: repeat(3, 1fr); } }
.of-other-services-card { display: block; border-radius: var(--radius-lg); overflow: hidden; background: var(--card); border: 1px solid var(--border); transition: transform 0.25s ease; }
.of-other-services-card:hover { transform: translateY(-3px); }
.of-other-services-card__img { aspect-ratio: 4/3; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.of-other-services-card:hover .of-other-services-card__img { transform: scale(1.04); }
.of-other-services-card__body { padding: 1.25rem; }
.of-other-services-card__body h3 { font-size: 1.1rem; }
.of-other-services-card__body p { margin-top: 0.4rem; font-size: 0.85rem; color: var(--muted-foreground); }

.of-faq { display: flex; flex-direction: column; }
.ds-faq-item { border-top: 1px solid var(--border); padding-block: 1.1rem; }
.ds-faq-item:last-child { border-bottom: 1px solid var(--border); }
.ds-faq-item summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; font-weight: 500; }
.ds-faq-item summary::-webkit-details-marker { display: none; }
.ds-faq-icon { font-size: 1.25rem; color: var(--muted-foreground); transition: transform 0.2s ease; display: inline-block; }
.ds-faq-item p { margin-top: 0.75rem; color: var(--muted-foreground); font-size: 0.9rem; line-height: 1.6; }

.of-cta { border-radius: var(--radius-2xl); border: 1px solid color-mix(in oklch, var(--foreground) 15%, transparent); padding: 3rem 2rem; text-align: center; max-width: 40rem; margin-inline: auto; }

/* ==========================================================================
   /oferta index — karty cennikowe
   ========================================================================== */
.of-index-card { display: flex; flex-direction: column; padding: 2.25rem; }
.of-index-card.is-highlight { box-shadow: 0 0 0 1px var(--clay); }
.of-index-card__details-link { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted-foreground); text-underline-offset: 4px; }
.of-index-card__details-link:hover { color: var(--foreground); text-decoration: underline; }

/* ==========================================================================
   Portfolio — pigułki filtrów + masonry + lightbox
   ========================================================================== */
.pf-filter-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; padding-bottom: 1rem; }
.pf-filter-pill {
  border: 1px solid var(--border); border-radius: 999px; padding: 0.5rem 1.1rem;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-foreground);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pf-filter-pill:hover { border-color: var(--foreground); color: var(--foreground); }
.pf-filter-pill.is-active { background-color: var(--foreground); color: var(--background); border-color: var(--foreground); }

.pf-masonry { columns: 1; column-gap: 1rem; }
@media (min-width: 640px) { .pf-masonry { columns: 2; } }
@media (min-width: 1024px) { .pf-masonry { columns: 3; } }
.pf-masonry__item { display: block; width: 100%; padding: 0; margin: 0 0 1rem; border: none; background: none; border-radius: var(--radius); overflow: hidden; break-inside: avoid; cursor: zoom-in; }
.pf-masonry__item img { width: 100%; display: block; transition: transform 0.4s ease; }
.pf-masonry__item:hover img { transform: scale(1.03); }

.pf-lightbox[hidden] { display: none; }
.pf-lightbox {
  position: fixed; inset: 0; z-index: 100; background: color-mix(in oklch, var(--foreground) 92%, transparent);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.pf-lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.pf-lightbox__close {
  position: absolute; top: 1.25rem; right: 1.5rem; font-size: 2rem; line-height: 1; color: var(--background);
  background: none; border: none; cursor: pointer;
}

/* ==========================================================================
   Kontakt
   ========================================================================== */
.ds-kontakt-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 1024px) { .ds-kontakt-grid { grid-template-columns: 1.2fr 0.8fr; } }
.ds-kontakt-form-wrap { padding: 2rem; }
@media (min-width: 768px) { .ds-kontakt-form-wrap { padding: 3rem; } }
.ds-map { overflow: hidden; background: var(--muted); }
.ds-map iframe { width: 100%; height: 320px; border: 0; display: block; }
@media (min-width: 768px) { .ds-map iframe { height: 420px; } }

/* Fluent Forms — dopasowanie do stylu edytorskiego (pól input/select/textarea) */
.ds-kontakt-form-wrap .ff-el-form-control,
.ds-kontakt-form-wrap select.ff-el-form-control,
.ds-kontakt-form-wrap textarea.ff-el-form-control {
    border: 1px solid var(--border) !important;
    background: var(--background) !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
    font-family: var(--font-sans) !important;
}
.ds-kontakt-form-wrap .ff-el-form-control:focus { border-color: var(--foreground) !important; }
.ds-kontakt-form-wrap .ff-el-input--label label,
.ds-kontakt-form-wrap .ff-el-group-label { font-size: 0.875rem !important; color: var(--foreground) !important; }
.ds-kontakt-form-wrap .ff-btn, .ds-kontakt-form-wrap button[type="submit"] {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background-color: var(--primary) !important; color: var(--primary-foreground) !important;
    padding: 0.9rem 2rem !important; font-size: 0.75rem !important; letter-spacing: 0.16em !important;
    text-transform: uppercase !important; border-radius: var(--radius) !important; border: none !important;
}
.ds-kontakt-form-wrap .ff-btn:hover, .ds-kontakt-form-wrap button[type="submit"]:hover { opacity: 0.85; }

/* ==========================================================================
   Homepage — hero slider
   ========================================================================== */
.ds-hero { position: relative; min-height: 420px; height: 62vh; max-height: 900px; overflow: hidden; background: var(--muted); }
@media (max-width: 1023px) { .ds-hero { height: 78svh; min-height: 360px; } }
.ds-hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 1s ease; }
.ds-hero__slide.is-active { opacity: 1; }
.ds-hero__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ds-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, color-mix(in oklch, var(--foreground) 70%, transparent), color-mix(in oklch, var(--foreground) 30%, transparent) 55%, transparent); }
.ds-hero__content { position: relative; height: 100%; display: flex; align-items: center; padding-block: 4rem; }
.ds-hero__caption { display: none; max-width: 34rem; color: var(--background); }
.ds-hero__caption.is-active { display: block; }
.ds-hero__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: color-mix(in oklch, var(--background) 90%, transparent); }
.ds-hero__caption h1 { margin-top: 0.75rem; color: var(--background); font-size: clamp(1.75rem, 4vw, 3.5rem); }
.ds-hero__cta { display: inline-flex; margin-top: 1.75rem; border: 1px solid color-mix(in oklch, var(--background) 70%, transparent); border-radius: var(--radius-sm); padding: 0.7rem 1.75rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--background); backdrop-filter: blur(4px); transition: background-color 0.25s ease, color 0.25s ease; }
.ds-hero__cta:hover { background-color: var(--background); color: var(--foreground); }
.ds-hero__dots { position: absolute; left: 0; right: 0; bottom: 1.75rem; display: flex; justify-content: center; gap: 0.6rem; }
.ds-hero__dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: color-mix(in oklch, var(--background) 40%, transparent); transition: all 0.3s ease; padding: 0; }
.ds-hero__dot.is-active { background: var(--background); transform: scale(1.25); }
