:root {
  --cream: #faf6f1;
  --navy: #0c1f38;
  --gold: #c9963a;
  --gold-light: #e8c97a;
  --stone: #e8e2d8;
  --ink: #1a1a1a;
  --muted: #7a746c;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 31, 56, 0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

/* Hero */
.hero {
  padding-top: 100px;
  padding-bottom: 80px;
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--stone);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}

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

/* Section commons */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
}

/* Services */
.services {
  background: var(--navy);
  padding: 100px 48px;
}

.services-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.services .section-label { color: var(--gold-light); }
.services .section-title { color: var(--white); }

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

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
}

.service-card--featured {
  background: rgba(201, 150, 58, 0.12);
  border-color: rgba(201, 150, 58, 0.3);
}

.service-badge {
  position: absolute;
  top: -1px;
  left: 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}

.service-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 24px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img { transform: scale(1.04); }

.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.service-price {
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 20px;
}

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

.service-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 2px;
}

/* Process */
.process {
  background: var(--cream);
  padding: 100px 48px;
}

.process-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step {
  padding-top: 32px;
  border-top: 2px solid var(--navy);
}

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Why */
.why {
  background: var(--stone);
  padding: 100px 48px;
}

.why-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 4px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-item-desc {
  font-size: 14px;
  color: var(--muted);
}

/* Closing */
.closing {
  background: var(--navy);
  padding: 120px 48px;
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
}

/* Footer */
.footer {
  background: #070f1d;
  padding: 48px;
  text-align: center;
}

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding-top: 80px; padding-bottom: 60px; }
  .hero-inner { padding: 0 24px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services, .process, .why, .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 375px) {
  .hero-headline { font-size: 42px; }
  .stat-num { font-size: 22px; }
}