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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1e1e1e;
  --bg-overlay: rgba(10,10,10,0.92);
  --text-primary: #f0ede8;
  --text-secondary: #9a9590;
  --text-muted: #5a5550;
  --accent: #a0a0a0;
  --accent-light: #d0d0d0;
  --accent-dark: #707070;
  --accent-red: #c0392b;
  --border: rgba(160, 160, 160, 0.12);
  --border-accent: rgba(160, 160, 160, 0.35);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 30px rgba(160, 160, 160, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease-out);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Typography ─────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
}
.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

/* ── Preloader ──────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
}
.preloader-line {
  width: 120px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.preloader-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: preloaderSlide 1.2s var(--ease-in-out) infinite;
}
.preloader-text {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}
@keyframes preloaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ── Affiliate Banner ───────────────────────────────── */
.affiliate-banner {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: var(--accent);
  color: #000;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 9000;
}

/* ── Header ─────────────────────────────────────────── */
header {
  position: fixed;
  top: 36px; width: 100%;
  padding: 20px 4%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
header.scrolled {
  top: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 4%;
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.brand-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--accent-light);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Nav ─────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin: 1.8rem 0; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-primary);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}
.btn:hover { color: #000; }
.btn:hover::before { transform: scaleX(1); }
.btn > * { position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }

.btn-solid {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-solid::before {
  background: var(--accent-light);
}
.btn-solid:hover { color: #000; }

/* ── Scroll Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(160, 160, 160, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(160, 160, 160, 0.04) 0%, transparent 50%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 900px;
  height: 900px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.3;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-text { max-width: 100%; }
.hero-text .eyebrow { margin-bottom: 1.5rem; }
.hero-text .display-xl { margin-bottom: 1.5rem; }
.hero-text .display-xl em { font-style: italic; color: var(--accent); }
.hero-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 1px solid var(--accent);
  opacity: 0.25;
  z-index: 0;
}
.hero-image-frame img {
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-deep);
}
.hero-image-label {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--accent);
  color: #000;
  padding: 12px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-frame { max-width: 360px; margin: 0 auto; }
}

/* ── Divider ─────────────────────────────────────────── */
.section-divider {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

/* ── About Section ────────────────────────────────────── */
.about-section {
  padding: 120px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text {
  grid-column: 1;
  grid-row: 1;
}
.about-images {
  grid-column: 2;
  grid-row: 1;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-images img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow-deep);
}
.about-images img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.about-text .section-title { margin-bottom: 2rem; }
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.85;
}
.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-text, .about-images { grid-column: auto; grid-row: auto; }
  .about-stats { gap: 2rem; flex-wrap: wrap; justify-content: center; }
}

/* ── Features Section ───────────────────────────────── */
.features-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}
.features-header {
  text-align: center;
  margin-bottom: 5rem;
}
.features-header .section-title { margin-top: 0.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.feature-card:nth-child(2) {
  margin-top: 3rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  font-style: italic;
  margin: 0 auto 1.5rem auto;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.75;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .feature-card:nth-child(2) { margin-top: 0; }
}

/* ── Product Teaser ──────────────────────────────────── */
.product-teaser {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.product-teaser-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(160, 160, 160, 0.05) 0%, transparent 70%);
}
.product-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-teaser-info {
  grid-column: 1;
  grid-row: 1;
}
.product-teaser-gallery {
  grid-column: 2;
  grid-row: 1;
}
.product-teaser-gallery { position: relative; }
.gallery-main {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fff;
  transition: transform 0.6s var(--ease-out);
}
.gallery-main:hover img { transform: scale(1.03); }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumbs img {
  width: 72px; height: 72px;
  object-fit: cover;
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0.5;
  transition: all var(--transition);
}
.gallery-thumbs img:hover, .gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--accent);
}
.product-teaser-info .eyebrow { margin-bottom: 1rem; }
.product-teaser-info .section-title { margin-bottom: 1.5rem; }
.product-teaser-info .product-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.product-price-tag {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 2rem;
  line-height: 1;
}
.product-price-tag small {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.cta-group { display: flex; flex-direction: column; gap: 1rem; max-width: 380px; }
.cta-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
@media (max-width: 900px) {
  .product-teaser-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-teaser-info, .product-teaser-gallery {
    grid-column: auto; grid-row: auto;
  }
  .cta-group { max-width: 100%; }
}

/* ── Testimonial / Review ─────────────────────────────── */
.testimonial-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}
.testimonial-header {
  text-align: center;
  margin-bottom: 5rem;
}
.testimonial-header .section-title { margin-top: 0.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
  text-align: center;
}
.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(160, 160, 160, 0.08) 0%, transparent 65%);
}
.cta-banner .eyebrow { margin-bottom: 1rem; }
.cta-banner .display-lg { margin-bottom: 1.5rem; }
.cta-banner p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .cta-banner { padding: 70px 0; }
}

/* ── Internal Page Layout ────────────────────────────── */
.internal-page {
  padding: 160px 0 100px;
}

/* ── Product Detail Page ──────────────────────────────── */
.product-page {
  padding: 160px 0 100px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.product-gallery-main {
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}
.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fff;
  transition: transform 0.6s var(--ease-out);
}
.product-gallery-main:hover img { transform: scale(1.04); }
.product-thumbs-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.product-thumbs-row img {
  width: 80px; height: 80px;
  object-fit: cover;
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0.45;
  transition: all var(--transition);
}
.product-thumbs-row img:hover,
.product-thumbs-row img.active { opacity: 1; border-color: var(--accent); }
.product-detail-info .eyebrow { margin-bottom: 1rem; }
.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.product-detail-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 2rem;
  line-height: 1;
}
.product-detail-price small {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
}
.product-detail-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
}
.product-specs-table tr {
  border-bottom: 1px solid var(--border);
}
.product-specs-table td {
  padding: 1rem 0;
  font-size: 0.85rem;
}
.product-specs-table td:first-child {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  width: 40%;
}
.product-specs-table td:last-child {
  color: var(--text-secondary);
}
@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Comparison Table ────────────────────────────────── */
.comparison-section {
  margin-top: 80px;
}
.comparison-header {
  text-align: center;
  margin-bottom: 3rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.comparison-table th {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-secondary);
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
}
.comparison-table .highlight-col {
  background: rgba(160, 160, 160, 0.04);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
  color: var(--accent-light);
}

/* ── Editorial / Review Page ────────────────────────── */
.editorial-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.editorial-wrap img {
  width: 100%;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-deep);
}
.editorial-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin: 3rem 0 1.2rem;
  color: var(--accent-light);
}
.editorial-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
}
.editorial-wrap p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.editorial-pullquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 2rem;
  margin: 3rem 0;
  background: rgba(160, 160, 160, 0.04);
}
.editorial-pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0;
}
.editorial-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.editorial-section-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 4rem auto;
}

/* ── Contact Page ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
}
.contact-detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: var(--accent-light);
}
.contact-item {
  margin-bottom: 2rem;
}
.contact-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.contact-item-value {
  font-size: 1rem;
  color: var(--text-primary);
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
}
.form-input {
  width: 100%;
  padding: 14px 0;
  margin-bottom: 2rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-bottom-color: var(--accent); }
textarea.form-input { resize: vertical; min-height: 120px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Legal Pages ─────────────────────────────────────── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 0 100px;
}
.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  text-align: center;
}
.legal-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 3rem 0 1rem;
  color: var(--accent-light);
}
.legal-wrap p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.legal-wrap ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
}
.legal-wrap li { margin-bottom: 0.5rem; }

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 4% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  max-width: 1240px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── Cookie Banner ────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 0; width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--accent);
  padding: 24px 4%;
  z-index: 9998;
  transition: bottom 0.6s var(--ease-out);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
}
#cookie-banner.active { bottom: 0; }
.cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  min-width: 260px;
}
.cookie-inner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 12px 24px;
  font-size: 0.72rem;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}
.btn-ghost::before { background: transparent; }
.btn-ghost:hover {
  border-color: var(--text-secondary);
  color: var(--text-secondary);
}
@media (max-width: 700px) {
  .cookie-inner { flex-direction: column; text-align: center; gap: 1.2rem; }
  .cookie-actions { flex-direction: column; width: 100%; }
  .cookie-actions .btn { width: 100%; text-align: center; }
}
