/* ============================================
   LIGURE WATCHES — Design System & Styles
   v2 — Refined & polished
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors — Riviera Palette */
  --color-midnight: #0c1a2a;
  --color-navy: #152c45;
  --color-ocean: #1e4a6e;
  --color-gold: #c4a265;
  --color-gold-light: #d4b87a;
  --color-stone: #f2ece2;
  --color-sand: #e6ddd0;
  --color-cream: #faf8f4;
  --color-white: #ffffff;
  --color-charcoal: #1e1e1e;
  --color-slate: #5a6a7a;
  --color-muted: #8a9aaa;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad-desktop: 120px;
  --section-pad-tablet: 88px;
  --section-pad-mobile: 64px;
  --content-max: 1280px;
  --text-narrow: 720px;
  --container-pad: 60px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-cta: 220ms var(--ease-smooth);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background: var(--color-cream);
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: block;
}

.eyebrow--light {
  color: var(--color-gold-light);
}

.eyebrow--dark {
  color: var(--color-gold);
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.5px;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
}

.body-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-slate);
  max-width: var(--text-narrow);
}

.body-text--light {
  color: rgba(255, 255, 255, 0.75);
}

.subheadline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

/* --- Container (consistent padding everywhere) --- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* --- CTA System --- */

/* Primary CTA — solid button */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  cursor: pointer;
  transition: all var(--transition-cta);
  text-decoration: none;
}

.cta-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

/* Secondary CTA — text link with arrow */
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  cursor: pointer;
  transition: all var(--transition-cta);
  text-decoration: none;
  border: none;
  background: none;
}

.cta-secondary .cta-arrow {
  display: inline-block;
  transition: transform var(--transition-cta);
  font-size: 14px;
}

.cta-secondary:hover {
  opacity: 0.8;
}

.cta-secondary:hover .cta-arrow {
  transform: translateX(6px);
}

.cta-secondary--light {
  color: rgba(255, 255, 255, 0.75);
}

.cta-secondary--light:hover {
  color: var(--color-white);
  opacity: 1;
}

.cta-secondary--dark {
  color: var(--color-charcoal);
}

.cta-secondary--dark:hover {
  color: var(--color-gold);
  opacity: 1;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--container-pad);
  height: 90px;
  display: flex;
  align-items: center;
  transition: all 400ms var(--ease-smooth);
}

.site-header.is-transparent {
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(12, 26, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 60px;
  width: auto;
  transition: height 300ms var(--ease-smooth);
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.3));
}

.is-scrolled .header-logo img {
  height: 36px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-cta);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 300ms var(--ease-out);
}

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

.header-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions button,
.header-actions a {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color var(--transition-cta);
  padding: 4px;
}

.header-actions button:hover,
.header-actions a:hover {
  color: var(--color-white);
}

.header-actions svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-midnight);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 40px;
  transition: right 500ms var(--ease-out);
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-white);
  padding: 16px 0;
  display: block;
  opacity: 0.7;
  transition: opacity var(--transition-cta), transform var(--transition-cta);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a:hover {
  opacity: 1;
  transform: translateX(8px);
}

/* --- Section Shared --- */
.section {
  padding: var(--section-pad-desktop) 0;
  position: relative;
  overflow: hidden;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

/* ============================================
   Section 01 — Hero
   ============================================ */
#home-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Stronger overlay for better text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 14, 24, 0.92) 0%,
      rgba(8, 14, 24, 0.65) 30%,
      rgba(8, 14, 24, 0.30) 55%,
      rgba(8, 14, 24, 0.15) 80%,
      rgba(8, 14, 24, 0.10) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--container-pad) 100px;
}

.hero-content-inner {
  max-width: 640px;
}

.hero-content .body-text {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 44px;
  font-size: 16px;
  line-height: 1.85;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

/* Hero scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.6;
    transform: translateX(-50%) translateY(6px);
  }
}

/* ============================================
   Section 02 — Riviera Diver
   ============================================ */
#home-riviera-diver {
  background: var(--color-cream);
}

.riviera-diver-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.riviera-diver-text h2 {
  color: var(--color-midnight);
}

.riviera-diver-text .body-text {
  margin-bottom: 40px;
}

.riviera-diver-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.riviera-diver-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 6s var(--ease-smooth);
}

.riviera-diver-image:hover img {
  transform: scale(1.03);
}

/* ============================================
   Section 03 — Tartaruga Case
   ============================================ */
#home-tartaruga {
  background: var(--color-midnight);
  color: var(--color-white);
}

.tartaruga-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: center;
}

.tartaruga-viewer-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.tartaruga-viewer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      rgba(30, 74, 110, 0.12) 0%,
      rgba(12, 26, 42, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.tartaruga-viewer {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 500px;
}

.tartaruga-viewer .Sirv {
  width: 100%;
  height: 500px;
}

.tartaruga-viewer-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity 600ms var(--ease-smooth);
  pointer-events: none;
}

.tartaruga-viewer-wrapper:hover .tartaruga-viewer-hint,
.tartaruga-viewer-wrapper:active .tartaruga-viewer-hint {
  opacity: 0;
}

.tartaruga-viewer-hint svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.6);
  animation: hintPulse 2s ease-in-out infinite;
}

.tartaruga-viewer-hint span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes hintPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.tartaruga-text h2 {
  color: var(--color-white);
}

.tartaruga-text .body-text {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
}

/* ============================================
   Section 04 — Heritage
   ============================================ */
#home-heritage {
  padding: 0;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.heritage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.heritage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(8, 14, 24, 0.85) 0%,
      rgba(8, 14, 24, 0.55) 45%,
      rgba(8, 14, 24, 0.2) 100%);
  z-index: 1;
}

.heritage-content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad-desktop) var(--container-pad);
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.heritage-content-inner {
  max-width: 540px;
}

.heritage-content h2 {
  color: var(--color-white);
}

.heritage-content .body-text {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 40px;
}

/* ============================================
   Section 05 — Craftsmanship
   ============================================ */
#home-craftsmanship {
  background: var(--color-stone);
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.craftsmanship-text h2 {
  color: var(--color-midnight);
}

.craftsmanship-text .body-text {
  margin-bottom: 48px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.proof-item {
  text-align: center;
}

.proof-item .proof-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  opacity: 0.45;
}

.proof-item h3 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-midnight);
  margin-bottom: 0;
}

.craftsmanship-image {
  position: relative;
  overflow: hidden;
}

.craftsmanship-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 15px;
}

/* ============================================
   Section 06 — Lifestyle
   ============================================ */
#home-lifestyle {
  padding: 0;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
}

.lifestyle-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lifestyle-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 14, 24, 0.8) 0%,
      rgba(8, 14, 24, 0.2) 45%,
      rgba(8, 14, 24, 0.05) 100%);
  z-index: 1;
}

.lifestyle-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--container-pad) 80px;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.lifestyle-content-inner {
  max-width: 560px;
}

.lifestyle-content h2 {
  color: var(--color-white);
  font-size: clamp(28px, 3.5vw, 48px);
}

.lifestyle-content .body-text {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   Section 07 — Collection
   ============================================ */
#home-collection {
  background: var(--color-cream);
}

.collection-intro {
  text-align: center;
  max-width: var(--text-narrow);
  margin: 0 auto 64px;
}

.collection-intro h2 {
  color: var(--color-midnight);
}

.collection-intro .body-text {
  margin: 0 auto 40px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.collection-card {
  position: relative;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 400ms var(--ease-out);
}

.collection-card:hover {
  transform: translateY(-4px);
}

.collection-card-image {
  position: relative;
  overflow: hidden;
  background: var(--color-stone);
  aspect-ratio: 3 / 4;
  margin-bottom: 20px;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 600ms var(--ease-out);
}

.collection-card:hover .collection-card-image img {
  transform: scale(1.05);
}

.collection-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-midnight);
  margin-bottom: 4px;
}

.collection-card .card-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-slate);
  letter-spacing: 0.5px;
}

.palette-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06) !important;
  background: rgba(255,255,255,0.8) !important;
}

@media (max-width: 900px) {
  .palette-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 650px) {
  .palette-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   Section 08 — Journal (Blog Style)
   ============================================ */
#home-journal {
  background: var(--color-stone);
  border-top: 1px solid var(--color-border);
}

.journal-header {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.journal-header-text h2 {
  color: var(--color-midnight);
  margin-bottom: 8px;
}

.journal-header-text .journal-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-slate);
  max-width: 480px;
  line-height: 1.7;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.journal-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
  background: var(--color-cream);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.journal-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 600ms var(--ease-out);
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.04);
}

.journal-card-body {
  padding: 28px 28px 32px;
}

.journal-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.journal-card-category {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.journal-card-dot {
  color: var(--color-gold);
  font-size: 10px;
  opacity: 0.6;
}

.journal-card-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-slate);
}

.journal-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-midnight);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color var(--transition-cta);
}

.journal-card:hover .journal-card-body h3 {
  color: var(--color-ocean);
}

.journal-card-body .article-excerpt {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.journal-card-body .read-more {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-cta);
}

.journal-card-body .read-more .cta-arrow {
  display: inline-block;
  transition: transform var(--transition-cta);
  font-size: 13px;
}

.journal-card:hover .read-more .cta-arrow {
  transform: translateX(5px);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-midnight);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .footer-logo {
  height: 75px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand .footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 0;
  transition: color var(--transition-cta);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-cta);
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --container-pad: 40px;
  }

  .section {
    padding: var(--section-pad-tablet) 0;
  }

  .site-header {
    padding: 0 var(--container-pad);
    height: 80px;
  }

  .header-logo img {
    height: 42px;
  }

  .riviera-diver-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .tartaruga-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .craftsmanship-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .journal-grid .journal-card:last-child {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 768px) {
  :root {
    --container-pad: 24px;
  }

  .section {
    padding: var(--section-pad-mobile) 0;
  }

  .site-header {
    padding: 0 var(--container-pad);
    height: 64px;
  }

  .header-logo img {
    height: 38px;
  }

  .is-scrolled .header-logo img {
    height: 30px;
  }

  .header-nav {
    display: none;
  }

  .header-actions .search-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Hero mobile */
  #home-hero {
    min-height: auto;
    height: 88vh;
  }

  .hero-content {
    padding: 0 var(--container-pad) 72px;
  }

  .hero-content .body-text {
    font-size: 14px;
  }

  .cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-scroll-hint {
    display: none;
  }

  /* Riviera Diver mobile */
  .riviera-diver-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .riviera-diver-image img {
    height: 360px;
  }

  /* Tartaruga mobile */
  .tartaruga-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tartaruga-viewer-wrapper {
    order: -1;
  }

  .tartaruga-viewer .Sirv {
    height: 360px;
  }

  .tartaruga-viewer {
    min-height: 360px;
  }

  /* Heritage mobile */
  #home-heritage {
    min-height: 70vh;
  }

  .heritage-content {
    padding: var(--section-pad-mobile) var(--container-pad);
  }

  .heritage-overlay {
    background: linear-gradient(to top,
        rgba(8, 14, 24, 0.88) 0%,
        rgba(8, 14, 24, 0.45) 55%,
        rgba(8, 14, 24, 0.15) 100%);
  }

  /* Craftsmanship mobile */
  .craftsmanship-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .craftsmanship-image img {
    height: 360px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Lifestyle mobile */
  #home-lifestyle {
    min-height: 70vh;
  }

  .lifestyle-content {
    padding: 0 var(--container-pad) 52px;
  }

  /* Collection mobile */
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .collection-card-image {
    margin-bottom: 12px;
    border-radius: 15px;
  }

  .collection-card h3 {
    font-size: 17px;
  }

  /* Journal mobile */
  .journal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .journal-grid .journal-card:last-child {
    display: block;
  }

  .journal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer mobile */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --container-pad: 20px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================
   Colors Page — Specific Styles
   ============================================ */
.colors-hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.colors-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.colors-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.colors-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.6);
  z-index: 1;
}

.colors-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 var(--container-pad);
}

.colors-hero-content h1 {
  margin-bottom: 20px;
}

.colors-hero-content .body-text {
  color: rgba(255, 255, 255, 0.68);
  margin: 0 auto 40px;
  text-align: center;
}

/* Color sections */
.color-section {
  padding: var(--section-pad-desktop) 0;
}

.color-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.color-section-grid.reversed {
  direction: rtl;
}

.color-section-grid.reversed>* {
  direction: ltr;
}

.color-section-text h2 {
  color: var(--color-midnight);
}

.color-section-text .body-text {
  margin-bottom: 40px;
}

.color-section-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.color-section--dark {
  background: var(--color-midnight);
}

.color-section--dark h2 {
  color: var(--color-white);
}

.color-section--dark .body-text {
  color: rgba(255, 255, 255, 0.6);
}

.color-section--stone {
  background: var(--color-stone);
}

.color-section--cream {
  background: var(--color-cream);
}

/* Colors close */
.colors-close {
  text-align: center;
  background: var(--color-midnight);
  padding: var(--section-pad-desktop) 0;
}

.colors-close-content {
  max-width: var(--text-narrow);
  margin: 0 auto;
}

.colors-close h2 {
  color: var(--color-white);
}

.colors-close .body-text {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .color-section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .color-section-grid.reversed {
    direction: ltr;
  }

  .color-section-image img {
    height: 320px;
  }

  .colors-hero {
    height: 70vh;
  }
}