/* ── Tokens ── */
:root {
  --navy:   #111844;
  --indigo: #4b5694;
  --blue:   #7288ae;
  --cream:  #eae0cf;
  --cream-dark: #ddd4bf;
  --white:  #ffffff;
  --text:   #1c1c2e;
  --muted:  #6b6b82;

  --sans: 'Urbanist', system-ui, sans-serif;

  --col: 740px;
  --wide: 1100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-y: scroll; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.7; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(17,24,68,.15);
  box-shadow: 0 2px 16px rgba(17,24,68,.08);
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--navy);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .65;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links .nav-cta a {
  opacity: 1;
  background: var(--indigo);
  color: var(--white);
  padding: .45rem 1.1rem;
  border-radius: 2px;
  letter-spacing: .06em;
}
.nav-links .nav-cta a:hover { background: var(--navy); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 2.2rem;
  border-radius: 2px;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--indigo); color: var(--white); }
.btn-primary:hover { background: var(--navy); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,.6); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── Hero ── */
.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  height: calc(100vh - 76px);
  overflow: hidden;
}
main {
  position: relative;
  z-index: 1;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.75);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.35));
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: .6; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1;  }
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.hero-content {
  position: relative;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
  max-width: 580px;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.hero-tagline {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: var(--navy);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-cta-note {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  margin-top: .75rem;
}
.hero-panel {
  position: relative;
  padding: 2.5rem 4rem;
  color: var(--navy);
}
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(234,224,207,.72);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 55%), linear-gradient(to left, transparent 0%, black 55%), linear-gradient(to top, transparent 0%, black 32%), linear-gradient(to bottom, transparent 0%, black 32%);
  -webkit-mask-composite: destination-in, destination-in, destination-in;
  mask-image: linear-gradient(to right, transparent 0%, black 55%), linear-gradient(to left, transparent 0%, black 55%), linear-gradient(to top, transparent 0%, black 32%), linear-gradient(to bottom, transparent 0%, black 32%);
  mask-composite: intersect, intersect, intersect;
  z-index: -1;
  pointer-events: none;
}

/* ── Sections ── */
.section { padding: 7rem 2rem; }
.section-cream  { background: var(--cream); }
.section-cream2 { background: #f3ede3; }
.section-white  { background: var(--white); }
.section-navy   { background: var(--navy); }

.container      { max-width: var(--col);  margin: 0 auto; }
.container-wide { max-width: var(--wide); margin: 0 auto; }

/* ── Labels ── */
.label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1.25rem;
  display: block;
}
.label-light { color: var(--blue); }

/* ── Intro ── */
.intro .label {
  font-size: .9rem;
  letter-spacing: .18em;
}
.intro-tagline {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -.01em;
  margin-bottom: 2.5rem;
}
.intro p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.intro p:last-of-type { margin-bottom: 2.5rem; }

/* ── Section headings ── */
.section-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-heading-light { color: var(--white); }
.section-subhead {
  font-size: .95rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(17,24,68,.08);
  border-left: 1px solid rgba(17,24,68,.08);
}
.service-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(17,24,68,.08);
  border-bottom: 1px solid rgba(17,24,68,.08);
  transition: box-shadow .25s;
}
.service-card:hover { box-shadow: 0 4px 28px rgba(17,24,68,.1); z-index: 1; }
.service-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform .4s;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body {
  padding: 1.4rem 1.4rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: .01em;
}
.service-card-text {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-card-link {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.service-card-link::after { content: '→'; }

/* ── About strip ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.about-photo {
  background: #c4b2b2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(17,24,68,.35);
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}
.about-photo-placeholder p {
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .04em;
}
.about-text {
  background: #c4b2b2;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.about-text p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a52;
  margin-bottom: 1.25rem;
}
.about-text p:last-of-type { margin-bottom: 2.5rem; }

/* ── Contact strip ── */
.contact-strip {
  background: var(--white);
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(17,24,68,.07);
}
.contact-strip h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.contact-strip .lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.contact-call-note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #f0f4fa;
  color: var(--indigo);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 2.5rem;
}
.contact-details {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.contact-detail { display: flex; flex-direction: column; gap: .3rem; }
.contact-detail-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact-detail-value {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
}

/* ── Page hero (interior pages) ── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(17,24,68,.7) 30%, rgba(17,24,68,.1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 3rem;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  max-width: 600px;
  letter-spacing: -.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* ── Body copy (interior pages) ── */
.body-copy p {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

/* ── FAQ ── */
.faq-list { max-width: var(--col); margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(17,24,68,.1);
  padding: 2.25rem 0;
}
.faq-item:first-child { border-top: 1px solid rgba(17,24,68,.1); }
.faq-q {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .8rem;
  line-height: 1.4;
}
.faq-a {
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

/* ── Footer ── */
footer {
  background: #c4b2b2;
  padding: 4.5rem 2rem;
  color: rgba(0,0,0,.75);
}
.footer-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: .75rem;
  letter-spacing: .01em;
}
.footer-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: #000000;
  line-height: 1.65;
  max-width: 280px;
}
.footer-heading {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(0,0,0,.75);
  transition: color .2s;
}
.footer-links a:hover { color: #000000; }
.footer-contact p { font-size: .95rem; font-weight: 300; line-height: 2; }
.footer-contact a { color: rgba(0,0,0,.75); transition: color .2s; }
.footer-contact a:hover { color: #000000; }
.footer-bottom {
  max-width: var(--wide);
  margin: 3rem auto 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0,0,0,.15);
  font-size: .8rem;
  font-weight: 300;
  color: rgba(0,0,0,.5);
}
