:root {
  --cream: #f7f3eb;
  --cream-dark: #efe6d6;
  --paper: #fffdf8;
  --sage: #5e6f58;
  --sage-deep: #3f4b3b;
  --sage-soft: #8a9a82;
  --gold: #b0894a;
  --gold-soft: #d4b77a;
  --ink: #2c2a26;
  --muted: #6b675e;
  --line: rgba(63, 75, 59, 0.16);
  --shadow: 0 18px 50px rgba(44, 42, 38, 0.08);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.05rem;
}

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

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold);
}

.wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--sage-deep);
}

.brand-lockup {
  display: block;
  height: 92px;
  width: auto;
  max-width: min(620px, 64vw);
  object-fit: contain;
}

.brand-emblem {
  display: none;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-name {
  display: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-name span {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  max-width: none;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  color: var(--sage-deep);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  color: var(--paper);
  overflow: hidden;
  background: #3f4b3b;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 42, 38, 0.18) 0%, rgba(44, 42, 38, 0.42) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 4.4rem;
  max-width: 860px;
}

.eyebrow {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
  font-weight: 400;
  line-height: 1.35;
  max-width: none;
  white-space: nowrap;
}

.hero h1,
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(3rem, 6.4vw, 4.85rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.15rem;
  max-width: 38rem;
  color: rgba(255, 253, 248, 0.92);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--cream);
  color: var(--sage-deep);
}

.btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-ghost {
  border-color: rgba(255, 253, 248, 0.45);
  color: var(--paper);
}

.btn-ghost:hover {
  background: rgba(255, 253, 248, 0.12);
  color: var(--paper);
}

.btn-solid {
  background: var(--sage-deep);
  color: var(--paper);
}

.btn-solid:hover {
  background: var(--sage);
  color: var(--paper);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--paper);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.2rem;
}

.section-head-wide {
  max-width: 52rem;
}

.section-head-wide > p:last-child {
  white-space: nowrap;
}

@media (max-width: 800px) {
  .section-head-wide > p:last-child {
    white-space: normal;
  }
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.2rem 0 0.8rem;
  color: var(--sage-deep);
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

.section-alt .card {
  background: var(--cream);
}

.card h3 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1.45rem;
  color: var(--sage-deep);
}

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

.framed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.framed.portrait img {
  object-position: center 12%;
  min-height: 420px;
  max-height: 560px;
  aspect-ratio: 4 / 5;
}

#meet {
  scroll-margin-top: 5.5rem;
}

#meet .grid-2 {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
}

#meet .framed.portrait {
  width: 120px;
  max-width: 120px;
  margin: 0;
}

#meet .framed.portrait img {
  width: 120px;
  height: 150px;
  min-height: 0;
  max-height: 150px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
}

.quote-band {
  background: var(--sage-deep);
  color: var(--cream);
  text-align: center;
  padding: 3.4rem 0;
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 720px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.35;
}

.quote-band cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-soft);
}

.pillars li {
  margin-bottom: 0.85rem;
}

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 560px;
}

label {
  font-size: 0.88rem;
  color: var(--sage-deep);
}

input,
textarea,
select {
  width: 100%;
  margin-top: 0.28rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.fine-print {
  font-size: 0.88rem;
  color: var(--muted);
}

.disclaimer {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin: 1.6rem auto 0;
  max-width: 40rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 2.6rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.footer-emblem {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.4rem;
}

.footer-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0;
}

.footer-meta {
  margin: 0;
  letter-spacing: 0.04em;
}

.footer-contact {
  margin: 0.15rem 0 0.55rem;
}

.footer-contact a {
  margin: 0 0.35rem;
}

.footer-nav {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.4rem 0 1.2rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.page-hero {
  padding: 3.2rem 0 1.2rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0.2rem 0 0.7rem;
  color: var(--sage-deep);
}

.page-banner {
  position: relative;
  min-height: 42vh;
  display: grid;
  place-items: end start;
  color: var(--paper);
  overflow: hidden;
  background: #3f4b3b;
}

.page-banner .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 42, 38, 0.22) 0%, rgba(44, 42, 38, 0.48) 100%);
  z-index: 1;
}

.page-banner .wrap {
  position: relative;
  z-index: 2;
  padding: 3.2rem 0 2.4rem;
}

.page-banner .kicker {
  color: var(--gold-soft);
}

.page-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0.2rem 0 0.7rem;
  color: var(--paper);
}

.page-banner p {
  margin: 0;
  color: rgba(255, 253, 248, 0.9);
}

@media (max-width: 900px) {
  .brand-lockup {
    display: none;
  }

  .brand-emblem {
    display: block;
  }

  .brand-name {
    display: block;
  }

  .brand-name span {
    display: none;
  }

  .eyebrow {
    display: none;
  }

  .hero {
    min-height: 0;
    place-items: end start;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(44, 42, 38, 0.28) 0%, rgba(44, 42, 38, 0.62) 100%);
  }

  .hero-inner {
    padding: 2.8rem 0 2.4rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.28;
    margin-bottom: 0.7rem;
    text-shadow: 0 1px 18px rgba(44, 42, 38, 0.35);
  }

  .lede {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 28rem;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.35rem;
    gap: 0.65rem;
  }

  .btn-row .btn {
    text-align: center;
  }

  .page-banner {
    min-height: 0;
  }

  .page-banner .wrap {
    padding: 2rem 0 1.6rem;
  }

  .page-banner h1 {
    font-size: 1.85rem;
    line-height: 1.22;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  #meet .grid-2 {
    grid-template-columns: 104px 1fr;
    gap: 1.1rem;
    align-items: center;
  }

  #meet .framed.portrait {
    width: 104px;
    max-width: 104px;
  }

  #meet .framed.portrait img {
    width: 104px;
    height: 130px;
    max-height: 130px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.2rem 1.2rem;
    border-bottom: 1px solid var(--line);
    gap: 0.85rem;
  }

  .nav-links.open {
    display: flex;
  }
}
