:root {
  --bg: #1A1A1A;
  --surface: #2C2826;
  --ink: #F5F0EB;
  --accent: #C9A84C;
  --accent-2: #8B6F47;
  --line: rgba(201, 168, 76, 0.25);
  --line-solid: #3D362F;
  --header-h: 72px;
  --container: 1400px;
  --radius: 4px;
  interpolate-size: allow-keywords;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.no-js .reveal { opacity: 1; transform: none; }
html.no-js .hero__eyebrow,
html.no-js .hero__title,
html.no-js .hero__sub,
html.no-js .hero__cta { opacity: 1; transform: none; animation: none; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 200ms;
}
.skip-link:focus {
  top: 8px;
}

/* --- FOCUS RING --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(201, 168, 76, 0.18), 0 0 12px 0 rgba(201, 168, 76, 0.10);
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}

.site-header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
  height: 64px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  z-index: 1090;
}
.logo:hover { color: var(--accent); }

.logo__mark {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.logo__text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--ink);
}

/* --- NAV DESKTOP --- */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop .nav__link {
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 0;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}

.nav-desktop .nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}

.nav-desktop .nav__link:hover { color: var(--accent); }
.nav-desktop .nav__link:hover::after { width: 100%; }
.nav-desktop .nav__link.is-active { color: var(--accent); }
.nav-desktop .nav__link.is-active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 180ms;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.nav-desktop .nav-cta::after { display: none; }

/* --- NAV TOGGLE (HAMBURGER) --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1100;
  position: relative;
  border: 1px solid rgba(245, 240, 235, 0.25);
  border-radius: var(--radius);
  background: rgba(245, 240, 235, 0.06);
  transition: background 240ms, border-color 240ms;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--accent);
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms, background 240ms;
  transform-origin: center;
  box-shadow: 0 0 6px rgba(245, 240, 235, 0.2);
}

.nav-toggle:hover .nav-toggle__bar {
  background: var(--accent);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--accent);
  background: rgba(201, 168, 76, 0.1);
}

/* --- MOBILE DRAWER --- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-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) + 32px) 32px 32px;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-drawer__nav .nav__link {
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.mobile-drawer__nav .nav__link:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.mobile-drawer__nav .nav__link.is-active { color: var(--accent); }

.mobile-drawer__nav .nav-cta {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
}

/* --- DRAWER CLOSE --- */
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ink);
  border: 1px solid var(--line-solid);
  border-radius: var(--radius);
  background: transparent;
  transition: color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms, background 240ms;
  z-index: 10;
}
.drawer-close:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(201, 168, 76, 0.08);
}

/* --- SCROLL PROGRESS --- */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 10;
  transition: width 60ms linear;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--header-h));
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 10vh, 120px);
  overflow: hidden;
  background: linear-gradient(160deg, #2a2420 0%, #1a1714 40%, #1a1a1a 100%);
}

.hero__media-wrap {
  position: absolute;
  inset: 0;
  max-width: 1500px;
  margin: 0 auto;
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 20% 100%);
  animation: cakeSliceReveal 1.2s cubic-bezier(.16, 1, .3, 1) 0.05s forwards;
}

@keyframes cakeSliceReveal {
  0% {
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 20% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.6) 35%, rgba(26, 26, 26, 0.2) 100%),
    linear-gradient(to right, rgba(26, 26, 26, 0.4) 0%, transparent 60%);
}

.hero__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  opacity: 0;
  border-radius: 1px;
  animation: confettiDrift 10s ease-in-out infinite;
}

.confetti:nth-child(2) { width: 4px; height: 8px; left: 15%; top: 20%; animation-delay: -2s; animation-duration: 12s; }
.confetti:nth-child(3) { width: 5px; height: 5px; left: 30%; top: 35%; animation-delay: -4s; animation-duration: 9s; border-radius: 50%; }
.confetti:nth-child(4) { width: 7px; height: 4px; left: 50%; top: 15%; animation-delay: -1s; animation-duration: 11s; }
.confetti:nth-child(5) { width: 4px; height: 6px; left: 65%; top: 45%; animation-delay: -6s; animation-duration: 13s; }
.confetti:nth-child(6) { width: 5px; height: 5px; left: 80%; top: 25%; animation-delay: -3s; animation-duration: 10s; border-radius: 50%; }
.confetti:nth-child(7) { width: 6px; height: 3px; left: 90%; top: 55%; animation-delay: -7s; }
.confetti:nth-child(8) { width: 3px; height: 7px; left: 10%; top: 60%; animation-delay: -5s; animation-duration: 14s; }
.confetti:nth-child(9) { width: 5px; height: 5px; left: 45%; top: 70%; animation-delay: -8s; animation-duration: 11s; }
.confetti:nth-child(10) { width: 4px; height: 4px; left: 72%; top: 65%; animation-delay: -2.5s; animation-duration: 12s; border-radius: 50%; }

@keyframes confettiDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  50% { transform: translateY(-60px) rotate(180deg); opacity: 0.6; }
  90% { opacity: 0.3; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroContentIn 0.7s cubic-bezier(.2,.7,.2,1) 0.25s forwards;
}

.hero__title {
  margin-bottom: 20px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroContentIn 0.8s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero__sub {
  max-width: 520px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245, 240, 235, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(18px);
  animation: heroContentIn 0.7s cubic-bezier(.2,.7,.2,1) 0.6s forwards;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero__cta {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroContentIn 0.6s cubic-bezier(.2,.7,.2,1) 0.8s forwards;
}

@keyframes heroContentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), transform 180ms, box-shadow 240ms;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(201, 168, 76, 0.45), 0 0 24px -4px rgba(201, 168, 76, 0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--line-solid);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms, transform 180ms;
  cursor: pointer;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.78rem;
}

/* --- SECTIONS COMMON --- */
main {
  padding-top: var(--header-h);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  margin-bottom: 16px;
}

.section__subtitle {
  max-width: 560px;
  color: rgba(245, 240, 235, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__header .section__subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* --- GOLD FRAME DECORATION --- */
.gold-frame {
  position: relative;
  padding: 2px;
}
.gold-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  pointer-events: none;
}

/* --- VITRIN / COLLECTION --- */
.vitrin__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

@media (max-width: 768px) {
  .vitrin__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 430px) {
  .vitrin__grid { grid-template-columns: 1fr; }
}

.vitrin__item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.vitrin__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.vitrin__item:hover img {
  transform: scale(1.05);
}

.vitrin__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 3vw, 28px);
  opacity: 0;
  visibility: hidden;
}

.vitrin__item:hover .vitrin__overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 360ms cubic-bezier(.4,0,.2,1);
}

@media (hover: none) {
  .vitrin__overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, transparent 55%);
  }
}

.vitrin__overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--accent);
  transform: translateY(8px);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1) 60ms;
}

.vitrin__item:hover .vitrin__overlay h3 {
  transform: translateY(0);
}

.vitrin__overlay p {
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.8);
  transform: translateY(8px);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1) 120ms;
}

.vitrin__item:hover .vitrin__overlay p {
  transform: translateY(0);
}

@media (hover: none) {
  .vitrin__overlay h3,
  .vitrin__overlay p {
    transform: translateY(0);
  }
}

/* --- TASARIM / PROCESS TIMELINE --- */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline__step {
  position: relative;
  padding-bottom: 48px;
}

.timeline__step:last-child { padding-bottom: 0; }

.timeline__icon {
  position: absolute;
  left: -48px;
  top: 0;
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), background 240ms;
}

.timeline__step:hover .timeline__icon {
  transform: scale(1.1);
  background: var(--accent);
  color: var(--bg);
  animation: whiskSpin 600ms cubic-bezier(.2,.7,.2,1);
}

@keyframes whiskSpin {
  0% { transform: scale(1.1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(180deg); }
  100% { transform: scale(1.1) rotate(360deg); }
}

.timeline__icon svg {
  width: 18px;
  height: 18px;
}

.timeline__num {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--accent-2);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline__step h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.timeline__step p {
  color: rgba(245, 240, 235, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- GALERI / MASONRY --- */
.masonry {
  columns: 3;
  column-gap: 16px;
}

@media (max-width: 768px) { .masonry { columns: 2; } }
@media (max-width: 430px) { .masonry { columns: 1; } }

.masonry__item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--line);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}

.masonry__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(201, 168, 76, 0.25), 0 0 20px -4px rgba(201, 168, 76, 0.1);
}

.masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.masonry__item:hover img {
  transform: scale(1.03);
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 320ms ease;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 240ms;
}
.lightbox__close:hover { color: var(--accent); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 2.4rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 240ms;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover, .lightbox__next:hover { color: var(--accent); }

/* --- FIYAT / PRICING --- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing { grid-template-columns: 1fr; max-width: 420px; }
}

.pricing__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  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);
}

.pricing__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(201, 168, 76, 0.2), 0 0 24px -8px rgba(201, 168, 76, 0.1);
  border-color: var(--accent);
}

.pricing__card--featured {
  border-color: var(--accent);
  position: relative;
}
.pricing__card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
}

.pricing__tier {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing__guests {
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.6);
  margin-bottom: 20px;
}

.pricing__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.pricing__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(245, 240, 235, 0.6);
}

.pricing__features {
  margin-top: 20px;
  text-align: left;
}

.pricing__features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: rgba(245, 240, 235, 0.8);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding-left: 20px;
  position: relative;
}

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pricing__note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.5);
  font-style: italic;
}

/* --- ILETISIM SECTION (INDEX) --- */
.contact-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta__info {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.7);
}

.contact-cta__info a {
  color: var(--accent);
}
.contact-cta__info a:hover {
  color: var(--ink);
}

/* --- CONTACT PAGE CHANNELS --- */
.contact-channels {
  display: grid;
  gap: 20px;
}

.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms, border-color 240ms;
}

.contact-channel:hover {
  transform: translateX(4px);
  background: var(--surface);
  border-color: var(--line);
}

.contact-channel__icon {
  width: 20px;
  height: 20px;
  color: var(--ink);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
  margin-top: 2px;
}

.contact-channel:hover .contact-channel__icon {
  color: var(--accent);
  transform: scale(1.08);
}

.contact-channel__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 4px;
}

.contact-channel__value {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-channel__value a {
  color: var(--ink);
  transition: color 240ms;
}
.contact-channel__value a:hover { color: var(--accent); }

/* --- FORM --- */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.7);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line-solid);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.92rem;
  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(201, 168, 76, 0.12);
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23C9A84C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.field--checkbox label {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  color: rgba(245, 240, 235, 0.7);
}

.field--checkbox label a {
  color: var(--accent);
  text-decoration: underline;
}

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__submit {
  margin-top: 24px;
}

.form__success,
.form__error {
  display: none;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 16px;
}

.form__success {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.form__error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #f5a0a8;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 4vw, 40px);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
}

.footer__brand .logo__mark {
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(245, 240, 235, 0.5);
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer__links a {
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.6);
  transition: color 240ms;
}
.footer__links a:hover { color: var(--accent); }

.footer__copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.4);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer__copy { white-space: normal; }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .cookie-banner {
    left: 24px;
    right: auto;
    max-width: 420px;
  }
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.cookie-banner__text {
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.7);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 44px;
  flex: 1;
  min-width: 80px;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms, transform 180ms;
}

.cookie-accept {
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}
.cookie-accept:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.cookie-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(201, 168, 76, 0.35);
}
.cookie-ghost:hover {
  border-color: var(--accent);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 420px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 12px 12px 0 0;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    max-width: none;
  }
  .cookie-banner__actions {
    display: flex;
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    min-height: 48px;
  }
}

/* --- REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.16, 1, .3, 1), transform 700ms cubic-bezier(.16, 1, .3, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-stagger { transition-delay: calc(var(--i, 0) * 100ms + 50ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- 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, rgba(0, 0, 0, 0.12));
  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 {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.88rem;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201, 168, 76, 0.05);
}

td {
  color: rgba(245, 240, 235, 0.8);
}

/* --- FAQ ACCORDION (pure CSS) --- */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms, padding-left 280ms cubic-bezier(.2,.7,.2,1);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-answer {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}

.faq-item[open] > .faq-answer {
  height: auto;
  padding-block-end: 26px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-answer { transition: none; }
}

.faq-answer p {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.75);
  line-height: 1.7;
}

/* --- NICHE ANIMATIONS --- */

/* Sugar sparkle on gold accents */
.sparkle-wrap {
  position: relative;
  display: inline-block;
}

.sparkle-wrap::before,
.sparkle-wrap::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: sugarSparkle 3s ease-in-out infinite;
}

.sparkle-wrap::before {
  top: -4px;
  right: -8px;
  animation-delay: -1s;
}
.sparkle-wrap::after {
  bottom: -4px;
  left: -6px;
  animation-delay: -2.5s;
}

@keyframes sugarSparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 0.8; transform: scale(1); }
}

/* Fondant drip decoration */
.fondant-drip {
  position: relative;
}
.fondant-drip::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 12px;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 0 0 50% 50%;
  animation: fondantDrip 4s ease-in-out infinite;
}

@keyframes fondantDrip {
  0%, 100% { transform: translateX(-50%) scaleY(1); }
  50% { transform: translateX(-50%) scaleY(1.4); }
}

/* Frosting flow on section dividers */
.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 32px;
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--ink), transparent);
  animation: frostingSweep 4s ease-in-out infinite;
}

@keyframes frostingSweep {
  0% { left: -60%; }
  100% { left: 160%; }
}

/* Card hover with niche shadow */
.card-hover {
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(201, 168, 76, 0.2);
}

/* --- LEGAL PAGES --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}

.legal-content h1 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-content .legal-date {
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--accent);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(245, 240, 235, 0.8);
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(245, 240, 235, 0.8);
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content ol li { list-style: decimal; }

@media (max-width: 640px) {
  .legal-content {
    padding-left: 4px;
    padding-right: 4px;
  }
  .legal-content h2 {
    font-size: 1.2rem;
    margin-top: 36px;
  }
  .legal-content p {
    font-size: 0.88rem;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}

/* --- 404 PAGE --- */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.page-404__code {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.page-404 h1 {
  margin-top: 16px;
  margin-bottom: 12px;
}

.page-404 p {
  color: rgba(245, 240, 235, 0.7);
  margin-bottom: 32px;
  max-width: 400px;
}

/* --- SITEMAP PAGE --- */
.sitemap-list {
  max-width: 600px;
  margin: 0 auto;
}

.sitemap-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.sitemap-list a {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sitemap-list a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- ABOUT PAGE --- */
.about-hero {
  padding: clamp(60px, 10vw, 120px) 0;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; }
}

.about-content img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  max-width: clamp(300px, 90%, 500px);
}

.about-text h2 {
  margin-bottom: 16px;
  color: var(--accent);
}

.about-text p {
  font-size: 0.95rem;
  color: rgba(245, 240, 235, 0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

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

.about-value {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms cubic-bezier(.2,.7,.2,1);
}
.about-value:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.about-value__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  color: var(--accent);
}

.about-value h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.7);
  line-height: 1.6;
}

/* --- CONTACT PAGE LAYOUT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero {
    padding-bottom: clamp(80px, 14vh, 160px);
    align-items: flex-end;
  }
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 360px) {
  :root { --header-h: 60px; }
  .hero { min-height: 92vh; }
}

@media (max-width: 640px) {
  .vitrin__grid { gap: 2px; }
  .pricing { gap: 16px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}

/* --- WARM GLOW EFFECTS --- */
.nav-cta:hover {
  box-shadow: 0 6px 20px -6px rgba(201, 168, 76, 0.3);
}

.contact-channel:hover .contact-channel__icon {
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
}

.about-value:hover {
  box-shadow: 0 12px 32px -12px rgba(201, 168, 76, 0.15);
}

.timeline__step:hover .timeline__icon {
  box-shadow: 0 0 16px -2px rgba(201, 168, 76, 0.35);
}

.faq-item summary:hover {
  padding-left: 8px;
}

.hero__eyebrow {
  transition: border-color 600ms, box-shadow 600ms, background 600ms;
}
.hero__eyebrow:hover {
  border-color: var(--accent);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 16px -2px rgba(201, 168, 76, 0.3);
}

.hero__cta:hover {
  box-shadow: 0 8px 28px -6px rgba(201, 168, 76, 0.5), 0 0 32px -4px rgba(201, 168, 76, 0.15);
}

.pricing__card--featured {
  box-shadow: 0 0 20px -6px rgba(201, 168, 76, 0.1);
}

.masonry__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(201, 168, 76, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.masonry__item:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px -4px rgba(201, 168, 76, 0.3);
}

.btn-ghost:active {
  transform: translateY(0);
}

/* --- WARM STEAM RISING (patisserie niche) --- */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top,
    rgba(201, 168, 76, 0.06) 0%,
    rgba(201, 168, 76, 0.03) 40%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: warmGlowPulse 6s ease-in-out infinite;
}

@keyframes warmGlowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.pricing__card--featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), transparent 50%, rgba(201, 168, 76, 0.1));
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.4,0,.2,1);
}

.pricing__card--featured:hover::after {
  opacity: 1;
}

.vitrin__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201, 168, 76, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 1;
}

.vitrin__item:hover::after {
  opacity: 1;
}

.about-value:hover .about-value__icon {
  animation: gentleFloat 2s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.timeline__step:hover {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.03), transparent 80%);
  border-radius: var(--radius);
}

.contact-channel:hover {
  box-shadow: 0 4px 16px -6px rgba(201, 168, 76, 0.12);
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item summary:hover::after {
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  .hero__media-wrap { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); animation: none; opacity: 1; }
  .hero__img { animation: none; }
  .hero__eyebrow, .hero__title, .hero__sub, .hero__cta { opacity: 1; transform: none; animation: none; }
  .hero::after { animation: none; opacity: 0.8; }
  .confetti { animation: none; opacity: 0.2; }
  .sparkle-wrap::before, .sparkle-wrap::after { animation: none; }
  .fondant-drip::after { animation: none; }
  .section-divider::after { animation: none; }
  .timeline__step:hover .timeline__icon { animation: none; }
  .about-value:hover .about-value__icon { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* --- PRINT --- */
@media print {
  .site-header, .mobile-drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__eyebrow, .hero__title, .hero__sub, .hero__cta { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* === Footer 4-column grid (replaces minimalist footer__inner) === */
.site-footer { padding: clamp(48px, 7vw, 80px) 0 0; }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 48px);
  padding-bottom: clamp(36px, 5vw, 56px);
}
@media (min-width: 640px) {
  .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .site-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; }
  .site-footer .footer-brand { grid-column: auto; }
}
.site-footer .footer-brand .footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 600;
  color: inherit;
  margin-bottom: 14px;
  font-family: var(--ff-display, 'Cormorant Garamond', serif);
}
.site-footer .footer-brand .footer-logo .logo__mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--accent, #c8a14a);
  color: var(--ink, #1a1a1a);
  font-weight: 700;
  border-radius: 50%;
  font-family: var(--ff-display, 'Cormorant Garamond', serif);
}
.site-footer .footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 360px;
  color: rgba(255,255,255,0.65);
}
.site-footer .footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.site-footer .footer-col ul { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-col li { padding: 0; margin: 0; }
.site-footer .footer-col a,
.site-footer .footer-col p {
  display: inline-block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 5px 0;
  margin: 0;
  line-height: 1.55;
  transition: color 220ms ease, transform 220ms ease;
}
.site-footer .footer-col p { display: block; }
.site-footer .footer-col a:hover { color: #fff; transform: translateX(4px); }
.site-footer .footer-col p a { padding: 0; color: inherit; }
.site-footer .footer-col p a:hover { color: var(--accent, #c8a14a); }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.site-footer .footer-bottom p { margin: 0; }
.site-footer .footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color 220ms ease;
}
.site-footer .footer-bottom a:hover { color: #fff; }
@media (max-width: 540px) {
  .site-footer .footer-grid { gap: 28px; padding-bottom: 32px; }
  .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; }
}
