:root {
  --bg: #0D0D0D;
  --bg-surface: #141414;
  --bg-card: #1A1A1A;
  --fg: #F5F0E8;
  --fg-muted: #8A8680;
  --accent: #D4A853;
  --accent-dim: rgba(212, 168, 83, 0.12);
  --border: rgba(245, 240, 232, 0.08);
}

*, *::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', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: #0D0D0D;
  background: var(--accent);
  border-radius: 2px;
  padding: 7px 16px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 32px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner { flex: 1; }
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
}
.stat-label { font-size: 13px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* hero visual */
.hero-visual {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.hero-shape-1 {
  width: 320px; height: 320px;
  top: 20px; left: 20px;
  animation: spin 30s linear infinite;
}
.hero-shape-2 {
  width: 220px; height: 220px;
  top: 70px; left: 70px;
  border-color: rgba(212, 168, 83, 0.15);
  animation: spin 20s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-badge {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-text { font-size: 13px; font-weight: 500; color: var(--fg); }

/* SECTION SHARED */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
}

/* SERVICES */
.services {
  background: var(--bg-surface);
  padding: 120px 32px;
  border-top: 1px solid var(--border);
}
.services-header { max-width: 1200px; margin: 0 auto 64px; }
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.service-card {
  background: var(--bg-card);
  padding: 48px 48px 48px 48px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(212, 168, 83, 0.3); }
.service-icon { margin-bottom: 24px; }
.service-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.service-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* WHY */
.why {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px;
}
.why-left { flex: 1; }
.why-body { font-size: 16px; color: var(--fg-muted); line-height: 1.8; margin-bottom: 48px; max-width: 420px; }
.why-pillars { display: flex; flex-direction: column; gap: 32px; }
.pillar { display: flex; gap: 24px; }
.pillar-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  padding-top: 4px;
  flex-shrink: 0;
}
.pillar-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.pillar-text { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

.why-right { width: 380px; flex-shrink: 0; display: flex; flex-direction: column; gap: 2px; }
.why-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 2px;
}
.why-block-stat { font-family: 'Fraunces', Georgia, serif; font-size: 18px; font-style: italic; line-height: 1.6; color: var(--fg); margin-bottom: 16px; }
.why-block-source { font-size: 13px; color: var(--fg-muted); }
.why-block-dark { background: var(--accent-dim); border-color: rgba(212, 168, 83, 0.2); }
.why-block-quote { font-family: 'Fraunces', Georgia, serif; font-size: 16px; font-style: italic; color: var(--accent); line-height: 1.6; }

/* COMMITMENT */
.commitment {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}
.commitment-inner { max-width: 1200px; margin: 0 auto; }
.commitment-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 48px;
  max-width: 600px;
}
.commitment-items { display: flex; flex-direction: column; gap: 20px; }
.commitment-item { display: flex; align-items: center; gap: 16px; font-size: 16px; color: var(--fg); }
.commitment-check {
  width: 28px; height: 28px;
  background: var(--accent-dim);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* CLOSING */
.closing { padding: 120px 32px; max-width: 1200px; margin: 0 auto; }
.closing-inner { max-width: 680px; }
.closing-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 28px;
}
.closing-body { font-size: 18px; color: var(--fg-muted); line-height: 1.8; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 40px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { font-family: 'Fraunces', Georgia, serif; font-weight: 900; font-size: 18px; }
.footer-logo-accent { color: var(--accent); }
.footer-sub { font-size: 13px; color: var(--fg-muted); }
.footer-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--fg-muted); flex-wrap: wrap; }
.footer-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

/* QUOTE FORM */
.quote-section {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.quote-section.quote-section--hero {
  background: var(--bg);
}
.quote-section.quote-section--bottom {
  background: var(--bg-surface);
}
.quote-inner {
  max-width: 760px;
  margin: 0 auto;
}
.quote-header {
  margin-bottom: 48px;
}
.quote-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--fg);
}
.quote-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qf-row { display: flex; gap: 16px; }
.qf-row-2 > .qf-field { flex: 1; min-width: 0; }
.qf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qf-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.2px;
}
.qf-req { color: var(--accent); }
.qf-optional { color: var(--fg-muted); font-weight: 400; }
.qf-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.qf-input::placeholder { color: var(--fg-muted); }
.qf-input:focus { border-color: rgba(212, 168, 83, 0.5); }
.qf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8680' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.qf-textarea { resize: vertical; min-height: 96px; }
.qf-errors {
  font-size: 13px;
  color: #e5534b;
  min-height: 0;
  line-height: 1.5;
}
.qf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #0D0D0D;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  padding: 14px 32px;
  cursor: pointer;
  transition: opacity 0.15s;
  width: 100%;
}
.qf-submit:hover { opacity: 0.88; }
.qf-submit:disabled { cursor: not-allowed; opacity: 0.6; }
.qf-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(13,13,13,0.3);
  border-top-color: #0D0D0D;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.qf-loading .qf-submit-text { opacity: 0.6; }
.qf-loading .qf-submit-spinner { display: block; }
.qf-success {
  text-align: center;
  padding: 48px 32px;
}
.qf-success-icon { margin-bottom: 20px; }
.qf-success-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--fg);
}
.qf-success-body { font-size: 16px; color: var(--fg-muted); line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: auto; padding: 60px 24px; gap: 40px; }
  .hero-visual { width: 100%; height: 200px; }
  .hero-shape-1 { width: 200px; height: 200px; }
  .hero-shape-2 { width: 140px; height: 140px; }
  .hero-badge { bottom: 0; right: 0; }
  .hero-stats { gap: 20px; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px; }
  .why { flex-direction: column; padding: 80px 24px; gap: 48px; }
  .why-right { width: 100%; }
  .commitment { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; }
  .nav-inner { padding: 0 24px; }
  .section-title { letter-spacing: -0.5px; }
  .closing-title { letter-spacing: -1px; }
  .quote-section { padding: 72px 24px; }
  .qf-row-2 { flex-direction: column; }
  .quote-title { letter-spacing: -0.5px; }
}