/* CSS Reset & Variables */
:root {
  --color-bg-primary: #190a0c; /* Very dark burgundy/brown */
  --color-bg-secondary: #241014; /* Slightly lighter for cards */
  --color-bg-accent: #783c41; /* Muted red for buttons/bands */
  --color-text-main: #e8dbce; /* Warm beige text */
  --color-accent: #e8dbce; /* Beige accents */
  --color-gold: #aa866a; /* Muted gold for borders/lines */

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-cursive: 'Pinyon Script', cursive;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at 70% 30%, #2b1116 0%, #190a0c 60%);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
}

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

ul {
  list-style: none;
}

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

/* Typography */
.cursive-text {
  font-family: var(--font-cursive);
  font-size: 1.6em;
  color: var(--color-text-main);
  font-weight: 300;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  background: transparent;
}

.btn-primary {
  background-color: var(--color-bg-accent);
  color: var(--color-text-main);
}

.btn-primary:hover {
  background-color: #8c474d;
}

.btn-secondary {
  border: 1px solid var(--color-gold);
  color: var(--color-text-main);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-bg-primary);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 16px 5%;
  background-color: rgba(25, 10, 12, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(170, 134, 106, 0.2);
}

.logo {
  font-family: var(--font-cursive);
  font-size: 2rem;
  color: var(--color-text-main);
}

.logo span {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: -5px;
  margin-left: 10px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-main);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-actions .btn {
  padding: 10px 20px;
  font-size: 0.7rem;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-main);
}

/* Sections */
section {
  padding: 120px 5%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  gap: 8%;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 30px;
  font-style: italic;
}

.hero-title span:not(.cursive-text) {
  font-style: normal;
  text-transform: uppercase;
  font-size: 3.5rem;
  letter-spacing: 2px;
  display: block;
}

.hero-title .cursive-text {
  font-size: 5rem;
  display: block;
  margin-top: -20px;
  margin-left: 40px;
}

.hero-desc {
  font-size: 1rem;
  margin-bottom: 40px;
  color: var(--color-text-main);
  opacity: 0.8;
  line-height: 1.8;
}

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

.hero-arrow {
  width: 60px;
  height: 1px;
  background-color: var(--color-text-main);
  position: relative;
  opacity: 0.6;
}
.hero-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  border: solid var(--color-text-main);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
}

.hero-image-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-oval {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 2/3;
  border: 1px solid rgba(170, 134, 106, 0.4);
  border-radius: 200px;
  padding: 15px;
  position: relative;
}

.hero-image-oval::before, .hero-image-oval::after {
  content: '✦';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(170, 134, 106, 0.6);
  font-size: 0.8rem;
}
.hero-image-oval::before { top: -10px; }
.hero-image-oval::after { bottom: -10px; }

.hero-image-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 200px;
  filter: brightness(0.8) contrast(1.1) sepia(0.2);
}

.hero-caption {
  margin-top: 30px;
  font-family: var(--font-cursive);
  font-size: 2rem;
  color: var(--color-text-main);
  opacity: 0.7;
}

/* Models Grid Section */
.models-section {
  background-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.collection-subtitle {
  font-family: var(--font-cursive);
  font-size: 2.5rem;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 40px;
}

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

.model-card {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(170, 134, 106, 0.2);
  border-radius: 120px 120px 10px 10px;
  padding: 12px 12px 30px 12px;
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  transform: translateY(-5px);
  border-color: rgba(170, 134, 106, 0.5);
}

.model-image {
  overflow: hidden;
  border-radius: 110px 110px 0 0;
  margin-bottom: 30px;
  position: relative;
}

.model-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.15) sepia(0.2);
  transition: transform 0.8s ease;
}

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

.model-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-secondary);
  font-family: var(--font-cursive);
  font-size: 1.2rem;
  color: var(--color-gold);
  z-index: 10;
}

.model-info {
  padding: 0 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.model-name {
  font-size: 1rem;
  font-family: var(--font-serif);
  letter-spacing: 2px;
  margin-bottom: 12px;
  margin-top: 20px;
}

.model-desc {
  font-size: 0.75rem;
  color: var(--color-text-main);
  opacity: 0.6;
  margin-bottom: 24px;
  line-height: 1.6;
  flex: 1;
}

.learn-more {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.learn-more:hover {
  opacity: 0.7;
}

/* Model Actions */
.model-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
}

.model-actions .btn {
  flex: 1;
  padding: 10px 5px;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  justify-content: center;
}


/* Stats Section (Band) */
.stats-section {
  background-color: var(--color-bg-accent);
  padding: 60px 5%;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '✦';
  position: absolute;
  right: -50%;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
}

.stat-number {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* Editorial / Your Story Section */
.editorial-section {
  display: flex;
  align-items: center;
  gap: 8%;
  background-color: transparent;
}

.editorial-content {
  flex: 1;
  padding: 0;
}

.editorial-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.editorial-subtitle::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--color-text-main);
}

.editorial-title {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.editorial-desc {
  font-size: 0.9rem;
  margin-bottom: 40px;
  color: var(--color-text-main);
  opacity: 0.7;
  line-height: 1.8;
}

.editorial-image {
  flex: 1.2;
}

.editorial-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(170, 134, 106, 0.3);
  filter: brightness(0.8) contrast(1.1) sepia(0.2);
}

/* Conversion Section */
.conversion-section {
  background-color: var(--color-bg-secondary);
  text-align: center;
  padding: 120px 5%;
  border-top: 1px solid rgba(170, 134, 106, 0.2);
}

.conversion-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.conversion-desc {
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.7;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(170, 134, 106, 0.2);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  font-weight: 300;
  color: var(--color-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.9rem;
  color: var(--color-text-main);
  opacity: 0.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 16px;
}

/* Footer */
.footer {
  background-color: var(--color-bg-primary);
  padding: 80px 5% 40px;
  border-top: 1px solid rgba(170, 134, 106, 0.2);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-cursive);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-main);
  opacity: 0.6;
  margin-bottom: 40px;
}

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

.footer-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.7rem;
  opacity: 0.4;
  letter-spacing: 1px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 10, 12, 0.98);
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal.active {
  display: block;
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-text-main);
  z-index: 2010;
}

.modal-content {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 5%;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.modal-gallery {
  flex: 1;
}

.modal-gallery img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(170, 134, 106, 0.3);
}

.modal-details {
  flex: 1;
  position: sticky;
  top: 100px;
}

.modal-title {
  font-size: 3rem;
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 1rem;
  color: var(--color-text-main);
  opacity: 0.7;
  margin-bottom: 24px;
}

.modal-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--color-gold);
}

.modal-features li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  opacity: 0.8;
}

.modal-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.7rem;
  top: 2px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .hero-title span:not(.cursive-text) { font-size: 2.5rem; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-subtitle { font-size: 2rem; }
  .editorial-section { flex-direction: column; }
  .stats-section { flex-wrap: wrap; gap: 40px; }
  .stat-item { width: 40%; }
  .stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  
  .nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg-primary);
    flex-direction: column;
    padding: 20px 5%;
    border-bottom: 1px solid rgba(170, 134, 106, 0.2);
  }

  .nav-mobile.active { display: flex; }
  .nav-mobile a { padding: 12px 0; border-bottom: 1px solid rgba(170, 134, 106, 0.1); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px;}

  .hero { flex-direction: column; text-align: center; padding-top: 100px; gap: 40px; }
  .hero-title .cursive-text { margin-left: 0; font-size: 4rem; }
  .hero-actions { justify-content: center; }
  .hero-arrow { display: none; }
  
  .models-grid { grid-template-columns: 1fr; }
  .stat-item { width: 100%; }
}
