/* =========================================================
   Juwelier D. Dührkoop — Demo
   "Helles Haus" · Light Editorial Luxury · Rolex-fokussiert
   Static, no build step. Fonts self-hosted (DSGVO).
   ========================================================= */
@import url("../assets/fonts/fonts.css");

:root {
  /* Light palette */
  --paper:     #FFFFFF;
  --cream:     #F6F2EA;   /* warm alternating sections */
  --cream-2:   #EEE7D9;
  --ink:       #1B1B1E;   /* headings + text */
  --ink-soft:  #3C3A3E;
  --muted:     #7B766C;
  --line:      rgba(27,27,30,.12);
  --line-soft: rgba(27,27,30,.06);

  --gold:        #B5903F;
  --gold-deep:   #8C6B24;
  --gold-bright: #C9A24B;
  --gold-soft:   rgba(181,144,63,.10);
  --gold-grad:   linear-gradient(135deg, #C9A24B 0%, #B5903F 50%, #8C6B24 100%);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 68px);
  --radius: 3px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 112px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: .004em; color: var(--ink); }
.display { font-family: var(--serif); font-weight: 500; font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: 1.0; color: var(--ink); }
.eyebrow {
  font-family: var(--sans); font-size: .74rem; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep);
}
.lead { font-size: clamp(1.04rem, 1.5vw, 1.24rem); color: var(--ink-soft); font-weight: 300; }
.serif-it { font-family: var(--serif); font-style: italic; }
.gold-text { color: var(--gold-deep); font-style: italic; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(70px, 10vw, 140px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--cream { background: var(--cream); }
.center { text-align: center; }

.divider { width: 46px; height: 1px; background: var(--gold); margin: 22px auto; }
.divider--left { margin: 22px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 1.05em 2.2em; font-family: var(--sans);
  font-size: .78rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  border-radius: var(--radius); transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn--gold { background: var(--gold-grad); color: #fff; box-shadow: 0 12px 34px -14px rgba(140,107,36,.6); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px rgba(140,107,36,.75); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); background: var(--gold-soft); }
.btn--sm { padding: .82em 1.5em; font-size: .7rem; }
.btn .ico { font-size: 1.05em; }

.link-gold { color: var(--gold-deep); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; display: inline-flex; gap: .5em; align-items: center; transition: gap .3s var(--ease); }
.link-gold:hover { gap: .9em; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--ink); color: rgba(255,255,255,.78);
  font-size: .76rem; letter-spacing: .08em;
}
.topbar__in { max-width: var(--maxw); margin-inline: auto; padding: 9px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar a:hover { color: var(--gold-bright); }
.topbar .sep { opacity: .4; margin: 0 12px; }
.topbar__right { display: flex; align-items: center; gap: 10px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled { box-shadow: 0 10px 40px -24px rgba(0,0,0,.4); }
.header-inner { max-width: var(--maxw); margin-inline: auto; padding: 20px var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; transition: padding .4s var(--ease); }
.site-header.scrolled .header-inner { padding-block: 12px; }
.brand { justify-self: center; display: flex; align-items: center; }
.brand .logo { height: 54px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand .logo { height: 44px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav--left { justify-self: start; }
.nav a {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 400;
  color: var(--ink-soft); position: relative; padding: 8px 0; white-space: nowrap;
}
.nav--left { gap: clamp(16px, 1.8vw, 30px); }
.nav a::after { content:""; position:absolute; left:0; bottom:0; height:1px; width:0; background: var(--gold); transition: width .4s var(--ease); }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.is-rolex { color: var(--gold-deep); font-weight: 500; }

.header-cta { justify-self: end; display: flex; align-items: center; gap: 18px; }
.rolex-badge { display: flex; align-items: center; gap: 8px; }
.rolex-badge img { height: 38px; width: auto; }

.burger { display: none; flex-direction: column; gap: 5px; width: 30px; height: 22px; justify-content: center; justify-self: end; }
.burger span { height: 1.6px; background: var(--ink); width: 100%; transition: .35s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); }
.mobile-nav a:hover { color: var(--gold-deep); }

/* =========================================================
   HERO — Editorial, hell
   ========================================================= */
.hero { background: var(--cream); position: relative; overflow: hidden; }
.hero__in { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px,5vw,76px); align-items: center;
  min-height: min(82vh, 760px); padding-block: clamp(40px,6vw,80px); }
.hero__text { max-width: 540px; }
.hero__text .eyebrow { display:block; margin-bottom: 22px; opacity:0; animation: fadeUp .9s var(--ease) .1s forwards; }
.hero__title { margin-bottom: 24px; opacity:0; animation: fadeUp 1s var(--ease) .25s forwards; }
.hero__sub { color: var(--ink-soft); margin-bottom: 36px; max-width: 470px; opacity:0; animation: fadeUp 1s var(--ease) .45s forwards; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; opacity:0; animation: fadeUp 1s var(--ease) .6s forwards; }
.hero__trust { margin-top: 40px; display: flex; gap: 22px; flex-wrap: wrap; align-items: center;
  font-size: .76rem; letter-spacing: .08em; color: var(--muted); opacity:0; animation: fadeUp 1s var(--ease) .8s forwards; }
.hero__trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.hero__media { position: relative; opacity:0; animation: fadeImg 1.3s var(--ease) .3s forwards; }
.hero__media .shot { aspect-ratio: 4/3.3; overflow: hidden; border-radius: var(--radius); box-shadow: 0 50px 90px -50px rgba(0,0,0,.5); }
.hero__media .shot img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.hero__media .tag {
  position: absolute; left: -22px; bottom: 36px; background: var(--paper);
  padding: 16px 22px; border-radius: var(--radius); box-shadow: 0 26px 50px -24px rgba(0,0,0,.35);
  display: flex; align-items: center; gap: 14px; max-width: 280px;
}
.hero__media .tag img { height: 40px; width: auto; }
.hero__media .tag span { font-size: .76rem; color: var(--muted); line-height: 1.4; }
.hero__media .tag b { display:block; color: var(--ink); font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }

@keyframes fadeUp { from { opacity:0; transform: translateY(24px);} to { opacity:1; transform:none; } }
@keyframes fadeImg { from { opacity:0; transform: scale(1.04);} to { opacity:1; transform:none; } }

/* =========================================================
   HERO CINEMATIC — full-bleed (echtes Rolex-Banner)
   ========================================================= */
.hero-cine { position: relative; min-height: clamp(560px, 88vh, 860px); display: flex; align-items: center; overflow: hidden; background: var(--cream); }
.hero-cine__bg { position: absolute; inset: 0; z-index: 0; }
.hero-cine__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 16% center; animation: heroKen 26s ease-in-out infinite alternate; }
@keyframes heroKen { from { transform: scale(1.06);} to { transform: scale(1.14);} }
.hero-cine__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(247,243,236,0) 32%, rgba(247,243,236,.5) 58%, rgba(247,243,236,.93) 84%); }
.hero-cine__in { position: relative; z-index: 2; width: 100%; display: flex; justify-content: flex-end; }
.hero-cine__text { max-width: 520px; }
.hero-cine__text .eyebrow { display:block; margin-bottom: 22px; opacity:0; animation: fadeUp .9s var(--ease) .15s forwards; }
.hero-cine__text .display { margin-bottom: 24px; opacity:0; animation: fadeUp 1s var(--ease) .3s forwards; }
.hero-cine__text .hero__sub { margin-bottom: 34px; opacity:0; animation: fadeUp 1s var(--ease) .5s forwards; }
.hero-cine__text .hero__cta { opacity:0; animation: fadeUp 1s var(--ease) .65s forwards; }
.hero-cine__badge { position: absolute; left: var(--gutter); bottom: 26px; z-index: 2; display:flex; align-items:center; gap:12px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px); padding: 12px 18px; border-radius: var(--radius); box-shadow: 0 20px 40px -22px rgba(0,0,0,.4); }
.hero-cine__badge img { height: 34px; width:auto; }
.hero-cine__badge span { font-size: .74rem; letter-spacing:.05em; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-cine { min-height: clamp(520px, 86vh, 720px); align-items: flex-end; }
  .hero-cine__bg img { object-position: 28% center; }
  .hero-cine__scrim { background: linear-gradient(0deg, rgba(247,243,236,.97) 12%, rgba(247,243,236,.7) 46%, rgba(247,243,236,.15) 78%); }
  .hero-cine__in { justify-content: center; padding-bottom: 8vh; }
  .hero-cine__text { max-width: none; text-align: center; }
  .hero-cine__text .hero__cta { justify-content: center; }
  .hero-cine__badge { display: none; }
}

/* =========================================================
   MARKENWELTEN — full-bleed cinematic brand bands
   ========================================================= */
.markenwelten { display: block; }
.cineband { position: relative; display: block; width: 100%; aspect-ratio: 1920/560; overflow: hidden; }
.cineband img { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.cineband__go { position: absolute; right: clamp(18px,4vw,56px); bottom: clamp(16px,3vw,40px); z-index: 3;
  display:inline-flex; align-items:center; gap:.6em; background: rgba(27,27,30,.78); color:#fff; backdrop-filter: blur(6px);
  padding: .85em 1.5em; font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; border-radius: var(--radius);
  opacity: 0; transform: translateY(8px); transition: .4s var(--ease); }
.cineband:hover .cineband__go { opacity: 1; transform: none; }
@media (max-width: 760px){ .cineband { aspect-ratio: 16/12; } .cineband img { inset: 0; height:100%; } .cineband__go { opacity:1; transform:none; } }

/* ---------- Trust strip ---------- */
.trustbar { border-bottom: 1px solid var(--line-soft); }
.trustbar__in { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px,4vw,60px); padding-block: 26px; }
.trustbar .item { display: flex; align-items: center; gap: 10px; font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); }
.trustbar .item .ico { color: var(--gold); font-size: 1rem; }

/* =========================================================
   Section header
   ========================================================= */
.sec-head { max-width: 640px; margin: 0 auto clamp(40px,5vw,70px); text-align: center; }
.sec-head--left { margin-left: 0; text-align: left; }
.sec-head .eyebrow { display: block; margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(2.1rem,4vw,3.4rem); margin-bottom: 16px; }
.sec-head p { color: var(--muted); }

/* =========================================================
   Welten — große Editorial-Tiles
   ========================================================= */
.welten { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2vw,26px); }
.welt { position: relative; aspect-ratio: 4/3.4; overflow: hidden; border-radius: var(--radius); display: block; }
.welt img { width:100%; height:100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.welt:hover img { transform: scale(1.06); }
.welt::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(20,18,14,.72) 0%, rgba(20,18,14,.1) 45%, transparent 75%); }
.welt__cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: clamp(24px,3vw,40px); color: #fff; }
.welt__cap .eyebrow { color: var(--gold-bright); display:block; margin-bottom: 8px; }
.welt__cap h3 { color: #fff; font-size: clamp(1.6rem,2.6vw,2.4rem); margin-bottom: 8px; }
.welt__cap .more { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.85); display:inline-flex; gap:.5em; }
.welt:hover .welt__cap .more { color: var(--gold-bright); }

/* =========================================================
   Rolex section
   ========================================================= */
.rolex { background: var(--cream); }
.rolex__in { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(26px,4vw,56px); align-items: center; }
.rolex__logo { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px 34px; }
.rolex__logo img { height: 70px; width: auto; }
.rolex__copy .eyebrow { display:block; margin-bottom: 12px; }
.rolex__copy h2 { font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 12px; }
.rolex__copy p { color: var(--ink-soft); max-width: 540px; }
@media (max-width: 860px){ .rolex__in { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

/* =========================================================
   Product cards (hell, editorial)
   ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: clamp(14px,1.8vw,26px); }
.pcard { display: block; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; transition: border-color .4s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease); }
.pcard:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: 0 30px 50px -34px rgba(0,0,0,.35); }
.pcard__media { aspect-ratio: 1; background: var(--cream); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: contain; padding: 12%; transition: transform 1s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__body { padding: 18px 20px 22px; text-align: center; }
.pcard__brand { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 7px; }
.pcard__name { font-family: var(--serif); font-size: 1.16rem; color: var(--ink); margin-bottom: 5px; }
.pcard__meta { font-size: .8rem; color: var(--muted); }

/* =========================================================
   Feature split
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,84px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.2; }
.split__media img { width:100%; height:100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.split__media:hover img { transform: scale(1.04); }
.split__body .eyebrow { display:block; margin-bottom: 16px; }
.split__body h2 { font-size: clamp(1.9rem,3.2vw,3rem); margin-bottom: 20px; }
.split__body p { color: var(--ink-soft); margin-bottom: 16px; }
.flist { margin: 24px 0 30px; }
.flist li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); align-items: flex-start; }
.flist li .fi { color: var(--gold); margin-top: 4px; }
.flist li b { display:block; color: var(--ink); font-weight: 400; font-family: var(--serif); font-size: 1.14rem; }
.flist li span { color: var(--muted); font-size: .92rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem,4.5vw,3.6rem); color: var(--gold-deep); line-height: 1; }
.stat .lbl { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* =========================================================
   Anlässe / Hochzeitswelt — dunkle Akzent-Sektion
   ========================================================= */
.anlass { background: #1B1A18; color: #EDE7DA; }
.anlass .sec-head h2 { color: #fff; }
.anlass .sec-head p { color: rgba(237,231,218,.7); }
.anlass .sec-head .eyebrow { color: var(--gold-bright); }
.anlass-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2vw,26px); }
.anlass-card { position: relative; aspect-ratio: 5/4; overflow: hidden; border-radius: var(--radius); }
.anlass-card img { width:100%; height:100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.anlass-card:hover img { transform: scale(1.05); }
.anlass-card::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(0,0,0,.6), transparent 60%); }
.anlass-card__cap { position:absolute; left:0; bottom:0; z-index:2; padding: clamp(22px,3vw,36px); }
.anlass-card__cap h3 { color:#fff; font-size: clamp(1.5rem,2.4vw,2.1rem); margin-bottom: 6px; }
.anlass-card__cap .more { color: var(--gold-bright); font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; }

/* =========================================================
   Brand wall
   ========================================================= */
.brandwall { overflow: hidden; }
.brandwall__track { display: flex; gap: clamp(16px,2vw,26px); align-items: center; width: max-content; animation: marquee 46s linear infinite; }
.brandwall:hover .brandwall__track { animation-play-state: paused; }
.brand-chip { flex:0 0 auto; height: 84px; min-width: 168px; display:flex; align-items:center; justify-content:center;
  padding: 0 30px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.brand-chip img { max-height: 46px; width:auto; object-fit:contain; filter: saturate(.2) opacity(.7); transition: filter .4s var(--ease); }
.brand-chip:hover img { filter: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { background: var(--cream); text-align: center; }
.cta-band h2 { font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 18px; }
.cta-band p { color: var(--ink-soft); max-width: 540px; margin: 0 auto 34px; }
.cta-band .hero__cta { justify-content: center; }

/* =========================================================
   Footer (dunkel, grounding)
   ========================================================= */
.site-footer { background: #161513; color: rgba(237,231,218,.72); padding-block: 70px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-col h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 20px; font-weight: 400; }
.footer-col a, .footer-col p { display:block; color: rgba(237,231,218,.72); font-size: .92rem; margin-bottom: 10px; transition: color .3s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-brand .logo { height: 50px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; color: rgba(237,231,218,.55); }
.footer-bottom { display:flex; justify-content: space-between; align-items:center; gap:16px; flex-wrap:wrap;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; color: rgba(237,231,218,.5); }
.footer-bottom a:hover { color: var(--gold-bright); }
.footer-social { display:flex; gap: 16px; }

/* =========================================================
   Page hero (subpages)
   ========================================================= */
.page-hero { background: var(--cream); padding-top: clamp(50px,7vw,90px); padding-bottom: clamp(40px,5vw,70px); text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem,5vw,4rem); margin-bottom: 16px; }
.page-hero p { color: var(--ink-soft); max-width: 580px; margin: 0 auto; }
.breadcrumb { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-deep); }

/* =========================================================
   Forms
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,76px); align-items: start; }
.form { display: grid; gap: 20px; }
.field { display:flex; flex-direction: column; gap: 8px; }
.field label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; color: var(--ink); font-family: var(--sans); font-size: .96rem; transition: border-color .3s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.consent { display:flex; gap: 12px; align-items: flex-start; font-size: .84rem; color: var(--muted); }
.consent input { margin-top: 4px; accent-color: var(--gold); }
.consent a { color: var(--gold-deep); text-decoration: underline; }
.form-status { font-size: .9rem; }
.info-row { display:flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.info-row .ico { color: var(--gold); margin-top: 2px; }
.info-row b { display:block; color: var(--ink); font-weight: 400; font-family: var(--serif); font-size: 1.12rem; margin-bottom: 3px; }
.info-row span, .info-row a { color: var(--ink-soft); font-size: .94rem; }
.info-row a:hover { color: var(--gold-deep); }
.map-placeholder { margin-top: 26px; aspect-ratio: 16/10; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--cream); display:flex; flex-direction: column; align-items:center; justify-content:center; gap: 14px; text-align:center; padding: 30px; }
.map-placeholder .ico { font-size: 2rem; color: var(--gold); }
.map-placeholder p { color: var(--muted); font-size: .86rem; max-width: 320px; }

/* =========================================================
   Analysis page
   ========================================================= */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 56px; }
.ba-card { border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.ba-card__top { padding: 14px 20px; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; border-bottom: 1px solid var(--line-soft); }
.ba-card--old .ba-card__top { color: var(--muted); }
.ba-card--new .ba-card__top { color: var(--gold-deep); }
.ba-card img { width: 100%; display:block; }
.improvements { display: grid; gap: 2px; }
.imp { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 22px 4px; border-bottom: 1px solid var(--line-soft); align-items: start; }
.imp__n { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-deep); }
.imp h4 { font-size: 1.18rem; margin-bottom: 6px; }
.imp p { color: var(--muted); font-size: .92rem; }
.analysis-note { background: var(--gold-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 44px; }
.analysis-note b { color: var(--gold-deep); }

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; }

/* Cinematic scale/clip "unveil" reveal (scroll-getriggert) */
.reveal-cine { opacity: 0; transform: scale(1.14); clip-path: inset(12% 10% 12% 10% round 4px);
  transition: opacity 1s var(--ease), transform 1.3s var(--ease), clip-path 1.3s var(--ease); will-change: transform, clip-path; }
.reveal-cine.in { opacity: 1; transform: none; clip-path: inset(0 0 0 0 round 4px); }

/* =========================================================
   Heritage story — emotionaler Moment ("Zeit, die man weitergibt")
   ========================================================= */
.heritage { background: var(--cream); text-align: center; }
.heritage .eyebrow { display:block; margin-bottom: 18px; }
.heritage__q { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem,4.6vw,3.7rem); line-height: 1.16;
  color: var(--ink); max-width: 20ch; margin: 0 auto 24px; }
.heritage__q em { color: var(--gold-deep); font-style: italic; }
.heritage p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

/* =========================================================
   "Im Detail" — Makro-Sektion
   ========================================================= */
.macro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.8vw,24px); }
.macro { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/4; background: var(--cream); }
.macro img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.25); transition: transform 1.4s var(--ease); }
.macro:hover img { transform: scale(1.34); }
.macro__cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 20px 22px; color: #fff; }
.macro__cap .eyebrow { color: var(--gold-bright); display:block; margin-bottom: 4px; }
.macro__cap b { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; }
.macro::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(20,18,14,.55), transparent 55%); }
@media (max-width: 760px){ .macro-grid { grid-template-columns: 1fr; } .macro { aspect-ratio: 16/10; } }

/* =========================================================
   360°-Highlight (großer Dreh-Loop)
   ========================================================= */
.spin360 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.spin360__stage { position: relative; aspect-ratio: 1; background: var(--cream); border-radius: var(--radius); overflow: hidden; display:flex; align-items:center; justify-content:center; }
.spin360__stage img, .spin360__stage video { width:100%; height:100%; object-fit: contain; padding: 8%; }
.spin360__stage video { position:absolute; inset:0; opacity:0; transition: opacity .5s var(--ease); }
.spin360__stage.playing video { opacity: 1; }
.spin360__badge { position:absolute; top:16px; right:16px; z-index:3; font-size:.62rem; letter-spacing:.18em; text-transform:uppercase;
  color:#fff; background: var(--ink); padding: 6px 12px; border-radius: 40px; display:flex; align-items:center; gap:6px; }
.spin360__badge .dot { width:5px; height:5px; border-radius:50%; background: var(--gold-bright); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity:.3; } }
@media (max-width: 760px){ .spin360 { grid-template-columns: 1fr; } }

/* 360°-Galerie (4 echte Produkte, Hover dreht) — große, komfortable Viewer */
.spin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px,2.4vw,32px);
  max-width: 1040px; margin-inline: auto; }
.spin-tile { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: border-color .4s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease); }
.spin-tile:hover { border-color: var(--line); box-shadow: 0 30px 50px -34px rgba(0,0,0,.3); transform: translateY(-4px); }
.spin-tile .spin360__stage { aspect-ratio: 1; border-radius: 0; }
.spin-tile__body { padding: 16px 18px 20px; text-align: center; }
.spin-tile__brand { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.spin-tile__name { font-family: var(--serif); font-size: 1.08rem; color: var(--ink); }
.spin-tile__hint { display:block; margin-top:6px; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); }
@media (max-width: 600px){ .spin-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Cookie consent
   ========================================================= */
.cookie { position: fixed; bottom: 20px; right: 20px; left: auto; z-index: 200; max-width: 400px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.35); transform: translateY(160%); transition: transform .55s var(--ease); }
.cookie.show { transform: none; }
.cookie h4 { font-size: 1.1rem; margin-bottom: 10px; }
.cookie p { font-size: .86rem; color: var(--muted); margin-bottom: 16px; }
.cookie p a { color: var(--gold-deep); text-decoration: underline; }
.cookie__btns { display:flex; gap: 12px; flex-wrap: wrap; }
.cookie__btns .btn { padding: .8em 1.5em; font-size: .7rem; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  :root { --header-h: 92px; }
  .nav { display: none; }
  .header-cta .btn, .header-cta .rolex-badge { display: none; }
  .burger { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .hero__in { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero__text { max-width: none; margin-inline: auto; }
  .hero__media .tag { left: 50%; transform: translateX(-50%); }
  .hero__cta, .hero__trust { justify-content: center; }
  .welten, .anlass-grid, .split, .split--rev .split__media { grid-template-columns: 1fr; }
  .split--rev .split__body { order: 2; }
  .contact-grid, .ba-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .field--row { grid-template-columns: 1fr; }
  .topbar { display: none; }
}
@media (max-width: 520px) {
  .hero__media .tag { position: static; transform: none; margin: 16px auto 0; }
  .btn { padding: 1em 1.7em; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  [class*="hero__"] { opacity: 1 !important; animation: none !important; }
}
