@font-face {
  font-family: "Campton";
  src: url("../fonts/campton-light.woff") format("woff"),
       url("../fonts/campton-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #1f2452;
  --navy-deep: #131736;
  --navy-soft: #373a6e;
  --gold: #c9a96e;
  --gold-soft: #e6d4ad;
  --ink: #1a1d2e;
  --text: #2c3142;
  --muted: #6b7080;
  --line: #e6e8ee;
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --max: 1140px;
  --radius: 4px;
  --shadow: 0 1px 3px rgba(19, 23, 54, 0.06), 0 8px 24px rgba(19, 23, 54, 0.05);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Campton", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a:hover { color: var(--gold); border-bottom-color: var(--gold); }

h1, h2, h3, h4 {
  font-family: "Campton", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  line-height: 1.25;
}
h2 { font-size: 2.1rem; }
h3 { font-size: 1.25rem; color: var(--navy); }
p  { margin: 0 0 1.1em; }

/* ===== Header ===== */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(255, 255, 255, 0.92);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  border: none;
}
.brand:hover { border: none; }
.brand-mark {
  font-family: "Campton", sans-serif;
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.brand-mark strong { font-weight: 500; color: var(--navy); }
.brand-tag {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ===== Nav ===== */
.nav-toggle { display: none; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--text);
  border: none;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a:hover { background: var(--bg-alt); color: var(--navy); border: none; }
.nav a.active {
  color: var(--navy);
  font-weight: 500;
}
.nav a.active::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin: 4px auto 0;
}

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(180deg, rgba(19, 23, 54, 0.55), rgba(19, 23, 54, 0.7)),
    url("../images/meheader10.jpg") center / cover no-repeat;
  color: #fff;
  padding: 110px 28px 120px;
  text-align: center;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
}
.hero .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.hero p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 500;
}
.btn-primary:hover { background: #d8b87b; color: var(--navy-deep); border-color: transparent; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: #fff; }

/* ===== Page Header (interior pages) ===== */
.page-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 70px 28px 60px;
  text-align: center;
}
.page-header .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-header h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0;
}

/* ===== Layout ===== */
main { display: block; }
.section {
  padding: 80px 28px;
}
.section-alt { background: var(--bg-alt); }
.container {
  max-width: var(--max);
  margin: 0 auto;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
}

/* ===== Service grid (home) ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service-card .icon {
  width: 38px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ===== Bio layout ===== */
.bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.bio-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.bio-photo .caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}
.bio-content h2 { margin-top: 0; }
.bio-content p:first-of-type::first-letter {
  font-size: 3.2rem;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--navy);
  font-weight: 500;
}

/* ===== Gallery ===== */
.gallery {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.gallery figure { margin: 0; }
.gallery img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery a { border: none; display: block; overflow: hidden; border-radius: var(--radius); }
.gallery a:hover img { transform: scale(1.03); }
.gallery figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

/* ===== Business card ===== */
.business-card {
  margin: 56px auto 0;
  max-width: 560px;
}
.business-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== Media grid ===== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.media-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.media-card .media-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.media-card video { width: 100%; display: block; background: #000; }
.media-card .media-body { padding: 22px 24px 24px; }
.media-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.media-card p { font-size: 0.93rem; color: var(--muted); margin: 0 0 12px; }
.media-card a.read-more {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.media-card a.read-more:hover { color: var(--gold); }

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.testimonial {
  background: #fff;
  padding: 32px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  position: relative;
}
.testimonial p {
  font-style: italic;
  color: var(--text);
  font-size: 0.98rem;
  margin: 0 0 18px;
}
.testimonial .attribution {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.testimonial .attribution span {
  display: block;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.82rem;
  margin-top: 2px;
  letter-spacing: 0;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-info h2 { margin-bottom: 10px; }
.contact-info p { color: var(--muted); }
.contact-info .contact-line {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 28px 32px;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255, 255, 255, 0.82); border: none; }
.site-footer a:hover { color: var(--gold); border: none; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .header-inner { padding: 16px 20px; }
  .nav-toggle {
    display: block;
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    width: 42px;
    height: 38px;
    cursor: pointer;
    position: relative;
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-toggle span { top: 50%; }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px;
    gap: 0;
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .nav.open { max-height: 600px; padding: 8px 16px 16px; }
  .nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav li:last-child a { border-bottom: none; }
  .nav a.active::after { display: none; }
  .nav a.active { color: var(--navy); }

  .bio { grid-template-columns: 1fr; gap: 28px; }
  .bio-photo { max-width: 260px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 56px 20px; }
  .hero { padding: 80px 20px 90px; }
  .page-header { padding: 50px 20px 44px; }
  h2 { font-size: 1.6rem; }
}
