@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

.base-html {
  --rose-light: #FFF5F5;
  --rose-pale: #FDFBFA;
  --rose-gold: #B76E79;
  --rose-gold-light: #C98B94;
  --ink: #1F1F1F;
  --text: #444444;
  --muted: #888888;
  --accent: #B76E79;
  --accent-light: #D19DA5;
  --accent-faint: rgba(183, 110, 121, 0.08);
  --gold: #D4AF37;
  --gold-light: #E5C76B;
  --line: #E8E1E2;
  --line-dark: #D1C4C6;
  --dark: #121212;
  --dark-mid: #222222;
  --white: #ffffff;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(183, 110, 121, 0.08);
  --shadow-md: 0 12px 40px rgba(183, 110, 121, 0.12);
  --shadow-lg: 0 24px 64px rgba(183, 110, 121, 0.18);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scroll-behavior: smooth;
}



.base-body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--rose-pale);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.main-shell {
  display: block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: 96px 0;
}

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

.section-parchment {
  background: #F8F1EF;
}

/* ─── NOTICE BAR ─── */
.notice {
  padding: 10px 5%;
  background: var(--rose-gold);
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 250, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-accent {
  color: var(--rose-gold);
  font-style: italic;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 40px;
}

.site-nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  transition: color var(--transition);
  font-family: 'DM Mono', monospace;
}

.site-nav-link:hover {
  color: var(--rose-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 13px 28px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'DM Mono', monospace;
  border-radius: var(--radius-xs);
}

.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}

.btn-primary:hover {
  background: var(--rose-gold-light);
  border-color: var(--rose-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  color: var(--rose-gold);
  border-color: var(--rose-gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent-faint);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ─── HERO ─── */
.hero {
  padding: 0;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: var(--dark);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-left-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(183, 110, 121, 0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--rose-light);
  margin: 0 0 8px;
}

.hero-title-em {
  font-style: italic;
  color: var(--accent-light);
  display: block;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 245, 245, 0.65);
  margin: 0 0 40px;
  line-height: 1.4;
}

.hero-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(183, 110, 121, 0.4);
  border-radius: var(--radius-xs);
  padding: 14px 20px;
  margin-bottom: 40px;
  background: rgba(183, 110, 121, 0.08);
}

.hero-price-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 245, 245, 0.5);
}

.hero-price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--accent-light);
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 245, 245, 0.1);
}

.badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255, 245, 245, 0.2);
  color: rgba(255, 245, 245, 0.7);
}

/* ─── TYPOGRAPHY ─── */
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px;
}

.h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 12px;
}

.kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-weight: 500;
  margin: 0 0 14px;
}

.text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

.intro-text {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: 16px;
}

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 48px;
}

.feature-card {
  background: var(--rose-pale);
  padding: 40px 32px;
  transition: background var(--transition);
}

.feature-card:hover {
  background: var(--white);
}

.feature-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--line-dark);
  line-height: 1;
  margin-bottom: 16px;
  font-style: italic;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 580px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--line);
}

.gallery-item-main {
  grid-row: 1 / 3;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 40px;
}

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

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 16px;
  display: block;
}

.footer-logo-accent {
  color: var(--rose-gold);
  font-style: italic;
}

.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── ARTICLE ─── */
.article-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 40px;
  margin-bottom: 48px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.article-meta-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-faint);
  color: var(--rose-gold);
  border: 1px solid rgba(183, 110, 121, 0.2);
  padding: 5px 12px;
  border-radius: var(--radius-xs);
}

.article-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 20px;
}

.article-section {
  margin-bottom: 40px;
}

.article-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-h2::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rose-gold);
}

.article-p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 20px;
}

.verdict-box {
  background: var(--rose-gold);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  color: white;
}

.verdict-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.verdict-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verdict-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
}

.verdict-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

/* ─── ORDER LAYOUT ─── */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.order-gallery-main {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
}

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

.order-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.order-thumb {
  width: 80px;
  aspect-ratio: 1;
  border-radius: var(--radius-xs);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.order-thumb.active {
  border-color: var(--rose-gold);
}

.order-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.price-card-brand {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.price-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.price-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0FAF3;
  color: #1E5C37;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 24px;
}

.availability-dot {
  width: 6px;
  height: 6px;
  background: #2ECC71;
  border-radius: 50%;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.spec-key { color: var(--muted); }
.spec-val { font-weight: 600; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero, .order-layout { grid-template-columns: 1fr; }
  .hero-left { padding: 64px 48px; min-height: 50vh; }
  .container { padding: 0 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-wrap {
    flex-direction: column;
    padding: 16px 0;
    gap: 16px;
  }
  .site-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-item-main { grid-row: auto; aspect-ratio: 1; }
  .gallery-item { aspect-ratio: 1; }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: var(--dark);
  color: var(--white);
  padding: 24px;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
  color: rgba(255,255,255,0.8);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-link {
  color: var(--rose-gold);
  text-decoration: underline;
  font-size: 13px;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ─── LOADER ─── */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--rose-pale);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(183, 110, 121, 0.2);
  border-top-color: var(--rose-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
