@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #F4F0EA;
  --bg-soft: #EAE3DA;
  --surface: #FBF9F6;
  --surface-dark: #211B1C;
  --wine: #6E2638;
  --wine-dark: #4B1826;
  --wine-light: #F2E3E7;
  --champagne: #B69A68;
  --champagne-light: #EDE1C8;
  --ink: #201B1B;
  --text: #3F3938;
  --muted: #7C7470;
  --line: #D8CEC4;
  --success: #52685C;
  
  --radius-sm: 3px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  --shadow-sm: 0 4px 14px rgba(42,30,30,.06);
  --shadow-md: 0 10px 35px rgba(42,30,30,.10);
  
  --container: 1180px;
  --content: 820px;
  --section-space: clamp(70px, 9vw, 130px);
  
  --font-heading: 'Italiana', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }

p {
  margin-bottom: 20px;
  color: var(--text);
  font-weight: 300;
  font-size: 1.05rem;
}

.micro-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--champagne);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--wine);
  letter-spacing: 2px;
  animation: fade 1.5s infinite;
}

@keyframes fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

.section-dark h2, .section-dark p {
  color: var(--surface);
}

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

/* Header */
.site-header {
  padding: 24px 0;
  background: var(--bg);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left, .header-right {
  flex: 1;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--text);
}

.nav-link:hover {
  color: var(--champagne);
}

.brand-logo {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .header-right { display: none; }
  .mobile-menu-btn { display: block; flex: 1; text-align: right; }
  .mobile-menu-btn svg { width: 24px; height: 24px; display: inline-block; }
}

/* Disclosure */
.disclosure-bar {
  background-color: var(--wine-light);
  color: var(--wine-dark);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 60px 0 80px;
  border-bottom: 1px solid var(--line);
}

.hero-split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 42% 58%;
    gap: 80px;
  }
}

.hero-price {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--wine);
  margin-bottom: 32px;
}

.hero-img-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-block;
  background: var(--wine);
  color: #fff;
  padding: 16px 32px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--wine);
}

.btn:hover {
  background: var(--wine-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--wine);
}

.btn-outline:hover {
  background: var(--wine-light);
  color: var(--wine);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Asymmetrical Layouts */
.split-section {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .split-reverse {
    direction: rtl;
  }
  .split-reverse > * {
    direction: ltr;
  }
}

.img-large {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.detail-strip {
  border-left: 2px solid var(--champagne);
  padding-left: 24px;
  margin: 40px 0;
}

.detail-item {
  margin-bottom: 16px;
}

.detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}

.detail-value {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}

/* Image Collage */
.collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

@media (min-width: 768px) {
  .collage {
    grid-template-columns: 7fr 5fr;
    align-items: flex-end;
    gap: 40px;
  }
}

.collage img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--champagne-light);
}

.img-caption {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
  margin-top: 12px;
  font-style: italic;
}

/* Styling Guide */
.style-blocks {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .style-blocks {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.style-block {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.style-block h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--ink);
}

/* Specifications Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, .specs-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.specs-table th {
  font-weight: 500;
  color: var(--muted);
  width: 40%;
}

.specs-table td {
  font-weight: 600;
  color: var(--ink);
}

/* Pros / Cons */
.panels-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .panels-grid { grid-template-columns: 1fr 1fr; }
}

.panel {
  padding: 40px;
  border-radius: var(--radius-sm);
}

.panel-pro {
  background: var(--surface);
  border-top: 4px solid var(--champagne);
}

.panel-con {
  background: var(--bg-soft);
  border-top: 4px solid var(--muted);
}

.panel h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.panel ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 300;
}

.panel-pro ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--champagne);
}

.panel-con ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  color: var(--champagne);
  transition: transform 0.3s ease;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-inner {
  padding-bottom: 24px;
  color: var(--text);
  font-weight: 300;
}

/* Final CTA */
.cta-section {
  text-align: center;
  padding: 100px 20px;
}

.cta-section h2 {
  color: var(--surface);
  margin-bottom: 24px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.cta-section .btn {
  background: var(--surface);
  color: var(--wine-dark);
  border-color: var(--surface);
}

.cta-section .btn:hover {
  background: var(--champagne-light);
  border-color: var(--champagne-light);
}

/* Transparency & Footer */
.transparency {
  text-align: center;
  padding: 60px 20px;
  border-top: 1px solid var(--line);
}

.transparency h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.transparency p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  background: var(--surface);
  padding: 60px 0;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--wine);
}

.copyright {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Legal Pages Styling */
.legal-page .site-header { border-bottom: none; }
.legal-content { padding-top: 40px; }
.legal-content h1 { font-size: 3rem; margin-bottom: 40px; }
.legal-content h2 { font-family: var(--font-body); font-weight: 600; font-size: 1.4rem; margin-top: 40px; margin-bottom: 16px; color: var(--wine-dark); }
.legal-content p, .legal-content ul { color: var(--text); font-weight: 300; margin-bottom: 16px; }
.legal-content ul { list-style: disc; padding-left: 24px; }
.legal-content a { color: var(--wine); text-decoration: underline; }
.legal-date { margin-top: 60px; font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
