:root {
  --bg: #FEF6F0;
  --surface: #FFFFFF;
  --surface-2: #FFF8F2;
  --ink: #3A2E2A;
  --ink-soft: #6B5D56;
  --accent: #B8860B;
  --accent-2: #E8A0BF;
  --line: rgba(58,46,42,0.12);
  --line-strong: rgba(58,46,42,0.25);
  --header-h: 76px;
  --container-pad: clamp(16px,4vw,32px);
  --radius: 8px;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Trebuchet MS', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.4rem,6vw,4.2rem); }
h2 { font-size: clamp(1.8rem,4vw,2.8rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); }
p { max-width: 68ch; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 9999;
  background: var(--ink); color: var(--surface); padding: 10px 18px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.875rem;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ── BUTTONS ── */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 14px 32px; border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer; transition: all 240ms cubic-bezier(.4,0,.2,1);
  text-decoration: none; white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,0.28), 0 0 12px rgba(184,134,11,0.10);
}
.btn-primary::after {
  content: '→'; display: inline-block;
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover::after { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--accent);
  transform: translateY(-2px); box-shadow: 0 4px 16px rgba(58,46,42,0.08);
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(254,246,240,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
.site-header.scrolled {
  background: rgba(254,246,240,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.1rem,2.5vw,1.4rem);
  color: var(--ink); text-decoration: none; display: flex; align-items: baseline; gap: 6px;
  letter-spacing: -0.01em; white-space: nowrap;
}
.logo span {
  font-weight: 400; font-size: 0.7em; color: var(--accent);
  font-family: 'Libre Baskerville', serif; font-style: italic;
}

/* ── NAV DESKTOP ── */
.nav-desktop {
  display: none; align-items: center; gap: clamp(18px,2.5vw,32px);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 4px 0;
}
.nav-desktop a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after { width: 100%; }
.nav-desktop a:not(.nav-cta):hover { color: var(--accent); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 10px 22px; border-radius: 6px; font-size: 0.82rem;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
}

/* ── MOBILE TOGGLE ── */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: none; cursor: pointer;
  z-index: 1100; position: relative;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 24px; height: 3px;
  background: var(--ink); border-radius: 2px;
  transition: all 320ms cubic-bezier(.2,.7,.2,1);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── DRAWER ── */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: none; border: 1.5px solid var(--line);
  border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; line-height: 1;
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  transition: all 240ms cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.drawer-close:hover { background: var(--surface-2); border-color: var(--accent); color: var(--accent); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 1.1rem; padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink); transition: all 240ms cubic-bezier(.4,0,.2,1);
}
.drawer nav a:hover, .drawer nav a.is-active {
  color: var(--accent); padding-left: 16px;
}
.drawer nav .nav-cta {
  margin-top: 16px; text-align: center;
  background: var(--ink); color: var(--surface);
  border-radius: 6px; border-bottom: none; padding: 14px;
}
.drawer nav .nav-cta:hover {
  background: var(--accent); color: var(--surface);
}
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-visible {
  opacity: 1; visibility: visible;
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--accent);
  width: 0%; transition: none;
  pointer-events: none;
}

/* ── MAIN ── */
main { padding-top: var(--header-h); }

/* ── HERO ── */
.hero {
  padding: clamp(48px,8vw,100px) 0 clamp(40px,6vw,80px);
  text-align: center; position: relative; overflow: hidden;
}
.hero__eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}
.hero__title {
  max-width: min(20ch, 90%); margin: 0 auto 24px;
  font-size: clamp(2.4rem,5vw,4.5rem);
}
.hero__title .letter {
  display: inline-block;
  opacity: 0; transform: translateY(24px);
  animation: letter-in 400ms cubic-bezier(.2,.7,.2,1) calc(var(--i) * 55ms) forwards;
}
@keyframes letter-in {
  to { opacity: 1; transform: none; }
}
.hero__sub {
  font-size: clamp(1rem,1.8vw,1.15rem);
  color: var(--ink-soft); max-width: 52ch; margin: 0 auto 32px;
  line-height: 1.75;
}
.hero__cta { margin-bottom: 28px; }
.hero__photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px,2vw,24px);
  max-width: clamp(600px,80%,960px); margin: 0 auto;
}
.hero__photos img {
  aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
}
@media (max-width: 640px) {
  .hero__photos { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero__photos img:nth-child(3) { grid-column: span 2; aspect-ratio: 2/1; }
}

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px;
  margin-bottom: 40px;
}
.trust-strip__item {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.04em;
  color: var(--ink-soft); background: var(--surface);
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--line);
}
.trust-strip__item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ── MARQUEE ── */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 18px 0; background: var(--ink); color: var(--surface);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(0.85rem,1.5vw,1.1rem); letter-spacing: 0.06em; text-transform: uppercase;
}
.marquee__track {
  display: inline-flex; gap: 40px; align-items: center;
  animation: marquee-scroll 30s linear infinite;
}
.marquee__track span { flex-shrink: 0; }
.marquee__track .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ── SECTIONS ── */
.section {
  padding: clamp(56px,8vw,100px) 0;
}
.section--alt { background: var(--surface); }
.section--dark { background: var(--ink); color: var(--surface); }
.section--dark .section__eyebrow { color: var(--accent); }
.section--dark .section__sub { color: rgba(255,255,255,0.7); }
.section__header {
  text-align: center; margin-bottom: clamp(32px,5vw,56px);
}
.section__eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: block;
}
.section__title { margin-bottom: 16px; }
.section__sub {
  color: var(--ink-soft); font-size: clamp(0.95rem,1.5vw,1.05rem);
  max-width: 56ch; margin: 0 auto;
}

/* ── CORNER LEAF SVG DECORATION ── */
.leaf-corner {
  position: absolute; width: 48px; height: 48px;
  color: var(--accent); opacity: 0.18; pointer-events: none;
}
.leaf-corner--tl { top: 12px; left: 12px; }
.leaf-corner--tr { top: 12px; right: 12px; transform: scaleX(-1); }
.leaf-corner--bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
.leaf-corner--br { bottom: 12px; right: 12px; transform: scale(-1); }

/* ── CARDS ── */
.card {
  position: relative; background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1),
              border-color 280ms cubic-bezier(.2,.7,.2,1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(184,134,11,0.18), 0 0 0 1px rgba(184,134,11,0.08);
  border-color: var(--accent);
}
.card:active { transform: translateY(-3px); }
.card__img {
  aspect-ratio: 4/5; overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.card:hover .card__img img { transform: scale(1.04); }
.card__body {
  padding: clamp(16px,2vw,24px);
}
.card__title {
  font-size: 1.05rem; margin-bottom: 8px;
}
.card__price {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  color: var(--accent); font-size: 1.1rem;
}
.card__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--surface);
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}

/* gold shimmer border on hover */
@keyframes gold-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.card::before {
  content: ''; position: absolute; inset: -2px; z-index: -1;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(90deg, transparent 30%, var(--accent) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0; transition: opacity 300ms;
}
.card:hover::before {
  opacity: 1; animation: gold-shimmer 1.5s ease infinite;
}

/* ── VITRIN (featured designs) ── */
.vitrin-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px,2.5vw,28px);
}
@media (max-width: 768px) { .vitrin-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ── CATALOG ── */
.catalog-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 36px;
}
.catalog-filter {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 10px 22px; border-radius: 100px;
  border: 1.5px solid var(--line-strong);
  background: transparent; color: var(--ink);
  cursor: pointer; transition: all 240ms cubic-bezier(.4,0,.2,1);
}
.catalog-filter:hover { border-color: var(--accent); color: var(--accent); }
.catalog-filter.is-active {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.catalog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px,2.5vw,28px);
}
@media (max-width: 768px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .catalog-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* petal scatter on catalog card hover */
.catalog-card { position: relative; }
.catalog-card .petal {
  position: absolute; pointer-events: none;
  width: 10px; height: 14px;
  background: var(--accent-2);
  border-radius: 50% 0 50% 0;
  opacity: 0; z-index: 2;
  transform: translate(0,0) rotate(0deg) scale(0);
}
.catalog-card:hover .petal {
  animation: petal-scatter 900ms cubic-bezier(.2,.7,.2,1) var(--d, 0ms) forwards;
}
@keyframes petal-scatter {
  0% { opacity: 0.85; transform: translate(0,0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx,30px), var(--ty,-40px)) rotate(var(--tr,120deg)) scale(0.3); }
}
@media (prefers-reduced-motion: reduce) {
  .catalog-card:hover .petal { animation: none; }
}

/* ── PALETTE SECTION ── */
.palet-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px,3vw,32px);
}
@media (max-width: 768px) { .palet-grid { grid-template-columns: 1fr; } }
.palet-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--surface); border-radius: var(--radius);
  border: 1.5px solid var(--line); overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.palet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.12);
}
.palet-card__img {
  aspect-ratio: 1; overflow: hidden;
}
.palet-card__img img { width: 100%; height: 100%; object-fit: cover; }
.palet-card__body { padding: clamp(16px,2vw,24px); display: flex; flex-direction: column; justify-content: center; }
.palet-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.palet-card__colors {
  display: flex; gap: 8px; margin-bottom: 12px;
}
.palet-card__swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--line);
}
.palet-card__desc { font-size: 0.88rem; color: var(--ink-soft); }
@media (max-width: 480px) {
  .palet-card { grid-template-columns: 1fr; }
}

/* ── PACKAGES SECTION ── */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px,2.5vw,28px); align-items: start;
}
@media (max-width: 768px) { .pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.pkg-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1.5px solid var(--line); padding: clamp(24px,3vw,36px);
  text-align: center; position: relative; overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(184,134,11,0.18), 0 0 24px rgba(184,134,11,0.06);
  border-color: var(--accent);
}
.pkg-card--featured {
  border-color: var(--accent); border-width: 2px;
  box-shadow: 0 4px 20px rgba(184,134,11,0.1);
}
.pkg-card--featured::before {
  content: 'En Popüler'; position: absolute; top: 0; left: 0; right: 0;
  background: var(--accent); color: var(--surface);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px; text-align: center;
}
.pkg-card__name {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.2rem; margin-bottom: 8px; margin-top: 8px;
}
.pkg-card--featured .pkg-card__name { margin-top: 28px; }
.pkg-card__price {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(1.8rem,3vw,2.4rem); color: var(--accent);
  margin-bottom: 4px;
}
.pkg-card__unit {
  font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 20px;
}
.pkg-card__list {
  text-align: left; margin-bottom: 20px;
}
.pkg-card__list li {
  padding: 6px 0; font-size: 0.9rem;
  display: flex; align-items: flex-start; gap: 8px;
}
.pkg-card__list li::before {
  content: '✓'; color: var(--accent);
  font-weight: 700; flex-shrink: 0;
}
.pkg-card__excluded {
  text-align: left; padding-top: 12px; border-top: 1px solid var(--line);
  margin-bottom: 20px;
}
.pkg-card__excluded li {
  padding: 4px 0; font-size: 0.82rem; color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 8px;
}
.pkg-card__excluded li::before {
  content: '—'; color: var(--ink-soft); flex-shrink: 0;
}
.pkg-card__delivery {
  font-size: 0.82rem; color: var(--ink-soft);
  margin-bottom: 20px; text-align: left;
  padding: 8px 12px; background: var(--surface-2); border-radius: 4px;
}

/* ── MASONRY GALLERY ── */
.masonry {
  columns: 3; column-gap: clamp(12px,2vw,20px);
}
@media (max-width: 768px) { .masonry { columns: 2; } }
@media (max-width: 480px) { .masonry { columns: 1; max-width: 400px; margin: 0 auto; } }
.masonry__item {
  break-inside: avoid; margin-bottom: clamp(12px,2vw,20px);
  border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1.5px solid var(--line);
  transition: border-color 280ms;
}
.masonry__item:hover { border-color: var(--accent); }
.masonry__item img {
  width: 100%; display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.masonry__item:hover img { transform: scale(1.04); }
.masonry__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(58,46,42,0.85));
  color: var(--surface); padding: 40px 16px 16px;
  opacity: 0; visibility: hidden;
}
.masonry__item:hover .masonry__caption { opacity: 1; visibility: visible; transition: opacity 360ms cubic-bezier(.4,0,.2,1); }
.masonry__caption p {
  font-size: 0.88rem; font-style: italic; margin-bottom: 6px;
}
.masonry__caption cite {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.75rem; font-style: normal; letter-spacing: 0.04em;
  color: var(--accent);
}

/* ── TESTIMONIALS ── */
.testimonial {
  background: var(--surface); border-radius: var(--radius);
  border: 1.5px solid var(--line); padding: clamp(24px,3vw,36px);
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 8px; left: 20px;
  font-family: 'Libre Baskerville', serif; font-size: 4rem;
  color: var(--accent); opacity: 0.2; line-height: 1;
}
.testimonial__text {
  font-style: italic; font-size: 0.95rem; margin-bottom: 16px;
  line-height: 1.8;
}
.testimonial__author {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.85rem; color: var(--accent);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px,2.5vw,28px);
}
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ── CTA SECTION (danisma) ── */
.cta-section {
  text-align: center;
  background: var(--ink);
  color: var(--surface);
  padding: clamp(64px,10vw,120px) 0;
  position: relative; overflow: hidden;
}
.cta-section .section__eyebrow { color: var(--accent); }
.cta-section .section__title { color: var(--surface); }
.cta-section .section__sub { color: rgba(255,255,255,0.7); }
.cta-section .btn-primary {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
}
.cta-section .btn-primary:hover {
  background: var(--surface); color: var(--ink); border-color: var(--surface);
}

/* floating petal ambient in CTA */
.cta-petal {
  position: absolute; pointer-events: none;
  width: 18px; height: 24px;
  background: var(--accent-2); opacity: 0.15;
  border-radius: 50% 0 50% 0;
  animation: cta-float var(--dur, 10s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}
@keyframes cta-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -30px) rotate(45deg); }
  50% { transform: translate(-10px, -60px) rotate(90deg); }
  75% { transform: translate(20px, -30px) rotate(135deg); }
}
@media (prefers-reduced-motion: reduce) { .cta-petal { animation: none; } }

/* ── PROCESS STEPS ── */
.process-list {
  max-width: 720px; margin: 0 auto;
  position: relative;
}
.process-list::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: var(--line);
}
.process-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding-bottom: 36px; position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--surface);
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.process-step__content {}
.process-step__title {
  font-size: 1.1rem; margin-bottom: 4px;
}
.process-step__time {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.75rem; color: var(--accent);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 8px; display: block;
}
.process-step__desc {
  font-size: 0.9rem; color: var(--ink-soft);
}

/* ── FAQ ACCORDION (pure CSS) ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1rem; list-style: none; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--accent);
  transition:transform 520ms cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition:height 520ms cubic-bezier(.16,1,.3,1),padding-block-end 520ms cubic-bezier(.16,1,.3,1);
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-item .faq-body p {
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.75;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* ── COUNTERS ── */
.stats-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px,4vw,56px);
  padding: clamp(32px,5vw,56px) 0;
}
.stat {
  text-align: center;
}
.stat__num {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem,5vw,3.4rem);
  color: var(--accent); display: block; line-height: 1.1;
}
.stat__label {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 6px; display: block;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.8);
  padding: clamp(48px,6vw,80px) 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,48px);
  padding-bottom: clamp(40px,5vw,64px);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand .logo { color: var(--surface); margin-bottom: 12px; }
.footer__brand p {
  font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.footer__heading {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.footer__links a {
  display: block; padding: 5px 0; font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 240ms, padding-left 240ms;
}
.footer__links a:hover { color: var(--accent); padding-left: 6px; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; margin-bottom: 10px;
  word-break: break-word; overflow-wrap: anywhere;
}
.footer__contact-item svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  color: var(--accent);
}
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
}
.footer__bar p {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.footer__bar-links {
  display: flex; gap: 20px;
}
.footer__bar-links a {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.footer__bar-links a:hover { color: var(--accent); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 {
  font-size: 1rem; margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-actions button {
  flex: 1; min-width: 100px; min-height: 44px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.82rem; border-radius: 6px; cursor: pointer;
  border: 1.5px solid var(--line-strong);
  transition: all 240ms cubic-bezier(.4,0,.2,1);
  padding: 10px 16px;
}
.cookie-actions button[data-consent="accept"] {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
}
.cookie-actions button[data-consent="reject"] {
  background: var(--surface-2); color: var(--ink); font-weight: 700;
}
.cookie-actions button[data-consent="reject"]:hover {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.cookie-actions button[data-consent="settings"] {
  background: transparent; color: var(--ink-soft);
}
.cookie-actions button[data-consent="settings"]:hover {
  background: var(--surface-2); color: var(--ink); border-color: var(--accent);
}

/* ── FORM STYLES ── */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.02em;
}
.field label .req { color: var(--accent-2); }
.field input, .field select, .field textarea {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.92rem; color: var(--ink);
  padding: 12px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: auto; -webkit-appearance: auto;
}
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 20px; height: 20px;
  min-width: 20px; min-height: 20px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.field--checkbox {
  flex-direction: row; align-items: flex-start; gap: 12px; cursor: pointer;
}
.field--checkbox label {
  font-weight: 400; font-size: 0.85rem; font-family: 'Libre Baskerville', serif;
  line-height: 1.5; cursor: pointer;
}
.field--checkbox label a { color: var(--accent); text-decoration: underline; }
.field--error input, .field--error select, .field--error textarea {
  border-color: #D32F2F;
}
.field__error {
  font-size: 0.78rem; color: #D32F2F;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
}
.form-success {
  text-align: center; padding: 40px 20px;
  display: none;
}
.form-success.is-visible { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--accent); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ── CONTACT CHANNELS ── */
.contact-channels {
  display: grid; gap: 0;
}
.contact-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  transition: all 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover {
  background: var(--surface-2);
  padding-left: 8px;
}
.contact-row svg {
  width: 20px; height: 20px; color: var(--ink-soft);
  margin-top: 2px; flex-shrink: 0;
  transition: color 240ms, transform 240ms;
}
.contact-row:hover svg {
  color: var(--accent); transform: scale(1.08);
}
.contact-row__label {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); display: block; margin-bottom: 2px;
}
.contact-row__value {
  font-size: 0.92rem; color: var(--ink-soft);
  word-break: break-word; overflow-wrap: anywhere;
}
.contact-row__value a { color: var(--accent); }

/* ── ABOUT / TEAM ── */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px,3vw,36px);
  max-width: 880px; margin: 0 auto;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; max-width: 440px; } }
.team-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1.5px solid var(--line); overflow: hidden;
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.12);
}
.team-card__img {
  aspect-ratio: 3/4; overflow: hidden;
}
.team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: clamp(16px,2vw,24px); }
.team-card__name {
  font-size: 1.1rem; margin-bottom: 4px;
}
.team-card__role {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: block;
}
.team-card__bio {
  font-size: 0.88rem; color: var(--ink-soft); text-align: left;
  line-height: 1.7;
}

/* ── LEGAL PAGES ── */
.legal-content { max-width: 740px; margin: 0 auto; padding-bottom: clamp(40px,6vw,64px); }
.legal-content h2 { margin: 40px 0 16px; font-size: 1.4rem; }
.legal-content h3 { margin: 28px 0 12px; font-size: 1.1rem; }
.legal-content p {
  margin-bottom: 16px; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.8;
}
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content li {
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.8;
  margin-bottom: 6px; list-style: disc;
}
.legal-content strong { color: var(--ink); }

/* ── 404 ── */
.page-404 {
  text-align: center; padding: clamp(80px,15vw,160px) 0;
}
.page-404 h1 {
  font-size: clamp(4rem,12vw,8rem); color: var(--accent); margin-bottom: 16px;
}
.page-404 p { margin: 0 auto 32px; }

/* ── TABLE SCROLL ── */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.table-scroll table {
  border-collapse: collapse; width: 100%;
}
.table-scroll th, .table-scroll td {
  padding: 12px 16px; font-size: 0.88rem;
  text-align: left; border-bottom: 1px solid var(--line);
}
.table-scroll th {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--surface-2); color: var(--ink);
}
.table-scroll td { color: var(--ink-soft); }

/* ── IMAGES ── */
.img-container {
  max-width: clamp(900px,90%,1280px); margin: 0 auto;
}

/* ── VINE GROW DECORATION ── */
@keyframes vine-grow {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}
.vine-decor {
  position: absolute; pointer-events: none; opacity: 0.1;
  stroke: var(--accent); fill: none; stroke-width: 1.5;
  stroke-dasharray: 200; stroke-dashoffset: 200;
}
.vine-decor.is-in { animation: vine-grow 1.5s cubic-bezier(.2,.7,.2,1) forwards; }
@media (prefers-reduced-motion: reduce) {
  .vine-decor { stroke-dashoffset: 0; animation: none; }
}

/* ── BOUQUET BLOOM ── */
@keyframes bloom-in {
  0% { transform: scale(0.7) rotate(-8deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.bloom-reveal { opacity: 0; }
.bloom-reveal.is-in {
  animation: bloom-in 800ms cubic-bezier(.2,.7,.2,1) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .bloom-reveal { opacity: 1; animation: none; transform: none; }
}

/* ── GOLD SPARKLE ON HOVER ── */
@keyframes sparkle-pulse {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}
.sparkle {
  position: absolute; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; opacity: 0;
}
.card:hover .sparkle {
  animation: sparkle-pulse 600ms cubic-bezier(.2,.7,.2,1) var(--sd, 0ms) forwards;
}
@media (prefers-reduced-motion: reduce) { .card:hover .sparkle { animation: none; } }

/* ── FLOATING LEAF AMBIENT ── */
@keyframes leaf-drift {
  0% { transform: translate(0,0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.12; }
  90% { opacity: 0.12; }
  100% { transform: translate(var(--lx, 60px), var(--ly, 120px)) rotate(var(--lr, 180deg)); opacity: 0; }
}
.ambient-leaf {
  position: absolute; pointer-events: none;
  width: 14px; height: 20px;
  background: var(--accent-2); border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: leaf-drift var(--ldur, 12s) ease-in-out infinite;
  animation-delay: var(--ldel, 0s);
}
@media (prefers-reduced-motion: reduce) { .ambient-leaf { display: none; } }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--scale { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal, html.no-js .reveal--scale { opacity: 1; transform: none; }
.reveal--scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal--scale.is-in { opacity: 1; transform: none; }

/* ── SPLIT LAYOUTS ── */
.split-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px); align-items: start;
}
.split-2--center { align-items: center; }
.split-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}
@media (max-width: 768px) {
  .split-2 { grid-template-columns: 1fr; }
  .split-3 { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ── SITE MAP PAGE ── */
.sitemap-list { max-width: 600px; }
.sitemap-list li {
  padding: 8px 0; border-bottom: 1px solid var(--line);
}
.sitemap-list li a {
  color: var(--accent); font-size: 0.95rem;
}
.sitemap-list li a:hover { text-decoration: underline; }

/* ── WARM GLOW HOVER (flower theme) ── */
.testimonial {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.12), 0 0 16px rgba(232,160,191,0.08);
  border-color: var(--accent);
}
.palet-card {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms;
}
.palet-card:hover {
  border-color: var(--accent);
}
.team-card:hover {
  box-shadow: 0 8px 24px rgba(184,134,11,0.14), 0 0 16px rgba(232,160,191,0.06);
  border-color: var(--accent);
}

.process-step__num {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.process-step:hover .process-step__num {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(184,134,11,0.25);
}

.faq-item summary {
  transition: color 240ms, padding-left 240ms;
}
.faq-item summary:hover {
  color: var(--accent);
  padding-left: 8px;
}

.masonry__item {
  transition: border-color 280ms, box-shadow 280ms, transform 280ms cubic-bezier(.2,.7,.2,1);
}
.masonry__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.12);
}

.contact-row {
  border-radius: 6px;
}

.footer__links a {
  position: relative;
}
.footer__links a::before {
  content: ''; position: absolute; left: 0; bottom: 2px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.footer__links a:hover::before { width: 100%; }

/* ── STAGGER REVEAL CHILDREN ── */
.vitrin-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
.vitrin-grid > .reveal:nth-child(2) { transition-delay: 100ms; }
.vitrin-grid > .reveal:nth-child(3) { transition-delay: 200ms; }
.testimonials-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
.testimonials-grid > .reveal:nth-child(2) { transition-delay: 120ms; }
.testimonials-grid > .reveal:nth-child(3) { transition-delay: 240ms; }
.pkg-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
.pkg-grid > .reveal:nth-child(2) { transition-delay: 100ms; }
.pkg-grid > .reveal:nth-child(3) { transition-delay: 200ms; }
.process-step {
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial, .palet-card, .team-card, .pkg-card, .card, .masonry__item,
  .process-step__num, .btn-primary, .btn-ghost {
    transition: none !important;
  }
  .testimonial:hover, .palet-card:hover, .team-card:hover, .pkg-card:hover,
  .card:hover, .masonry__item:hover {
    transform: none;
  }
}

/* ── ENHANCED FOCUS STATES ── */
.btn-primary:focus-visible, .btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.catalog-filter:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── PRINT ── */
@media print {
  .site-header, .nav-toggle, .drawer, .drawer-backdrop,
  .cookie-banner, .marquee, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --header-h: 68px; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .hero__title { font-size: clamp(2rem,8vw,2.8rem); }
}
@media (max-width: 480px) {
  .cookie-banner { left: 8px; right: 8px; padding: 20px 16px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { flex: none; width: 100%; min-height: 48px; }
}

/* ── GOLD RULE DIVIDER ── */
.gold-rule {
  width: 80px; height: 2px; background: var(--accent);
  margin: 0 auto 24px; border: none;
}

/* page-header for sub-pages */
.page-header {
  padding: clamp(48px,8vw,80px) 0 clamp(32px,4vw,48px);
  text-align: center; background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.page-header__eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; display: block;
}
.page-header__title { margin-bottom: 12px; }
.page-header__sub {
  color: var(--ink-soft); font-size: 1rem; max-width: 52ch; margin: 0 auto;
}

/* manifesto / large quote block */
.manifesto {
  max-width: 680px; margin: 0 auto;
  text-align: center; padding: clamp(40px,6vw,72px) 0;
}
.manifesto__quote {
  font-family: 'Libre Baskerville', serif; font-style: italic;
  font-size: clamp(1.2rem,2.5vw,1.6rem);
  line-height: 1.8; color: var(--ink);
  position: relative;
}
.manifesto__quote::before {
  content: '"'; position: absolute; top: -20px; left: -16px;
  font-size: 4rem; color: var(--accent); opacity: 0.2;
  font-family: 'Libre Baskerville', serif; line-height: 1;
}
.manifesto__attr {
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.85rem; color: var(--accent); letter-spacing: 0.06em;
}

/* horizontal scroll snap strip */
.hscroll-strip {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 16px;
  scrollbar-width: thin;
}
.hscroll-strip > * {
  scroll-snap-align: start; flex-shrink: 0;
  width: clamp(260px, 30vw, 340px);
}
