/* ================================================================
   AUREN GENÈVE — style.css  v2.0
   Full rewrite: bug fixes, luxury cursor, TR/EN support
================================================================ */

/* ─── RESET & TOKENS ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:     #ffffff;
  --off:       #f7f5f0;
  --cream:     #ede9e0;
  --black:     #0c0c0c;
  --dark:      #181818;
  --dark2:     #222222;
  --gold:      #b8966a;
  --gold-lt:   #d0aa80;
  --text:      #282828;
  --muted:     #7a7a7a;
  --border:    rgba(0,0,0,.09);
  --bw:        rgba(255,255,255,.10);
  --ease:      cubic-bezier(.16,1,.3,1);
  --ease2:     cubic-bezier(.4,0,.2,1);
  --nav-h:     72px;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;
  --mono:      'Space Mono', monospace;
}

html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* hide native cursor everywhere — restored for touch via media query */
*, a, button, select, input, textarea { cursor: none !important; }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
::selection { background: var(--dark); color: var(--white); }

/* scrollbar */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── SCROLL PROGRESS ─────────────────────────────────────────── */
#sp {
  position: fixed; inset: 0 0 auto 0; height: 1.5px;
  z-index: 9999; pointer-events: none;
}
#sp-f { height: 100%; width: 0%; background: var(--gold); }

/* ─── LUXURY CURSOR ───────────────────────────────────────────── */
#cur-outer {
  position: fixed; z-index: 100000; pointer-events: none;
  width: 36px; height: 36px;
  border: 1px solid rgba(184,150,106,.55);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease), height .35s var(--ease),
              border-color .35s, background .35s, opacity .3s;
  mix-blend-mode: normal;
}
#cur-inner {
  position: fixed; z-index: 100001; pointer-events: none;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease), opacity .2s;
}
#cur-label {
  position: fixed; z-index: 100002; pointer-events: none;
  font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
  color: var(--gold); opacity: 0;
  transform: translate(18px, -50%);
  transition: opacity .25s;
  white-space: nowrap;
}
/* Hover state — expand outer ring */
body.c-hover #cur-outer {
  width: 56px; height: 56px;
  border-color: var(--gold);
  background: rgba(184,150,106,.05);
}
body.c-hover #cur-inner { width: 4px; height: 4px; }
/* Click shrink */
body.c-click #cur-outer { width: 28px; height: 28px; }
body.c-click #cur-inner { transform: translate(-50%,-50%) scale(0.6); }
/* On dark bg */
body.c-dark #cur-outer { border-color: rgba(255,255,255,.35); }
body.c-dark #cur-inner { background: var(--white); }


/* ─── HEADER / NAV ────────────────────────────────────────────── */
#site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .5s var(--ease), backdrop-filter .5s, box-shadow .5s;
}
#site-header.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
/* dark hero mode */
#site-header.dark { color: var(--white); }
#site-header.dark.scrolled {
  background: rgba(13,13,13,.92);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
#site-header.dark .logo-svg { color: var(--white); }

#navbar {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,56px);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav-left, .nav-right {
  display: flex; align-items: center; gap: clamp(16px,2.5vw,40px);
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase;
  opacity: .7; position: relative;
  transition: opacity .3s;
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: .5px; background: currentColor;
  transition: width .4s var(--ease);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }

#nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-svg {
  height: 38px; width: auto; display: block;
  color: var(--dark); transition: color .4s;
}

/* LANG TOGGLE */
.lang-toggle {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 1.5px; color: inherit;
  background: none; border: none;
  opacity: .65; transition: opacity .3s;
  padding: 6px 10px;
  border: .5px solid currentColor;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-toggle:hover { opacity: 1; }
.lt-sep { opacity: .35; }
/* Active lang highlight */
[data-lang="en"] .lt-en { color: var(--gold); opacity: 1; font-weight: 700; }
[data-lang="tr"] .lt-tr { color: var(--gold); opacity: 1; font-weight: 700; }

/* Hamburger */
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: none; border: none; flex-shrink: 0;
}
.nav-ham span {
  display: block; width: 20px; height: .8px;
  background: currentColor;
  transition: all .4s var(--ease); transform-origin: center;
}
.nav-ham.open span:nth-child(1) { transform: translateY(2.9px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { transform: translateY(-2.9px) rotate(-45deg); }

/* ─── MOBILE MENU ─────────────────────────────────────────────── */
.mob-bg {
  position: fixed; inset: 0; z-index: 1998;
  background: rgba(0,0,0,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mob-bg.show { opacity: 1; pointer-events: auto; }

.mob-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px,88vw); z-index: 1999;
  background: var(--white);
  display: flex; flex-direction: column;
  padding: var(--nav-h) 0 32px;
  transform: translateX(110%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
}
.mob-menu.open { transform: translateX(0); }

.mob-x {
  position: absolute; top: 20px; right: 20px;
  font-size: 18px; color: var(--dark);
  background: none; border: none; line-height: 1;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  opacity: .5; transition: opacity .3s;
}
.mob-x:hover { opacity: 1; }

.mob-nav {
  display: flex; flex-direction: column;
  padding: 16px 36px; flex: 1;
  justify-content: center; gap: 4px;
}
.mob-link {
  font-family: var(--serif); font-size: clamp(28px,8vw,40px);
  font-weight: 300; color: var(--dark);
  padding: 10px 0; border-bottom: .5px solid var(--border);
  transition: color .3s, padding-left .35s var(--ease);
}
.mob-link:hover { color: var(--gold); padding-left: 6px; }

.mob-foot {
  padding: 20px 36px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
}
.mob-lang {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px;
  background: none; border: .5px solid var(--border); padding: 4px 10px;
  color: var(--dark); border-radius: 2px; transition: all .3s;
}
.mob-lang:hover { border-color: var(--gold); color: var(--gold); }

/* ─── SHARED LAYOUT ───────────────────────────────────────────── */
.container {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
}

/* ─── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal       { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-card  { opacity: 0; transform: translateY(20px);  transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-step  { opacity: 0; transform: translateX(-18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }

.reveal.vis, .reveal-left.vis, .reveal-right.vis,
.reveal-card.vis, .reveal-step.vis {
  opacity: 1; transform: none;
}

.sec-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 24px;
  display: block;
}

/* ─── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 560px;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}

#hero-canvas {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(12,12,12,.82) 0%, rgba(12,12,12,.45) 48%, rgba(12,12,12,.05) 100%);
}

.hero-watch {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: clamp(280px,42vw,620px);
  opacity: 0;
  transition: opacity 1.2s var(--ease) .5s;
  z-index: 2;
  /* prevent overflow bleed */
  overflow: hidden;
}
.hero-watch img { mix-blend-mode: lighten; }
.hero-watch.vis { opacity: 1; }

.hero-content {
  position: relative; z-index: 3;
  padding: 0 clamp(20px,6vw,80px);
  max-width: min(580px, 55vw);
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 4px; color: var(--gold);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(8px);
  transition: all .8s var(--ease) .9s;
}
.hero-eyebrow.vis { opacity: 1; transform: none; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8.5vw, 116px);
  font-weight: 300; line-height: .93;
  letter-spacing: -1px; margin-bottom: 28px;
}
.ht-wrap { display: block; overflow: hidden; }
.ht-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
}
.ht-inner.vis { transform: translateY(0); }
.hero-title em { font-style: italic; color: var(--gold-lt); }

.hero-sub {
  font-size: clamp(13px,1.3vw,16px); font-weight: 300;
  color: rgba(255,255,255,.65); line-height: 1.75;
  max-width: 360px; margin-bottom: 40px;
  opacity: 0; transform: translateY(8px);
  transition: all .8s var(--ease) 1.4s;
}
.hero-sub.vis { opacity: 1; transform: none; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white);
  border-bottom: .5px solid rgba(255,255,255,.35); padding-bottom: 5px;
  opacity: 0; transition: all .8s var(--ease) 1.7s, color .3s, border-color .3s;
}
.hero-cta.vis { opacity: 1; }
.hero-cta:hover { color: var(--gold-lt); border-color: var(--gold); }
.hero-cta svg { transition: transform .35s var(--ease); flex-shrink: 0; }
.hero-cta:hover svg { transform: translateX(5px); }

.hero-scroll {
  position: absolute; bottom: 36px; left: clamp(20px,6vw,80px);
  z-index: 3; display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transition: opacity .8s 2.1s;
}
.hero-scroll.vis { opacity: 1; }
.hs-track { width: 44px; height: .5px; background: rgba(255,255,255,.15); overflow: hidden; }
.hs-fill { height: 100%; width: 0%; background: var(--gold); animation: hScroll 2.2s var(--ease) 2.4s infinite; }
@keyframes hScroll {
  0%   { width: 0%;   transform: translateX(0);
  }50%  { width: 100%; transform: translateX(0); }
  100% { width: 100%; transform: translateX(100%); }
}
.hero-scroll span {
  font-family: var(--mono); font-size: 8px;
  letter-spacing: 4px; color: rgba(255,255,255,.35);
  text-transform: uppercase;
}

/* ─── MARQUEE ─────────────────────────────────────────────────── */
.marquee {
  background: var(--dark); padding: 13px 0;
  overflow: hidden; white-space: nowrap;
}
.mq-track {
  display: inline-flex; gap: 28px;
  animation: mqRun 20s linear infinite;
}
.mq-track span {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.5); flex-shrink: 0;
}
.mq-dot { opacity: .22 !important; }
@keyframes mqRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── STATEMENT ───────────────────────────────────────────────── */
.s-statement {
  background: var(--off);
  padding: clamp(80px,12vw,160px) 0;
}
.statement-q {
  font-family: var(--serif);
  font-size: clamp(26px,3.8vw,54px);
  font-weight: 300; line-height: 1.08;
  color: var(--dark); margin-bottom: 32px;
}
.statement-q em { font-style: italic; color: var(--gold); }
.statement-body {
  font-size: clamp(14px,1.1vw,16px); color: var(--muted);
  line-height: 1.8; max-width: 560px;
}

/* ─── COLLECTIONS ─────────────────────────────────────────────── */
.s-collections {
  background: var(--white);
  padding: clamp(80px,10vw,140px) 0;
}
.col-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: clamp(40px,6vw,72px);
}
.col-title {
  font-family: var(--serif);
  font-size: clamp(36px,5vw,72px);
  font-weight: 300; line-height: .95;
  letter-spacing: -1.5px; text-align: right;
}
.col-title em { font-style: italic; color: var(--gold); }

.col-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.col-card { background: var(--off); overflow: hidden; }
.col-card--dk { background: var(--dark2); color: var(--white); }
.col-card:hover .col-img-wrap img { transform: scale(1.04); }

.col-img-wrap {
  position: relative;
  aspect-ratio: 3/4; overflow: hidden;
}
.col-img-wrap img { transition: transform .9s var(--ease); }
.col-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 3px; color: rgba(255,255,255,.7); text-transform: uppercase;
}
.col-body { padding: clamp(20px,3vw,28px); }
.col-ref {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 2px; color: var(--gold);
  margin-bottom: 8px;
}
.col-name {
  font-family: var(--serif); font-size: clamp(20px,2vw,26px);
  font-weight: 300; margin-bottom: 10px;
}
.col-desc {
  font-size: 13px; color: var(--muted); line-height: 1.7;
  margin-bottom: 16px;
}
.col-card--dk .col-desc { color: rgba(255,255,255,.45); }
.col-price {
  font-family: var(--serif); font-size: 18px;
  font-weight: 300; color: var(--gold); margin-bottom: 18px;
}
.col-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase;
  border-bottom: .5px solid currentColor; padding-bottom: 2px;
  transition: color .3s, gap .3s var(--ease);
}
.col-btn:hover { color: var(--gold); gap: 14px; }

/* ─── LIFESTYLE ───────────────────────────────────────────────── */
.s-life {
  background: var(--cream);
  padding: clamp(80px,10vw,140px) 0;
}
.life-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: center;
}
.life-img-col { position: relative; }
.life-img-frame {
  position: relative;
  aspect-ratio: 3/4; border-radius: 2px; overflow: hidden;
}
.life-img-frame img { object-fit: cover; }
.life-badge {
  position: absolute; bottom: 20px; right: 20px;
  width: 86px; height: 86px; color: rgba(255,255,255,.8);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.life-h2 {
  font-family: var(--serif);
  font-size: clamp(32px,3.8vw,58px);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 20px;
}
.life-h2 em { font-style: italic; color: var(--gold); }
.life-body { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 440px; margin-bottom: 36px; }
.life-stats {
  display: flex; align-items: center; gap: 24px;
  padding-top: 28px; border-top: .5px solid var(--border);
}
.lstat { text-align: center; }
.lstat-n {
  display: block; font-family: var(--serif);
  font-size: 30px; font-weight: 300; color: var(--dark); line-height: 1;
}
.lstat-l {
  display: block; font-family: var(--mono); font-size: 9px;
  letter-spacing: 2px; color: var(--muted); text-transform: uppercase;
}
.lstat-sep { width: .5px; height: 44px; background: var(--border); }

/* ─── CRAFTSMANSHIP / CLOCK ───────────────────────────────────── */
.s-craft {
  background: var(--dark); color: var(--white);
  padding: clamp(80px,10vw,140px) 0;
}
.craft-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: center;
}
.craft-h2 {
  font-family: var(--serif);
  font-size: clamp(40px,5.5vw,76px);
  font-weight: 300; line-height: .93; letter-spacing: -2px;
  margin-bottom: 20px;
}
.craft-h2 em { font-style: italic; color: var(--gold); }
.craft-body { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 420px; margin-bottom: 32px; }
.craft-specs { list-style: none; border-top: .5px solid var(--bw); }
.craft-specs li {
  display: flex; justify-content: space-between;
  padding: 11px 0; border-bottom: .5px solid var(--bw);
  font-size: 13px;
}
.craft-specs li span:first-child { color: rgba(255,255,255,.38); letter-spacing: .5px; }

.craft-clock-col {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
#clock-canvas {
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(184,150,106,.12), 0 0 0 1px rgba(255,255,255,.04);
  max-width: 360px; max-height: 360px;
  width: 100% !important; height: auto !important;
}
.clock-label {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 4px; color: rgba(255,255,255,.28); text-transform: uppercase;
}

/* ─── HERITAGE TIMELINE ───────────────────────────────────────── */
.s-heritage {
  background: var(--off);
  padding: clamp(80px,10vw,140px) 0;
}
.her-h2 {
  font-family: var(--serif);
  font-size: clamp(34px,4.5vw,64px);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -1.5px; margin-bottom: clamp(48px,6vw,80px);
}
.her-h2 em { font-style: italic; color: var(--gold); }
.timeline { max-width: 900px; }
.tl-item {
  display: grid; grid-template-columns: 70px 1px 1fr;
  gap: 0 32px; padding: 28px 0;
  border-top: .5px solid var(--border);
}
.tl-item:last-child { border-bottom: .5px solid var(--border); }
.tl-year {
  font-family: var(--serif); font-size: 20px;
  font-weight: 300; color: var(--gold); padding-top: 3px;
}
.tl-bar { background: var(--border); position: relative; }
.tl-bar::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 0%;
  background: var(--gold); transition: height .9s var(--ease);
}
.tl-item.vis .tl-bar::before { height: 100%; }
.tl-body { padding: 3px 0 0 36px; }
.tl-body h3 {
  font-family: var(--serif); font-size: 18px;
  font-weight: 400; margin-bottom: 6px;
}
.tl-body p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 520px; }

/* ─── CONTACT ─────────────────────────────────────────────────── */
.s-contact {
  background: var(--white);
  padding: clamp(80px,10vw,140px) 0;
  border-top: .5px solid var(--border);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px,6vw,80px); align-items: start;
}
.contact-h2 {
  font-family: var(--serif);
  font-size: clamp(34px,4.5vw,64px);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.contact-h2 em { font-style: italic; color: var(--gold); }
.contact-sub { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 380px; margin-bottom: 36px; }
.locations { display: flex; flex-direction: column; gap: 18px; }
.loc { padding-bottom: 14px; border-bottom: .5px solid var(--border); }
.loc strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 400; margin-bottom: 2px; }
.loc span { font-size: 13px; color: var(--muted); }

/* floating-label form */
.fg {
  position: relative;
  border-bottom: .5px solid var(--border);
  transition: border-color .3s;
}
.fg:first-child { border-top: .5px solid var(--border); }
.fg:focus-within { border-color: var(--gold); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 26px 0 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--dark); background: transparent; border: none; outline: none;
  resize: none; appearance: none;
}
.fg label {
  position: absolute; top: 18px; left: 0;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 3px; color: var(--muted); text-transform: uppercase;
  pointer-events: none; transition: all .3s var(--ease);
}
.fg input:not(:placeholder-shown) + label,
.fg input:focus + label,
.fg textarea:not(:placeholder-shown) + label,
.fg textarea:focus + label {
  top: 7px; font-size: 8px; color: var(--gold);
}
.fg select:focus + label,
.fg select:valid + label { top: 7px; font-size: 8px; color: var(--gold); }

.f-submit {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 32px;
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase; color: var(--dark);
  background: none; border: none; border-bottom: .5px solid var(--dark);
  padding: 14px 0; transition: all .3s var(--ease);
}
.f-submit:hover { color: var(--gold); border-color: var(--gold); gap: 22px; }
.f-submit svg { transition: transform .3s var(--ease); flex-shrink: 0; }
.f-submit:hover svg { transform: translateX(4px); }

.form-ok { padding: 56px 0; text-align: center; }
.form-ok-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--gold); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--gold);
}
.form-ok h3 { font-family: var(--serif); font-size: 24px; font-weight: 300; margin-bottom: 8px; }
.form-ok p { font-size: 14px; color: var(--muted); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--dark); color: var(--white);
  padding: clamp(56px,8vw,80px) 0 36px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px,4vw,60px);
  padding-bottom: 48px;
  border-bottom: .5px solid var(--bw);
  margin-bottom: 24px;
}
.foot-logo {
  height: 36px; width: auto; color: var(--white); display: block; margin-bottom: 14px;
}
.foot-tag { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.6; }
.foot-col h4 {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 18px;
}
.foot-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,.38); margin-bottom: 11px;
  transition: color .3s;
}
.foot-col a:hover { color: var(--white); }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 1px; color: rgba(255,255,255,.18);
}
.foot-powered {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold); opacity: .65; transition: opacity .3s, color .3s;
}
.foot-powered:hover { opacity: 1; color: var(--gold-lt); }
.fpd {
  display: inline-block; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  animation: fpulse 2s ease-in-out infinite;
}
@keyframes fpulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.3; transform:scale(.55); }
}

/* ─── BACK TO TOP ─────────────────────────────────────────────── */
#btt {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 900; opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all .4s var(--ease);
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.2);
}
#btt.vis { opacity: 1; pointer-events: auto; transform: translateY(0); }
#btt:hover { background: var(--gold); }

/* ─── RESPONSIVE: TABLET ──────────────────────────────────────── */
@media (max-width: 1080px) {
  .col-grid { grid-template-columns: 1fr 1fr; }
  .col-grid .col-card:last-child { grid-column: 1 / -1; }
  .col-grid .col-card:last-child .col-img-wrap { aspect-ratio: 16/7; }
  .craft-grid { grid-template-columns: 1fr; }
  .life-grid  { grid-template-columns: 1fr; gap: 48px; }
  .life-img-frame { aspect-ratio: 4/3; max-height: 440px; }
}

@media (max-width: 900px) {
  /* Show hamburger, hide desktop links */
  .nav-link { display: none; }
  .lang-toggle { display: none; }   /* hidden — accessible via mobile menu */
  .nav-ham { display: flex; }

  .hero-content { max-width: 100%; }
  .hero-watch { opacity: .22; }

  .col-grid { grid-template-columns: 1fr; }
  .col-grid .col-card:last-child { grid-column: auto; }
  .col-grid .col-card:last-child .col-img-wrap { aspect-ratio: 3/4; }
  .col-header { flex-direction: column; align-items: flex-start; }
  .col-title  { text-align: left; }

  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid    { grid-template-columns: 1fr 1fr; }
  #btt { bottom: 18px; right: 16px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(46px,15vw,70px); }
  .hero-watch { display: none; }
  .life-img-frame { aspect-ratio: 4/3; }
  .tl-item { grid-template-columns: 56px 1px 1fr; gap: 0 18px; }
  .tl-body  { padding-left: 20px; }
  .life-stats { gap: 16px; }
  .lstat-sep { height: 36px; }
  .foot-grid  { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .marquee { display: none; }
}

/* ─── TOUCH DEVICES — restore native cursor ───────────────────── */
@media (pointer: coarse) {
  body { cursor: auto; }
  *, a, button, select, input, textarea { cursor: auto !important; }
  a { cursor: pointer !important; }
  button, .col-btn, .f-submit, .mob-link { cursor: pointer !important; }
  #cur-outer, #cur-inner, #cur-label { display: none !important; }
}

/* ─── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ================================================================
   GLOBAL RESPONSIVE SAFETY FIXES
================================================================ */
html, body { overflow-x: hidden !important; width: 100%; max-width: 100vw; }
h1, h2, h3, h4, h5, h6, p, span, a, div { overflow-wrap: break-word; }
img, video { max-width: 100%; }
