/* ── Reset & base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0f2340;
  --navy-light: #1a3560;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --cream:      #f7f4ef;
  --white:      #ffffff;
  --text:       #2c2c2c;
  --text-muted: #6b7280;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(15, 35, 64, 0.10);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy-light);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--gold-light);
}

.main-nav {
  display: flex;
  gap: 1.75rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--gold-light);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #243f6e 100%);
  color: var(--white);
  padding-block: 5rem 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 a {
  color: var(--gold-light);
  text-decoration-color: var(--gold);
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  max-width: 52ch;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid rgba(201, 168, 76, 0.4);
  background: var(--navy-light);
}

/* ── Sections ── */
.section {
  padding-block: 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

/* ── About ── */
.about {
  background: var(--white);
}

.about-photo img,
.approach-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dde3ec;
}

.about-text h2,
.approach-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
}

.about-text p,
.approach-text p {
  margin-bottom: 1rem;
  color: var(--text);
}

/* ── Services ── */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ── Approach ── */
.approach {
  background: var(--white);
}

.inline-quote {
  border-left: 4px solid var(--gold);
  padding: 1.25rem 0 0 1.5rem;
  margin-top: 0.5rem;
}

.inline-quote p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.inline-quote cite {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

.stats-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 1.75rem 0 2rem;
}

.stats-list li {
  text-align: center;
}

.stats-list strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stats-list span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Gallery ── */
.gallery {
  background: var(--navy);
  color: var(--white);
}

.gallery .section-header h2 {
  color: var(--white);
}

.gallery .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-main img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(201, 168, 76, 0.35);
  background: var(--navy-light);
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 1rem;
}

.cta-inner p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 60ch;
  margin-inline: auto;
}

.cta a:not(.btn) {
  color: var(--navy);
  font-weight: 600;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding-block: 2rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split.reverse {
    direction: ltr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-list {
    flex-direction: column;
    gap: 1.25rem;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-block: 3rem 2.5rem;
  }

  .section {
    padding-block: 3.5rem;
  }
}
