:root {
  --navy: #1a2744;
  --navy-soft: #2d3d5c;
  --sand: #e8dcc8;
  --sand-deep: #d4c4a8;
  --white: #faf8f5;
  --white-pure: #ffffff;
  --gold: #b8954a;
  --gold-soft: rgba(184, 149, 74, 0.2);
  --text: #1a2744;
  --text-muted: #4a5568;
  --line: rgba(26, 39, 68, 0.12);
  --line-dark: rgba(250, 248, 245, 0.15);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Newsreader", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: var(--white);
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  /* Horizontal padding lives here (not inside max-width) so the logo lines up with .hero-layout, which sits in .hero’s padded area outside its 72rem box. */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white-pure);
  border-radius: 2px;
  cursor: pointer;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--navy);
  background: rgba(26, 39, 68, 0.04);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: none;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0.25rem 0 0.5rem;
  margin: 0;
  border-top: 1px solid var(--line);
}

.site-header.is-open .nav {
  display: flex;
}

.nav a {
  padding: 0.85rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--navy);
}

.nav a:last-child {
  border-bottom: none;
}

body.nav-menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle-bar {
    transition: none;
  }
}

@media (min-width: 900px) {
  .header-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .wordmark,
  .nav-toggle,
  .nav {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    padding: 0;
    border-top: none;
    gap: 0.65rem 1.15rem;
  }

  .nav a {
    padding: 0;
    font-size: 0.9rem;
    border-bottom: none;
  }

  body.nav-menu-open {
    overflow: auto;
  }
}

.wordmark {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
}

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

.wordmark--footer {
  font-size: 1.15rem;
}

.hero {
  padding: clamp(3.5rem, 10vw, 6.5rem) 1.5rem 4rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--white) 55%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-layout {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
    align-items: end;
  }
}

.hero-inner {
  max-width: 40rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 900px) {
  .hero-inner {
    margin: 0;
    max-width: none;
  }
}

.hero-portrait {
  position: relative;
  margin: 0 auto;
  max-width: 320px;
  justify-self: center;
  display: block;
}

.hero-portrait picture {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
}

@media (min-width: 900px) {
  .hero-portrait {
    max-width: none;
    width: 100%;
    margin: 0;
    justify-self: stretch;
  }
}

.hero-portrait-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    var(--white) 0%,
    rgba(250, 248, 245, 0.65) 28%,
    transparent 52%
  );
}

@media (min-width: 900px) {
  .hero-portrait-shade {
    background: linear-gradient(
      95deg,
      var(--white) 0%,
      rgba(250, 248, 245, 0.5) 22%,
      transparent 48%
    );
  }
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 520px);
  margin: 0 auto;
  object-fit: contain;
  object-position: bottom center;
  opacity: 0.78;
  filter: saturate(0.92) contrast(0.97);
  background-color: var(--white);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Letterboxing from `contain` + GPU layers can read as black edges on some mobile browsers; `cover` fills the frame. */
@media (max-width: 899px) {
  .hero-photo {
    object-fit: cover;
    object-position: center bottom;
    max-height: min(56vh, 440px);
    filter: none;
  }
}

@media (min-width: 900px) {
  .hero-photo {
    object-position: bottom right;
    max-height: min(78vh, 560px);
  }
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.35rem, 5.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--navy);
}

.lead {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 1.08rem;
}

.hero-cred {
  font-size: 0.95rem;
  color: var(--navy-soft);
  margin: 0 0 2rem;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.btn-primary:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(26, 39, 68, 0.04);
}

.section {
  padding: 3.75rem 1.5rem;
  border-top: 1px solid var(--line);
}

.section--tint {
  background: linear-gradient(180deg, rgba(232, 220, 200, 0.45) 0%, var(--white) 100%);
  border-top-color: transparent;
}

.section--navy {
  background: var(--navy);
  color: var(--white);
  border-top-color: transparent;
}

.section--contact {
  background: linear-gradient(160deg, var(--sand) 0%, var(--sand-deep) 100%);
  border-top: none;
}

.section-inner {
  max-width: 44rem;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 32rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  margin: 0 0 0.75rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section--navy h2 {
  color: var(--white);
}

.h-sub {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}

.h-sub:first-of-type {
  margin-top: 1.5rem;
}

.h-sub.spaced {
  margin-top: 2.5rem;
}

.h-sub--gold {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2.25rem;
}

.h-sub--gold:first-of-type {
  margin-top: 0.5rem;
}

.section-intro {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose--on-dark p {
  color: rgba(250, 248, 245, 0.88);
}

.prose--on-dark .h-sub:not(.h-sub--gold) {
  color: var(--white);
}

.pull-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--navy);
  margin: 0 0 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.split-block {
  display: grid;
  gap: 2rem;
  margin: 1.5rem 0 0;
}

@media (min-width: 640px) {
  .split-block {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.values-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.values-list li {
  padding: 0.35rem 0.85rem;
  background: var(--white-pure);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--navy);
}

.pillars {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .pillars--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillars li {
  padding: 1.5rem 1.35rem;
  background: var(--white-pure);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.section--tint .pillars li {
  background: var(--white);
}

.pillar-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
}

.pillars h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.pillars p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.muted {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.check-list {
  margin: 1rem 0 0;
  padding: 0 0 0 1.2rem;
  color: var(--text-muted);
}

.check-list li {
  margin-bottom: 0.5rem;
}

.bullet-list {
  margin: 0.5rem 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

.two-col-list {
  margin: 0.5rem 0 0;
  padding: 0 0 0 1.2rem;
  color: var(--text-muted);
  columns: 1;
  column-gap: 2rem;
}

@media (min-width: 560px) {
  .two-col-list {
    columns: 2;
  }
}

.two-col-list li {
  margin-bottom: 0.4rem;
  break-inside: avoid;
}

.goal-grid {
  display: grid;
  gap: 1.25rem;
  margin: 1rem 0 0;
}

@media (min-width: 600px) {
  .goal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.goal-grid div {
  padding: 1rem;
  background: var(--white-pure);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.goal-grid dt {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.goal-grid dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.journey-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.journey-list li {
  margin-bottom: 0.65rem;
  padding-left: 0.25rem;
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.65rem;
}

.contact-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.contact-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.fine-print {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.section--contact h2 {
  color: var(--navy);
}

.section--contact p {
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem;
  background: var(--white);
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.footer-tag {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.copyright {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}
