:root {
  --blue: #8FA9D0;
  --blue-deep: #6D8CBB;
  --blue-pale: #EEF3FA;
  --slate: #889BA7;
  --cream: #FAF8F4;
  --ink: #2E3440;
  --gray: #5C6570;
}

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}

img { display: block; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
}

.script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  color: var(--blue-deep);
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.btn:hover { background: var(--blue-deep); }

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover { background: var(--blue-pale); color: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover { background: var(--ink); color: #fff; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(46, 52, 64, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 4vw;
}

.nav-brand img { height: 66px; filter: saturate(1.5); mix-blend-mode: multiply; }

.nav-links a {
  margin-left: 2.2rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active { color: var(--blue-deep); }

/* Full-screen hero */
.hero {
  position: relative;
  height: 88vh;
  min-height: 480px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,30,45,0.12) 30%, rgba(20,30,45,0.5) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 10vh;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: min(880px, 92%);
}

.hero-content .script {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  text-shadow: 0 2px 18px rgba(20,30,45,0.5);
}

.hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 500;
  margin: 0.5rem 0 0.9rem;
  text-shadow: 0 2px 20px rgba(20,30,45,0.7);
}

.hero-content .hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin: 0 0 1.1rem;
  text-shadow: 0 2px 20px rgba(20,30,45,0.7);
}

.hero-content .hero-tag {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 1.7rem;
  text-shadow: 0 1px 12px rgba(20,30,45,0.5);
}

/* Intro statement */
.statement {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.statement .script { font-size: 2.4rem; }

.statement h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 0.6rem 0 1.4rem;
}

.statement p { color: var(--gray); max-width: 560px; margin: 0 auto; }

/* Meet Lindsay */
.meet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 5rem 6vw;
  background: #fff;
  flex-wrap: wrap;
}

.meet-photo {
  width: min(420px, 88vw);
  box-shadow: 0 24px 60px rgba(109, 140, 187, 0.25);
}

.meet-text { max-width: 460px; }

.meet-text .script { font-size: 2.3rem; }

.meet-text h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin: 0.3rem 0 1.2rem; }

.meet-text p { color: var(--gray); margin-bottom: 1.1rem; }

.meet-text .btn { margin-top: 0.8rem; }

/* Specialties image grid */
.specialties { padding: 6rem 4vw; text-align: center; }

.specialties .script { font-size: 2.3rem; }

.specialties h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 0.4rem 0 3rem; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  max-width: 1240px;
  margin: 0 auto;
}

.spec-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3 / 4;
}

.spec-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.spec-card:hover img { transform: scale(1.05); }

.spec-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,30,45,0) 55%, rgba(20,30,45,0.55) 100%);
}

.spec-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.4rem;
  z-index: 2;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

/* Why work with us */
.why {
  padding: 6rem 4vw;
  text-align: center;
  background: var(--blue-pale);
}

.why h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 0 0 3rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: #fff;
  padding: 2.6rem 2rem 2.4rem;
  text-align: center;
  box-shadow: 0 12px 34px rgba(109, 140, 187, 0.14);
  border-top: 3px solid var(--blue-deep);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(109, 140, 187, 0.22);
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.8rem;
}

.why-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--blue-deep);
  opacity: 0.45;
  margin: 0.7rem auto 0;
}

.why-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* Quote strip */
.quote-strip {
  background: var(--blue-pale);
  text-align: center;
  padding: 5rem 1.5rem;
}

.quote-strip .script { font-size: clamp(2rem, 4.5vw, 3rem); }

.quote-strip p.attr {
  margin-top: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
}

/* CTA banner */
.cta {
  position: relative;
  overflow: hidden;
}

.cta img {
  width: 100%;
  height: min(64vh, 520px);
  object-fit: cover;
  object-position: center 40%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 45, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}

.cta-overlay .script { font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; }

.cta-overlay p.sub {
  margin: 0.6rem 0 1.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Page headers (inner pages) */
.page-header {
  text-align: center;
  padding: 4.5rem 1.5rem 3rem;
}

.page-header .script { font-size: 2.2rem; }

.page-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  letter-spacing: 0.06em;
}

.page-header p { color: var(--gray); margin-top: 0.6rem; }

/* About letter */
.letter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 3rem 6vw 6rem;
  flex-wrap: wrap;
}

.letter img {
  width: min(440px, 88vw);
  box-shadow: 0 24px 60px rgba(109, 140, 187, 0.25);
}

.letter-text { max-width: 480px; }

.letter-text .script { font-size: 2.2rem; margin-bottom: 0.8rem; }

.letter-text p { color: var(--gray); margin-bottom: 1.1rem; }

.letter-text .sign { font-family: 'Pinyon Script', cursive; font-size: 2rem; color: var(--ink); }

.letter-text .caption { font-size: 0.85rem; letter-spacing: 0.08em; }

/* Services cards */
.services { padding: 2rem 4vw 6rem; max-width: 1240px; margin: 0 auto; }

.svc {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: 3rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.svc:nth-child(even) { flex-direction: row-reverse; }

.svc img { width: min(460px, 88vw); aspect-ratio: 4/3; object-fit: cover; }

.svc-text { max-width: 440px; }

.svc-text h3 { font-size: 1.9rem; margin-bottom: 0.8rem; }

.svc-text p { color: var(--gray); }

.svc-text .svc-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin-bottom: 0.7rem;
}

.svc-text ul {
  color: var(--gray);
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
  columns: 2;
  column-gap: 2.5rem;
}

.svc-text ul li { margin-bottom: 0.35rem; break-inside: avoid; }

.svc-text .btn { margin-top: 1.3rem; }

/* Quote page */
.quote-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
  text-align: center;
}

.quote-links { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.quote-links a {
  display: block;
  padding: 1rem 1.5rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: background 0.3s, color 0.3s;
}

.quote-links a:hover { background: var(--ink); color: #fff; }

.quote-wisdom { max-width: 860px; margin: 0 auto; padding: 1.5rem 1.5rem 2rem; text-align: center; }

.quote-wisdom .script { font-size: 2rem; }

.quote-wisdom img { width: 100%; height: auto; margin-top: 1rem; box-shadow: 0 18px 45px rgba(46,52,64,0.18); }

/* Contact */
.connect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 2rem 6vw 6rem;
  flex-wrap: wrap;
}

.connect img { width: min(400px, 88vw); box-shadow: 0 24px 60px rgba(109, 140, 187, 0.25); }

.connect-info { max-width: 420px; text-align: center; }

.connect-info .script { font-size: 2.2rem; }

.connect-info h1 { font-size: 2.4rem; margin: 0.3rem 0 0.8rem; }

.connect-links { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.6rem; }

.connect-links a {
  display: block;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.connect-links a:hover { background: var(--ink); color: #fff; }

/* Footer */
.footer {
  background: #fff;
  color: var(--ink);
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-top: 1px solid rgba(46, 52, 64, 0.08);
}

.footer .script { color: var(--ink); font-size: 1.9rem; margin-bottom: 1rem; }

.footer-logo {
  height: 82px;
  filter: saturate(1.5);
  mix-blend-mode: multiply;
  display: block;
  margin: 0 auto 1rem;
}

.footer-links { margin-bottom: 1.4rem; }

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--blue-deep); }

.footer p { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--gray); }

@media (max-width: 640px) {
  .nav { flex-direction: column; gap: 0.4rem; padding-bottom: 0.8rem; }
  .nav-links a { margin: 0 0.7rem; font-size: 0.66rem; }
  .hero { height: 62vh; }
  .svc:nth-child(even) { flex-direction: row; }
}
