/* =========================================================
   DVORAC SANJALICA — DESIGN SYSTEM
   Storybook Elegance · Premium children's brand
   ========================================================= */

:root {
  /* ---- color: warm cream foundation ---- */
  --cream: #FBF6EE;
  --cream-deep: #F4ECDC;
  --cream-soft: #FDF9F2;
  --ivory: #FFFAEF;
  --white: #FFFFFF;

  /* ---- color: pastel washes ---- */
  --blush: #FBE0DD;
  --blush-deep: #F4C5BE;
  --rose: #ECB1A4;
  --sky: #DDEBF2;
  --sky-deep: #C5DCE9;
  --mint: #E0EFE0;
  --mint-deep: #C6E0C6;
  --lavender: #ECE3F2;
  --lavender-deep: #DDCEEA;
  --butter: #FBEFC9;

  /* ---- color: ink + accents ---- */
  --ink: #2B2238;
  --ink-soft: #574B66;
  --ink-quiet: #8C8298;
  --ink-faint: #C5BECE;
  --gold: #C19848;
  --gold-warm: #D6AF63;
  --gold-deep: #9F7E33;
  --gold-glow: rgba(193, 152, 72, 0.18);
  --coral: #E68A7C;

  /* ---- typography ---- */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', system-ui, -apple-system, sans-serif;

  /* ---- spatial ---- */
  --container: 1240px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 3vw, 2rem);

  /* ---- radii ---- */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 999px;

  /* ---- elevation ---- */
  --shadow-xs: 0 2px 6px rgba(45, 36, 60, 0.04);
  --shadow-sm: 0 4px 14px rgba(45, 36, 60, 0.06);
  --shadow-md: 0 14px 38px rgba(45, 36, 60, 0.08);
  --shadow-lg: 0 28px 70px rgba(45, 36, 60, 0.10);
  --shadow-gold: 0 12px 32px rgba(193, 152, 72, 0.25);

  /* ---- motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   RESET
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* gentle paper-grain texture overlay for warmth */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.25 0 0 0 0 0.35 0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.06;
  mix-blend-mode: multiply;
  z-index: 100;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 0;
  letter-spacing: -0.015em;
  line-height: 1.02;
}

.display em,
.display .italic {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--gold-deep);
}

h1.display { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
h2.display { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3.display { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 500; letter-spacing: -0.01em; }

p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.65; color: var(--ink-soft); }
.tiny { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--ink-quiet); }

/* Tag/eyebrow label above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-line::before { display: none; }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.btn-gold {
  background: linear-gradient(135deg, #D6AF63 0%, #C19848 55%, #A8843A 100%);
  color: #FFF8E6;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(193, 152, 72, 0.35);
}
.btn-gold .arrow { transition: transform 0.3s var(--ease); }
.btn-gold:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(43, 34, 56, 0.18);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: rgba(193, 152, 72, 0.06);
}

.btn-soft {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-soft:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-block { width: 100%; }
.btn-lg { padding: 1.15rem 2rem; font-size: 0.98rem; }
.btn-sm { padding: 0.75rem 1.3rem; font-size: 0.82rem; }

/* =========================================================
   DECORATIONS
   ========================================================= */
.sparkle {
  display: inline-block;
  color: var(--gold);
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 auto;
}
.flourish::before, .flourish::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.flourish svg { color: var(--gold); }

.cloud {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 20px rgba(45, 36, 60, 0.04));
}

/* twinkle keyframe used in heroes */
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-14px) translateX(6px); }
}
@keyframes float-slower {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(-8px); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drift {
  0% { transform: translateX(-20px); }
  100% { transform: translateX(20px); }
}

.twinkle { animation: twinkle 3s ease-in-out infinite; }
.float-slow { animation: float-slow 9s ease-in-out infinite; }
.float-slower { animation: float-slower 11s ease-in-out infinite; }

/* on-scroll reveal hooks */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.4s; }
.reveal.delay-6 { transition-delay: 0.48s; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  box-shadow: 0 4px 24px rgba(45, 36, 60, 0.05);
  padding: 0.7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 60;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.brand:hover img { transform: rotate(-4deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.brand-text .sub { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; font-family: var(--font-body); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--cream-deep);
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute;
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  left: 0;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* mobile nav drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 40;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--ink);
  border-bottom: 1px solid rgba(43, 34, 56, 0.08);
  padding: 0.5rem 0;
}
.mobile-menu .btn { margin-top: 1rem; }

/* =========================================================
   HERO (HOME)
   ========================================================= */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 90% -10%, var(--blush) 0%, transparent 55%),
    radial-gradient(ellipse 700px 400px at 10% 100%, var(--sky) 0%, transparent 60%),
    radial-gradient(ellipse 500px 300px at 50% 50%, var(--butter) 0%, transparent 65%),
    var(--cream);
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1rem 0.5rem 0.55rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(193, 152, 72, 0.25);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.8rem;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(230, 138, 124, 0.18);
}

.hero h1.display { margin-bottom: 1.6rem; }
.hero-subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  max-width: 32rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 2.4rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px dashed rgba(43, 34, 56, 0.12);
}
.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.hero-trust .item svg { color: var(--gold); flex-shrink: 0; }

/* hero image stack */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 540px;
  margin-left: auto;
  width: 100%;
}
.hero-image-main {
  position: absolute;
  inset: 0;
  border-radius: 220px 220px 32px 32px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 50%, var(--sky) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}
.hero-image-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(251, 246, 238, 0.18) 100%);
  pointer-events: none;
}

/* logo variant of hero image */
.hero-image-logo {
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.85), transparent 55%),
    linear-gradient(140deg, var(--cream) 0%, var(--blush) 45%, var(--lavender) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12% 10% 14%;
}
.hero-image-logo::after {
  background: radial-gradient(ellipse at center, transparent 60%, rgba(255, 255, 255, 0.25) 100%);
}
.hero-logo-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(43, 34, 56, 0.18));
}

/* floating decorative chips on hero */
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  z-index: 2;
}
.hero-chip svg, .hero-chip .icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.hero-chip small { display: block; font-size: 0.7rem; color: var(--ink-quiet); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

.hero-chip-1 { top: 8%; left: -8%; }
.hero-chip-2 { top: 38%; right: -10%; }
.hero-chip-3 { bottom: 6%; left: 6%; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.page-hero .hero-bg-wash {
  background:
    radial-gradient(ellipse 600px 400px at 80% 0%, var(--blush) 0%, transparent 55%),
    radial-gradient(ellipse 500px 350px at 20% 100%, var(--sky) 0%, transparent 60%),
    var(--cream);
}
.page-hero h1.display { margin-bottom: 1.4rem; }
.page-hero .lead { max-width: 38rem; margin: 0 auto; }

/* =========================================================
   "WHY" — feature grid
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.5rem;
}

.feature {
  position: relative;
  padding: 2.2rem 1.8rem;
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  border: 1px solid rgba(193, 152, 72, 0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.feature:hover::before { opacity: 1; }

.feature .icon {
  width: 58px; height: 58px;
  border-radius: var(--r-md);
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  position: relative;
}
.feature:nth-child(2) .icon { background: var(--mint); }
.feature:nth-child(3) .icon { background: var(--lavender); }
.feature:nth-child(4) .icon { background: var(--butter); }
.feature:nth-child(5) .icon { background: var(--sky); }
.feature:nth-child(6) .icon { background: var(--cream-deep); }

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  letter-spacing: -0.005em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.feature p { font-size: 0.93rem; line-height: 1.6; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.05rem; }
.section-head.left { text-align: left; margin-left: 0; }

/* =========================================================
   PRODUCT CARDS (Ponuda)
   ========================================================= */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.product {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: linear-gradient(140deg, var(--blush) 0%, var(--lavender) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product:hover .product-media img { transform: scale(1.05); }

/* SVG illustration variants — different pastel gradients per card */
.product:nth-child(1) .product-media { background: linear-gradient(140deg, #FCE2DC 0%, #ECE3F2 100%); }
.product:nth-child(2) .product-media { background: linear-gradient(140deg, #DDEBF2 0%, #E0EFE0 100%); }
.product:nth-child(3) .product-media { background: linear-gradient(140deg, #FBEFC9 0%, #FCE2DC 100%); }
.product:nth-child(4) .product-media { background: linear-gradient(140deg, #ECE3F2 0%, #DDEBF2 100%); }
.product:nth-child(5) .product-media { background: linear-gradient(140deg, #E0EFE0 0%, #FBEFC9 100%); }
.product:nth-child(6) .product-media { background: linear-gradient(140deg, #FCE2DC 0%, #DDEBF2 100%); }

.product-illu {
  width: 86%;
  height: 86%;
  transition: transform 0.6s var(--ease);
  filter: drop-shadow(0 14px 24px rgba(45, 36, 60, 0.08));
}
.product:hover .product-illu { transform: scale(1.04) translateY(-4px); }

/* decorative little floating element on each card */
.product-media::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.7), transparent 70%);
  top: 8%; right: 6%;
  pointer-events: none;
}

/* ==== hero centerpiece illustration ==== */
.hero-image-main {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illu {
  width: 92%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 40px rgba(45, 36, 60, 0.14));
}

/* ==== about page illustration ==== */
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-illu {
  width: 86%;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(45, 36, 60, 0.12));
}

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  color: var(--gold-deep);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow-sm);
}

.product-body { padding: 1.7rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 80;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
  color: var(--ink);
  line-height: 1.2;
}
.product-body p { font-size: 0.93rem; line-height: 1.55; flex: 1; }

.product-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(43, 34, 56, 0.1);
}
.product-foot .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60;
  color: var(--gold-deep);
}
.product-foot .price small { font-size: 0.75rem; color: var(--ink-quiet); margin-right: 6px; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }
.product-foot .arrow {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.product:hover .product-foot .arrow {
  background: var(--gold);
  color: var(--white);
  transform: translateX(4px);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 3rem;
  font-weight: 600;
  color: var(--gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease);
}
.section-link:hover { gap: 1rem; }

/* =========================================================
   STEPS (process)
   ========================================================= */
.section-steps { background: var(--cream-soft); position: relative; overflow: hidden; }
.section-steps::before {
  content: '';
  position: absolute;
  top: 10%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blush), transparent 65%);
  opacity: 0.4;
  border-radius: 50%;
  z-index: 0;
}
.section-steps::after {
  content: '';
  position: absolute;
  bottom: 0; left: -8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--sky), transparent 65%);
  opacity: 0.4;
  border-radius: 50%;
  z-index: 0;
}
.section-steps .container { position: relative; z-index: 1; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
}
.step .num {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-size: 4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.step .num::after {
  content: '';
  position: absolute;
  left: 0; bottom: 6px;
  width: 36px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.step p { font-size: 0.94rem; line-height: 1.6; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.testimonial {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.testimonial-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  font-variation-settings: 'opsz' 60, 'SOFT' 80, 'WONK' 0;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.4rem;
  border-top: 1px dashed rgba(43, 34, 56, 0.1);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
}
.testimonial-meta strong { font-size: 0.93rem; font-weight: 700; color: var(--ink); display: block; }
.testimonial-meta span { font-size: 0.8rem; color: var(--ink-quiet); }

.note-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--butter);
  color: var(--ink-soft);
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  margin: 2rem auto 0;
  width: fit-content;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.faq-item {
  background: var(--cream-soft);
  border-radius: var(--r-md);
  border: 1px solid rgba(43, 34, 56, 0.06);
  overflow: hidden;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq-item:hover { background: var(--white); border-color: rgba(193, 152, 72, 0.2); }
.faq-item.open { background: var(--white); border-color: rgba(193, 152, 72, 0.3); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 80;
  color: var(--ink);
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: var(--white); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a-inner {
  padding: 0 1.6rem 1.5rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}
.faq-item.open .faq-a { max-height: 320px; }

/* =========================================================
   FINAL CTA STRIP
   ========================================================= */
.cta-strip {
  position: relative;
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 50%, var(--sky) 100%);
  overflow: hidden;
  isolation: isolate;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.5) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.4) 0%, transparent 40%);
  z-index: -1;
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.cta-strip h2 { margin-bottom: 1.2rem; color: var(--ink); }
.cta-strip p { color: var(--ink-soft); margin-bottom: 2.2rem; font-size: 1.08rem; }

/* =========================================================
   PRICELIST (Cenovnik)
   ========================================================= */
.price-section {
  margin-top: 3rem;
}
.price-section + .price-section { margin-top: 4rem; }
.price-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(43, 34, 56, 0.08);
}
.price-section h2::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

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

.price-card {
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(43, 34, 56, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.price-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  background: linear-gradient(150deg, var(--white) 0%, var(--butter) 100%);
  border: 1px solid var(--gold-warm);
  box-shadow: var(--shadow-md);
}

.price-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--ink);
  flex: 1;
}
.featured-tag {
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.price-specs { display: flex; flex-direction: column; gap: 0.5rem; }
.price-spec {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.price-spec strong { color: var(--ink); font-weight: 600; }
.price-spec .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-quiet); font-weight: 600; min-width: 90px; }

.price-amount {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(43, 34, 56, 0.1);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.price-amount .main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-deep);
  line-height: 1;
}
.price-amount .alt {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.price-amount .alt strong { color: var(--ink); font-weight: 700; }

.price-features {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  background: var(--white);
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
}
.price-card:hover .price-features { background: var(--cream-soft); }
.price-card.featured .price-features { background: rgba(255,255,255,0.6); }

.price-notes {
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-top: 3rem;
}
.price-notes h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.price-notes ul { display: grid; gap: 0.7rem; }
.price-notes li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.price-notes li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55rem;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.price-help {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--mint) 0%, var(--sky) 100%);
  border-radius: var(--r-xl);
}
.price-help h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 3rem;
  max-width: 900px;
}
.filter-pill {
  padding: 0.6rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(43, 34, 56, 0.1);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.filter-pill.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.gallery-grid {
  column-count: 3;
  column-gap: 1.4rem;
}
.gallery-item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin: 0 0 1.4rem 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--ink);
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.15) 20px, rgba(255,255,255,0.15) 21px);
}
.gallery-placeholder .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
}
.gallery-placeholder h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  color: var(--ink);
  line-height: 1.2;
}

.gallery-notice {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream-soft);
  border-radius: var(--r-xl);
  margin-top: 3rem;
  border: 1px dashed var(--gold);
}
.gallery-notice p { font-size: 1.05rem; }
.gallery-notice a { color: var(--gold-deep); font-weight: 700; border-bottom: 1.5px solid var(--gold); }

/* =========================================================
   ABOUT
   ========================================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 180px 180px 32px 32px;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.about-body p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); }
.about-body p:first-of-type {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-style: italic;
  font-variation-settings: 'opsz' 60, 'SOFT' 80, 'WONK' 0;
  color: var(--ink);
  line-height: 1.45;
}

.about-quote {
  background: linear-gradient(135deg, var(--cream-soft) 0%, var(--butter) 100%);
  border-radius: var(--r-xl);
  padding: 4rem 3rem;
  text-align: center;
  margin: 5rem 0;
  position: relative;
  overflow: hidden;
}
.about-quote::before, .about-quote::after {
  content: '“';
  position: absolute;
  font-family: var(--font-display);
  font-size: 10rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.about-quote::before { top: 1rem; left: 2rem; }
.about-quote::after { content: '”'; bottom: -2rem; right: 2rem; }
.about-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 0;
  line-height: 1.4;
  color: var(--ink);
  max-width: 36rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.value {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(43, 34, 56, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value .icon {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
}
.value:nth-child(2) .icon { background: var(--sky); }
.value:nth-child(3) .icon { background: var(--mint); }
.value:nth-child(4) .icon { background: var(--lavender); }
.value h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  margin-bottom: 0.6rem;
}
.value p { font-size: 0.92rem; line-height: 1.6; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  pointer-events: none;
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  margin-bottom: 0.5rem;
  position: relative;
}
.form-card .lead { margin-bottom: 2rem; font-size: 0.95rem; position: relative; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row.thirds { grid-template-columns: 1fr 1fr 0.8fr; }
.form-group { margin-bottom: 1.2rem; position: relative; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: var(--coral); }

.form-control {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--cream-soft);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  font-family: var(--font-body);
}
.form-control:hover { background: var(--cream-deep); }
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23574B66' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

.form-note {
  font-size: 0.82rem;
  color: var(--ink-quiet);
  margin-top: 1rem;
  line-height: 1.5;
}

/* multi-select packages */
.options-fieldset {
  border: none;
  padding: 0;
  margin-bottom: 1.4rem;
}
.options-fieldset legend {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  padding: 0;
}
.options-fieldset legend .legend-hint {
  display: inline-block;
  margin-left: 6px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--ink-quiet);
  font-size: 0.75rem;
}
.option-group + .option-group { margin-top: 1.4rem; }
.option-group-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 36, 'SOFT' 100;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.option-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--cream-soft);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.option-card:hover { background: var(--cream-deep); transform: translateY(-1px); }
.option-card input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid rgba(43, 34, 56, 0.25);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.option-card input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.option-card input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.option-card:has(input:checked) {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 6px 18px -10px rgba(193, 152, 72, 0.5);
}
.option-card:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.option-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.option-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.option-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.option-price small {
  font-weight: 500;
  color: var(--ink-quiet);
  font-size: 0.78rem;
  letter-spacing: 0;
}
.option-card-soft .option-price { color: var(--ink-quiet); }
.option-card-soft .option-name { font-style: italic; font-weight: 500; }

.option-error {
  display: none;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--coral);
  font-weight: 600;
}
.option-error.show { display: block; animation: fade-up 0.3s var(--ease); }

@media (max-width: 640px) {
  .options-grid { grid-template-columns: 1fr; }
}

.form-success {
  display: none;
  padding: 1.2rem 1.4rem;
  background: var(--mint);
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: 0.95rem;
  margin-top: 1rem;
  border-left: 4px solid #4F9B5D;
}
.form-success.show { display: block; animation: fade-up 0.5s var(--ease); }
.form-success strong { display: block; margin-bottom: 4px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-card {
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid rgba(43, 34, 56, 0.06);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  margin-bottom: 1.4rem;
}

.contact-list { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
}
.contact-row .icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-xs);
}
.contact-row .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 2px;
}
.contact-row strong { color: var(--ink); font-weight: 600; font-size: 0.96rem; }
.contact-row a { color: var(--ink); transition: color 0.3s var(--ease); }
.contact-row a:hover { color: var(--gold-deep); }

.hours-card {
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
  padding: 2rem;
  border-radius: var(--r-lg);
  text-align: center;
}
.hours-card .eyebrow { color: var(--ink); margin-bottom: 0.8rem; }
.hours-card .time {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 100;
  color: var(--ink);
}
.hours-card .day { font-size: 0.88rem; color: var(--ink-soft); margin-top: 4px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--cream-deep);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand .logo-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.footer-brand .name-block {
  font-family: var(--font-display);
}
.footer-brand .name-block .name {
  font-size: 1.4rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 60, 'SOFT' 80;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.footer-brand .name-block .tagline {
  font-style: italic;
  font-variation-settings: 'opsz' 60, 'SOFT' 100, 'WONK' 1;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-top: 4px;
}
.footer-brand p {
  max-width: 28rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.93rem;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold-deep); }
.footer-col li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.footer-credit {
  text-align: center;
  margin: 1.4rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(43, 34, 56, 0.06);
  font-size: 0.78rem;
  color: var(--ink-quiet);
  letter-spacing: 0.02em;
}
.footer-credit a {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.footer-credit a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(43, 34, 56, 0.08);
  font-size: 0.82rem;
  color: var(--ink-quiet);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .testimonials { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 2; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-gold { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-top: 7.5rem; }
  .hero-eyebrow { font-size: 0.66rem; }
  .hero-chip-1 { top: 4%; left: -4%; }
  .hero-chip-2 { top: 44%; right: -4%; }
  .hero-chip-3 { bottom: 4%; left: 4%; }
  .hero-chip { padding: 0.7rem 0.9rem; font-size: 0.78rem; }
  .hero-chip svg, .hero-chip .icon-circle { width: 30px; height: 30px; font-size: 0.9rem; }

  .why-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 1; }
  .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row, .form-row.thirds { grid-template-columns: 1fr; }
  .form-card { padding: 2rem 1.4rem; }

  .price-spec { flex-wrap: wrap; }
  .price-spec .label { min-width: unset; }

  .testimonial { padding: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
