/* ── RESET & VARIABLES ─────────────────────────── */
:root {
  --ink:    #0f0e0d;
  --cream:  #f5f0e8;
  --paper:  #faf8f4;
  --gold:   #b8922a;
  --muted:  #7a7166;
  --rule:   rgba(15,14,13,0.12);
  --card-bg:#ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(250,248,244,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-links { display: flex; gap: 2.8rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 65% 40%, rgba(184,146,42,.07) 0%, transparent 65%),
    repeating-linear-gradient(0deg, transparent, transparent 79px, var(--rule) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, var(--rule) 80px);
  pointer-events: none;
}

.hero-grid {
  max-width: 1080px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr auto;
  gap: 5rem; align-items: center;
}

/* Hero text */
.hero-eyebrow {
  font-size: .72rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp .6s .2s forwards;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.01em;
  opacity: 0; animation: fadeUp .7s .35s forwards;
}
.hero-name em { font-style: italic; color: var(--gold); }

.hero-tagline {
  margin-top: 1.6rem;
  max-width: 36rem;
  font-size: 1rem; color: var(--muted); line-height: 1.85;
  opacity: 0; animation: fadeUp .7s .5s forwards;
}

.hero-cta {
  margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .6s .65s forwards;
}

/* ── PHOTO ────────────────────────────────────── */
.hero-photo-wrap {
  position: relative;
  opacity: 0; animation: fadeIn .9s .5s forwards;
  flex-shrink: 0;
}

.hero-photo-frame {
  width: 320px; height: 380px;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  box-shadow: 0 32px 80px rgba(15,14,13,.18);
}

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: contrast(1.04) brightness(1.02);
  transition: transform .6s ease;
}
.hero-photo-frame:hover .hero-photo { transform: scale(1.03); }

.hero-photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15,14,13,.25));
  pointer-events: none;
}

.photo-badge {
  position: absolute; bottom: -14px; left: -14px;
  background: var(--gold); color: #fff;
  font-size: .7rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase;
  padding: .55rem 1.1rem;
  box-shadow: 0 8px 24px rgba(184,146,42,.35);
}

/* ── BUTTONS ──────────────────────────────────── */
.btn-primary {
  background: var(--ink); color: var(--cream);
  padding: .85rem 2.2rem; font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--ink);
  transition: background .25s, color .25s, border-color .25s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }

.btn-ghost {
  color: var(--ink); padding: .85rem 2.2rem;
  font-size: .82rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(15,14,13,.25);
  transition: border-color .25s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ── SECTION COMMONS ──────────────────────────── */
section { padding: 7rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-size: .72rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 300;
  line-height: 1.2; letter-spacing: -.01em;
}
.divider {
  width: 3rem; height: 1px;
  background: var(--gold);
  margin: 1.6rem 0 2.6rem;
}

/* ── SERVICES ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  padding: 2.4rem 2rem;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300;
  color: rgba(15,14,13,.1); line-height: 1;
  margin-bottom: .8rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: .6rem;
}
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── ABOUT ────────────────────────────────────── */
.about-section { background: var(--ink); color: var(--cream); }
.about-section .section-label { color: var(--gold); }
.about-section .section-title { color: var(--cream); }
.about-section .divider { background: var(--gold); }

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.about-text p {
  font-size: .95rem; color: rgba(245,240,232,.75);
  line-height: 1.9; margin-bottom: 1.2rem;
}

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem;
}
.stat { border-left: 2px solid var(--gold); padding-left: 1.2rem; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-top: .3rem;
}

/* ── FREE GUIDANCE ────────────────────────────── */
.guidance-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.guidance-text { max-width: 500px; }
.guidance-text p {
  font-size: .95rem; color: var(--muted);
  margin-top: 1rem; line-height: 1.8;
}
.guidance-card {
  flex: 0 0 auto;
  background: var(--cream); padding: 2.4rem 2.8rem;
  border: 1px solid rgba(184,146,42,.3);
  text-align: center; min-width: 220px;
}
.guidance-card .icon { font-size: 2rem; margin-bottom: .8rem; }
.guidance-card p {
  font-size: .82rem; color: var(--muted);
  margin-bottom: 1.4rem;
}

/* ── CONTACT ──────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-sub {
  font-size: .95rem; color: var(--muted); line-height: 1.8;
}

.contact-links {
  display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem;
}
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--card-bg); border: 1px solid var(--rule);
  text-decoration: none; color: var(--ink);
  font-size: .88rem; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.contact-link:hover { border-color: var(--gold); background: var(--paper); }
.contact-link-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; flex-shrink: 0; color: var(--gold);
}
.contact-link-arrow { margin-left: auto; color: var(--muted); }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(245,240,232,.4);
  text-align: center; padding: 2.2rem;
  font-size: .78rem; letter-spacing: .06em;
}
footer span { color: var(--gold); }

/* ── ANIMATIONS ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-photo-wrap {
    order: -1;
    display: flex; flex-direction: column; align-items: center;
  }
  .hero-photo-frame { width: 220px; height: 260px; }
  .photo-badge { left: 50%; transform: translateX(-50%); }
  .hero-cta { justify-content: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
}

@media (max-width: 760px) {
  nav { padding: 1rem 1.6rem; }
  .nav-links { gap: 1.6rem; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-links { margin-top: 0; }
}

@media (max-width: 480px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: .7rem; }
  section { padding: 5rem 1.4rem; }
}
