/* ═══════════════════════════════════════════════
   LUMA SKIN STUDIO — style.css
   Luxury · Minimal · Editorial
═══════════════════════════════════════════════ */

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

/* ─── CSS Variables ─────────────────────────── */
:root {
  /* Colours */
  --color-bg:             #FDFAF7;
  --color-surface:        #F5F0EA;
  --color-surface-alt:    #EDE5DA;
  --color-primary:        #2C2828;
  --color-secondary:      #5C4F4A;
  --color-accent:         #C9A96E;
  --color-accent-light:   #E8D5B0;
  --color-accent-pale:    #F7F0E4;
  --color-blush:          #F2E8E1;
  --color-text-primary:   #1E1A18;
  --color-text-secondary: #7A6E6A;
  --color-text-muted:     #B0A49E;
  --color-text-inverse:   #FDFAF7;
  --color-border:         #E5DDD5;
  --color-border-light:   #EDE8E2;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 350ms ease;
  --transition-slow: 600ms ease;

  /* Radii */
  --radius-sm:   3px;
  --radius-md:   8px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(44, 40, 40, 0.06);
  --shadow-md:     0 8px 32px rgba(44, 40, 40, 0.1);
  --shadow-lg:     0 20px 60px rgba(44, 40, 40, 0.14);
  --shadow-accent: 0 8px 24px rgba(201, 169, 110, 0.2);

  /* Nav */
  --nav-height: 80px;
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────── */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
h3 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { font-size: 1rem; color: var(--color-text-secondary); line-height: 1.8; }

em { font-style: italic; color: var(--color-accent); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.section-header.center { text-align: center; }
.section-header.center h2 { margin: var(--space-xs) auto var(--space-lg); }

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn-text {
  background: transparent;
  color: var(--color-primary);
  padding: 0;
  border: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  position: relative;
}
.btn-text::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.btn-text:hover::after { transform: scaleX(1); }

.btn-nav {
  background: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
  padding: 0.55rem 1.4rem;
  font-size: 0.7rem;
}
.btn-nav:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

.btn-full { width: 100%; }

/* ─── Scroll Animations ─────────────────────── */
.animate-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-section.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(253, 250, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border-light);
}

.navbar.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Centre logo layout */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-luma { font-weight: 600; }
.logo-divider { color: var(--color-accent); font-weight: 300; }
.logo-skin { font-weight: 300; font-style: italic; }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}
.nav-links--left { justify-content: flex-end; flex: 1; }
.nav-links--right { justify-content: flex-start; flex: 1; }

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--color-text-primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text-primary);
  transition: all var(--transition-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-primary);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}
.mobile-nav-link:hover { color: var(--color-accent); }
.mobile-cta { margin-top: var(--space-sm); }

@media (min-width: 900px) {
  .hamburger { display: none; }
  .nav-links { display: flex; }
  .btn-nav { display: inline-flex; }
}

/* On mobile, left links hidden, logo + right CTA only */
@media (max-width: 899px) {
  .nav-links--left, .nav-links--right { display: none; }
  .btn-nav { display: none; }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Organic blush blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob:first-of-type {
  width: clamp(380px, 55vw, 700px);
  height: clamp(380px, 55vw, 700px);
  background: radial-gradient(circle, #F5E6DC 0%, rgba(245,230,220,0.4) 50%, transparent 70%);
  top: -10%;
  right: -10%;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
}
.hero-blob--secondary {
  width: clamp(200px, 30vw, 380px);
  height: clamp(200px, 30vw, 380px);
  background: radial-gradient(circle, var(--color-accent-pale) 0%, transparent 70%);
  bottom: 10%;
  left: 3%;
  border-radius: 70% 30% 60% 40% / 40% 50% 70% 60%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.hero-headline {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 300;
}
.hero-headline em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: var(--space-md);
}

.hero-sub {
  max-width: 420px;
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
}

/* Hero image */
.hero-image-wrap {
  position: relative;
}
.hero-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Subtle warm tint so it blends with cream palette */
  filter: saturate(0.92) contrast(0.98);
}

.hero-image-tag {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.tag-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}
.tag-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

/* Scrolling marquee */
.hero-marquee-wrap {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--color-border-light);
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-md) 0;
}
.hero-marquee {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.hero-marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: var(--space-2xl);
  }
}

/* ═══════════════════════════════════════════════
   TREATMENTS
═══════════════════════════════════════════════ */
.treatments { background: var(--color-surface); }

.treatments-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.treatments-header-left h2 { margin-top: var(--space-xs); }

.treatments-header-right {
  font-size: 1rem;
  max-width: 420px;
  align-self: flex-end;
}

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

/* Treatment rows — editorial list style */
.treatments-list {
  display: flex;
  flex-direction: column;
}

.treatment-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm) var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition-fast);
  position: relative;
}
.treatment-row:last-child { border-bottom: none; }
.treatment-row:hover { background: var(--color-surface-alt); margin: 0 calc(-1 * var(--space-md)); padding-left: var(--space-md); padding-right: var(--space-md); }

.treatment-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--color-accent-light);
  line-height: 1;
  flex-shrink: 0;
}

.treatment-info h3 {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}
.treatment-info p { font-size: 0.925rem; max-width: 420px; }

.treatment-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  align-content: flex-start;
}
.treatment-items span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 4px 12px;
}

.treatment-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
  align-self: center;
  transition: letter-spacing var(--transition-fast);
}
.treatment-cta:hover { letter-spacing: 0.2em; }

@media (min-width: 768px) {
  .treatment-row { grid-template-columns: 80px 1fr 1fr 100px; align-items: center; }
}

.treatments-footer-note {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.note-rule { flex: 1; height: 1px; background: var(--color-border); min-width: 30px; }
.treatments-footer-note p {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--color-text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════ */
.stats-bar {
  background: var(--color-primary);
  padding: var(--space-xl) 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg) var(--space-md);
  align-items: center;
}

.stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 250, 247, 0.4);
}

.stat-divider { display: none; width: 1px; height: 40px; background: rgba(201, 169, 110, 0.2); }

@media (min-width: 768px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-divider { display: block; }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about { background: var(--color-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-visual { position: relative; padding-bottom: var(--space-lg); }

.about-image-placeholder {
  aspect-ratio: 3/4;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-light);
  position: relative;
  z-index: 1;
}
.about-image-placeholder span { font-size: 0.75rem; color: var(--color-text-muted); font-style: italic; }

/* Gold accent line behind image */
.about-gold-accent {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  right: calc(-1 * var(--space-md));
  bottom: var(--space-sm);
  border: 1px solid var(--color-accent-light);
  z-index: 0;
}

.about-image-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-md);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-image-caption em {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-primary);
}
.about-image-caption span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about-text h2 { margin: var(--space-xs) 0 var(--space-md); }
.about-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-primary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.about-text > p { margin-bottom: var(--space-sm); }

.about-signature {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin: var(--space-lg) 0;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}
.about-signature span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.process { background: var(--color-accent-pale); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.process-connector {
  width: 1px;
  height: var(--space-md);
  background: var(--color-accent-light);
  align-self: center;
  display: none;
}

.process-step {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  flex: 1;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.process-step:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.process-step h4 {
  color: var(--color-text-primary);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  margin-bottom: var(--space-xs);
}

.process-step p { font-size: 0.9rem; }

@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .process-connector { display: block; height: 1px; width: var(--space-md); flex-shrink: 0; align-self: 120px; margin-top: 80px; }
}

/* ═══════════════════════════════════════════════
   RESULTS / TESTIMONIALS
═══════════════════════════════════════════════ */
.results { background: var(--color-surface); }

.results-header {
  margin-bottom: var(--space-xl);
}
.results-header h2 { margin-top: var(--space-xs); }

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.result-card {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
}
.result-card:last-child { border-bottom: 1px solid var(--color-border); }

.result-card--featured {
  padding: var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-accent-light);
  box-shadow: var(--shadow-sm);
}
.result-card--featured .quote-rule { background: var(--color-accent-light); }

.result-stars {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text-primary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.quote-rule {
  width: 32px;
  height: 1px;
  background: var(--color-border);
  margin-bottom: var(--space-sm);
}

.quote-author { display: flex; flex-direction: column; gap: 3px; }
.quote-author strong { font-size: 0.875rem; font-weight: 600; color: var(--color-text-primary); }
.quote-author span { font-size: 0.75rem; color: var(--color-text-muted); letter-spacing: 0.04em; }

@media (min-width: 768px) {
  .results-grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .result-card { padding: var(--space-xl) var(--space-md); border-top: none; border-left: 1px solid var(--color-border); }
  .result-card:first-child { border-left: none; padding-left: 0; }
  .result-card:last-child { border-bottom: none; border-right: none; }
  .result-card--featured { padding: var(--space-xl) var(--space-lg); border-left: 1px solid var(--color-accent-light); }
}

/* Press bar */
.press-bar {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border-light);
  text-align: center;
}
.press-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm) var(--space-lg);
}
.press-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.press-sep { color: var(--color-border); display: none; }
@media (min-width: 600px) { .press-sep { display: inline; } }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact { padding: 0; background: var(--color-bg); }

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
}

.contact-left {
  background: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left .section-label { color: rgba(201, 169, 110, 0.7); }
.contact-left h2 { color: var(--color-text-inverse); margin: var(--space-xs) 0 var(--space-md); }
.contact-left > p { color: rgba(253, 250, 247, 0.55); margin-bottom: var(--space-xl); }

.info-blocks { display: flex; flex-direction: column; gap: var(--space-lg); }
.info-block h4 { color: var(--color-accent); margin-bottom: 6px; }
.info-block p { font-size: 0.925rem; color: rgba(253, 250, 247, 0.5); }
.info-block a { color: rgba(253, 250, 247, 0.6); transition: color var(--transition-fast); }
.info-block a:hover { color: var(--color-accent); }

.contact-right {
  padding: var(--space-2xl) var(--space-md);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-split { grid-template-columns: 1fr 1.4fr; }
  .contact-left { padding: var(--space-2xl); }
  .contact-right { padding: var(--space-2xl); }
}

/* Form */
.contact-form h3, .contact-form-wrap h3 { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-muted); font-size: 0.9rem; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--color-accent);
}
.form-group input.error,
.form-group select.error { border-bottom-color: #c0392b; }
.field-error { font-size: 0.75rem; color: #c0392b; font-weight: 500; min-height: 1em; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  font-style: italic;
}

.form-success { text-align: center; padding: var(--space-xl) 0; }
.success-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: block;
}
.form-success h3 { color: var(--color-text-primary); font-size: 1.5rem; margin-bottom: var(--space-xs); }
.form-success p { color: var(--color-text-secondary); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--color-primary);
  padding: var(--space-2xl) 0 0;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text-inverse);
  display: flex;
  align-items: center;
  gap: 0.4em;
  margin-bottom: var(--space-sm);
}

.footer-tagline { font-size: 0.85rem; color: rgba(253,250,247,0.3); font-style: italic; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.footer-col h5 {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(253,250,247,0.35);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--color-text-inverse); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.social-icon {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(253,250,247,0.35);
  transition: color var(--transition-fast);
}
.social-icon:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(253,250,247,0.08);
  padding: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(253,250,247,0.2); }

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1fr 2fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
