/* ============================================================
   ZERRİN ESANS EVİ — Art-Deco Parfüm Butiği
   Maison 1926 · İstanbul / Pera
   ============================================================ */

:root {
  interpolate-size: allow-keywords;

  --bg: #12232E;
  --bg-deep: #0d1b24;
  --surface: #183542;
  --surface-2: #1f4150;
  --ink: #F3E9D2;
  --ink-soft: #cdc2a8;
  --ink-mute: #9aa79f;
  --accent: #D4AF37;
  --accent-soft: #e6c968;
  --accent-2: #9C2B3E;
  --accent-2-soft: #b8455a;
  --line: rgba(212, 175, 55, 0.24);
  --line-strong: rgba(212, 175, 55, 0.5);
  --line-soft: rgba(243, 233, 210, 0.12);

  --header-h: 78px;
  --maxw: 1180px;
  --pad: clamp(18px, 3vw, 52px);

  --ff-display: 'Poiret One', 'Marcellus', serif;
  --ff-title: 'Marcellus', 'Poiret One', serif;
  --ff-body: 'EB Garamond', Georgia, serif;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-2: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -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 {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 1.075rem;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-title);
  font-weight: 400;
  line-height: 1.14;
  margin: 0;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0 0 1.1rem;
  font-weight: 500;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--line-strong);
}
.eyebrow.solo::after { display: none; }
.eyebrow.solo::before { display: none; }

.display-xl {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.section {
  padding-block: clamp(56px, 8vw, 118px);
  position: relative;
}
.section--tight { padding-block: clamp(44px, 6vw, 82px); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(38px, 5vw, 62px);
}
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  letter-spacing: 0.03em;
}
.section-head p { color: var(--ink-soft); margin-top: 0.9rem; }

/* ---- skip link ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 18px;
  z-index: 2000;
  font-weight: 600;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   DECOR — sunburst, frames, diamonds
   ============================================================ */

.deco-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
  color: var(--accent);
}
.deco-rule::before, .deco-rule::after {
  content: "";
  height: 1px;
  width: min(120px, 22vw);
  background: linear-gradient(90deg, transparent, var(--line-strong));
}
.deco-rule::after { background: linear-gradient(90deg, var(--line-strong), transparent); }
.deco-diamond {
  width: 9px; height: 9px;
  background: var(--accent);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.14);
}

/* double-line framed panel */
.framed {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: clamp(22px, 3vw, 40px);
}
.framed::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--line);
  pointer-events: none;
}
/* corner diamonds for framed panels */
.framed .corner {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  z-index: 1;
}
.framed .corner.tl { top: -4px; left: -4px; }
.framed .corner.tr { top: -4px; right: -4px; }
.framed .corner.bl { bottom: -4px; left: -4px; }
.framed .corner.br { bottom: -4px; right: -4px; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1080;
  display: flex;
  align-items: center;
  background: rgba(18, 35, 46, 0.92);
  border-bottom: 1px solid var(--line-soft);
  transition: background .24s var(--ease-2), height .24s var(--ease-2), box-shadow .24s var(--ease-2);
}
.site-header.is-scrolled {
  background: rgba(13, 27, 36, 0.98);
  height: 66px;
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.7);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand__mark { width: 34px; height: 34px; color: var(--accent); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--ff-display);
  font-size: 1.24rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.nav-desktop a {
  position: relative;
  font-family: var(--ff-body);
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 6px 2px;
  transition: color .2s var(--ease-2);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop .nav-cta::after { display: none; }

.nav-cta {
  font-family: var(--ff-body);
  letter-spacing: 0.08em;
  border: 1px solid var(--line-strong);
  color: var(--accent) !important;
  padding: 9px 20px !important;
  border-radius: 2px;
  transition: background .24s var(--ease-2), color .24s var(--ease-2), border-color .24s var(--ease-2);
}
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
  border-color: var(--accent);
}

.nav-toggle {
  position: relative;
  z-index: 1100;
  width: 46px; height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.6px;
  background: var(--accent);
  transition: transform .3s var(--ease), opacity .2s var(--ease-2);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* ---- drawer ---- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s var(--ease-2), visibility .24s;
  z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg-deep);
  border-left: 1px solid var(--line-strong);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 14px) 30px 34px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.drawer nav { display: flex; flex-direction: column; gap: 2px; position: relative; z-index: 1; }
.drawer a {
  font-family: var(--ff-title);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding: 13px 4px;
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s var(--ease-2), padding-left .2s var(--ease-2);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); padding-left: 10px; }
.drawer .drawer-cta {
  margin-top: 22px;
  text-align: center;
  border: 1px solid var(--accent);
  color: var(--bg) !important;
  background: var(--accent);
  border-radius: 2px;
  padding: 14px;
  letter-spacing: 0.1em;
}
.drawer .drawer-cta:hover { background: var(--accent-soft); color: var(--bg) !important; padding-left: 14px; }
.drawer-meta {
  margin-top: auto;
  padding-top: 22px;
  position: relative;
  z-index: 1;
  color: var(--ink-mute);
  font-size: 0.88rem;
}
.drawer-meta a { border: 0; padding: 0; font-family: var(--ff-body); font-size: 0.88rem; color: var(--accent); }

body.no-scroll { overflow: hidden; }

main { padding-top: var(--header-h); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--ff-body);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 14px 30px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .24s var(--ease-2), color .24s var(--ease-2), border-color .24s var(--ease-2), transform .24s var(--ease-2);
  text-transform: uppercase;
  font-size: 0.82rem;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-soft);
  color: var(--bg);
  border-color: var(--accent-soft);
  transform: translateY(-2px);
}
.btn-primary:hover::after { left: 130%; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-bordo {
  background: var(--accent-2);
  color: var(--ink);
  border-color: var(--accent-2);
}
.btn-bordo:hover, .btn-bordo:focus-visible {
  background: var(--accent-2-soft);
  color: var(--ink);
  border-color: var(--accent-2-soft);
  transform: translateY(-2px);
}

/* ============================================================
   HERO — cinematic full-bleed photo
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  padding-block: clamp(64px, 12vh, 128px);
  background: var(--bg-deep);
  isolation: isolate;
}

/* full-bleed photo + ken-burns */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.08);
  transform-origin: 60% 45%;
  animation: hero-kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.16) translate3d(-1.5%, -2%, 0); }
}
/* dark gradient overlay for legible text (contrast >= 4.5:1) */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,17,22,0.86) 0%, rgba(9,17,22,0.55) 42%, rgba(9,17,22,0.18) 78%, rgba(9,17,22,0.30) 100%),
    linear-gradient(0deg, rgba(9,17,22,0.90) 0%, rgba(9,17,22,0.35) 40%, rgba(9,17,22,0.12) 65%, rgba(9,17,22,0.42) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 2.4vw, 26px);
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hero__eyebrow { margin-bottom: 0; }

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: 0.01em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0;
  max-width: 15ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.55);
}
.hero__title .word { display: inline-block; white-space: nowrap; }
.hero__title i {
  font-style: italic;
  color: var(--accent-soft);
  font-family: var(--ff-title);
}

.hero__sub {
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  line-height: 1.5;
  text-shadow: 0 1px 20px rgba(0,0,0,0.6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 6px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 54px);
  margin: 14px 0 0;
  padding: clamp(16px, 2vw, 20px) 0 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
  width: 100%;
  max-width: 640px;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-n {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--accent);
  line-height: 1;
}
.hero__stat-l {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* scroll cue */
.hero__cue {
  position: absolute;
  bottom: 22px;
  right: clamp(18px, 4vw, 52px);
  z-index: 3;
  color: var(--accent);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}
.hero__cue span {
  width: 1px; height: 34px;
  background: linear-gradient(var(--accent), transparent);
  animation: cue 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   STATS band
   ============================================================ */

.stats {
  background: var(--bg-deep);
  border-block: 1px solid var(--line-soft);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  text-align: center;
}
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat__label {
  margin-top: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   SIGNATURE SCENTS — ornate cards
   ============================================================ */

.scents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
}
@media (min-width: 680px) { .scents-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .scents-grid { grid-template-columns: repeat(3, 1fr); } }

.scent-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 34px) clamp(20px, 2.5vw, 28px) clamp(26px, 3vw, 34px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: transform .3s var(--ease), border-color .3s var(--ease-2), box-shadow .3s var(--ease);
  overflow: hidden;
}
.scent-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
  transition: border-color .3s var(--ease-2);
}
.scent-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 50px -30px rgba(212,175,55,0.4);
}
.scent-card:hover::before { border-color: var(--line); }
.scent-card .corner { position: absolute; width: 7px; height: 7px; background: var(--accent); transform: rotate(45deg); opacity: 0; transition: opacity .3s var(--ease-2); }
.scent-card:hover .corner { opacity: 1; }
.scent-card .corner.tl { top: 3px; left: 3px; }
.scent-card .corner.tr { top: 3px; right: 3px; }
.scent-card .corner.bl { bottom: 3px; left: 3px; }
.scent-card .corner.br { bottom: 3px; right: 3px; }

.scent-card__flacon {
  width: 66px; height: 92px;
  color: var(--accent);
  transition: transform .4s var(--ease);
}
.scent-card:hover .scent-card__flacon { transform: translateY(-3px) scale(1.05); }
.scent-card__name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.scent-card__notes {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.scent-card__desc {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0;
}
.scent-card__foot {
  margin-top: auto;
  padding-top: 12px;
  width: 100%;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.scent-card__price {
  font-family: var(--ff-title);
  color: var(--ink);
  font-size: 1.15rem;
}
.scent-card__tag {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2-soft);
  border: 1px solid rgba(156,43,62,0.5);
  padding: 4px 8px;
  border-radius: 2px;
}

/* ============================================================
   COLLECTION STORY — editorial split
   ============================================================ */

.story {
  background:
    radial-gradient(circle at 85% 20%, rgba(156,43,62,0.12), transparent 45%),
    var(--surface);
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 900px) { .story__grid { grid-template-columns: 0.9fr 1.1fr; } }

.story__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bg-deep), var(--surface));
  overflow: hidden;
}
.story__art::after { content: ""; position: absolute; inset: 8px; border: 1px solid var(--line); }
.story__art svg { width: 62%; color: var(--accent); position: relative; z-index: 1; }
.story__art .corner { position: absolute; width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg); z-index: 2; }
.story__art .corner.tl { top: -5px; left: -5px; }
.story__art .corner.tr { top: -5px; right: -5px; }
.story__art .corner.bl { bottom: -5px; left: -5px; }
.story__art .corner.br { bottom: -5px; right: -5px; }

.story__body h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  letter-spacing: 0.03em;
  margin-bottom: 1.1rem;
}
.story__body p { color: var(--ink-soft); }
.story__body .lead { font-style: italic; color: var(--ink); font-size: 1.15rem; }
.story__marks {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.story__marks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.story__marks svg { width: 22px; height: 22px; color: var(--accent); margin-top: 3px; }
.story__marks strong { font-family: var(--ff-title); font-weight: 400; letter-spacing: 0.02em; display: block; }
.story__marks span { color: var(--ink-mute); font-size: 0.96rem; }

/* ============================================================
   GIFT SETS — box visuals
   ============================================================ */

.sets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 30px);
}
@media (min-width: 760px) { .sets-grid { grid-template-columns: repeat(3, 1fr); } }

.set-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--bg-deep));
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  transition: transform .3s var(--ease), border-color .3s var(--ease-2), box-shadow .3s var(--ease);
}
.set-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 50px -32px rgba(0,0,0,0.7);
}
.set-card.is-featured { border-color: var(--line-strong); background: linear-gradient(180deg, var(--surface-2), var(--bg-deep)); }
.set-card__ribbon {
  position: absolute;
  top: 16px; right: -1px;
  background: var(--accent-2);
  color: var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.set-card__box {
  width: 110px; height: 110px;
  margin-inline: auto;
  color: var(--accent);
}
.set-card__name { font-family: var(--ff-display); font-size: 1.6rem; letter-spacing: 0.03em; text-align: center; }
.set-card__price {
  text-align: center;
  font-family: var(--ff-title);
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.set-card__price small { display: block; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; font-family: var(--ff-body); }
.set-card ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 9px;
  font-size: 0.98rem;
}
.set-card ul li { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--ink-soft); }
.set-card ul li svg { width: 16px; height: 16px; color: var(--accent); margin-top: 4px; flex: none; }
.set-card ul li.excluded { color: var(--ink-mute); }
.set-card ul li.excluded svg { color: var(--accent-2-soft); }
.set-card__foot { margin-top: auto; padding-top: 6px; }
.set-card__foot .btn { width: 100%; }
.set-note {
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.86rem;
  margin-top: 26px;
  font-style: italic;
}

/* ============================================================
   PROCESS — vertical timeline
   ============================================================ */

.process__list {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 6px;
  position: relative;
}
.proc-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 30px);
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.proc-step:last-child { border-bottom: 0; }
.proc-step__num {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--accent);
  width: 54px; height: 54px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  flex: none;
}
.proc-step__num span { transform: rotate(-45deg); }
.proc-step__body { min-width: 0; }
.proc-step__body h3 { font-family: var(--ff-title); font-size: 1.3rem; letter-spacing: 0.02em; }
.proc-step__time { display: inline-block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2-soft); margin: 4px 0 8px; }
.proc-step__body p { color: var(--ink-soft); margin: 0; }

/* ============================================================
   ORDER CTA band
   ============================================================ */

.cta-band {
  position: relative;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(212,175,55,0.14), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}
/* rotating art-deco sunburst (shared by CTA band + inner page heroes) */
.sunburst {
  background: repeating-conic-gradient(from 0deg, rgba(212,175,55,0.9) 0deg 0.7deg, transparent 0.7deg 7.5deg);
  -webkit-mask: radial-gradient(circle, #000 12%, rgba(0,0,0,0.5) 34%, transparent 66%);
  mask: radial-gradient(circle, #000 12%, rgba(0,0,0,0.5) 34%, transparent 66%);
  border-radius: 50%;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.cta-band__sun {
  position: absolute;
  top: -46%; left: 50%;
  transform: translateX(-50%);
  width: min(620px, 120vw);
  aspect-ratio: 1;
  opacity: 0.16;
  animation: spin 120s linear infinite;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: 0.03em; }
.cta-band p { color: var(--ink-soft); max-width: 560px; margin-inline: auto; margin-top: 1rem; font-style: italic; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
}
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi {
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 30px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.testi__stars { color: var(--accent); letter-spacing: 0.2em; font-size: 0.9rem; }
.testi__text { color: var(--ink-soft); font-style: italic; margin: 0; }
.testi__by { margin-top: auto; }
.testi__name { font-family: var(--ff-title); letter-spacing: 0.02em; }
.testi__meta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 3px; }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  background: var(--surface);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(16px, 2.4vw, 22px) clamp(18px, 3vw, 28px);
  font-family: var(--ff-title);
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary .faq-ico {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
  transition: transform .36s var(--ease);
}
.faq-item > summary .faq-ico::before,
.faq-item > summary .faq-ico::after {
  content: "";
  position: absolute;
  background: var(--accent);
  top: 50%; left: 50%;
}
.faq-item > summary .faq-ico::before { width: 14px; height: 1.6px; transform: translate(-50%,-50%); }
.faq-item > summary .faq-ico::after { width: 1.6px; height: 14px; transform: translate(-50%,-50%); transition: transform .36s var(--ease); }
.faq-item[open] > summary .faq-ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item .answer {
  padding: 0 clamp(18px, 3vw, 28px) 24px;
}
.faq-item .answer p { color: var(--ink-soft); margin: 0; }
/* Smoothly animate the reveal via the native details content box in modern
   browsers; where ::details-content is unsupported the <details> simply shows
   its content instantly on open (still fully expands — no stuck-collapsed state). */
.faq-item::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 360ms var(--ease-2), content-visibility 360ms allow-discrete;
}
.faq-item[open]::details-content {
  block-size: auto;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item::details-content { transition: none; }
}

/* ============================================================
   NOTES / atelier updates
   ============================================================ */

.notes-list { display: grid; gap: 4px; max-width: 780px; margin-inline: auto; }
.note-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 28px);
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.note-row:last-child { border-bottom: 0; }
.note-row time { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.note-row p { margin: 0; color: var(--ink-soft); }
.note-row strong { font-family: var(--ff-title); font-weight: 400; color: var(--ink); display: block; letter-spacing: 0.02em; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(48px, 6vw, 74px) 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 48px);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--ink-mute); font-size: 0.96rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col address {
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-style: normal;
  transition: color .2s var(--ease-2);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(34px, 5vw, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-mute);
  font-size: 0.82rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   CONTACT page
   ============================================================ */

.page-hero {
  position: relative;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(44px, 7vw, 90px);
  background:
    radial-gradient(ellipse 70% 80% at 50% 30%, rgba(212,175,55,0.10), transparent 65%),
    var(--bg-deep);
  overflow: hidden;
}
.page-hero__sun {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(560px, 120vw);
  aspect-ratio: 1;
  opacity: 0.12;
  animation: spin 110s linear infinite;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(2.3rem, 6vw, 4rem); letter-spacing: 0.03em; }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 1rem auto 0; font-style: italic; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.channel {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .28s var(--ease), border-color .28s var(--ease-2), box-shadow .28s var(--ease);
  min-width: 0;
}
.channel:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 22px 40px -28px rgba(0,0,0,0.7); }
.channel__ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(212,175,55,0.08);
}
.channel__ico svg { width: 22px; height: 22px; }
.channel__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.channel__value { font-family: var(--ff-title); font-size: 1.1rem; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
.channel a.channel__value:hover { color: var(--accent); }
.channel__sub { font-size: 0.86rem; color: var(--ink-mute); }

.hours-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  background: var(--surface);
  margin-top: 20px;
}
.hours-card h3 { font-family: var(--ff-title); letter-spacing: 0.02em; margin-bottom: 14px; font-size: 1.2rem; }
.hours-card dl { margin: 0; display: grid; gap: 2px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-variant-numeric: tabular-nums;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row dt { color: var(--ink-soft); }
.hours-row dd { margin: 0; color: var(--ink); }
.hours-row.is-today { background: rgba(212,175,55,0.08); }
.hours-row.is-today dt, .hours-row.is-today dd { color: var(--accent); }

/* ============================================================
   FORM
   ============================================================ */

.form-wrap {
  border: 1px solid var(--line-strong);
  padding: clamp(24px, 3vw, 40px);
  background: var(--surface);
  position: relative;
}
.form-wrap::after { content: ""; position: absolute; inset: 8px; border: 1px solid var(--line); pointer-events: none; }
.form-wrap > * { position: relative; z-index: 1; }
.form-wrap h2 { font-family: var(--ff-display); font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: 0.03em; margin-bottom: 6px; }
.form-wrap > p { color: var(--ink-mute); margin-bottom: 22px; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 560px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field > span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-deep);
  border: 0;
  border-bottom: 1.6px solid var(--line);
  padding: 12px 4px;
  transition: border-color .24s var(--ease-2);
  border-radius: 0;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field select option { background: var(--bg-deep); color: var(--ink); }

.field.kvkk, .kvkk {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.kvkk a { color: var(--accent); text-decoration: underline; }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 3px 0 0;
  accent-color: var(--accent);
}
.form-actions { margin-top: 6px; }
.form-actions .btn { width: 100%; }
@media (min-width: 560px) { .form-actions .btn { width: auto; } }

/* ============================================================
   LEGAL / ARTICLE pages
   ============================================================ */

.prose {
  max-width: 820px;
  margin-inline: auto;
}
.prose h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  letter-spacing: 0.03em;
  margin: 2.4rem 0 1rem;
  padding-top: 0.4rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--ff-title); font-size: 1.25rem; margin: 1.6rem 0 0.7rem; letter-spacing: 0.02em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.1rem; display: grid; gap: 8px; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   TABLE
   ============================================================ */

.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: 4px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.table-scroll th, .table-scroll td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.96rem;
}
.table-scroll th {
  font-family: var(--ff-title);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.04em;
  background: var(--surface);
}
.table-scroll td { color: var(--ink-soft); }
.table-scroll tr:last-child td { border-bottom: 0; }

/* ============================================================
   404 / thank-you centered
   ============================================================ */

.centered-msg {
  min-height: min(calc(100vh - var(--header-h) - 300px), 460px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(60px, 10vw, 120px);
  gap: 18px;
}
.centered-msg .emblem { width: 84px; color: var(--accent); }
.centered-msg h1 { font-family: var(--ff-display); font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: 0.03em; }
.centered-msg p { color: var(--ink-soft); max-width: 480px; font-style: italic; }
.centered-msg .code { font-family: var(--ff-display); font-size: clamp(4rem, 16vw, 9rem); color: var(--accent); line-height: 1; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-deep);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 22px 22px 20px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 { font-family: var(--ff-title); font-size: 1.15rem; margin-bottom: 8px; letter-spacing: 0.02em; }
.cookie-banner p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  padding: 11px 14px;
  transition: background .2s var(--ease-2), color .2s var(--ease-2), border-color .2s var(--ease-2);
}
.cookie-actions .c-accept { background: var(--accent); color: var(--bg); border: 1px solid var(--accent); }
.cookie-actions .c-accept:hover { background: var(--accent-soft); color: var(--bg); }
/* Reddet must carry equal visual weight to Kabul et (KVKK/GDPR — no dark pattern):
   a solid, filled button, not a de-emphasised ghost. */
.cookie-actions .c-reject { background: var(--surface-2); color: var(--ink); border: 1px solid var(--line-strong); }
.cookie-actions .c-reject:hover { background: var(--surface); color: var(--accent); border-color: var(--accent); }
.cookie-actions .c-settings { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.cookie-actions .c-settings:hover { background: var(--surface); color: var(--ink); }
/* Accept + Reject share one row (primary pair); Ayarlar drops to a full-width
   tertiary line so the two consent choices read as equals. */
.cookie-actions .c-accept, .cookie-actions .c-reject { flex: 1 1 calc(50% - 5px); }
.cookie-actions .c-settings { flex: 1 1 100%; }
@media (min-width: 720px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
}
.cookie-modal.is-open { display: flex; }
.cookie-modal__panel {
  background: var(--bg-deep);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: clamp(24px, 4vw, 34px);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal__panel h3 { font-family: var(--ff-display); font-size: 1.6rem; letter-spacing: 0.03em; margin-bottom: 14px; }
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.toggle-row h4 { font-family: var(--ff-title); font-weight: 400; letter-spacing: 0.02em; }
.toggle-row p { font-size: 0.86rem; color: var(--ink-mute); margin: 4px 0 0; }
.switch { position: relative; width: 46px; height: 26px; flex: none; margin-top: 2px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--surface-2); border: 1px solid var(--line); border-radius: 20px; transition: background .2s; }
.switch .track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: var(--ink-mute); border-radius: 50%; transition: transform .22s var(--ease), background .2s; }
.switch input:checked + .track { background: rgba(212,175,55,0.25); border-color: var(--accent); }
.switch input:checked + .track::before { transform: translateX(20px); background: var(--accent); }
.switch input:disabled + .track { opacity: 0.6; }
.cookie-modal__actions { margin-top: 22px; display: flex; justify-content: flex-end; }

/* ============================================================
   REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }

html.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__bg, .cta-band__sun, .page-hero__sun, .hero__cue span, .btn-primary::after { animation: none !important; }
  .hero__bg { transform: scale(1.04) !important; }
}

/* ============================================================
   RESPONSIVE tweaks
   ============================================================ */

@media (max-width: 640px) {
  body { font-size: 1.02rem; }
  .scent-card, .set-card, .testi, .channel { padding: 20px; }
  .proc-step__num { width: 46px; height: 46px; font-size: 1.4rem; }
  .cookie-actions button { flex: 1 1 100%; }
  .footer-bottom { justify-content: flex-start; }
  .hero__cue { display: none; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 auto; }
}

/* keep hero title from clipping on the smallest phones */
@media (max-width: 380px) {
  .hero__title { font-size: clamp(2rem, 8.6vw, 2.6rem); }
}

.long-text { word-break: break-word; overflow-wrap: anywhere; }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ============================================================
   ELEVATION LAYER — Maison 1926 · art-deco refinement
   (typography rhythm, showcase framing, deco flourishes,
    restrained motion). Additive only; guards untouched.
   ============================================================ */

/* ---- typographic accents: italic key-words in gold ---- */
.section-head h2 i,
.story__body h2 i,
.cta-band h2 i,
.page-hero h1 i {
  font-style: italic;
  font-family: var(--ff-body);
  color: var(--accent-soft);
  letter-spacing: 0.01em;
}
.hero__title i { font-family: var(--ff-body); }

/* body: let the display face breathe, tighten oldstyle numerals */
.stat__num, .set-card__price, .scent-card__price, .hero__stat-n {
  font-feature-settings: "lnum" 1;
}
.section-head h2, .story__body h2, .cta-band h2,
.set-card__name, .scent-card__name, .proc-step__body h3 {
  text-wrap: balance;
}

/* ---- section-head flourish: centred diamond hairline ---- */
.section-head h2 { position: relative; padding-bottom: 24px; }
.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  transform: translateX(-50%);
  width: 92px; height: 1px;
  background:
    linear-gradient(90deg, transparent, var(--line-strong) 42%) left center / 34px 1px no-repeat,
    linear-gradient(90deg, var(--line-strong) 58%, transparent) right center / 34px 1px no-repeat;
}
.section-head h2::before {
  content: "";
  position: absolute;
  left: 50%; bottom: 1px;
  width: 6px; height: 6px;
  background: var(--accent);
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.10);
}

/* ---- SIGNATURE SCENTS: unified showcase framing ---- */
.scent-card__image {
  order: -1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 4px;
  filter: saturate(0.96) contrast(1.03);
  transition: transform .6s var(--ease), filter .4s var(--ease-2);
}
.scent-card:hover .scent-card__image {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.05);
}
/* when a photo exists, it is the hero — drop the line-art flacon */
.scent-card:has(.scent-card__image) .scent-card__flacon { display: none; }
/* the photo-less signature gets a matching framed flacon plate */
.scent-card:not(:has(.scent-card__image)) .scent-card__flacon {
  order: -1;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 38%, rgba(212,175,55,0.10), transparent 62%),
    linear-gradient(160deg, var(--bg-deep), var(--surface));
}
.scent-card:not(:has(.scent-card__image)) .scent-card__flacon {
  transition: border-color .3s var(--ease-2), background .4s var(--ease-2);
}
.scent-card:not(:has(.scent-card__image)):hover .scent-card__flacon {
  transform: none;              /* the framed plate stays put; only the line-art lifts */
  border-color: var(--line-strong);
}
.scent-card:not(:has(.scent-card__image)) .scent-card__flacon svg {
  width: 42%; height: auto;
  transition: transform .4s var(--ease);
}
.scent-card:not(:has(.scent-card__image)):hover .scent-card__flacon svg {
  transform: translateY(-3px) scale(1.06);
}

/* ---- STATS band: hairline art-deco dividers ---- */
@media (min-width: 768px) {
  .stats__grid > * { position: relative; }
  .stats__grid > * + *::before {
    content: "";
    position: absolute;
    left: calc(-10px - 1px);
    top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 46px;
    background: linear-gradient(var(--line-soft), var(--line-strong), var(--line-soft));
  }
}

/* ---- PROCESS: gilded diamond markers ---- */
.proc-step__num {
  transition: border-color .3s var(--ease-2), background .3s var(--ease-2), box-shadow .3s var(--ease);
  background: linear-gradient(160deg, var(--surface), var(--bg-deep));
}
.proc-step:hover .proc-step__num {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.08);
}

/* ---- TESTIMONIALS: deco quotation flourish + hover-lift ---- */
.testi { position: relative; overflow: hidden; transition: transform .3s var(--ease), border-color .3s var(--ease-2), box-shadow .3s var(--ease); }
.testi::before {
  content: "\201C";
  position: absolute;
  top: -0.35em; right: 0.2em;
  font-family: var(--ff-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  pointer-events: none;
}
.testi:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 50px -32px rgba(212,175,55,0.35);
}

/* ---- warmer, accent-tinted hover shadows for cohesion ---- */
.set-card:hover { box-shadow: 0 28px 50px -30px rgba(212,175,55,0.30); }
.channel:hover { box-shadow: 0 22px 44px -30px rgba(212,175,55,0.30); }

/* ---- NOTES: gold tick before each atelier update ---- */
.note-row time { position: relative; padding-left: 16px; }
.note-row time::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 5px; height: 5px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* ---- FAQ: lift the active question ---- */
.faq-item { transition: border-color .28s var(--ease-2), background .28s var(--ease-2); }
.faq-item[open] { border-color: var(--line-strong); background: var(--surface-2); }
.faq-item > summary:hover { color: var(--accent); }

/* ---- CTA band eyebrow spacing rhythm ---- */
.cta-band h2 { margin-top: 0.2rem; }

/* honour reduced-motion for the new decorative motion */
@media (prefers-reduced-motion: reduce) {
  .scent-card__image,
  .scent-card__flacon svg,
  .proc-step__num,
  .testi { transition: none !important; }
}

/* ---- small-screen safety: keep showcase + flourish tidy ---- */
@media (max-width: 480px) {
  .testi::before { font-size: 4.4rem; }
  .section-head h2::after { width: 60px; }
}

/* ============================================================
   AWARD REFINEMENT — Maison 1926 · v2
   Deeper art-deco texture, stronger display rhythm, gilded
   detailing and editorial numbering. Additive only — every
   guard, form, drawer and reduced-motion rule stays intact.
   ============================================================ */

:root {
  --gild: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 52%, #a9821f 100%);
  /* small art-deco fan (radiating rays) used as a section emblem */
  --deco-fan: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2064%2034'%3E%3Cg%20fill='none'%20stroke='%23000'%20stroke-width='2.6'%20stroke-linecap='round'%3E%3Cpath%20d='M32%2031V6'/%3E%3Cpath%20d='M32%2031%2017%2010'/%3E%3Cpath%20d='M32%2031%2047%2010'/%3E%3Cpath%20d='M32%2031%206%2018'/%3E%3Cpath%20d='M32%2031%2058%2018'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---- stronger display scale + rhythm on wide screens ---- */
@media (min-width: 1024px) {
  .section-head { max-width: 720px; }
  .section-head h2,
  .story__body h2 { font-size: clamp(2.5rem, 3.7vw, 3.55rem); }
  .section { padding-block: clamp(74px, 8.5vw, 138px); }
}
p { text-wrap: pretty; }

/* ---- section emblem: a gilded art-deco fan above every head ---- */
.section-head::before {
  content: "";
  display: block;
  width: 58px; height: 27px;
  margin: 0 auto 22px;
  background: var(--gild);
  -webkit-mask: var(--deco-fan) center / contain no-repeat;
  mask: var(--deco-fan) center / contain no-repeat;
}

/* ---- STATS band: framed as a double-hairline art-deco plate ---- */
.stats { position: relative; }
.stats::before,
.stats::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}
.stats::before { top: 4px; }
.stats::after { bottom: 4px; }
/* gilded numerals — only go transparent where text-clip is truly supported,
   so numbers can never vanish on engines without background-clip:text */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .stat__num {
    background: var(--gild);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .stat__num span { color: inherit; -webkit-text-fill-color: inherit; }
  .scent-card__price {
    background: var(--gild);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* ---- SIGNATURE SCENTS: editorial plate numbers ---- */
.scents-grid .scent-card::after {
  position: absolute;
  top: 15px; left: 17px;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  color: var(--accent-soft);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  z-index: 3;
  pointer-events: none;
}
.scents-grid .scent-card:nth-child(1)::after { content: "N\00B0 I"; }
.scents-grid .scent-card:nth-child(2)::after { content: "N\00B0 II"; }
.scents-grid .scent-card:nth-child(3)::after { content: "N\00B0 III"; }

/* ---- COLLECTION STORY: slow image breathe on hover ---- */
.story__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .5s var(--ease-2);
  filter: saturate(0.97);
}
.story__art:hover img { transform: scale(1.045); filter: saturate(1.04); }

/* ---- PROCESS: gilded connecting spine through the diamonds ---- */
.process__list::before {
  content: "";
  position: absolute;
  top: 40px; bottom: 40px;
  left: 27px;
  width: 1px;
  background: linear-gradient(var(--line-soft), var(--line-strong) 10%, var(--line-strong) 90%, var(--line-soft));
  z-index: 0;
  pointer-events: none;
}
.proc-step { position: relative; z-index: 1; }

/* ---- GIFT SETS: lift + gild the featured column ---- */
.set-card.is-featured::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gild);
}
@media (min-width: 760px) {
  .sets-grid .set-card.is-featured { transform: translateY(-12px); box-shadow: 0 34px 60px -34px rgba(212,175,55,0.4); }
  .sets-grid .set-card.is-featured:hover { transform: translateY(-18px); }
}

/* ---- deco-tinted default resting shadow for cohesion ---- */
.scent-card, .set-card { box-shadow: 0 18px 40px -34px rgba(0,0,0,0.75); }

/* ---- FOOTER: gilded hairline crown ---- */
.site-footer { position: relative; }
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--accent) 50%, var(--line-strong) 80%, transparent);
  opacity: 0.7;
}

/* ---- PAGE HERO (inner pages): fan emblem + tighter type ---- */
.page-hero h1 { position: relative; }
.page-hero .container .eyebrow.solo { margin-bottom: 1.3rem; }

/* ---- honour reduced-motion for the new decorative motion ---- */
@media (prefers-reduced-motion: reduce) {
  .story__art img,
  .sets-grid .set-card.is-featured { transition: none !important; }
  .story__art:hover img { transform: none !important; }
}

/* ---- mobile: keep the spine + plate numbers aligned/legible ---- */
@media (max-width: 640px) {
  .process__list::before { left: 23px; }
  .scents-grid .scent-card::after { top: 13px; left: 15px; font-size: 0.74rem; }
  .section-head::before { width: 50px; height: 24px; margin-bottom: 18px; }
}
