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

:root {
  --bg:        #FAF8F5;
  --bg-dark:   #1C1915;
  --bg-card:   #F0EBE3;
  --text:      #1C1915;
  --text-mid:  #4A433C;
  --text-soft: #8A7E75;
  --gold:      #A8834A;
  --gold-lt:   #D4B483;
  --border:    #DDD6CC;
  --white:     #FFFFFF;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --max:       1140px;
  --pad:       80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILS ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 14px; }
.nav-monogram {
  width: 38px; height: 38px;
  border: 1.5px solid var(--text);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; color: var(--text);
  flex-shrink: 0;
}
.nav-name {
  font-family: var(--serif); font-size: 18px;
  font-weight: 400; color: var(--text);
}
.nav-name small {
  display: block; font-family: var(--sans);
  font-size: 10px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-soft); margin-top: 1px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: var(--sans); font-size: 11px;
  font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  color: var(--white); background: var(--text);
  padding: 11px 24px; transition: background .2s;
  border: none; cursor: pointer;
}
.nav-cta:hover { background: #000; }

/* ─── HERO ─── */
.hero {
  background: var(--bg-dark);
  min-height: calc(100vh - 68px);
  display: flex; align-items: center;
  text-align: center;
  padding: 100px var(--pad);
  position: relative; overflow: hidden;
}

/* subtle texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(168,131,74,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow .line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 11px; font-weight: 400; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-lt);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 300; line-height: 1.02;
  letter-spacing: -1.5px; color: var(--white);
  margin-bottom: 32px;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }

.hero-desc {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.85; max-width: 560px;
  margin: 0 auto 52px;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  font-family: var(--sans); font-size: 11px;
  font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  color: var(--bg-dark); background: var(--gold-lt);
  padding: 15px 32px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-gold:hover { background: #e0c490; transform: translateY(-2px); }

.btn-ghost {
  font-family: var(--sans); font-size: 11px;
  font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.25);
  padding: 15px 32px; cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-block; background: none;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }

.hero-stats {
  display: flex; justify-content: center; gap: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 48px;
}
.hero-stat { padding: 0 48px; border-right: 1px solid rgba(255,255,255,.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--serif); font-size: 44px;
  font-weight: 300; color: var(--white); line-height: 1;
}
.hero-stat-label {
  font-size: 11px; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: 6px;
}

/* ─── SECTION BASE ─── */
.section { padding: 100px 0; }
.section-center { text-align: center; }
.section-center .section-lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.eyebrow .line { width: 24px; height: 1px; background: var(--gold); }
.eyebrow span {
  font-size: 11px; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
}

h2.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -.5px; color: var(--text);
  margin-bottom: 20px;
}
h2.section-title em { font-style: italic; color: var(--text-mid); }
h2.section-title.on-dark { color: var(--white); }
h2.section-title.on-dark em { color: var(--gold-lt); }

.section-lead {
  font-size: 16px; font-weight: 300;
  color: var(--text-mid); line-height: 1.85;
  max-width: 580px; margin-bottom: 56px;
}

/* ─── HOW IT WORKS ─── */
.how { background: var(--white); }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.step {
  background: var(--white);
  padding: 44px 32px;
  transition: background .25s;
}
.step:hover { background: var(--bg); }
.step-num {
  font-family: var(--serif); font-size: 52px;
  font-weight: 300; color: var(--border);
  line-height: 1; margin-bottom: 24px;
  display: block;
}
.step h3 {
  font-family: var(--serif); font-size: 24px;
  font-weight: 400; color: var(--text);
  margin-bottom: 12px;
}
.step p {
  font-size: 14px; font-weight: 300;
  color: var(--text-mid); line-height: 1.75;
}

/* ─── SERVICES ─── */
.services { background: var(--bg); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.svc-card {
  background: var(--bg);
  padding: 44px 36px;
  transition: background .25s;
}
.svc-card:hover { background: var(--white); }
.svc-n {
  font-family: var(--serif); font-size: 13px;
  color: var(--gold); letter-spacing: 1.5px;
  margin-bottom: 18px; display: block;
}
.svc-card h3 {
  font-family: var(--serif); font-size: 24px;
  font-weight: 400; color: var(--text);
  margin-bottom: 12px;
}
.svc-card p {
  font-size: 14px; font-weight: 300;
  color: var(--text-mid); line-height: 1.75;
}

/* ─── QUOTE BAND ─── */
.quote-band {
  background: var(--bg-dark);
  padding: 100px var(--pad);
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.35;
  max-width: 780px; margin: 0 auto 28px;
}
.quote-band cite {
  font-size: 12px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-lt); font-style: normal;
}

/* ─── ABOUT ─── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  margin-top: 0;
}
.about-img-wrap {
  aspect-ratio: 4/5;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; max-height: 400px;
}
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
}
.about-img-placeholder {
  font-size: 12px; font-weight: 300; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-soft);
}
.about-text .eyebrow { margin-bottom: 20px; }
.about-text h2 { margin-bottom: 28px; }
.about-text p {
  font-size: 15px; font-weight: 300;
  color: var(--text-mid); line-height: 1.85;
  margin-bottom: 18px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag {
  font-size: 12px; font-weight: 400;
  letter-spacing: 1px; color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 7px 16px;
  background: var(--bg);
}

/* ─── TESTIMONIALS ─── */
.testi { background: var(--bg); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}
.testi-stars {
  color: var(--gold); font-size: 13px;
  letter-spacing: 3px; margin-bottom: 20px;
}
.testi-card blockquote {
  font-family: var(--serif); font-size: 18px;
  font-weight: 300; font-style: italic;
  color: var(--text); line-height: 1.65;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px;
  font-weight: 400; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--text); }
.testi-role { font-size: 12px; font-weight: 300; color: var(--text-soft); margin-top: 2px; }

/* ─── CONTACT ─── */
.contact { background: var(--bg-card); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.contact-left h2 { margin-bottom: 20px; }
.contact-left p {
  font-size: 16px; font-weight: 300;
  color: var(--text-mid); line-height: 1.85;
}
.contact-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 22px 28px;
}
.contact-item-label {
  font-size: 10px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 6px;
}
.contact-item-value {
  font-family: var(--sans); font-size: 15px;
  font-weight: 400; color: var(--text);
}

.btn-dark {
  font-family: var(--sans); font-size: 11px;
  font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  color: var(--white); background: var(--text);
  padding: 15px 32px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg-dark);
  padding: 32px var(--pad);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.footer-mark {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; color: rgba(255,255,255,.7);
}
.footer-name { font-family: var(--serif); font-size: 16px; color: rgba(255,255,255,.8); }
.footer-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); }
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.3); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root { --pad: 40px; }
}

@media (max-width: 768px) {
  :root { --pad: 24px; }
  .nav-links { display: none; }
  .hero { padding: 72px var(--pad); min-height: auto; }
  .hero-stats { flex-direction: column; gap: 32px; }
  .hero-stat { border-right: none; padding: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-tags { justify-content: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 72px 0; }
  .quote-band { padding: 72px var(--pad); }
  footer { padding: 28px var(--pad); }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .nav-name small {
    display: none;
  }
  .nav-name { font-size: 15px; }
  .nav-cta { padding: 6px 10px; font-size: 9px; text-align: center; white-space: nowrap;}
}