@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,600;6..12,700&display=swap');

/* ─── Variables ─── */
:root {
  --teal:          #2A6B6B;
  --teal-dark:     #1D4F4F;
  --teal-mid:      #3D8080;
  --teal-light:    #EDF4F4;
  --amber:         #C97942;
  --amber-light:   #F0C4A0;
  --cream:         #FAF7F2;
  --sage:          #EEF3EF;
  --sage-dark:     #D3E0D4;
  --charcoal:      #1E2D2D;
  --charcoal-soft: #3A5050;
  --muted:         #6A8585;
  --white:         #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;

  --max-w: 1160px;
  --r:     14px;
  --r-sm:  8px;
  --shadow:       0 4px 28px rgba(30,45,45,0.09);
  --shadow-hover: 0 10px 48px rgba(30,45,45,0.17);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utility ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .3s var(--ease);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover {
  background: #B5693A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,121,66,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,107,107,.3);
}

.tag {
  display: inline-block;
  padding: .25rem .8rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tag-amber { background: var(--amber-light); color: #7A3D12; }
.tag-teal  { background: var(--teal-light);  color: var(--teal-dark); }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sage-dark);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: .01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--amber);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-link {
  padding: .5rem 1rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  transition: all .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all .25s var(--ease);
}
.nav-link:hover { color: var(--teal); }
.nav-link:hover::after { left: 1rem; right: 1rem; }
.nav-link.active { color: var(--teal); }
.nav-link.active::after { left: 1rem; right: 1rem; }

.btn-nav {
  padding: .55rem 1.4rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: all .25s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42,107,107,.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/seattle-scaled.jpg');
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,38,38,.88) 0%,
    rgba(29,79,79,.72) 55%,
    rgba(42,107,107,.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  animation: fadeUp .9s var(--ease) both;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--amber-light);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 2.4rem;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r);
  padding: .9rem 1.4rem;
}
.hero-badge-text {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(255,255,255,.9);
}
.hero-badge-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--teal-dark);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.trust-item:last-child { border-right: none; }
.trust-item-icon { font-size: 1.2rem; }
.trust-item-text {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ─── Section commons ─── */
.section { padding: 5.5rem 0; }
.section-sm { padding: 4rem 0; }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-lead {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── Services Cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--charcoal);
}
.service-card p {
  font-size: .93rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.4rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .02em;
  transition: gap .2s;
}
.service-card-link:hover { gap: .7rem; color: var(--teal-dark); }

/* ─── About / Director strip ─── */
.director-section {
  background: var(--sage);
}
.director-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
}
.director-monogram {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(29,79,79,.3);
  position: relative;
  overflow: hidden;
}
.director-monogram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), transparent 60%);
}
.director-monogram-letter {
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 300;
  color: rgba(255,255,255,.2);
  line-height: 1;
  position: absolute;
  bottom: -1rem;
  right: .5rem;
}
.director-monogram-content {
  position: relative;
  text-align: center;
}
.director-monogram-initials {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.director-monogram-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: .6rem;
}
.director-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.2rem;
}
.director-cred {
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
}

.director-content .section-label { margin-bottom: .75rem; }
.director-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: .3rem;
  color: var(--charcoal);
}
.director-content .director-name-sub {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.director-content p {
  font-size: .97rem;
  color: var(--charcoal-soft);
  line-height: 1.85;
}

/* ─── Mission ─── */
.mission-section {
  background: var(--teal-dark);
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 40rem;
  line-height: .8;
  color: rgba(255,255,255,.03);
  top: -4rem;
  left: -4rem;
  pointer-events: none;
}
.mission-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mission-inner .section-label { color: var(--amber-light); margin-bottom: 1.5rem; }
.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 2rem;
}
.mission-body {
  font-size: .97rem;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  max-width: 680px;
  margin-inline: auto;
}

/* ─── How it Works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.2rem; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--sage-dark), var(--sage-dark));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 4px 16px rgba(42,107,107,.3);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .6rem;
}
.step p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, #B5693A 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}
.btn-white {
  background: var(--white);
  color: var(--amber);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,121,66,.15), transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ─── Services Page ─── */
.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--sage-dark);
}
.service-full:last-of-type { border-bottom: none; }
.service-full.reverse { direction: rtl; }
.service-full.reverse > * { direction: ltr; }
.service-full-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-full-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.service-full-img:hover img { transform: scale(1.04); }

.service-full-content .section-label { margin-bottom: .75rem; }
.service-full-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--charcoal);
}
.service-full-content p {
  font-size: .96rem;
  color: var(--charcoal-soft);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.service-checklist { margin: 1.5rem 0; }
.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  color: var(--charcoal-soft);
  margin-bottom: .65rem;
  line-height: 1.65;
}
.service-checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ─── About Page ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
  transition: transform .3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--charcoal);
}
.value-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── Experience bar ─── */
.exp-bar {
  background: var(--teal-light);
  border-radius: var(--r);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.exp-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  white-space: nowrap;
}
.exp-label {
  font-size: .9rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}
.exp-label strong { color: var(--charcoal); }

/* ─── Contact Page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact-info-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.contact-info-text span {
  font-size: .95rem;
  color: var(--charcoal-soft);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--sage-dark);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,107,107,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--amber-light); }
.footer-tagline {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 280px;
}
.footer-cred {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--amber-light);
  text-transform: uppercase;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .6rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: .4rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .director-inner { grid-template-columns: 260px 1fr; gap: 3rem; }
  .service-full { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-full.reverse { direction: ltr; }
  .service-full-img img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sage-dark);
    padding: 1rem 2rem 1.5rem;
    gap: .25rem;
    box-shadow: var(--shadow);
  }
  .nav-links.open + .btn-nav {
    display: block;
    margin: 0 2rem 1rem;
  }

  .services-grid { grid-template-columns: 1fr; }
  .director-inner { grid-template-columns: 1fr; }
  .director-monogram { max-width: 240px; margin-inline: auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); width: 100%; justify-content: center; padding: .8rem 2rem; }
  .trust-item:last-child { border-bottom: none; }
  .trust-bar-inner { flex-direction: column; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.6rem; }
}
