/* ============================================
   KARRINGTON DENNIS EA — Design System
   Navy #0A1628 + Gold #C9A84C
   Playfair Display / Inter
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --navy-deep:   #0A1628;
  --navy:        #1E3A8A;
  --navy-mid:    #162040;
  --gold:        #C9A84C;
  --gold-light:  #E2C06A;
  --gold-dim:    rgba(201,168,76,0.15);
  --white:       #FFFFFF;
  --off-white:   #F8F6F0;
  --slate:       #64748B;
  --slate-light: #94A3B8;
  --border:      rgba(201,168,76,0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 80px;
}

/* ── 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(--off-white);
  color: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Screen reader only ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--gold); color: var(--navy-deep);
  padding: 0.5rem 1rem; font-weight: 600;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}
.nav.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 1px 0 var(--border);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  flex: 1;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__cta {
  margin-left: 1.5rem;
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px; cursor: pointer;
  background: none; border: none;
}
.nav__hamburger span {
  display: block; height: 2px; background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav__mobile.open { opacity: 1; visibility: visible; }
.nav__mobile a {
  color: var(--white); font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }

/* ── Section base ── */
.section {
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
}
.section--dark {
  background: var(--navy-deep);
  color: var(--white);
}
.section--navy {
  background: var(--navy-mid);
  color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Typography helpers ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 2rem; height: 1px; background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}

/* ── Gold rule ── */
.gold-rule {
  width: 3rem; height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  min-height: 48px;
}
.btn--gold {
  background: var(--gold); color: var(--navy-deep);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold-dim); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal--left {
  transform: translateX(-28px);
}
.reveal--left.visible { transform: translateX(0); }
.reveal--right {
  transform: translateX(28px);
}
.reveal--right.visible { transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Hero (Home) ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 5vw, 4rem) 4rem;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  width: fit-content;
  background: rgba(201,168,76,0.07);
}
.hero__badge svg { width: 14px; height: 14px; }

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero__name-rule {
  width: 0;
  height: 2px;
  background: var(--gold);
  margin: 0.6rem 0;
  transition: width 1s var(--ease-out) 0.6s;
}
.hero__name-rule.animate { width: 100%; }

.hero__tagline {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 38ch;
  font-weight: 300;
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: clamp(1.5rem, 5vw, 4rem);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero__scroll-line {
  width: 2rem; height: 1px; background: currentColor;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.4; }
  50% { transform: scaleX(1.5); opacity: 0.8; }
}

.hero__photo {
  position: relative;
  overflow: hidden;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero__photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--navy-deep) 0%, transparent 30%);
}
.hero__photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10,22,40,0.2);
}

/* ── Stats strip ── */
.stats {
  background: var(--gold);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
}
.stats__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats__item {}
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1;
}
.stats__label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(10,22,40,0.65);
  margin-top: 0.35rem;
}

/* ── Services preview (home) ── */
.services-preview {
  background: var(--off-white);
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
}
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
.service-card {
  background: var(--white);
  padding: 3rem 2.25rem;
  border-radius: 4px;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,22,40,0.12);
}
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ── About preview (home) ── */
.about-preview {
  background: var(--navy-deep);
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: 100%;
}
.about-preview__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-preview__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about-preview__photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--navy-deep), transparent);
}
.about-preview__frame {
  position: absolute; inset: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  pointer-events: none; z-index: 2;
}
.about-preview__content {}
.about-preview__content .section-title { color: var(--white); }
.about-preview__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-top: 1.5rem;
  max-width: 44ch;
}
.credential-list {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.credential-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.credential-item__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── Testimonial (home) ── */
.testimonial {
  background: var(--off-white);
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  max-width: 48rem;
  margin: 0 auto;
  color: var(--navy-deep);
  position: relative;
}
.testimonial__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.4em;
}
.testimonial__attr {
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}
.testimonial__attr strong { color: var(--navy-deep); }

/* ── CTA Band ── */
.cta-band {
  background: var(--gold);
  padding: clamp(6rem, 12vh, 9rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
}
.cta-band__sub {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(10,22,40,0.65);
}
.cta-band__actions {
  display: flex; gap: 1rem; justify-content: center;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.btn--dark {
  background: var(--navy-deep); color: var(--white);
}
.btn--dark:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── Footer ── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
}
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
}
.footer__logo span { color: var(--gold); }
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__links {
  display: flex; gap: 2rem;
}
.footer__links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }

/* ── Page header (sub-pages) ── */
.page-header {
  background: var(--navy-deep);
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-header__eyebrow { justify-content: center; }
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.page-header__sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 44ch; margin-left: auto; margin-right: auto;
}

/* ── About page ── */
.about-bio {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px; margin: 0 auto;
}
.about-bio__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 1.25rem;
}
.about-bio__text p:first-child {
  font-size: 1.15rem;
  color: var(--navy-deep);
  font-weight: 500;
}
.about-bio__photo {
  position: sticky; top: calc(var(--nav-h) + 2rem);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,22,40,0.18);
}
.about-bio__photo img {
  width: 100%; object-fit: cover;
}

.credentials-section {
  background: var(--navy-deep);
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
}
.credentials-grid {
  max-width: 1200px; margin: 3rem auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.credential-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: background 0.25s, transform 0.25s var(--ease-out);
}
.credential-card:hover {
  background: rgba(201,168,76,0.07);
  transform: translateY(-4px);
}
.credential-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.credential-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-top: 0.5rem;
}
.credential-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65; margin-top: 0.75rem;
}

.photo-gallery {
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--off-white);
}
.gallery-grid {
  max-width: 1200px; margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden; border-radius: 4px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--tall { grid-row: span 2; }

/* ── Services page ── */
.services-full {
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px; margin: 0 auto;
}
.services-list {
  display: grid; gap: 2rem;
  margin-top: 3.5rem;
}
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 2rem; align-items: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.service-row:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.1);
}
.service-row__num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--gold); opacity: 0.6;
  line-height: 1;
}
.service-row__body {}
.service-row__title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-row__desc {
  font-size: 0.9rem; color: var(--slate);
  line-height: 1.7; max-width: 52ch;
}
.service-row__tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem;
}
.tag {
  padding: 0.25rem 0.75rem;
  background: var(--gold-dim);
  color: #8B6914;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

/* ── Process section ── */
.process {
  background: var(--navy-deep);
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
}
.process-steps {
  max-width: 800px; margin: 3rem auto 0;
  display: grid; gap: 0;
  counter-reset: step;
}
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:last-child .process-step__line { display: none; }
.process-step__left {
  display: flex; flex-direction: column; align-items: center;
}
.process-step__dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  counter-increment: step;
}
.process-step__line {
  width: 1px; flex: 1;
  background: var(--border);
  margin-top: 0.75rem;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--white);
  padding-top: 0.75rem;
}
.process-step__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-top: 0.5rem;
}

/* ── Contact page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: calc(100vh - var(--nav-h));
}
.contact-info {
  background: var(--navy-deep) !important;
  padding: clamp(4rem, 8vh, 6rem) clamp(2rem, 4vw, 3.5rem);
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vh, 6rem));
  display: flex; flex-direction: column; justify-content: center;
}
.contact-info__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-top: 1.25rem;
}
.contact-info__body {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 34ch;
}
.contact-details {
  margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-detail__icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.contact-detail__label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.25rem;
}
.contact-detail__value {
  font-size: 0.95rem; color: rgba(255,255,255,0.8);
}

.contact-form-wrap {
  background: var(--off-white);
  padding: clamp(4rem, 8vh, 6rem) clamp(2rem, 5vw, 4rem);
  display: flex; align-items: center;
}
.contact-form-inner {
  width: 100%; max-width: 560px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--navy-deep); margin-bottom: 2rem;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-deep);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
  width: 100%;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.12);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-submit {
  margin-top: 1.75rem;
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}
.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--slate-light);
  text-align: center;
  line-height: 1.5;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success__icon {
  width: 64px; height: 64px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success__icon svg {
  width: 32px; height: 32px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.form-success__title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy-deep);
}
.form-success__body {
  font-size: 0.95rem; color: var(--slate);
  line-height: 1.7; margin-top: 0.75rem;
}

/* ── Signup section ── */
.signup-section {
  background: var(--navy-deep);
  padding: clamp(7rem, 14vh, 11rem) clamp(1.5rem, 5vw, 4rem);
}
.signup-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.signup-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.signup-title em { font-style: normal; color: var(--gold); }
.signup-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.signup-form {
  text-align: left;
}
.signup-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.signup-section .form-field label {
  color: rgba(255,255,255,0.6);
}
.signup-section .form-field input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.signup-section .form-field input::placeholder { color: rgba(255,255,255,0.25); }
.signup-section .form-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.08);
}
.signup-section .form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
}
.signup-section .form-note { color: rgba(255,255,255,0.3); }
.signup-section .form-success { background: transparent; }
.signup-section .form-success__title { color: var(--white); }
.signup-section .form-success__body { color: rgba(255,255,255,0.6); }

@media (max-width: 480px) {
  .signup-fields { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__photo {
    position: absolute; inset: 0; z-index: 0;
    opacity: 0.25;
  }
  .hero__content { padding-top: calc(var(--nav-h) + 5rem); min-height: 100dvh; }
  .hero__photo::before { display: none; }
  .about-preview { grid-template-columns: 1fr; }
  .about-preview__photo { max-width: 420px; }
  .about-bio { grid-template-columns: 1fr; }
  .about-bio__photo { position: static; max-width: 400px; order: -1; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding-bottom: 4rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services-preview__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 2rem; }
  .credentials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}
