:root {
  --bg: #0a0b0d;
  --surface: #101216;
  --surface-soft: #141821;
  --text: #e7e2d8;
  --muted: #b8b1a4;
  --line: rgba(231, 226, 216, 0.16);
  --gold: #b89a63;
  --gold-soft: #8c7448;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #171a22 0, var(--bg) 50%);
  line-height: 1.6;
  padding-bottom: env(safe-area-inset-bottom);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.08;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.site-shell {
  overflow: clip;
  position: relative;
  isolation: isolate;
}

.scroll-watch-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.scroll-watch-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 154, 99, 0.14), transparent 42%),
    radial-gradient(circle at 75% 75%, rgba(116, 98, 64, 0.16), transparent 45%);
  filter: blur(24px);
}

.scroll-watch-image {
  width: min(74vmin, 640px);
  max-width: 90vw;
  opacity: 0.18;
  transform-origin: center;
  transform: translate3d(24vw, -7vh, 0) rotate(-16deg) scale(0.8);
  transition: opacity 320ms ease;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.5)) saturate(0.88) contrast(0.96);
}

body.scrolled-deep .scroll-watch-image {
  opacity: 0.25;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 6.5rem 0;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 12;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.header.scrolled {
  background: rgba(10, 11, 13, 0.74);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.menu-btn {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 11, 13, 0.3);
  color: #ece7db;
  cursor: pointer;
}

.menu-icon {
  width: 16px;
  height: 12px;
  display: inline-block;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(231, 226, 216, 0.85);
}

.menu-icon::before {
  top: 0;
}

.menu-icon::after {
  bottom: 0;
}

.menu-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 240ms ease;
}

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(88vw, 420px);
  background: rgba(10, 11, 13, 0.92);
  border-left: 1px solid var(--line);
  padding: 1.1rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.1rem;
  transform: translateX(12px);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-close {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  color: #d6d0c3;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: grid;
  align-content: start;
  gap: 0.2rem;
  padding-top: 0.2rem;
}

.mobile-nav-links a {
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  border: 1px solid transparent;
  color: #e7e2d8;
  font-size: 1rem;
}

.mobile-nav-links a:hover {
  border-color: rgba(184, 154, 99, 0.35);
  background: rgba(184, 154, 99, 0.07);
}

.mobile-nav-actions {
  display: grid;
  gap: 0.85rem;
  padding-bottom: calc(env(safe-area-inset-bottom) + 0.2rem);
}

body.nav-open {
  overflow: hidden;
}

.mobile-nav.open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
  opacity: 1;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(10, 11, 13, 0.3);
  backdrop-filter: blur(10px);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #d6d0c3;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.lang-btn.active {
  background: rgba(184, 154, 99, 0.16);
  color: var(--gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.14));
}

.brand-text {
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-text:empty {
  display: none;
}

.nav {
  display: inline-flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  color: #d6d0c3;
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #ece7db;
  transition: border-color 220ms ease, color 220ms ease;
}

.nav-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  margin-bottom: 1.2rem;
}

.lead {
  color: #cdc6ba;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(140deg, var(--gold), var(--gold-soft));
  color: #130f08;
}

.btn-ghost {
  border-color: var(--line);
  color: #e7e2d8;
}

.btn-ghost:hover {
  border-color: var(--gold);
}

.btn-sm {
  min-height: 2.45rem;
  padding: 0.52rem 0.95rem;
  font-size: 0.85rem;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-glass {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26);
}

.visual-kicker {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
}

.hero-glass h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.9rem;
}

.hero-glass p {
  color: #c9c2b6;
}

.value-grid,
.story-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.15fr 1fr 1fr;
}

.value h2,
.story h2,
.section-head h2,
.concierge h2,
.footer h2 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  margin-bottom: 0.8rem;
}

.value p,
.story p {
  color: #cbc4b8;
}

.section-head {
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.watch-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 200ms ease, border-color 200ms ease;
}

.watch-card:hover {
  border-color: rgba(184, 154, 99, 0.45);
}

.watch-image {
  min-height: 14rem;
  display: grid;
  place-items: center;
  color: #9f9688;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: radial-gradient(circle at 22% 15%, #2a2f3a 0, #15181f 65%);
}

.watch-image.is-photo {
  padding: 0.9rem;
}

.watch-image.is-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.55));
}

.watch-meta {
  padding: 1.1rem;
}

.watch-meta h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.watch-meta p {
  color: #c4bcaf;
  margin-bottom: 0.85rem;
}

.watch-meta a {
  color: var(--gold);
  font-size: 0.9rem;
}

.trust-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 1.2rem;
}

.trust-list article {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.trust-list h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.trust-list p {
  color: #ccc4b8;
}

.concierge-panel {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(184, 154, 99, 0.11), rgba(255, 255, 255, 0.02));
}

.concierge-panel p {
  color: #cfc7bb;
  max-width: 70ch;
  margin-bottom: 1.2rem;
}

.footer {
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: #d0c8bc;
  font-size: 0.85rem;
}

.contact-form input {
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0d0f13;
  color: #f3efe8;
  padding: 0.6rem 0.75rem;
}

.contact-form input:focus {
  outline: 0;
  border-color: rgba(184, 154, 99, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .mobile-nav-backdrop,
  .mobile-nav-panel,
  .scroll-watch-image {
    transition: none;
  }
}

@media (max-width: 1000px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero-grid,
  .trust-grid,
  .footer-grid,
  .value-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section {
    padding: 5.2rem 0;
  }

  .nav-wrap {
    min-height: 4.7rem;
  }

  .nav-cta {
    display: none;
  }

  .lang-btn {
    padding: 0.4rem 0.55rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-glass {
    min-height: 18rem;
  }

  .footer-grid {
    gap: 1.2rem;
  }

  .contact-form button {
    width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .scroll-watch-image {
    width: min(105vmin, 600px);
    transform: translate3d(16vw, -4vh, 0) rotate(-12deg) scale(0.78);
    opacity: 0.14;
  }
}
