/* =========================
   Variables & Base Theme
   ========================= */
:root {
  --black: #0a0a0c;
  --charcoal: #17181d;
  --charcoal-soft: #202229;
  --gold: #c8a56a;
  --gold-light: #e3c88d;
  --off-white: #f5f0e6;
  --text-muted: #b8b1a6;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);
  --shadow-strong: 0 28px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.3);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1140px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--off-white);
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 165, 106, 0.18), transparent 35%),
    radial-gradient(circle at 88% 80%, rgba(227, 200, 141, 0.12), transparent 34%),
    linear-gradient(160deg, #090a0d 0%, #101116 55%, #0a0a0c 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* =========================
   Ambient Glows
   ========================= */
.ambient-glow {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

.ambient-glow--top {
  top: -18rem;
  right: -10rem;
  background: rgba(200, 165, 106, 0.18);
}

.ambient-glow--bottom {
  bottom: -20rem;
  left: -10rem;
  background: rgba(227, 200, 141, 0.12);
}

/* =========================
   Header
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.72), rgba(10, 10, 12, 0.34));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 5.2rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  letter-spacing: 0.22em;
  color: var(--gold-light);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--off-white);
  font-size: 0.95rem;
  opacity: 0.88;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
  opacity: 1;
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 8, 9, 0.86) 20%, rgba(8, 8, 9, 0.35) 60%, rgba(8, 8, 9, 0.82) 100%),
    url("https://images.unsplash.com/photo-1523170335258-f5ed11844a49?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 4vw, 3.2rem);
  align-items: center;
  padding: 6rem 0 4rem;
}

.hero-content {
  max-width: 46rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 5.2vw, 5rem);
  margin-bottom: 1.4rem;
  max-width: 13ch;
  text-wrap: balance;
}

.hero-text {
  max-width: 54ch;
  color: #d7d2ca;
  margin-bottom: 2.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #a37f45, #d8bc82);
  color: #111;
  box-shadow: 0 10px 28px rgba(200, 165, 106, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(200, 165, 106, 0.42);
}


/* =========================
   Generic Sections
   ========================= */
.section {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.section-dark {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(9, 10, 13, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-heading {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  text-wrap: balance;
}

/* =========================
   Savoir-faire
   ========================= */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.craft-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.craft-card:hover {
  transform: translateY(-7px);
  border-color: rgba(227, 200, 141, 0.5);
}

.craft-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 165, 106, 0.15);
  border: 1px solid rgba(227, 200, 141, 0.42);
  color: var(--gold-light);
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.craft-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.craft-card p {
  color: var(--text-muted);
}

/* =========================
   Collection
   ========================= */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.watch-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.watch-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.watch-card:hover {
  transform: translateY(-9px);
  border-color: rgba(227, 200, 141, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.48), 0 0 36px rgba(200, 165, 106, 0.16);
}

.watch-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.watch-body {
  padding: 1.2rem 1.1rem 1.1rem;
}

.watch-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.watch-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.watch-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.watch-footer span {
  color: var(--gold-light);
  font-weight: 700;
}

.watch-footer a {
  border: 1px solid rgba(227, 200, 141, 0.32);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.82rem;
  transition: background 0.35s ease, color 0.35s ease;
}

.watch-footer a:hover {
  background: var(--gold-light);
  color: #111;
}

/* =========================
   Heritage
   ========================= */
.heritage-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: start;
}

.timeline {
  margin-top: 1.5rem;
  border-left: 1px solid rgba(227, 200, 141, 0.4);
  padding-left: 1.25rem;
  display: grid;
  gap: 1.2rem;
}

.timeline article span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.timeline article p {
  color: #d8d2c8;
}

.heritage-panel {
  background:
    linear-gradient(160deg, rgba(200, 165, 106, 0.2), rgba(255, 255, 255, 0.03)),
    rgba(20, 20, 24, 0.8);
  border: 1px solid rgba(227, 200, 141, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.7rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.heritage-panel p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.heritage-panel span {
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* =========================
   Testimonials
   ========================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.testimonial {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 200, 141, 0.45);
}

.stars {
  color: var(--gold-light);
  letter-spacing: 0.16em;
  margin-bottom: 0.72rem;
}

.testimonial p {
  color: #ddd8cf;
}

.testimonial h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--off-white);
}

/* =========================
   Footer
   ========================= */
.site-footer {
  padding: 3rem 0 1.3rem;
  background: #08090c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.site-footer h4 {
  margin-bottom: 0.6rem;
  font-size: 1.22rem;
}

.site-footer p {
  color: var(--text-muted);
  max-width: 33ch;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.site-footer a {
  color: #d8d3ca;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.copyright {
  margin: 0;
  text-align: center;
  color: #9f9a90;
  font-size: 0.82rem;
  padding-inline: 1rem;
}

/* =========================
   Motion
   ========================= */
/* =========================
   Responsive
   ========================= */
@media (max-width: 1080px) {
  .heritage-layout {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    max-width: 15ch;
  }

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

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

@media (max-width: 760px) {
  .nav {
    min-height: auto;
    padding: 0.9rem 0;
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1.2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 5.1rem;
  }

  .craft-grid,
  .collection-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 2.1rem;
  }
}
