:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --fg-primary: #f0ece4;
  --fg-secondary: #a09888;
  --fg-muted: #6b6156;
  --accent: #c9a96e;
  --accent-dim: #8b7a4e;
  --accent-glow: rgba(201, 169, 110, 0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
  --max-width: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.overline {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.overline-center {
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 169, 110, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-badge {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--fg-primary);
  margin-bottom: 2rem;
}

.hero-thin {
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2rem;
}

.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--fg-secondary);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.philosophy-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--fg-primary);
  margin-bottom: 2rem;
}

.philosophy-text p {
  font-size: 1rem;
  color: var(--fg-secondary);
  margin-bottom: 1.2rem;
  max-width: 600px;
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

.services-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  text-align: center;
  color: var(--fg-primary);
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.08);
}

.service-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card);
}

.service-number {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent-dim);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ===== STANDARDS ===== */
.standards {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.standards-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.standards-left h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--fg-primary);
}

.standard-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

.standard-item:last-child {
  border-bottom: none;
}

.standard-marker {
  width: 3px;
  min-height: 100%;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
  flex-shrink: 0;
}

.standard-item h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-primary);
  margin-bottom: 0.4rem;
}

.standard-item p {
  font-size: 0.88rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  text-align: center;
}

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

.closing-mark {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0.6;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--bg-primary);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--fg-secondary);
  letter-spacing: 0.02em;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .standards-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===== CTA BUTTONS ===== */
.hero-cta,
.closing-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.9rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.hero-cta:hover,
.closing-cta:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ===== RESPONSIVE (duplicate removed) ===== */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }
}