/* ═══════════════════════════════════════════
   White Decor — Styles
   ═══════════════════════════════════════════ */

:root {
  interpolate-size: allow-keywords;
  --bg: #F7F7F8;
  --surface: #FFFFFF;
  --surface-2: #EDEDF0;
  --ink: #1A1A2E;
  --ink-soft: #6B6B80;
  --accent: #2D5BFF;
  --accent-2: #FF6B35;
  --gold: #C9A84C;
  --gold-light: #F5E6A3;
  --gold-dark: #8B6914;
  --line: rgba(26,26,46,0.12);
  --line-strong: rgba(26,26,46,0.25);
  --font-heading: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --header-h: 72px;
  --container-pad: clamp(16px, 4vw, 32px);
  --radius: 8px;
  --radius-lg: 14px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.4vw, 1.35rem); }
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.display-xl { font-size: clamp(4rem, 8vw, 7rem); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; }

/* ── Container / Layout ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 18px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

/* ── Focus Ring ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(247,247,248,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
.site-header.scrolled {
  background: rgba(247,247,248,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  transition: width 60ms linear;
  pointer-events: none;
  z-index: 1;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 1100;
}
.logo span { color: var(--accent); }

/* ── Nav Desktop ── */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  position: relative;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius);
  transition: color 200ms, background 200ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 600;
  margin-left: 8px;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface); }

/* ── Nav Toggle ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  gap: 5px;
  z-index: 1100;
  position: relative;
  border-radius: var(--radius);
  transition: background 200ms;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--surface-2);
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  transform-origin: center;
}
@media (max-width: 1023px) {
  .nav-toggle {
    background: var(--ink);
    border: 1px solid var(--ink);
  }
  .nav-toggle span {
    background: var(--surface);
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: var(--accent);
    border-color: var(--accent);
  }
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile Drawer ── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 28px 32px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.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);
  background: var(--surface-2);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 10;
  transition: background 200ms, color 200ms;
}
.drawer-close:hover { background: var(--ink); color: var(--surface); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius);
  transition: background 200ms, color 200ms;
}
.mobile-menu a:hover,
.mobile-menu a.is-active {
  background: var(--surface-2);
  color: var(--accent);
}
.mobile-menu .menu-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu .menu-contact a { padding: 6px 0; font-size: 0.88rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 48px;
  transition: background 200ms, color 200ms, transform 200ms, box-shadow 200ms;
  border: none;
  cursor: pointer;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -4px rgba(45,91,255,0.35);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid var(--line-strong);
  border-radius: 48px;
  transition: background 200ms, color 200ms, border-color 200ms;
  cursor: pointer;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
}

/* ── Trust Strip ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 28px;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-strip__item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ═══════ HERO / #vitrin ═══════ */
.hero {
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 55% 45%; }
}
.hero__text { max-width: 580px; }
.hero__text .eyebrow { margin-bottom: 16px; }
.hero__text h1 { margin-bottom: 20px; }
.hero__text h1 .accent-word { color: var(--accent); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  will-change: transform;
}
.hero__collage-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  aspect-ratio: 4/5;
}
.hero__collage-item:nth-child(1) { grid-row: 1 / 3; aspect-ratio: 3/5; }
.hero__collage-item:nth-child(2) { aspect-ratio: 1/1; }
.hero__collage-item:nth-child(3) { aspect-ratio: 1/1; }
.hero__collage-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__collage-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: inherit;
  pointer-events: none;
}

/* hero corner ornament SVG decoration */
.hero__corner-ornament {
  position: absolute;
  width: 64px; height: 64px;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
}

/* ═══════ STATS BAR ═══════ */
.stats-bar {
  background: var(--ink);
  color: var(--surface);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 640px) {
  .stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
}
.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ═══════ #katalog — Product Grid ═══════ */
.katalog { background: var(--bg); }
.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head .eyebrow { margin-bottom: 10px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}

/* Category Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.chip {
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--surface);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 40px;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.chip:hover,
.chip.is-active {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}
.product-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: calc(var(--radius-lg) + 3px);
  z-index: 0;
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.product-card:hover::before {
  opacity: 1;
}
.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px -8px rgba(201,168,76,0.25);
}
.product-card__inner {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-card__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-card__img img {
  transform: scale(1.04);
}
.product-card__body {
  padding: 16px 18px 18px;
}
.product-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.product-card__artist {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.product-card__type {
  font-size: 0.75rem;
  color: var(--ink-soft);
  background: var(--surface-2);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ═══════ #sanatcilar — Artist Strip ═══════ */
.sanatcilar { background: var(--surface); }
.artist-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(280px, 80vw);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--container-pad);
  padding: 8px 0 20px;
  -webkit-overflow-scrolling: touch;
}
.artist-scroll::-webkit-scrollbar { height: 4px; }
.artist-scroll::-webkit-scrollbar-track { background: var(--surface-2); border-radius: 2px; }
.artist-scroll::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 2px; }
.artist-card {
  scroll-snap-align: start;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
  min-width: 0;
}
.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px -8px rgba(26,26,46,0.12);
}
.artist-card__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  background: var(--surface-2);
  border: 3px solid var(--surface);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.artist-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.artist-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.artist-card__spec {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.artist-card__count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

/* ═══════ #boyutrehberi — Size Guide ═══════ */
.boyutrehberi { background: var(--bg); }
.size-guide__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.size-guide__layout > * {
  min-width: 0;
}
@media (min-width: 768px) {
  .size-guide__layout { grid-template-columns: 1fr 1fr; }
}
.wall-mockup {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wall-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    var(--line) 48px,
    var(--line) 49px
  );
  opacity: 0.3;
  pointer-events: none;
}
.wall-frame {
  background: var(--surface-2);
  border: 3px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  transition: border-color 280ms, box-shadow 280ms, transform 280ms;
  cursor: default;
  z-index: 1;
}
.wall-frame:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 8px 24px -6px rgba(201,168,76,0.25), 0 0 0 3px rgba(201,168,76,0.08);
  transform: translateY(-4px);
}
.wall-frame--sm  { width: 60px;  height: 80px; }
.wall-frame--md  { width: 100px; height: 140px; }
.wall-frame--lg  { width: 140px; height: 100px; }
.wall-frame--xl  { width: 180px; height: 120px; }

.size-table { width: 100%; }
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--surface-2);
}
td { color: var(--ink); }
tr:last-child td { border-bottom: none; }

/* ═══════ #siparis — Order Process ═══════ */
.siparis { background: var(--surface); }
.process-timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 48px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}
.process-step {
  position: relative;
  padding-bottom: clamp(28px, 4vw, 40px);
}
.process-step:last-child { padding-bottom: 0; }
.process-step__icon {
  position: absolute;
  left: -48px; top: 0;
  width: 38px; height: 38px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--accent);
}
.process-step__icon svg { width: 18px; height: 18px; }
.process-step__time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}
.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.process-step__desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ═══════ #fiyat — Pricing ═══════ */
.fiyat { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}
.pricing-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.175,.885,.32,1.1), box-shadow 360ms cubic-bezier(.175,.885,.32,1.1), border-color 360ms;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.2,.7,.2,1);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -10px rgba(201,168,76,0.2);
  border-color: transparent;
}
.pricing-card.is-featured {
  border-color: var(--accent);
}
.pricing-card.is-featured .pricing-card__badge {
  display: inline-block;
}
.pricing-card__badge {
  display: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--surface);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.pricing-card__size {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing-card__price-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.pricing-card__list {
  margin-bottom: 12px;
}
.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  padding: 5px 0;
  color: var(--ink);
}
.pricing-card__list li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.pricing-card__list li.included svg { color: var(--accent); }
.pricing-card__list li.excluded {
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: 0.65;
}
.pricing-card__list li.excluded svg { color: var(--ink-soft); }
.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 24px;
  font-style: italic;
}

/* ═══════ Testimonials ═══════ */
.testimonials { background: var(--surface); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px -6px rgba(26,26,46,0.1);
}
.testimonial-card__quote {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 18px;
  position: relative;
  padding-left: 20px;
}
.testimonial-card__quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
}
.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ═══════ FAQ ═══════ */
.faq { background: var(--bg); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 3vw, 28px);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color 200ms;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq-item[open] summary { color: var(--accent); }
.faq-item > .faq-body {
  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-body {
  height: auto;
  padding-block-end: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ═══════ Footer ═══════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}
.footer__brand p {
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.65;
}
.footer__brand .logo {
  color: var(--surface);
  font-size: 1.2rem;
}
.footer__brand .logo span { color: var(--accent); }
.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--surface);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 200ms;
}
.footer__links a:hover { color: var(--accent); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer__legal a {
  color: rgba(255,255,255,0.5);
  transition: color 200ms;
}
.footer__legal a:hover { color: var(--accent); }

/* ═══════ Cookie Banner ═══════ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.18);
  border: 1px solid var(--line);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-banner__actions button {
  flex: 1;
  min-width: 100px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 200ms, color 200ms;
  min-height: 44px;
  cursor: pointer;
  border: 1px solid var(--line);
}
.cookie-banner__actions .cookie-accept {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}
.cookie-banner__actions .cookie-accept:hover { background: var(--accent); color: var(--surface); border-color: var(--accent); }
.cookie-banner__actions .cookie-reject {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.cookie-banner__actions .cookie-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink); }
.cookie-banner__actions .cookie-settings {
  background: transparent;
  color: var(--ink-soft);
}
.cookie-banner__actions .cookie-settings:hover { background: var(--surface-2); color: var(--ink); }

/* ═══════ Reveal Animations ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 100ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ═══════ Niche Animations — Art Gallery ═══════ */

/* 1. Gold Frame Shimmer on hover (theme signature) */
@keyframes frame-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.product-card:hover::before,
.pricing-card:hover::before {
  background-size: 200% 100%;
  animation: frame-shimmer 1.8s ease-in-out;
}

/* 2. Brush Stroke underline on section headings */
@keyframes brush-draw {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}
.section-head h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 4px;
  margin: 12px auto 0;
}
.section-head h2.is-in::after {
  animation: brush-draw 800ms cubic-bezier(.2,.7,.2,1) forwards;
}

/* 3. Canvas Grain ambient texture */
@keyframes canvas-grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-1px, 1px); }
  50% { transform: translate(1px, -1px); }
  75% { transform: translate(-1px, -1px); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  animation: canvas-grain 10s steps(5) infinite;
}
.hero { position: relative; }
.hero > * { position: relative; z-index: 1; }

/* 4. Gallery Spotlight glow on featured items */
@keyframes gallery-spotlight {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 0 28px 4px rgba(201,168,76,0.12); }
}
.pricing-card.is-featured {
  animation: gallery-spotlight 4s ease-in-out infinite;
}

/* 5. Easel Tilt on artwork cards entering view */
@keyframes easel-settle {
  0% { transform: rotate(-1.5deg) translateY(12px); opacity: 0; }
  60% { transform: rotate(0.5deg) translateY(-2px); opacity: 1; }
  100% { transform: rotate(0) translateY(0); opacity: 1; }
}
.product-card.reveal.is-in {
  animation: easel-settle 700ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 100ms);
}

@media (prefers-reduced-motion: reduce) {
  .product-card.reveal.is-in,
  .pricing-card.is-featured,
  .hero::before {
    animation: none !important;
  }
  .section-head h2::after {
    animation: none;
    clip-path: none;
  }
}

/* ═══════ Contact Page ═══════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1.2fr 1fr; }
  .contact-layout .form-section { order: 1; }
  .contact-layout .contact-info { order: 2; }
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}
.contact-row__icon {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms, transform 240ms;
  margin-top: 2px;
}
.contact-row:hover .contact-row__icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-row__label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-row__value {
  font-size: 0.9rem;
  color: var(--ink-soft);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-row__value a {
  color: var(--ink);
  transition: color 200ms;
}
.contact-row__value a:hover { color: var(--accent); }

/* ═══════ Form ═══════ */
.form-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,91,255,0.12);
  outline: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.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 label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.field--checkbox label a { color: var(--accent); text-decoration: underline; }
.field .error-msg {
  font-size: 0.78rem;
  color: #D32F2F;
  margin-top: 4px;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #D32F2F; }
.field.has-error .error-msg { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.is-visible { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--accent); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); font-size: 0.9rem; }

/* ═══════ Policy / Legal Pages ═══════ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 0;
}
.legal-content h1 { margin-bottom: 12px; }
.legal-content .legal-date {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.legal-content h2 {
  margin-top: 36px;
  margin-bottom: 14px;
}
.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p {
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.7;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 14px;
  padding-left: 24px;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  margin-bottom: 6px;
  line-height: 1.65;
}

/* ═══════ Hakkimizda ═══════ */
.about-hero {
  padding: clamp(2rem, 6vw, 4rem) 0;
}
.about-hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 768px) {
  .about-hero__layout { grid-template-columns: 1.2fr 1fr; }
}
.about-hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-2);
}
.about-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px -8px rgba(26,26,46,0.1);
}
.team-card__photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--surface-2);
  border: 3px solid var(--gold-light);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.team-card__role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
  text-align: left;
}

/* ═══════ 404 Page ═══════ */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.page-404__code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--line-strong);
  line-height: 1;
  margin-bottom: 8px;
}
.page-404 p { color: var(--ink-soft); margin-bottom: 28px; }

/* ═══════ Sitemap Page ═══════ */
.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sitemap-grid { grid-template-columns: repeat(3, 1fr); }
}
.sitemap-group h3 { margin-bottom: 12px; }
.sitemap-group ul { display: flex; flex-direction: column; gap: 6px; }
.sitemap-group a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 200ms;
}
.sitemap-group a:hover { color: var(--accent); }

/* ═══════ Cancellation Tiers ═══════ */
.cancel-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 20px 0;
}
@media (min-width: 640px) {
  .cancel-tiers { grid-template-columns: repeat(3, 1fr); }
}
.cancel-tier {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--line);
}
.cancel-tier__period {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.cancel-tier__result {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ═══════ Print ═══════ */
@media print {
  .site-header, .nav-toggle, .mobile-menu, .drawer-backdrop,
  .cookie-banner, .skip-link { display: none !important; }
  body { color: #000; background: #fff; }
  main { padding-top: 0 !important; }
  section { break-inside: avoid; }
}

/* ═══════ Responsive ═══════ */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .hero__collage { gap: 8px; }
  .hero__collage-item:nth-child(1) { grid-row: auto; aspect-ratio: 4/5; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card__body { padding: 12px 14px 14px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-bar__grid { gap: 16px; }
  .process-timeline { padding-left: 40px; }
  .process-step__icon { left: -40px; width: 32px; height: 32px; }
  .process-step__icon svg { width: 15px; height: 15px; }
  .wall-frame--sm { width: 48px; height: 64px; }
  .wall-frame--md { width: 80px; height: 112px; }
  .wall-frame--lg { width: 110px; height: 78px; }
  .wall-frame--xl { width: 140px; height: 96px; }
  .team-grid { grid-template-columns: 1fr; }
  .table-scroll > table { min-width: 0; }
  .table-scroll th,
  .table-scroll td { padding: 10px 8px; font-size: 0.82rem; word-break: break-word; }
}
@media (max-width: 430px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .btn-primary, .btn-ghost { padding: 12px 24px; font-size: 0.88rem; }
  .chips { gap: 6px; }
  .chip { padding: 6px 14px; font-size: 0.8rem; }
  .product-card__title { font-size: 0.88rem; }
  .product-card__price { font-size: 0.95rem; }
  .product-card__type { font-size: 0.7rem; }
  .pricing-card { padding: 20px; }
  .cancel-tiers { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  h1 { font-size: 1.8rem; }
  .header__inner { gap: 8px; }
  .logo { font-size: 1.15rem; }
  .product-grid { gap: 8px; }
  .product-card__body { padding: 10px 12px 12px; }
}

/* ═══════ Cookie banner mobile spacing ═══════ */
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 18px 16px;
  }
  .cookie-banner__actions {
    gap: 6px;
  }
  .cookie-banner__actions button {
    min-height: 46px;
    font-size: 0.85rem;
  }
}

/* ═══════ Enhanced Art Gallery Animations ═══════ */

/* Warm gallery spotlight glow on product card hover */
.product-card:hover {
  box-shadow:
    0 12px 32px -8px rgba(201,168,76,0.25),
    0 0 40px -12px rgba(201,168,76,0.15);
}

/* Testimonial card — warm left-border glow on hover */
.testimonial-card:hover .testimonial-card__quote::before {
  background: linear-gradient(180deg, var(--gold), var(--accent));
  box-shadow: 0 0 12px -2px rgba(201,168,76,0.3);
}

/* Artist card photo — subtle warm ring pulse on hover */
.artist-card:hover .artist-card__photo {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 0 0 4px rgba(201,168,76,0.15);
  transition: border-color 320ms, box-shadow 320ms;
}

/* Process step icon — warm glow on hover */
.process-step:hover .process-step__icon {
  border-color: var(--gold);
  box-shadow: 0 0 16px -4px rgba(201,168,76,0.35);
  transition: border-color 300ms, box-shadow 300ms;
}

/* FAQ item — subtle warm border on open */
.faq-item[open] {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 16px -6px rgba(201,168,76,0.12);
}

/* Hero collage — subtle float on items */
@keyframes gallery-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero__collage-item:nth-child(1) {
  animation: gallery-float 6s ease-in-out infinite;
}
.hero__collage-item:nth-child(2) {
  animation: gallery-float 6s ease-in-out 1s infinite;
}
.hero__collage-item:nth-child(3) {
  animation: gallery-float 6s ease-in-out 2s infinite;
}

/* Stat number — warm glow on counter finish */
.stat__number {
  transition: text-shadow 600ms;
}
.stat:hover .stat__number {
  text-shadow: 0 0 20px rgba(45,91,255,0.3);
}

/* Nav link — warmer underline animation */
.nav-desktop a::after {
  transition: transform 320ms cubic-bezier(.175,.885,.32,1.1);
}

/* Button press effect */
.btn-primary:active {
  transform: translateY(0) scale(0.97);
}
.btn-ghost:active {
  transform: scale(0.97);
}

/* Footer links — warm hover slide */
.footer__links a {
  position: relative;
  padding-left: 0;
  transition: color 200ms, padding-left 200ms;
}
.footer__links a:hover {
  padding-left: 6px;
}

/* Chip press feedback */
.chip:active {
  transform: scale(0.95);
}
.chip {
  transition: background 200ms, color 200ms, border-color 200ms, transform 120ms;
}

/* Gallery warm spotlight on pricing featured card hover */
.pricing-card.is-featured:hover {
  box-shadow:
    0 16px 40px -10px rgba(201,168,76,0.3),
    0 0 60px -20px rgba(201,168,76,0.15);
}

/* Product card — inner warm vignette on hover (museum spotlight) */
.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(201,168,76,0.08) 100%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}
.product-card:hover .product-card__img::after {
  opacity: 1;
}

/* Stats bar — warm ambient pulse */
@keyframes warm-pulse {
  0%, 100% { box-shadow: inset 0 0 40px -20px rgba(201,168,76,0); }
  50% { box-shadow: inset 0 0 40px -20px rgba(201,168,76,0.08); }
}
.stats-bar {
  animation: warm-pulse 8s ease-in-out infinite;
}

/* Testimonial card — quote mark glow */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity 320ms;
  pointer-events: none;
}
.testimonial-card:hover::before {
  opacity: 0.6;
}

/* Wall frame — warm glow on hover (gallery spotlight) */
.wall-frame:hover {
  border-color: var(--gold-dark);
  box-shadow:
    0 8px 24px -6px rgba(201,168,76,0.25),
    0 0 0 3px rgba(201,168,76,0.08),
    0 -20px 40px -10px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}

/* FAQ chevron — smoother rotation with overshoot */
.faq-item summary::after {
  transition: transform 400ms cubic-bezier(.175,.885,.32,1.275);
}

@media (prefers-reduced-motion: reduce) {
  .hero__collage-item:nth-child(1),
  .hero__collage-item:nth-child(2),
  .hero__collage-item:nth-child(3) {
    animation: none !important;
  }
  .stats-bar { animation: none !important; }
  .footer__links a { transition: color 200ms; }
  .chip { transition: background 200ms, color 200ms, border-color 200ms; }
  .product-card__img::after { display: none; }
  .testimonial-card::before { display: none; }
  .reveal[style*="--i"] { transition-delay: 0ms !important; }
}

/* drawer-close hidden — hamburger handles close */
.drawer-close { display: none !important; }
