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

:root {
  --navy:      #1a2e45;
  --navy-dark: #0f1e2f;
  --gold:      #b89a5e;
  --gold-light:#d4b87a;
  --off-white: #f8f6f1;
  --light-gray:#f0ede6;
  --mid-gray:  #9a9a9a;
  --text:      #1e1e1e;
  --text-light:#5a5a5a;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(15, 30, 47, 0.96);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

/* ── HERO ── */
#home {
  min-height: 100vh;
  background: var(--navy-dark);
  background-image: linear-gradient(160deg, rgba(26,46,69,0.97) 0%, rgba(10,18,28,0.99) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
}
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 60% 40%, rgba(184,154,94,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3.5rem;
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 3rem;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy-dark);
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  margin-top: 0.25rem;
}

/* ── QUOTE ── */
#quote {
  background: var(--off-white);
  padding: 7rem 2rem;
  text-align: center;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
  opacity: 0.6;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.quote-attr {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SECTION BASE ── */
section { padding: 7rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}
.body-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 600px;
}

/* ── ABOUT ── */
#about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-photo-wrap {
  position: sticky;
  top: 7rem;
}
.about-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--light-gray);
  overflow: hidden;
  border-radius: 2px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.about-photo-caption {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.about-content p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.credentials {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.credential-item {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.credential-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.credential-value {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.4;
}

/* ── APPROACH ── */
#approach { background: var(--navy); }
#approach .section-title { color: #fff; }
#approach .body-text { color: rgba(255,255,255,0.6); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.approach-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
}
.approach-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── CONTACT ── */
#contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.contact-info-value {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.5;
}
.contact-info-value a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--gold); }

.contact-cta-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  height: 100%;
  padding: 3rem 2.5rem;
  background: var(--navy);
  border-radius: 4px;
}
.contact-cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.contact-cta-btn {
  display: inline-block;
  align-self: flex-start;
}
.contact-cta-phone {
  font-size: 0.95rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.contact-cta-phone:hover { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { position: static; max-width: 150px; }
  .credentials { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; gap: 0.75rem; text-align: center; padding: 2rem; }
}
