/* =========================================================================
   YILDIRAY KENAR — Luxury Watches
   Design system: royal black · regal gold · oxblood ruby · pearl
   ========================================================================= */

:root {
  /* canvas */
  --ink:        #08070a;
  --ink-2:      #0d0b10;
  --ink-3:      #14111a;
  --panel:      #100d14;
  --line:       rgba(214, 184, 116, .16);
  --line-soft:  rgba(255, 255, 255, .07);

  /* metals & jewels */
  --gold:       #d6b874;
  --gold-hi:    #f4e2b0;
  --gold-deep:  #9a7a36;
  --ox:         #8a1628;   /* oxblood ruby */
  --ox-hi:      #c0334b;
  --ox-deep:    #4a0c16;

  /* type */
  --pearl:      #f3ece0;
  --pearl-dim:  #c9c1b4;
  --muted:      #8b8378;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;
  --script:"Allura", cursive;

  --maxw: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--pearl);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* faint vertical light columns + grain for atmosphere */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(214, 184, 116, .10), transparent 60%),
    radial-gradient(40% 40% at 88% 8%, rgba(138, 22, 40, .10), transparent 60%);
}

::selection { background: var(--ox); color: var(--gold-hi); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ----- shared layout ----- */
.wrap { width: min(100% - 48px, var(--maxw)); margin-inline: auto; position: relative; z-index: 2; }
.section { position: relative; padding: 120px 0; }
.eyebrow {
  font-size: 11px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before, .eyebrow.center::after {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { background: linear-gradient(90deg, var(--gold), transparent); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.05; letter-spacing: -.01em; }
.h-display { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.h-section { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.lead { color: var(--pearl-dim); font-size: clamp(1rem, 1.2vw, 1.12rem); max-width: 52ch; }
.gold-word { color: var(--gold); font-style: italic; }
.ox-word { color: var(--ox-hi); font-style: italic; }

/* gold divider flourish */
.flourish { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 14px 0; }
.flourish span { width: 70px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.flourish span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.flourish i { color: var(--gold); font-size: 11px; transform: rotate(45deg); }

/* ========================================================================
   NAV
   ======================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 7, 10, .82); backdrop-filter: blur(16px) saturate(140%);
  padding-top: 14px; padding-bottom: 14px; border-bottom-color: var(--line);
}
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .name { font-family: var(--script); font-size: 30px; color: var(--pearl); margin-bottom: -2px; }
.nav-brand .sub { font-size: 8px; letter-spacing: .34em; color: var(--gold); text-transform: uppercase; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--pearl-dim);
  position: relative; padding: 6px 0; transition: color .35s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--gold-hi); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold); padding: 10px 20px; border-radius: 2px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); box-shadow: 0 0 26px rgba(214, 184, 116, .4); }
.lang-switch {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid rgba(214,184,116,.45); color: var(--gold-hi); padding: 5px 10px; border-radius: 2px;
  transition: all .3s var(--ease); text-decoration: none !important;
}
.lang-switch::after { display: none !important; }
.lang-switch:hover { border-color: var(--gold); background: rgba(214,184,116,.1); color: var(--gold-hi); }
.nav-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: var(--pearl-dim); transition: color .3s, background .3s;
  text-decoration: none !important;
}
.nav-icon::after { display: none !important; }
.nav-icon svg { width: 18px; height: 18px; }
.nav-icon:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-icon.nav-wa:hover { color: #25d366; background: rgba(37,211,102,.12); }
.nav-icon.nav-tg:hover { color: #37aee2; background: rgba(55,174,226,.12); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: 0; }
.nav-burger span { width: 26px; height: 2px; background: var(--gold); transition: .3s; }

/* real logo assets */
.nav-logo { height: 52px; width: auto; display: block; transition: height .5s var(--ease); }
.nav.scrolled .nav-logo { height: 42px; }
.hero-logo { width: min(100%, 540px); height: auto; margin: 0 0 22px; filter: drop-shadow(0 12px 44px rgba(0, 0, 0, .55)); }
.foot-logo { width: 280px; max-width: 82%; height: auto; margin-bottom: 4px; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero { min-height: 100svh; display: grid; place-items: center; overflow: hidden; padding-top: 90px; }
.hero .layer { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; width: 130vh; height: 130vh; left: 50%; top: 46%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(214, 184, 116, .16), rgba(138, 22, 40, .08) 40%, transparent 66%);
  filter: blur(20px);
}
.hero-rings { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); opacity: .5; }
.hero-rings span {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%;
  border: 1px solid var(--line);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; width: 100%;
}
.hero-copy { z-index: 3; }
.hero-copy .script-name {
  font-family: var(--script); font-size: clamp(3.4rem, 9vw, 7rem); color: var(--pearl);
  line-height: .8; margin: 10px 0 6px; text-shadow: 0 6px 40px rgba(0, 0, 0, .6);
}
.hero-copy h1 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); color: var(--pearl); font-weight: 500; letter-spacing: .02em; }
.hero-copy .lead { margin: 22px 0 34px; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.tag {
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--line); padding: 7px 13px; border-radius: 2px; background: rgba(214, 184, 116, .04);
}
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 2px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  transition: all .45s var(--ease); cursor: pointer; border: 1px solid transparent;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-hi), var(--gold) 55%, var(--gold-deep)); color: #1a1206; box-shadow: 0 10px 30px rgba(214, 184, 116, .22); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(214, 184, 116, .4); }
.btn-ghost { border-color: var(--line); color: var(--pearl); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); background: rgba(214, 184, 116, .05); }
.btn svg { width: 15px; height: 15px; }

.hero-watch { position: relative; display: grid; place-items: center; z-index: 2; }
.hero-watch .dial { width: clamp(280px, 38vw, 500px); filter: drop-shadow(0 40px 70px rgba(0, 0, 0, .7)); }
.hero-watch .hero-img {
  width: clamp(240px, 30vw, 400px); aspect-ratio: 3/4; object-fit: cover; object-position: center 18%;
  border-radius: 14px;
  box-shadow: 0 50px 90px rgba(0,0,0,.85), 0 0 0 1px rgba(214,184,116,.3), inset 0 0 0 1px rgba(255,255,255,.05);
  animation: dialFloat 7s ease-in-out 1.1s infinite;
}
.hero-watch .halo {
  position: absolute; width: 116%; height: 116%; border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 184, 116, .14), transparent 62%);
}
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; top: -40px; left: 0; width: 1px; height: 40px; background: var(--gold-hi); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { to { top: 40px; } }

/* ----- cinematic opening (subtle) ----- */
/* rings expand in on load, staggered */
.hero-rings span { opacity: 0; animation: ringIn 1.5s var(--ease) forwards; }
.hero-rings span:nth-child(1) { animation-delay: .15s; }
.hero-rings span:nth-child(2) { animation-delay: .32s; }
.hero-rings span:nth-child(3) { animation-delay: .5s; }
@keyframes ringIn { from { transform: translate(-50%, -50%) scale(.72); opacity: 0; } to { transform: translate(-50%, -50%) scale(1); opacity: .5; } }

/* glow breathes (opacity only — transform left to pointer parallax) */
.hero-glow { animation: glowBreathe 8s ease-in-out 1s infinite; }
@keyframes glowBreathe { 0%, 100% { opacity: .85; } 50% { opacity: 1; } }

/* hero watch gently floats (parent keeps pointer-parallax) */
.hero-watch .dial { animation: dialFloat 7s ease-in-out 1.1s infinite; }
@keyframes dialFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-watch .halo { animation: haloPulse 7s ease-in-out 1.1s infinite; }
@keyframes haloPulse { 0%, 100% { opacity: .9; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }

/* one-time gold light sweep across the hero */
.hero-sweep { position: absolute; inset: 0; z-index: 4; pointer-events: none; transform: translateX(-130%) skewX(-12deg);
  background: linear-gradient(100deg, transparent 40%, rgba(244, 226, 176, .12) 48%, rgba(255, 255, 255, .18) 50%, rgba(244, 226, 176, .12) 52%, transparent 60%);
  animation: heroSweep 2s var(--ease) .35s 1 both; }
@keyframes heroSweep { to { transform: translateX(130%) skewX(-12deg); } }

/* slow-drifting gold dust */
.hero-particles i { position: absolute; left: var(--l, 20%); top: var(--t, 70%); width: var(--s, 3px); height: var(--s, 3px);
  border-radius: 50%; background: radial-gradient(circle, var(--gold-hi), rgba(214, 184, 116, 0)); filter: blur(.4px);
  opacity: 0; animation: dustFloat var(--d, 12s) ease-in-out var(--dl, 0s) infinite; }
@keyframes dustFloat { 0% { transform: translateY(24px); opacity: 0; } 18% { opacity: var(--o, .4); } 82% { opacity: var(--o, .4); } 100% { transform: translateY(-70px); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .hero-sweep, .hero-particles { display: none; }
  .hero-rings span { opacity: .5; }
}

/* ========================================================================
   MARQUEE
   ======================================================================== */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0; overflow: hidden; background: linear-gradient(var(--ink-2), var(--ink));
}
.marquee-track { display: flex; gap: 56px; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--pearl-dim); display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: 13px; font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ========================================================================
   COLLECTION CARDS
   ======================================================================== */
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head .lead { margin: 18px auto 0; }

.grid-collection {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.card {
  position: relative; border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  padding: 34px 28px 28px; transition: transform .6s var(--ease), border-color .5s, box-shadow .6s;
  isolation: isolate;
}
.card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .6s;
  background: radial-gradient(120% 80% at 50% 0%, rgba(214, 184, 116, .12), transparent 60%);
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: 4px; padding: 1px; z-index: 3; pointer-events: none;
  background: linear-gradient(160deg, rgba(214, 184, 116, .5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .6s;
}
.card:hover { transform: translateY(-10px); border-color: rgba(214, 184, 116, .4); box-shadow: 0 30px 60px rgba(0, 0, 0, .55); }
.card:hover::before, .card:hover::after { opacity: 1; }

.card-badge {
  position: absolute; top: 18px; right: 18px; z-index: 4; font-size: 9px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-hi); border: 1px solid var(--line);
  padding: 5px 10px; border-radius: 2px; background: rgba(8, 7, 10, .6);
}
.card-badge.ox { color: #ffd9df; border-color: rgba(192, 51, 75, .5); background: rgba(74, 12, 22, .5); }
.card-dial { display: grid; place-items: center; padding: 8px 0 22px; }
.card-dial .dial { width: 220px; transition: transform .7s var(--ease); filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .55)); }
.card:hover .card-dial .dial { transform: scale(1.06) rotate(-1.5deg); }
.card-name { font-family: var(--serif); font-size: 1.6rem; color: var(--pearl); }
.card-ref { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.card-specs { list-style: none; margin: 18px 0; display: grid; gap: 9px; }
.card-specs li { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--pearl-dim); }
.card-specs li svg { width: 14px; height: 14px; color: var(--gold); flex: none; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.card-price { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-hi); }
.card-price small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); transition: gap .35s, color .35s;
  background: none; border: 0; padding: 0; cursor: pointer; font-family: var(--sans);
}
.card-link:hover { gap: 14px; color: var(--gold-hi); }

/* photo media (client-uploaded watches) */
.card-mediabtn { display: block; width: 100%; background: none; border: 0; padding: 0; cursor: pointer; }
.card-media { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 1/1; background: radial-gradient(circle at 50% 40%, var(--ink-3), var(--ink)); margin-bottom: 4px; }
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; filter: saturate(1.06) contrast(1.04); transition: transform .8s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }
/* vignette so light studio backgrounds blend into the dark card */
.card-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 4px;
  background: radial-gradient(125% 115% at 50% 32%, transparent 56%, rgba(8, 7, 10, .58) 100%);
  box-shadow: inset 0 0 50px rgba(8, 7, 10, .45); }
.card-mediabtn .card-dial { cursor: pointer; }

/* ========================================================================
   PRODUCT MODAL / GALLERY
   ======================================================================== */
.yk-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; visibility: hidden; opacity: 0; transition: opacity .4s var(--ease), visibility .4s; }
.yk-modal.open { visibility: visible; opacity: 1; }
.yk-modal-backdrop { position: absolute; inset: 0; background: rgba(4, 3, 6, .82); backdrop-filter: blur(8px); }
.yk-modal-card {
  position: relative; z-index: 2; width: min(100%, 980px); max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); border: 1px solid var(--line);
  border-radius: 6px; box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
  transform: translateY(24px) scale(.98); transition: transform .5s var(--ease);
}
.yk-modal.open .yk-modal-card { transform: none; }
.yk-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 5; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(8, 7, 10, .6); border: 1px solid var(--line); color: var(--gold); cursor: pointer;
  display: grid; place-items: center; transition: all .3s;
}
.yk-modal-close:hover { background: var(--gold); color: var(--ink); }
.yk-modal-close svg { width: 18px; height: 18px; }
.yk-modal-gallery { padding: 28px; display: flex; flex-direction: column; gap: 14px; background: radial-gradient(circle at 50% 36%, rgba(214,184,116,.06), transparent 60%); }
.yk-gal-main { aspect-ratio: 4/5; border-radius: 5px; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 50% 38%, var(--ink-3), var(--ink)); }
.yk-gal-main img { width: 100%; height: 100%; object-fit: contain; }
.yk-gal-main .dial { width: 86%; }
.yk-gal-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.yk-gal-thumbs button { width: 60px; height: 60px; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); background: none; cursor: pointer; padding: 0; opacity: .6; transition: all .3s; }
.yk-gal-thumbs button.active, .yk-gal-thumbs button:hover { opacity: 1; border-color: var(--gold); }
.yk-gal-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.yk-modal-info { padding: 40px 36px 36px; display: flex; flex-direction: column; }
.yk-modal-info .card-badge { position: static; align-self: flex-start; margin-bottom: 14px; }
.yk-modal-info .card-ref { margin-bottom: 4px; }
.yk-modal-info h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--pearl); }
.yk-modal-price { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-hi); margin: 14px 0; }
.yk-modal-price small { font-family: var(--sans); font-size: 9px; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; margin-left: 8px; }
.yk-modal-desc { color: var(--pearl-dim); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.yk-modal-info .card-specs { margin: 0 0 26px; }
.yk-modal-info .btn-wa { margin-top: auto; justify-content: center; }

@media (max-width: 760px) {
  .yk-modal { padding: 0; }
  .yk-modal-card { grid-template-columns: 1fr; max-height: 100vh; border-radius: 0; width: 100%; }
  .yk-modal-gallery { padding: 20px; }
  .yk-modal-info { padding: 24px; }
}

/* ========================================================================
   SIGNATURE / FEATURED MODEL
   ======================================================================== */
.signature { background: linear-gradient(180deg, var(--ink), var(--ink-2) 50%, var(--ink)); overflow: hidden; }
.sig-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 56px; }
.sig-stage { position: relative; display: grid; place-items: center; }
.sig-stage .dial { width: clamp(260px, 32vw, 440px); filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .7)); }
.sig-stage .sig-photo { width: clamp(240px, 30vw, 380px); aspect-ratio: 3/4; object-fit: cover; object-position: center 26%; border-radius: 8px; border: 1px solid var(--line); box-shadow: 0 40px 70px rgba(0, 0, 0, .6); position: relative; z-index: 1; }
.sig-stage .ringword {
  position: absolute; font-family: var(--serif); font-style: italic; color: rgba(214, 184, 116, .1);
  font-size: clamp(4rem, 14vw, 11rem); white-space: nowrap; z-index: 0; user-select: none;
}
.sig-copy h2 { margin: 16px 0 18px; }
.spec-table { list-style: none; margin: 28px 0; border-top: 1px solid var(--line); }
.spec-table li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.spec-table .k { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.spec-table .v { color: var(--pearl); font-family: var(--serif); font-size: 1.05rem; }

/* ========================================================================
   FEATURES / WHY US
   ======================================================================== */
.features { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.feature { background: var(--ink-2); padding: 40px 32px; transition: background .5s; }
.feature:hover { background: var(--ink-3); }
.feature-ico { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); margin-bottom: 22px; transition: all .5s var(--ease); }
.feature:hover .feature-ico { background: var(--gold); color: var(--ink); border-color: var(--gold); box-shadow: 0 0 26px rgba(214, 184, 116, .35); }
.feature-ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.25rem; color: var(--pearl); margin-bottom: 10px; }
.feature p { font-size: 13.5px; color: var(--pearl-dim); line-height: 1.7; }

/* ========================================================================
   STATS
   ======================================================================== */
.stats { padding: 90px 0; }
.grid-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); color: var(--gold-hi); line-height: 1; }
.stat .num span { color: var(--ox-hi); }
.stat .label { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.stat + .stat { border-left: 1px solid var(--line); }

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testi { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.grid-testi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { border: 1px solid var(--line); border-radius: 4px; padding: 34px 30px; background: var(--ink-3); position: relative; }
.quote .mark { font-family: var(--serif); font-size: 4rem; color: var(--gold); opacity: .35; line-height: .6; }
.quote p { color: var(--pearl-dim); font-style: italic; margin: 6px 0 22px; font-family: var(--serif); font-size: 1.08rem; line-height: 1.6; }
.quote .stars { color: var(--gold); letter-spacing: 3px; font-size: 13px; margin-bottom: 14px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--ox), var(--ox-deep)); color: var(--gold-hi); font-family: var(--serif); font-weight: 600; }
.quote .who .nm { font-size: 13px; color: var(--pearl); font-weight: 500; }
.quote .who .ct { font-size: 11px; color: var(--muted); }

/* ========================================================================
   CTA / CONTACT
   ======================================================================== */
.cta { position: relative; overflow: hidden; padding: 130px 0; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% 50%, rgba(138, 22, 40, .16), transparent 60%), radial-gradient(50% 70% at 50% 0%, rgba(214, 184, 116, .12), transparent 60%); }
.cta-inner { text-align: center; max-width: 760px; margin-inline: auto; }
.cta-inner h2 { margin: 18px 0; }
.cta-inner .lead { margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wa { background: linear-gradient(135deg, #1faf5e, #0c7a3c); color: #fff; border: none; }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(31, 175, 94, .35); }
.btn-tg { background: linear-gradient(135deg, #37aee2, #1c93d1); color: #fff; border: none; }
.btn-tg:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(55, 174, 226, .35); }
.contact-meta { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.contact-meta .item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.contact-meta .item .k { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.contact-meta .item .v { color: var(--pearl); font-size: 14px; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer { border-top: 1px solid var(--line); padding: 60px 0 36px; background: var(--ink); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-brand .name { font-family: var(--script); font-size: 42px; color: var(--pearl); line-height: .8; }
.foot-brand .sub { font-size: 9px; letter-spacing: .34em; color: var(--gold); text-transform: uppercase; margin-top: 6px; }
.foot-brand p { color: var(--muted); font-size: 13px; margin-top: 16px; max-width: 38ch; }
.foot-col h4 { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-col a, .foot-col span { display: block; color: var(--pearl-dim); font-size: 13px; margin-bottom: 11px; transition: color .3s; }
.foot-col a:hover { color: var(--gold-hi); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.foot-bottom p { font-size: 11.5px; color: var(--muted); }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); transition: all .4s var(--ease); }
.foot-social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.foot-social svg { width: 17px; height: 17px; }
.disclaimer { font-size: 10.5px; color: #5a5650; text-align: center; margin-top: 22px; line-height: 1.6; max-width: 80ch; margin-inline: auto; }

/* ========================================================================
   SCROLL REVEAL
   ======================================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1024px) {
  .grid-collection, .grid-features, .grid-testi { grid-template-columns: repeat(2, 1fr); }
  .grid-stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat + .stat { border-left: none; }
  .sig-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero-watch { order: -1; }
  .hero-watch .dial { width: clamp(220px, 60vw, 320px); }
  .hero-watch .hero-img { width: clamp(190px, 55vw, 280px); }
  .hero-tags, .btn-row, .eyebrow { justify-content: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-logo { margin-inline: auto; width: min(100%, 440px); }
}
@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .grid-collection, .grid-features, .grid-testi { grid-template-columns: 1fr; }
  .grid-stats { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .nav-brand .name { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
