/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --gold: #bd8f2d;
  --gold-light: #d4a853;
  --gold-dark: #9a7424;
  --ink: #1a1816;
  --ink-soft: #3d3832;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --white: #ffffff;
  --overlay: rgba(26, 24, 22, 0.55);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ── Typography ────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

/* ── Header ────────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 24, 22, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 44px;
  width: auto;
  transition: filter 0.4s var(--ease);
}

.header:not(.scrolled) .logo img { filter: brightness(0) invert(1); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.header:not(.scrolled) .nav__link { color: var(--white); }
.header.scrolled .nav__link { color: var(--ink-soft); }
.nav__link:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(189, 143, 45, 0.3);
}

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

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-soft); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.4s;
}

.header.scrolled .menu-toggle span { background: var(--ink); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}

.hero__slide.active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s linear;
}

.hero__slide.active img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 22, 0.75) 0%,
    rgba(26, 24, 22, 0.25) 45%,
    rgba(26, 24, 22, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 10vh, 7rem);
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero__title em { font-style: italic; color: var(--gold-light); }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 50ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__indicators {
  position: absolute;
  bottom: clamp(2rem, 5vh, 3.5rem);
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.hero__dot {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.4s, width 0.4s;
}

.hero__dot.active { background: var(--gold-light); width: 48px; }

/* ── Trust strip ─────────────────────────────────────────────── */
.trust {
  background: var(--ink);
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust__value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust__label {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Pillars ─────────────────────────────────────────────────── */
.pillars {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--cream-dark);
}

.pillar {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-right: 1px solid var(--cream-dark);
  transition: background 0.4s var(--ease);
}

.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--cream); }

.pillar__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.pillar__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.pillar__text {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── About ───────────────────────────────────────────────────── */
.about {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__visual { position: relative; }

.about__image-main {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  border-radius: 2px;
}

.about__image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--cream);
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(26, 24, 22, 0.12);
}

.about__content .section-title { margin: 1rem 0 1.5rem; }

.about__content p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about__stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-dark);
}

.stat__value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

/* ── Services ────────────────────────────────────────────────── */
.services {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--ink);
  color: var(--white);
}

.services .eyebrow { color: var(--gold-light); }

.services__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.services__header .section-title { color: var(--white); margin: 1rem 0 1rem; }
.services__header p { color: rgba(255, 255, 255, 0.65); font-size: 1rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover img { transform: scale(1.06); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s;
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(189, 143, 45, 0.75) 0%, rgba(26, 24, 22, 0.3) 100%);
}

.service-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}

/* ── Leadership ──────────────────────────────────────────────── */
.leadership {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}

.leadership__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.leadership__header .section-title { margin: 1rem 0 1rem; }

.leadership__header p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.leadership__tier { margin-bottom: 3rem; }
.leadership__tier:last-child { margin-bottom: 0; }

.leadership__tier-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-dark);
}

.leadership__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.leader-card {
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.leader-card:hover {
  border-color: rgba(189, 143, 45, 0.35);
  box-shadow: 0 12px 40px rgba(26, 24, 22, 0.06);
  transform: translateY(-2px);
}

.leader-card--featured {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}

.leader-card--featured:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 16px 48px rgba(26, 24, 22, 0.15);
}

.leader-card__initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(189, 143, 45, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.leader-card--featured .leader-card__initials {
  border-color: rgba(212, 168, 83, 0.35);
  color: var(--gold-light);
}

.leader-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.leader-card p {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.leader-card--featured p { color: rgba(255, 255, 255, 0.55); }

/* ── Locations ───────────────────────────────────────────────── */
.locations {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-dark);
}

.locations__header { margin-bottom: 3.5rem; }
.locations__header .section-title { margin-top: 1rem; }

.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.location-card {
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  transition: box-shadow 0.3s;
}

.location-card:hover { box-shadow: 0 12px 40px rgba(26, 24, 22, 0.06); }

.location-card--hq {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}

.location-card__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: rgba(189, 143, 45, 0.12);
  color: var(--gold);
  border: 1px solid rgba(189, 143, 45, 0.25);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.location-card--hq .location-card__badge {
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold-light);
  border-color: rgba(212, 168, 83, 0.25);
}

.location-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.location-card__address {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.location-card--hq .location-card__address { color: rgba(255, 255, 255, 0.55); }

.location-card__meta strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}

.location-card--hq .location-card__meta strong { color: rgba(255, 255, 255, 0.4); }

.location-card__meta span { font-size: 0.9375rem; }

.location-card__phone {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
  transition: color 0.25s;
}

.location-card__phone:hover { color: var(--gold); }

/* ── Experience strip ────────────────────────────────────────── */
.experience {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}

.experience img { width: 100%; height: 100%; object-fit: cover; }

.experience__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 22, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.experience__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 24ch;
  line-height: 1.35;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}

.testimonials__header { text-align: center; margin-bottom: 3.5rem; }
.testimonials__header .section-title { margin-top: 1rem; }

.testimonials__slider { position: relative; overflow: hidden; }

.testimonials__track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.testimonial {
  flex: 0 0 100%;
  padding: 0 clamp(1rem, 8vw, 6rem);
  text-align: center;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 auto 2rem;
}

.testimonial__author {
  font-size: 0.875rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.testimonials__btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.3s;
}

.testimonials__btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta {
  padding: clamp(5rem, 10vw, 7rem) 0;
  background: var(--cream-dark);
  text-align: center;
}

.cta .section-title { margin: 1rem 0 1rem; }

.cta p {
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(4rem, 8vw, 5rem) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 32ch;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.footer__link:hover { color: var(--white); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

/* ── Animations ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .location-card--hq { grid-column: span 1; grid-template-columns: 1fr; }
  .locations__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav.open { transform: translateX(0); }
  .nav.open .nav__link { color: var(--ink); font-size: 1rem; }
  .menu-toggle { display: flex; }
  .header .btn--gold { display: none; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .about__grid { grid-template-columns: 1fr; }
  .about__image-accent { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .about__stats { flex-direction: column; gap: 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
}
