:root {
  --bg: #0e0e0e;
  --bg-2: #151515;
  --bg-3: #1c1c1c;
  --fg: #f0ebe2;
  --fg-2: #a09890;
  --fg-3: #6b635a;
  --accent: #c8903a;
  --accent-warm: #e8a045;
  --border: rgba(240, 235, 226, 0.08);
  --card: #131313;
  --card-hover: #1a1a1a;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,144,58,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 90%, rgba(200,144,58,0.04) 0%, transparent 60%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 6.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.hero-line { color: var(--fg); }
.hero-line-accent { color: var(--accent); font-style: italic; }

.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.hero-cta-label {
  font-size: 12px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-price { display: flex; align-items: baseline; gap: 4px; }

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--fg);
}

.price-period {
  font-size: 16px;
  color: var(--fg-2);
}

/* Portrait Frame */
.hero-right { position: relative; }

.hero-portrait-frame {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
}

.portrait-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.portrait-placeholder {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.portrait-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,144,58,0.08) 0%, transparent 60%);
}

/* Each cell gets a distinct visual via background */
.p-a {
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a18 50%, #252520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-a::before {
  content: '';
  width: 60%;
  height: 70%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(160deg, #3a3530 0%, #2a2520 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.p-b {
  background: linear-gradient(145deg, #202028 0%, #18181f 50%, #1e1e28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-b::before {
  content: '';
  width: 55%;
  height: 65%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(160deg, #35353f 0%, #252530 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.p-c {
  background: linear-gradient(145deg, #222020 0%, #1a1918 50%, #201f1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-c::before {
  content: '';
  width: 58%;
  height: 68%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(160deg, #30302a 0%, #242420 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.p-d {
  background: linear-gradient(145deg, #1e2025 0%, #181a1e 50%, #1c1e24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-d::before {
  content: '';
  width: 62%;
  height: 72%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(160deg, #2e2e38 0%, #222228 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.portrait-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--fg-3);
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 8px rgba(61,220,132,0.6);
}

/* Stats Bar */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
  background: var(--bg);
}

.stat { padding: 0 48px; text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ——— SHARED ——— */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-sub {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 500px;
  margin-bottom: 56px;
}

/* ——— HOW IT WORKS ——— */
.howitworks {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
}

.step {
  flex: 1;
  padding: 40px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
}

.step-visual {
  display: flex;
  align-items: flex-end;
}

.step-visual svg { color: var(--accent); opacity: 0.7; }

.step-connector {
  width: 48px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--accent) 50%, var(--border) 100%);
  margin: 0 8px;
  align-self: center;
}

/* ——— GALLERY ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 0;
}

.gallery-item { overflow: hidden; border-radius: 12px; }

.gallery-card {
  width: 100%;
  height: 100%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
}

.gc-1 { background: linear-gradient(160deg, #2a2520 0%, #1a1815 50%, #222018 100%); min-height: 400px; grid-row: span 2; }
.gc-2 { background: linear-gradient(160deg, #202030 0%, #18181f 100%); }
.gc-3 { background: linear-gradient(160deg, #1e2a1e 0%, #181a18 100%); }
.gc-4 { background: linear-gradient(160deg, #2a1e18 0%, #201815 100%); }
.gc-5 { background: linear-gradient(160deg, #1a2025 0%, #161a1e 100%); min-height: 320px; }
.gc-6 { background: linear-gradient(160deg, #2a2a18 0%, #202018 100%); }

/* Simulated photo subjects */
.gc-1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 45%;
  height: 55%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(170deg, #3a3530 0%, #2a2520 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.gc-2::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 45%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(170deg, #2e3040 0%, #22232e 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gc-3::before {
  content: '';
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48%;
  height: 48%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(170deg, #283028 0%, #1e2420 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gc-4::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  height: 44%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(170deg, #3a2820 0%, #2a2018 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gc-5::before {
  content: '';
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52%;
  height: 50%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(170deg, #252830 0%, #1a1e24 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gc-6::before {
  content: '';
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  height: 42%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(170deg, #3a3830 0%, #2a2a20 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.gallery-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,144,58,0.15);
  border: 1px solid rgba(200,144,58,0.3);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.gallery-caption {
  font-size: 13px;
  color: rgba(240,235,226,0.8);
}

.g-large { grid-row: span 2; }

/* ——— STYLES ——— */
.styles { background: var(--bg-2); }

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

.style-card {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.style-card:hover {
  background: var(--card-hover);
  border-color: rgba(200,144,58,0.2);
  transform: translateY(-2px);
}

.style-card.sc-active {
  border-color: rgba(200,144,58,0.35);
  background: rgba(200,144,58,0.05);
}

.style-icon { color: var(--accent); margin-bottom: 20px; }

.style-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.style-card p { font-size: 14px; color: var(--fg-2); line-height: 1.6; }

/* ——— CLOSING ——— */
.closing { background: var(--bg); }

.closing-quote {
  max-width: 700px;
  margin-bottom: 64px;
}

.closing-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-body {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
}

.closing-compare {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.compare-item {
  flex: 1;
  padding: 40px;
  border-radius: 16px;
}

.compare-old {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.compare-new {
  background: rgba(200,144,58,0.05);
  border: 1px solid rgba(200,144,58,0.2);
}

.compare-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 20px;
}

.compare-old .compare-label { color: var(--fg-3); }
.compare-new .compare-label { color: var(--accent); }

.compare-item ul { list-style: none; }
.compare-item li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.compare-item li:last-child { border-bottom: none; }

.cross { color: #e05050; font-size: 16px; }
.check { color: #3ddc84; font-size: 16px; }

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  text-transform: uppercase;
}

/* ——— FOOTER ——— */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline { font-size: 14px; color: var(--fg-3); max-width: 240px; line-height: 1.5; }

.footer-links { display: flex; gap: 64px; }

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

.footer-col-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--fg-3);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 0;
  }
  .hero-right { display: none; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
  }
  .stat { padding: 0 24px; }
  .stat-divider { display: none; }
  .steps { flex-direction: column; }
  .step-connector { width: 1px; height: 32px; background: var(--border); margin: 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-large { grid-row: auto; }
  .gc-1 { min-height: 280px; }
  .styles-grid { grid-template-columns: 1fr 1fr; }
  .closing-compare { flex-direction: column; }
  .compare-divider { display: none; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .section-inner { padding: 64px 24px; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
}