/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF7F2;
  --bg-warm: #F2EDE4;
  --fg: #1A1A1A;
  --fg-muted: #6B5E52;
  --fg-subtle: #9E8E81;
  --accent: #C95D2B;
  --accent-dark: #A04B21;
  --gold: #8B7355;
  --cream-dark: #E8DFD0;
  --border: #DDD5C8;
}

html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-warm); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* =====================
   NAV
   ===================== */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-inner { display: flex; align-items: baseline; gap: 16px; }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =====================
   HERO
   ===================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 88vh;
  padding: 72px 48px 64px;
  align-items: center;
}

.hero-left {
  padding-right: 64px;
}

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

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.meta-item { display: flex; flex-direction: column; }

.meta-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
}

.meta-label {
  font-size: 11px;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero right — image grid */
.hero-right {
  position: relative;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.img-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.img-overlay-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.damaged-label { background: rgba(26,26,26,0.75); color: #fff; }
.restored-label { background: rgba(201,93,43,0.9); color: #fff; }

/* DAMAGED visual — CSS art */
.damaged-visual {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #C4B49A, #B0A085);
  position: relative;
  overflow: hidden;
}

.dmg-texture {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, rgba(0,0,0,0.04) 1px, transparent 2px, transparent 6px),
    repeating-linear-gradient(90deg, transparent 0, rgba(0,0,0,0.03) 1px, transparent 4px, transparent 8px),
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(255,240,200,0.15), transparent 70%);
}

.dmg-scratches {
  position: absolute; inset: 0;
  background:
    linear-gradient(147deg, transparent 0, transparent 40%, rgba(80,60,40,0.2) 40.5%, transparent 41%),
    linear-gradient(82deg, transparent 0, transparent 60%, rgba(80,60,40,0.15) 60.5%, transparent 61%),
    linear-gradient(163deg, transparent 0, transparent 75%, rgba(80,60,40,0.25) 75.5%, transparent 76%);
}

.dmg-stain {
  position: absolute;
  bottom: 0; left: 20%; right: -10%;
  height: 45%;
  background: radial-gradient(ellipse, rgba(90,70,50,0.18) 0%, transparent 70%);
}

.dmg-tear {
  position: absolute;
  top: 10%; left: 30%;
  width: 40%; height: 2px;
  background: linear-gradient(90deg, transparent 0, rgba(50,35,20,0.3) 30%, transparent 100%);
  transform: rotate(-12deg);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.dmg-creases {
  position: absolute; inset: 0;
  background:
    linear-gradient(45deg, transparent 0, transparent 45%, rgba(0,0,0,0.06) 45.5%, transparent 46%),
    linear-gradient(-30deg, transparent 0, transparent 55%, rgba(0,0,0,0.05) 55.5%, transparent 56%);
}

/* Faded figure silhouette */
.faded-figure {
  position: absolute;
  bottom: 15%; left: 20%; right: 20%;
  height: 55%;
  background: linear-gradient(180deg, rgba(180,165,140,0.7) 0%, rgba(160,148,125,0.5) 100%);
  border-radius: 40% 40% 30% 30% / 30% 30% 50% 50%;
  opacity: 0.6;
}

/* RESTORED visual */
.restored-visual {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #F5EDD8 0%, #E8D8BA 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rest-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(255,245,220,0.6), transparent 70%);
}

.rest-figure {
  position: relative; z-index: 1;
  width: 60%; height: 55%;
  background: linear-gradient(180deg, rgba(200,185,160,0.9) 0%, rgba(180,165,145,0.85) 100%);
  border-radius: 45% 45% 35% 35% / 35% 35% 45% 45%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 0 0 3px rgba(200,185,155,0.4);
}

.hero-caption {
  text-align: center;
  font-size: 12px;
  color: var(--fg-subtle);
  margin-top: 12px;
  font-style: italic;
}

/* =====================
   SHARED SECTION
   ===================== */
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
}

.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  margin-top: 12px;
  line-height: 1.6;
}

/* =====================
   PROCESS
   ===================== */
.process {
  padding: 96px 48px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.process .section-headline {
  margin-bottom: 56px;
  max-width: 480px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 40px 0 0;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 1px;
  background: var(--border);
  margin-top: 40px;
}

/* =====================
   SHOWCASE / BEFORE-AFTER
   ===================== */
.showcase {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}

.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.showcase-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 500;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.ba-card {
  position: relative;
}

.ba-img-wrap {
  border-radius: 4px;
  overflow: hidden;
}

.ba-visual {
  aspect-ratio: 4/3;
}

.ba-damaged-vis {
  background: linear-gradient(145deg, #C4B49A, #A89370);
  position: relative;
}

.ba-restored-vis {
  background: linear-gradient(160deg, #F5EDD8, #E2D0B0);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(26,26,26,0.75);
  color: #fff;
}

.restored-tag { background: rgba(201,93,43,0.9); }

.showcase-quote {
  max-width: 520px;
  padding: 32px 40px;
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}

.showcase-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 12px;
}

.showcase-quote cite {
  font-size: 13px;
  color: var(--fg-subtle);
  font-style: normal;
}

/* =====================
   SERVICES
   ===================== */
.services {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.services-header {
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.service-card {
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.service-card:hover {
  background: var(--bg-warm);
  transition: background 0.2s;
}

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

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.service-card > p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 1px;
  background: var(--accent);
}

/* =====================
   PRICING
   ===================== */
.pricing {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
}

.pricing-header {
  margin-bottom: 48px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
}

.price-card-featured {
  border-color: var(--accent);
  background: #FFF9F5;
}

.price-tier {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 600;
  margin-bottom: 12px;
}

.price-card-featured .price-tier { color: var(--accent); }

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.price-amount small {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
}

.price-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-includes li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-includes li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card-featured .price-includes li::before {
  background: rgba(201,93,43,0.15);
}

.pricing-note {
  font-size: 14px;
  color: var(--fg-subtle);
  max-width: 480px;
  text-align: center;
  margin: 0 auto;
}

/* =====================
   CLOSING
   ===================== */
.closing {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  background: var(--fg);
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.closing-badge {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FAF7F2;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: rgba(250,247,242,0.65);
  line-height: 1.7;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(250,247,242,0.1);
  background: var(--fg);
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #FAF7F2;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(250,247,242,0.4);
  margin-bottom: 24px;
}

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

.footer-links span {
  font-size: 12px;
  color: rgba(250,247,242,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 11px;
  color: rgba(250,247,242,0.25);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 64px;
    min-height: auto;
  }
  .hero-left { padding-right: 0; }
  .hero-right { margin-top: 40px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .meta-divider { display: none; }
  .process { padding: 64px 24px; }
  .process-steps { flex-direction: column; }
  .step { padding: 0; margin-bottom: 32px; }
  .step-connector { width: 40px; height: 1px; margin: 0 0 32px 0; }
  .showcase { padding: 64px 24px; }
  .ba-pair { grid-template-columns: 1fr; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
}
