/* Cilek Buketi Atolyesi. tr-TR. Velvet + chocolate + strawberry theme. */

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #140a0f;
}

:root {
  --c-bg: #14090e;
  --c-bg-2: #1d1017;
  --c-panel: #24131c;
  --c-panel-2: #2d1824;
  --c-line: #3a2330;
  --c-line-2: #4c2f3e;
  --c-ink: #f5ead8;
  --c-ink-2: #d6c6ae;
  --c-muted: #9a8876;
  --c-accent: #d4a574;
  --c-accent-2: #ecc599;
  --c-brand: #c94156;
  --c-brand-2: #a93346;
  --c-choc: #4a2817;
  --c-success: #7dbd8e;
  --c-success-bg: rgba(125,189,142,.12);
  --c-success-line: rgba(125,189,142,.45);
  --c-danger: #e37e7e;
  --c-danger-bg: rgba(227,126,126,.12);
  --c-danger-line: rgba(227,126,126,.45);
  --c-focus: #ecc599;
  --c-status-bg: rgba(212,165,116,.08);
  --c-status-line: rgba(212,165,116,.35);

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --shadow-1: 0 2px 8px rgba(0,0,0,.35);
  --shadow-2: 0 14px 36px rgba(0,0,0,.45);
  --shadow-3: 0 24px 60px rgba(0,0,0,.55);
  --shadow-glow: 0 10px 36px rgba(201,65,86,.35);

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 80px;

  --container: 1180px;
  --header-h: 68px;
  --scrollbar-w: 0px;

  --font-serif: 'Playfair Display', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --ease-smooth: cubic-bezier(.2, .7, .2, 1);
  --ease-warm: cubic-bezier(.33, 1.2, .3, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.55, .06, .68, .19);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background:
    radial-gradient(1200px 620px at 82% -8%, rgba(201,65,86,.18), transparent 60%),
    radial-gradient(900px 520px at -8% 22%, rgba(212,165,116,.08), transparent 60%),
    linear-gradient(180deg, #0f070b 0%, var(--c-bg) 45%, #0c060a 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.scroll-locked {
  overflow: hidden;
  padding-right: var(--scrollbar-w);
  touch-action: none;
  overscroll-behavior: none;
}

img { max-width: 100%; display: block; }

a { color: var(--c-accent-2); text-decoration: none; }
a:hover { color: var(--c-accent); }

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: .2px;
  color: var(--c-ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.15rem); line-height: 1.2; }
h3 { font-size: 1.2rem; line-height: 1.3; }
p { margin: 0 0 1em; color: var(--c-ink-2); }
ul, ol { margin: 0 0 1em; padding-left: 1.25rem; color: var(--c-ink-2); }
li { margin-bottom: .35em; }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 2rem 0; }
small { color: var(--c-muted); }

/* Layout wrapper */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 2vw, 1.75rem);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  z-index: 100;
  transform: translateY(calc(-100% - 24px));
  opacity: 0;
  pointer-events: none;
  background: var(--c-accent);
  color: #14090e;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 220ms var(--ease-smooth), opacity 200ms var(--ease-smooth);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Site header (identical across all pages) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20,10,15,.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--c-ink);
  text-decoration: none;
  transition: color 220ms var(--ease-smooth);
}
.brand:hover { color: var(--c-accent-2); text-decoration: none; }
.brand-name { font-weight: 600; letter-spacing: .2px; }
.brand-mark {
  width: 34px;
  height: 37px;
  flex: 0 0 34px;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
  transform-origin: 50% 60%;
  transition:
    transform 420ms var(--ease-warm),
    filter 420ms var(--ease-smooth);
}
.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.08);
  filter:
    drop-shadow(0 6px 14px rgba(201,65,86,.4))
    drop-shadow(0 0 2px rgba(236,197,153,.35));
}
.brand-mark .brand-shine {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition: opacity 420ms var(--ease-smooth), transform 600ms var(--ease-warm);
  opacity: .85;
}
.brand:hover .brand-mark .brand-shine {
  opacity: 1;
  transform: scale(1.18);
}
.brand-mark .brand-leaf {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transition: transform 420ms var(--ease-warm);
}
.brand:hover .brand-mark .brand-leaf {
  transform: rotate(4deg) translateY(-.4px);
}
.brand-mark .brand-drip {
  transition: opacity 420ms var(--ease-smooth);
}
.brand:hover .brand-mark .brand-drip {
  opacity: .85;
}
.cba-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.nav-toggle {
  margin-left: auto;
  display: none;
  background: transparent;
  border: 1px solid var(--c-line-2);
  color: var(--c-ink);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--c-ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 260ms var(--ease-smooth), opacity 180ms var(--ease-smooth);
}

.main-nav {
  margin-left: auto;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--c-ink-2);
  font-size: .95rem;
  border-radius: 8px;
  transition: color 220ms var(--ease-smooth), background 220ms var(--ease-smooth);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  transition: left 280ms var(--ease-smooth), right 280ms var(--ease-smooth);
}
.nav-link:hover { color: var(--c-ink); text-decoration: none; }
.nav-link:hover::after,
.nav-link.is-active::after,
.nav-link[aria-current="page"]::after {
  left: 10px;
  right: 10px;
}
.nav-link.is-active,
.nav-link[aria-current="page"] { color: var(--c-ink); }
.nav-link-contact { color: var(--c-accent); font-weight: 600; }
.nav-link-contact:hover { color: var(--c-accent-2); }

@media (max-width: 960px) {
  .site-header .wrap { padding-inline: 1.25rem; }
  .brand, .nav-toggle { position: relative; z-index: 55; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 45;
    background: linear-gradient(180deg, #1a0e14 0%, #0f070b 100%);
    padding: calc(var(--header-h) + 24px) 24px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 260ms var(--ease-smooth),
      transform 260ms var(--ease-smooth),
      visibility 0s linear 260ms;
  }
  .main-nav.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition:
      opacity 260ms var(--ease-smooth),
      transform 260ms var(--ease-smooth),
      visibility 0s linear 0s;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-link {
    display: block;
    padding: 14px 12px;
    font-size: 1.05rem;
    border-bottom: 1px dashed var(--c-line);
  }
  .nav-link::after { display: none; }
  .nav-link.is-active,
  .nav-link[aria-current="page"] {
    background: rgba(212,165,116,.1);
    border-left: 3px solid var(--c-accent);
    padding-left: 15px;
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(201,65,86,.22), transparent 60%);
  pointer-events: none;
  filter: blur(6px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(212,165,116,.1);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,165,116,.3);
}
.hero h1 { margin-top: 18px; }
.hero-lead { font-size: 1.1rem; color: var(--c-ink-2); max-width: 560px; }
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-actions-center { justify-content: center; margin-top: 18px; }

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line-2);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  background: linear-gradient(160deg, #2d1823 0%, #1c1017 100%);
  margin: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(calc(var(--px, 0) * 8px), calc(var(--py, 0) * 8px), 0) scale(1.04);
  transition: transform 600ms var(--ease-smooth), filter 900ms var(--ease-smooth);
  filter: saturate(1.02);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,10,15,.55) 100%);
  pointer-events: none;
}

@media (max-width: 880px) {
  .hero { padding: 48px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { max-width: 440px; margin-inline: auto; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  line-height: 1;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 220ms var(--ease-smooth),
    background 220ms var(--ease-smooth),
    color 220ms var(--ease-smooth),
    box-shadow 260ms var(--ease-smooth),
    filter 220ms var(--ease-smooth);
}
.btn:hover { text-decoration: none; }
.btn[disabled] { opacity: .65; cursor: not-allowed; }

.btn-primary {
  background: linear-gradient(135deg, var(--c-accent) 0%, #b88557 100%);
  color: #1a0d13;
  border: none;
  box-shadow:
    0 6px 18px rgba(201,65,86,.22),
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -2px 0 rgba(0,0,0,.14);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--c-accent-2) 0%, var(--c-accent) 100%);
  color: #1a0d13;
  box-shadow:
    0 0 0 4px rgba(201,65,86,.28),
    0 18px 40px rgba(201,65,86,.5),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -2px 0 rgba(0,0,0,.18);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-strong {
  background: linear-gradient(135deg, #3d2330 0%, #271620 100%);
  color: var(--c-ink);
  border: 1px solid var(--c-line-2);
  box-shadow: 0 4px 14px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
}
.btn-strong:hover {
  color: var(--c-ink);
  background: linear-gradient(135deg, #4a2a3b 0%, #321a28 100%);
  box-shadow: 0 0 0 4px rgba(212,165,116,.18), 0 10px 24px rgba(0,0,0,.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-line-2);
}
.btn-secondary:hover {
  color: var(--c-ink);
  background: rgba(255,255,255,.04);
  border-color: rgba(212,165,116,.45);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-line-2);
}
.btn-ghost:hover {
  color: var(--c-ink);
  background: rgba(255,255,255,.04);
}

.btn-block { width: 100%; }

/* Sections */
.section {
  padding: 76px 0;
  border-bottom: 1px solid var(--c-line);
}
.section-compact { padding: 48px 0; }
.section-title { max-width: 760px; margin-bottom: 32px; }
.section-title .eyebrow {
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
}
.section-title p { color: var(--c-ink-2); }

/* Cards grid */
.grid { display: grid; gap: 20px; }
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  container-type: inline-size;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  container-type: inline-size;
}

.card {
  background: linear-gradient(180deg, var(--c-panel) 0%, var(--c-panel-2) 100%);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-1);
  transition:
    transform 260ms var(--ease-warm),
    border-color 260ms var(--ease-smooth),
    box-shadow 260ms var(--ease-smooth);
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,165,116,.5);
  box-shadow: var(--shadow-2);
}
.card h3 { margin-top: 0; }
.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,165,116,.15);
  color: var(--c-accent);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 10px;
  border: 1px solid rgba(212,165,116,.35);
}

/* Card image */
.card-img {
  margin: -22px -22px 16px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(160deg, #2a1620, #1a0e14);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-smooth), filter 600ms var(--ease-smooth);
}
.card:hover .card-img img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

/* Themed markers: chocolate-covered strawberry */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  position: relative;
  padding: 10px 0 10px 36px;
  border-bottom: 1px dashed var(--c-line);
  color: var(--c-ink-2);
}
.info-list li:last-child { border-bottom: 0; }
.info-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  width: 16px;
  height: 19px;
  border-radius: 48% 48% 46% 46% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 32% 22%, #ffd7a2 0 14%, transparent 15%),
    linear-gradient(160deg, #3d1f12 0%, #2a1408 60%, #1b0c05 100%);
  box-shadow:
    inset 0 -3px 4px rgba(0,0,0,.55),
    0 2px 6px rgba(0,0,0,.35);
  transition: transform 360ms var(--ease-warm), filter 360ms var(--ease-smooth);
}
.info-list li:nth-child(2n)::before {
  background:
    radial-gradient(circle at 32% 22%, #ffeacb 0 12%, transparent 13%),
    linear-gradient(160deg, #d9b27a 0%, #a87c4a 55%, #6a4522 100%);
}
.info-list li:nth-child(3n)::before {
  background:
    radial-gradient(circle at 32% 22%, #ffd7a2 0 14%, transparent 15%),
    linear-gradient(160deg, #c94156 0%, #6a1a28 100%);
}
.info-list li:hover::before {
  transform: rotate(-8deg) scale(1.08);
  filter: saturate(1.15);
}

/* Price list */
.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 12px 0 18px;
  padding: 0;
  list-style: none;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--c-line-2);
  border-radius: 10px;
  background: rgba(255,255,255,.015);
}
.price-list li::before { content: none; }
.price-list li b {
  color: var(--c-ink);
  font-family: var(--font-serif);
  font-weight: 600;
}
.price-list li span {
  color: var(--c-accent-2);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.disclaimer {
  font-size: .92rem;
  color: var(--c-muted);
  background: rgba(224,163,79,.06);
  border: 1px solid rgba(224,163,79,.25);
  padding: 12px 14px;
  border-radius: 10px;
}

/* Configurator: chocolate-and-caramel themed adaptive card */
.config {
  position: relative;
  background:
    radial-gradient(circle at 18% -5%, rgba(201,65,86,.16), transparent 55%),
    radial-gradient(circle at 85% 110%, rgba(212,165,116,.12), transparent 55%),
    linear-gradient(160deg, #2a1620 0%, #1b0f16 100%);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 30px);
  box-shadow:
    var(--shadow-2),
    inset 0 1px 0 rgba(255,255,255,.04);
  isolation: isolate;
}

/* Gradient ring border via mask technique (adaptive to any size) */
.config::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(184,133,87,.65) 0%,
    rgba(74,40,23,.5) 26%,
    rgba(201,65,86,.4) 52%,
    rgba(74,40,23,.55) 78%,
    rgba(184,133,87,.65) 100%
  );
  background-size: 260% 260%;
  background-position: 0% 50%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  animation: cba-rim-flow 16s var(--ease-smooth) infinite;
  transition: filter 500ms var(--ease-smooth);
}
@keyframes cba-rim-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Caramel shine sweep across the surface on hover/focus */
.config::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 38%,
    rgba(236,197,153,.1) 48%,
    rgba(255,225,180,.18) 50%,
    rgba(236,197,153,.1) 52%,
    transparent 62%
  );
  background-size: 240% 100%;
  background-position: 130% 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  transition: opacity 420ms var(--ease-smooth);
}
.config:hover::before,
.config:focus-within::before {
  filter: brightness(1.3) saturate(1.15);
  animation-duration: 8s;
}
.config:hover::after,
.config:focus-within::after {
  opacity: 1;
  animation: cba-config-shine 4.2s var(--ease-smooth) infinite;
}

@keyframes cba-config-shine {
  0%   { background-position: 130% 0; }
  55%  { background-position: -30% 0; }
  100% { background-position: -30% 0; }
}

.config-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) {
  .config-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Reset default fieldset styling (removes the grey groove border) */
.opt-group {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}
.opt-group > label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px 8px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 10px;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: .82rem;
}
.opt-group > label::before {
  content: "";
  width: 9px;
  height: 11px;
  border-radius: 48% 48% 46% 46% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 32% 25%, #ffd7a2 0 22%, transparent 25%),
    linear-gradient(160deg, #8a3f22 0%, #4a2817 55%, #1d0a04 100%);
  box-shadow: inset 0 -2px 3px rgba(0,0,0,.5), 0 2px 4px rgba(0,0,0,.35);
  flex: 0 0 9px;
  transition: transform 360ms var(--ease-warm);
}
.opt-group > label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    rgba(212,165,116,.7) 0%,
    rgba(201,65,86,.55) 45%,
    rgba(74,40,23,.5) 80%,
    transparent 100%
  );
  transform: scaleX(.3);
  transform-origin: left center;
  opacity: .6;
  transition: transform 480ms var(--ease-smooth), opacity 360ms var(--ease-smooth);
}
.opt-group:focus-within > label::after,
.opt-group:hover > label::after {
  transform: scaleX(1);
  opacity: 1;
}
.opt-group:focus-within > label::before,
.opt-group:hover > label::before {
  transform: rotate(-10deg) scale(1.12);
}

.opt-row { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { position: relative; }
.opt input[type="radio"],
.opt input[type="checkbox"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.opt span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  min-height: 40px;
  border-radius: 11px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(0,0,0,.14) 100%) padding-box,
    linear-gradient(135deg,
      rgba(184,133,87,.55) 0%,
      rgba(74,40,23,.4) 55%,
      rgba(201,65,86,.32) 100%
    ) border-box;
  color: var(--c-ink-2);
  cursor: pointer;
  font-size: .95rem;
  overflow: hidden;
  transition:
    transform 280ms var(--ease-warm),
    color 220ms var(--ease-smooth),
    background 320ms var(--ease-smooth),
    box-shadow 280ms var(--ease-smooth);
}
/* Caramel glaze on hover */
.opt span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(236,197,153,0) 0%,
    rgba(212,165,116,.14) 45%,
    rgba(201,65,86,.1) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-smooth);
}
/* Chocolate sheen sweep on hover */
.opt span::after {
  content: "";
  position: absolute;
  left: -45%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,225,180,.28) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  transition: left 760ms var(--ease-smooth), opacity 280ms var(--ease-smooth);
}
.opt:hover span {
  color: var(--c-ink);
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(212,165,116,.1) 0%, rgba(0,0,0,.16) 100%) padding-box,
    linear-gradient(135deg,
      rgba(212,165,116,.8) 0%,
      rgba(201,65,86,.55) 45%,
      rgba(184,133,87,.75) 100%
    ) border-box;
  box-shadow:
    0 6px 18px rgba(74,40,23,.55),
    0 0 0 3px rgba(212,165,116,.14);
}
.opt:hover span::before { opacity: .7; }
.opt:hover span::after  { opacity: 1; left: 140%; }

.opt input:checked ~ span {
  color: #14090e;
  background:
    linear-gradient(135deg, var(--c-accent-2) 0%, var(--c-accent) 55%, #b88557 100%) padding-box,
    linear-gradient(135deg, #ffe1b4 0%, #b88557 55%, #4a2817 100%) border-box;
  box-shadow:
    0 0 0 3px rgba(201,65,86,.24),
    0 10px 24px rgba(201,65,86,.38),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -2px 0 rgba(0,0,0,.2);
  animation: cba-opt-pop 460ms var(--ease-warm);
}
.opt input:checked ~ span::before { opacity: 0; }
.opt input:focus-visible ~ span {
  outline: 3px solid var(--c-focus);
  outline-offset: 3px;
}

@keyframes cba-opt-pop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.09) translateY(-2px); }
  60%  { transform: scale(.985) translateY(0); }
  100% { transform: scale(1); }
}

/* Summary panel: recessed-in-chocolate feel */
.config-summary {
  position: relative;
  background:
    radial-gradient(circle at 50% 110%, rgba(201,65,86,.18), transparent 55%),
    radial-gradient(circle at 0% 0%, rgba(184,133,87,.1), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.28) 100%);
  border-radius: 14px;
  padding: 22px 20px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255,225,180,.06),
    inset 0 -1px 0 rgba(0,0,0,.4),
    inset 0 0 36px rgba(74,40,23,.35),
    0 12px 32px rgba(0,0,0,.35);
}
.config-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(
    135deg,
    rgba(184,133,87,.72) 0%,
    rgba(74,40,23,.45) 28%,
    rgba(201,65,86,.45) 55%,
    rgba(74,40,23,.55) 82%,
    rgba(184,133,87,.72) 100%
  );
  background-size: 260% 260%;
  background-position: 0% 50%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  animation: cba-rim-flow 14s var(--ease-smooth) infinite;
}
/* Rotating caramel ambient glow behind the price */
.config-summary::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60%;
  width: 180%;
  height: 180%;
  transform: translateX(-50%) rotate(0deg);
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(212,165,116,0) 0deg,
    rgba(212,165,116,.32) 40deg,
    rgba(201,65,86,.28) 95deg,
    rgba(212,165,116,0) 160deg,
    rgba(212,165,116,0) 360deg
  );
  filter: blur(28px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  animation: cba-summary-glow 16s linear infinite;
}
@keyframes cba-summary-glow {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}
.config-summary > * { position: relative; z-index: 2; }
.config-summary h3 {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--c-accent);
}
.config-summary dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  margin: 0;
}
.config-summary dt {
  position: relative;
  padding-left: 16px;
  color: var(--c-muted);
  font-size: .88rem;
}
.config-summary dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 9px;
  border-radius: 48% 48% 46% 46% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 32% 25%, #ffd7a2 0 25%, transparent 28%),
    linear-gradient(160deg, #3d1f12 0%, #1d0a04 100%);
  box-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.config-summary dd { margin: 0; color: var(--c-ink); font-weight: 500; }

.config-price {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--c-line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.config-price .label {
  color: var(--c-muted);
  font-size: .82rem;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.config-price .val {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  color: var(--c-accent-2);
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 14px rgba(212,165,116,.3),
    0 1px 0 rgba(0,0,0,.35);
  animation: cba-price-pulse 3.8s var(--ease-smooth) infinite;
}
.config-summary .btn-block { margin-top: 16px; }

@keyframes cba-price-pulse {
  0%, 100% { text-shadow: 0 0 14px rgba(212,165,116,.28), 0 1px 0 rgba(0,0,0,.35); }
  50%      { text-shadow: 0 0 24px rgba(236,197,153,.55), 0 0 2px rgba(255,225,180,.4), 0 1px 0 rgba(0,0,0,.35); }
}

@media (prefers-reduced-motion: reduce) {
  .config::before,
  .config::after,
  .config-summary::before,
  .config-summary::after,
  .config-price .val,
  .opt input:checked ~ span {
    animation: none !important;
  }
  .config:hover::before,
  .config:focus-within::before { background-position: 0% 50% !important; }
}

/* FAQ accordion with grid-template-rows */
.faq { max-width: 900px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--c-line-2);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 220ms var(--ease-smooth), background 220ms var(--ease-smooth);
}
.faq-item.open { border-color: rgba(212,165,116,.45); background: rgba(255,255,255,.035); }

.faq-q {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  gap: 12px;
  background: transparent;
  border: 0;
  color: var(--c-ink);
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}
.faq-q-text { flex: 1 1 auto; }
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.faq-icon-h,
.faq-icon-v {
  position: absolute;
  background: var(--c-accent);
  border-radius: 2px;
  transition: transform 280ms var(--ease-smooth);
}
.faq-icon-h { left: 0; right: 0; top: calc(50% - 1px); height: 2px; }
.faq-icon-v { top: 0; bottom: 0; left: calc(50% - 1px); width: 2px; }
.faq-item.open .faq-icon-v { transform: scaleY(0); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease-smooth);
}
.faq-a > .faq-a-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 18px;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > .faq-a-inner { padding: 0 18px 16px; }

/* Contact + Form */
.contact-intro { max-width: 760px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: var(--s-7);
}
.contact-card {
  background: var(--c-panel);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-1);
  transition: transform 260ms var(--ease-warm), border-color 260ms var(--ease-smooth);
}
.contact-card:hover { transform: translateY(-2px); border-color: rgba(212,165,116,.45); }
.contact-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,165,116,.1);
  border: 1px solid rgba(212,165,116,.25);
  color: var(--c-accent);
}
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card h3 { margin: 0; font-size: 1.05rem; }
.contact-card p { margin: 0; color: var(--c-ink); }
.contact-card small { color: var(--c-muted); }
.contact-card a:not(.btn) { color: var(--c-ink); }

.form-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px) {
  .form-section { grid-template-columns: 1fr; }
}

.form-hints {
  background: linear-gradient(180deg, var(--c-panel) 0%, var(--c-panel-2) 100%);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
@media (max-width: 980px) {
  .form-hints { position: static; }
}
.form-hints h3 { margin-top: 0; }
.form-hints ul { padding-left: 1.1rem; }
.form-hints li { margin-bottom: .4em; }

.form {
  background: var(--c-panel);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  padding: 22px;
}
.form-head { margin-bottom: 14px; }
.form-head h2 { margin-top: 0; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 6px;
  font-size: .95rem;
}
.form-row .req { color: var(--c-brand); }
.form-row .opt-tag { color: var(--c-muted); font-weight: 400; font-size: .82rem; margin-left: 4px; }
.form-row .hint { display: block; color: var(--c-muted); font-size: .85rem; margin-top: 4px; }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0,0,0,.28);
  border: 1px solid var(--c-line-2);
  color: var(--c-ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 180ms var(--ease-smooth), background 180ms var(--ease-smooth);
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form textarea:focus {
  border-color: var(--c-accent);
  background: rgba(0,0,0,.38);
}

.form .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--c-ink-2);
  font-size: .95rem;
}
.form .check input { margin-top: 4px; }
.form .hp {
  position: absolute;
  left: -10000px;
  top: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form status: animated max-height, not intrusive until non-empty */
.form-status {
  max-height: 0;
  opacity: 0;
  padding: 0 var(--s-4);
  margin-top: var(--s-3);
  overflow: hidden;
  border-radius: 10px;
  border-left: 3px solid transparent;
  color: var(--c-ink-2);
  background: var(--c-status-bg);
  transform: translateY(-4px);
  transition:
    max-height 280ms var(--ease-smooth),
    opacity 240ms var(--ease-smooth),
    transform 240ms var(--ease-smooth),
    padding 240ms var(--ease-smooth),
    background 240ms var(--ease-smooth),
    border-color 240ms var(--ease-smooth);
}
.form-status:not(:empty) {
  max-height: 8em;
  opacity: 1;
  transform: none;
  padding: var(--s-3) var(--s-4);
  border-left-color: var(--c-status-line);
}
.form-status.ok {
  color: #cfeedb;
  background: var(--c-success-bg);
  border-left-color: var(--c-success);
}
.form-status.err {
  color: #f3c9c9;
  background: var(--c-danger-bg);
  border-left-color: var(--c-danger);
}

/* Site footer */
.site-footer {
  margin-top: 0;
  padding: 48px 0 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 100%);
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: var(--c-ink-2); }
.footer-col a:hover { color: var(--c-accent-2); }
.footer-col .lead-text { margin-top: 12px; color: var(--c-ink-2); }
.foot-bottom {
  border-top: 1px solid var(--c-line);
  padding-top: 18px;
  color: var(--c-muted);
  font-size: .88rem;
  text-align: center;
}
.foot-bottom p { margin: 0; color: var(--c-muted); }
.foot-bottom-links { margin-top: 6px; }
.foot-bottom-links a { color: var(--c-muted); margin: 0 8px; }

/* Cookie banner + settings */
.cookie-banner[hidden],
.cookie-settings[hidden] { display: none !important; }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, #24131c 0%, #1a0f14 100%);
  border: 1px solid var(--c-line-2);
  border-radius: 14px;
  box-shadow: var(--shadow-3);
  padding: 18px 20px;
  color: var(--c-ink-2);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  transition:
    opacity 320ms var(--ease-smooth),
    transform 320ms var(--ease-smooth);
}
.cookie-banner.visible { opacity: 1; transform: none; }

.cookie-banner h3 { margin: 0 0 8px; font-size: 1.1rem; }
.cookie-banner p { margin: 0 0 12px; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions-end { margin-top: 14px; }

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8,4,6,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 260ms var(--ease-smooth);
}
.cookie-settings.visible { opacity: 1; }
.cookie-settings-panel {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, #24131c 0%, #190e14 100%);
  border: 1px solid var(--c-line-2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-3);
  transform: translateY(10px) scale(.98);
  transition: transform 320ms var(--ease-smooth);
}
.cookie-settings.visible .cookie-settings-panel { transform: none; }

.cookie-cat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--c-line);
}
.cookie-cat:last-child { border-bottom: 0; }
.cookie-cat .cat-label { flex: 1 1 auto; }
.cookie-cat .cat-label b { color: var(--c-ink); display: block; }
.cookie-cat .cat-label small { color: var(--c-muted); }

/* Switch (sibling-span pattern) */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex: 0 0 44px;
}
.switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #3a2430;
  transition: background 200ms var(--ease-smooth);
}
.switch-knob {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d6c6ae;
  transition: transform 260ms var(--ease-warm), background 200ms var(--ease-smooth);
}
.switch input:checked ~ .switch-track { background: var(--c-accent); }
.switch input:checked ~ .switch-knob {
  transform: translateX(20px);
  background: #1a0d13;
}
.switch input:disabled ~ .switch-track { opacity: .55; }
.switch input:disabled { cursor: not-allowed; }

/* Inline link pattern (excluding buttons). Scoped to content blocks only,
   NOT to nav/footer/brand, even on pages with body.legal class. */
.prose a:not(.btn),
.card p a:not(.btn),
.disclaimer a:not(.btn),
.section-sub a:not(.btn),
.note a:not(.btn),
.contact-card a:not(.btn),
.form a:not(.btn),
.form-hints a:not(.btn) {
  color: var(--c-accent-2);
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 50% 100%;
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  padding-bottom: 1px;
  transition:
    background-size 320ms var(--ease-smooth),
    background-position 320ms var(--ease-smooth),
    color 220ms var(--ease-smooth);
}
.prose a:not(.btn):hover,
.card p a:not(.btn):hover,
.disclaimer a:not(.btn):hover,
.section-sub a:not(.btn):hover,
.note a:not(.btn):hover,
.contact-card a:not(.btn):hover,
.form a:not(.btn):hover,
.form-hints a:not(.btn):hover {
  background-size: 100% 1.5px;
  background-position: 0% 100%;
  color: var(--c-accent);
  text-decoration: none;
}

/* 404 + center card */
.center-card {
  max-width: 640px;
  margin: 48px auto;
  padding: 40px 28px;
  background: var(--c-panel);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  text-align: center;
}

.prose p, .prose li { color: var(--c-ink-2); }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }

/* Sitemap cards */
.sitemap-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.sitemap-card {
  background: var(--c-panel);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 260ms var(--ease-warm), border-color 260ms var(--ease-smooth), box-shadow 260ms var(--ease-smooth);
}
.sitemap-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,165,116,.45);
  box-shadow: var(--shadow-1);
}
.sitemap-card a { color: var(--c-ink); font-weight: 600; }
.sitemap-card small { display: block; color: var(--c-muted); margin-top: 6px; }

/* Reveal animations (attributes applied by JS only) */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal="right"] { transform: translateX(-20px); }
[data-reveal="left"] { transform: translateX(20px); }
[data-reveal="zoom"] { transform: scale(.96); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Loading stagger: only when JS is available (.js class) */
.js body:not(.is-loaded) [data-animasyon] { opacity: 0; }
.js body.is-loaded [data-animasyon="eyebrow"] { animation: cba-eyebrow 620ms var(--ease-out) both; animation-delay: 120ms; }
.js body.is-loaded [data-animasyon="h1"] { animation: cba-bloom 780ms var(--ease-warm) 220ms both, cba-title-shift 9s var(--ease-smooth) 1100ms infinite; }
.js body.is-loaded [data-animasyon="lead"] { animation: cba-rise 640ms var(--ease-out) both; animation-delay: 360ms; }
.js body.is-loaded [data-animasyon="cta"] { animation: cba-shelf 680ms var(--ease-warm) both; animation-delay: 480ms; }
.js body.is-loaded [data-animasyon="cta-2"] { animation: cba-shelf 680ms var(--ease-warm) both; animation-delay: 560ms; }
.js body.is-loaded [data-animasyon="note"] { animation: cba-rise 640ms var(--ease-out) both; animation-delay: 700ms; }
.js body.is-loaded [data-animasyon="hero-img"] { animation: cba-settle 900ms var(--ease-out) both; animation-delay: 240ms; }
.js body.is-loaded [data-animasyon="mark"] { animation: cba-stamp 720ms var(--ease-warm) both; animation-delay: 80ms; }
.js body.is-loaded [data-animasyon="nav-item"] { animation: cba-nav-in 520ms var(--ease-out) both; }
.js body.is-loaded [data-animasyon="nav-item"]:nth-child(1) { animation-delay: 140ms; }
.js body.is-loaded [data-animasyon="nav-item"]:nth-child(2) { animation-delay: 200ms; }
.js body.is-loaded [data-animasyon="nav-item"]:nth-child(3) { animation-delay: 260ms; }
.js body.is-loaded [data-animasyon="nav-item"]:nth-child(4) { animation-delay: 320ms; }
.js body.is-loaded [data-animasyon="nav-item"]:nth-child(5) { animation-delay: 380ms; }
.js body.is-loaded [data-animasyon="nav-item"]:nth-child(6) { animation-delay: 440ms; }

@keyframes cba-eyebrow {
  from { opacity: 0; transform: translateY(-8px); letter-spacing: 3px; }
  to { opacity: 1; transform: none; letter-spacing: 2px; }
}
@keyframes cba-bloom {
  0% { opacity: 0; transform: scale(.96); filter: saturate(.8); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: none; filter: saturate(1); }
}
@keyframes cba-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes cba-shelf {
  0% { opacity: 0; transform: translateY(18px) rotate(-1.5deg); }
  60% { transform: translateY(-2px) rotate(.4deg); }
  100% { opacity: 1; transform: none; }
}
@keyframes cba-settle {
  0% { opacity: 0; transform: scale(.98); filter: saturate(.7); }
  100% { opacity: 1; transform: scale(1.04); filter: saturate(1.02); }
}
@keyframes cba-stamp {
  0% { opacity: 0; transform: rotate(-18deg) scale(.6); }
  65% { transform: rotate(5deg) scale(1.08); }
  100% { opacity: 1; transform: none; }
}
@keyframes cba-nav-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal],
  [data-animasyon] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .js body:not(.is-loaded) [data-animasyon] { opacity: 1 !important; }
}

/* ============ ADVANCED THEMED EFFECTS ============ */

/* Scroll progress bar (gold to berry to caramel) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-brand) 50%, var(--c-accent-2) 100%);
  box-shadow: 0 0 12px rgba(212,165,116,.45), 0 0 20px rgba(201,65,86,.3);
  pointer-events: none;
  opacity: 0;
  transform-origin: left center;
  transition: opacity 320ms var(--ease-smooth);
}
.scroll-progress.is-active { opacity: 1; }
.scroll-progress::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -4px;
  width: 12px;
  height: 10px;
  border-radius: 48% 48% 46% 46% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 32% 25%, #ffd7a2 0 22%, transparent 25%),
    linear-gradient(160deg, #c94156, #6a1a28);
  box-shadow: 0 2px 6px rgba(201,65,86,.55);
  opacity: .9;
}

/* Hero h1 gradient shimmer */
.hero h1 {
  background: linear-gradient(
    100deg,
    #f5ead8 0%,
    #ecc599 28%,
    #c94156 52%,
    #ecc599 78%,
    #f5ead8 100%
  );
  background-size: 220% auto;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: cba-title-shift 9s var(--ease-smooth) infinite;
}
@keyframes cba-title-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating chocolate drops over hero */
.hero-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-drop {
  position: absolute;
  top: -6%;
  width: 10px;
  height: 13px;
  border-radius: 48% 48% 46% 46% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 32% 25%, #ffd7a2 0 20%, transparent 23%),
    linear-gradient(160deg, #4a2817 0%, #1d0a04 100%);
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
  animation: cba-drop-fall 9s linear infinite;
  will-change: transform, opacity;
}
.hero-drop.caramel {
  background:
    radial-gradient(circle at 32% 25%, #ffeacb 0 18%, transparent 22%),
    linear-gradient(160deg, #d9b27a 0%, #6a4522 100%);
}
.hero-drop.berry {
  background:
    radial-gradient(circle at 32% 25%, #ffd7a2 0 20%, transparent 23%),
    linear-gradient(160deg, #c94156 0%, #6a1a28 100%);
}
.hero-drop:nth-child(1) { left: 5%;  animation-delay: -1s;  animation-duration: 9.5s; --s: .6; }
.hero-drop:nth-child(2) { left: 14%; animation-delay: -4.2s;animation-duration: 11s;  --s: 1; }
.hero-drop:nth-child(3) { left: 26%; animation-delay: -7s;  animation-duration: 8s;   --s: .7; }
.hero-drop:nth-child(4) { left: 38%; animation-delay: -2.4s;animation-duration: 10s;  --s: .85; }
.hero-drop:nth-child(5) { left: 48%; animation-delay: -5.5s;animation-duration: 9s;   --s: .65; }
.hero-drop:nth-child(6) { left: 60%; animation-delay: -3.2s;animation-duration: 12s;  --s: 1.1; }
.hero-drop:nth-child(7) { left: 72%; animation-delay: -6.5s;animation-duration: 10.5s;--s: .75; }
.hero-drop:nth-child(8) { left: 84%; animation-delay: -1.5s;animation-duration: 13s;  --s: .9; }
.hero-drop:nth-child(9) { left: 93%; animation-delay: -8s;  animation-duration: 11.5s;--s: .7; }

@keyframes cba-drop-fall {
  0%   { transform: translate3d(0, -30px, 0) scale(var(--s, 1)) rotate(-6deg); opacity: 0; }
  10%  { opacity: .55; }
  60%  { transform: translate3d(4px, 60vh, 0) scale(var(--s, 1)) rotate(8deg); opacity: .42; }
  95%  { opacity: .15; }
  100% { transform: translate3d(8px, 95vh, 0) scale(var(--s, 1)) rotate(14deg); opacity: 0; }
}

/* 3D tilt on product cards */
.grid-3 .card {
  transform-style: preserve-3d;
  transform:
    perspective(900px)
    rotateX(calc(var(--tilt-x, 0) * 1deg))
    rotateY(calc(var(--tilt-y, 0) * 1deg))
    translateY(var(--tilt-lift, 0px));
  transition:
    transform 320ms var(--ease-smooth),
    border-color 260ms var(--ease-smooth),
    box-shadow 260ms var(--ease-smooth);
  will-change: transform;
}
.grid-3 .card:hover {
  --tilt-lift: -4px;
  border-color: rgba(212,165,116,.5);
  box-shadow: var(--shadow-2);
}
/* Tilt highlight sweep */
.grid-3 .card {
  position: relative;
}
.grid-3 .card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mx-p, 50%) var(--my-p, 50%),
    rgba(236,197,153,.14) 0%,
    rgba(236,197,153,0) 45%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-smooth);
  mix-blend-mode: screen;
}
.grid-3 .card:hover::after { opacity: 1; }

/* Magnetic primary CTA (JS sets --mx / --my) */
.btn-primary {
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
}
.btn-primary:hover {
  transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 1px), 0);
}

/* Nav link gentle caramel glow on hover */
.nav-link {
  transition: color 220ms var(--ease-smooth), background 220ms var(--ease-smooth), text-shadow 260ms var(--ease-smooth);
}
.nav-link:hover { text-shadow: 0 0 14px rgba(212,165,116,.4); }

/* Hero media drip decoration */
.hero-media::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  background: linear-gradient(
    180deg,
    rgba(74,40,23,.0) 0%,
    rgba(74,40,23,.35) 60%,
    rgba(74,40,23,.55) 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: .75;
}

/* FAQ ripple on open */
.faq-item.open .faq-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(212,165,116,.4);
  animation: cba-ripple 620ms var(--ease-out) forwards;
  pointer-events: none;
}
@keyframes cba-ripple {
  0%   { transform: scale(.6); opacity: .8; }
  100% { transform: scale(2); opacity: 0; }
}

/* Prefers reduced motion overrides for advanced effects */
@media (prefers-reduced-motion: reduce) {
  .hero-drops { display: none; }
  .hero h1 {
    animation: none;
    color: var(--c-ink);
    -webkit-text-fill-color: currentColor;
    background: none;
  }
  .grid-3 .card,
  .btn-primary {
    transform: none !important;
  }
  .scroll-progress { display: none; }
}

/* Visually hidden utility */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Legal body (prose pages) */
.legal .prose { max-width: 860px; }

/* About page two-column intro */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.about-intro .prose { max-width: none; }
.about-intro-text h2:first-child { margin-top: 0; }

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.about-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-2);
  background: linear-gradient(160deg, #2a1620 0%, #1b0f16 100%);
}
.about-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(236,197,153,.6) 0%,
    rgba(212,165,116,.35) 40%,
    rgba(201,65,86,.3) 65%,
    rgba(74,40,23,.5) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: filter 420ms var(--ease-smooth);
}
.about-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 10%, rgba(201,65,86,.18), transparent 45%),
    radial-gradient(circle at 20% 90%, rgba(74,40,23,.3), transparent 50%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.about-figure:hover::before { filter: brightness(1.3) saturate(1.2); }
.about-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-smooth), filter 700ms var(--ease-smooth);
}
.about-figure:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}
.about-figure figcaption {
  padding: 10px 16px 14px;
  color: var(--c-muted);
  font-size: .82rem;
  letter-spacing: .3px;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.8) 100%);
  position: relative;
  z-index: 2;
}

.about-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-stat {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(0,0,0,.12) 100%) padding-box,
    linear-gradient(135deg, rgba(236,197,153,.4) 0%, rgba(74,40,23,.4) 100%) border-box;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  transition:
    transform 280ms var(--ease-warm),
    background 340ms var(--ease-smooth);
}
.about-stat::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 16px;
  margin-top: -8px;
  border-radius: 48% 48% 46% 46% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 32% 25%, #ffd7a2 0 22%, transparent 25%),
    linear-gradient(160deg, #8a3f22 0%, #4a2817 55%, #1d0a04 100%);
  box-shadow: inset 0 -2px 3px rgba(0,0,0,.55), 0 2px 4px rgba(0,0,0,.35);
  transition: transform 320ms var(--ease-warm);
}
.about-stat:nth-child(2)::before {
  background:
    radial-gradient(circle at 32% 25%, #ffeacb 0 20%, transparent 23%),
    linear-gradient(160deg, #d9b27a 0%, #a87c4a 55%, #6a4522 100%);
}
.about-stat:nth-child(3)::before {
  background:
    radial-gradient(circle at 32% 25%, #ffd7a2 0 22%, transparent 25%),
    linear-gradient(160deg, #c94156 0%, #8a2637 55%, #4a2817 100%);
}
.about-stat:hover {
  transform: translateX(4px);
  background:
    linear-gradient(180deg, rgba(212,165,116,.1) 0%, rgba(0,0,0,.15) 100%) padding-box,
    linear-gradient(135deg, rgba(236,197,153,.75) 0%, rgba(201,65,86,.4) 50%, rgba(212,165,116,.65) 100%) border-box;
}
.about-stat:hover::before {
  transform: rotate(-8deg) scale(1.12);
}
.about-stat-val {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--c-accent-2);
  font-variant-numeric: tabular-nums;
  letter-spacing: .2px;
}
.about-stat-lbl {
  color: var(--c-muted);
  font-size: .82rem;
}

@media (max-width: 880px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .about-figure img { aspect-ratio: 4 / 3; }
}

/* Compact callouts */
.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  background: linear-gradient(180deg, var(--c-panel) 0%, var(--c-panel-2) 100%);
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius);
  padding: 22px;
}
.callout .callout-text { flex: 1 1 320px; }
.callout h3 { margin: 0 0 4px; }
.callout p { margin: 0; }

/* Animated counter style */
.stat {
  display: flex;
  flex-direction: column;
}
.stat .stat-val {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--c-accent-2);
  font-variant-numeric: tabular-nums;
}
.stat .stat-lbl { color: var(--c-muted); font-size: .9rem; }

/* Responsive fine-tuning */
@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  .section { padding: 56px 0; }
  .card { padding: 18px; }
  .btn { padding: 0 20px; }
}
