:root {
  --bg: #f2ece3;
  --surface: #fbf8f3;
  --surface-2: #f7f2ea;
  --ink: #1c1613;
  --muted: #665a50;
  --line: rgba(28, 22, 19, 0.12);
  --line-strong: rgba(28, 22, 19, 0.22);
  --gold: #b78b4a;
  --gold-soft: #dbc198;
  --deep: #120f0d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1220px, calc(100% - 2rem));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: var(--container);
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: currentColor;
}
.kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.topbar {
  background: var(--deep);
  color: var(--gold-soft);
  text-align: center;
  padding: 0.58rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}
.brand-copy {
  min-width: 0;
}
.brand-copy h1,
.brand-copy p,
.brand-copy .site-name,
.brand-copy .site-tag {
  margin: 0;
}
.site-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.site-tag {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  font-weight: 700;
  font-size: 0.95rem;
}
.site-nav .pill {
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.hero {
  position: relative;
  min-height: 88vh;
  background: #111;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.46) 46%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.52) 100%);
}
.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 4.6rem;
  max-width: 780px;
}
.hero h2,
.page-hero h2,
.section-title {
  margin: 0.55rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.hero h2 {
  font-size: clamp(3.8rem, 8vw, 7.4rem);
}
.page-hero h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}
.hero h2 em,
.page-hero h2 em,
.section-title em {
  color: var(--gold-soft);
  font-style: italic;
}
.hero p,
.page-hero p {
  font-size: 1.22rem;
  max-width: 690px;
  margin: 0 0 1.7rem;
}
.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-solid {
  background: var(--ink);
  color: #fff;
}
.btn-outline {
  border-color: var(--line-strong);
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-top: 2rem;
  color: #eadcc5;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-points span::before {
  content: "•";
  margin-right: 0.6rem;
}
.page-hero {
  position: relative;
  min-height: 56vh;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
}
.page-hero.compact {
  min-height: 46vh;
}
main {
  overflow: hidden;
}
.section {
  padding: 5.2rem 0;
}
.section.alt {
  background: var(--surface);
}
.section.soft {
  background: var(--surface-2);
}
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.section-title {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}
.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.06rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card .media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card .media.tall {
  aspect-ratio: 4 / 4.6;
}
.card .media.wide {
  aspect-ratio: 16 / 10;
}
.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .content {
  padding: 1.55rem;
}
.card h3,
.card h4 {
  margin: 0 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.card h3 {
  font-size: 1.8rem;
}
.card h4 {
  font-size: 1.45rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.metric {
  background: var(--deep);
  color: #fff;
  border-radius: 22px;
  padding: 1.35rem;
}
.metric strong {
  display: block;
  font-size: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-soft);
  font-weight: 500;
}
.metric span {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4c5ae;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stack {
  display: grid;
  gap: 1.5rem;
}
.list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  border-top: 1px solid var(--line);
}
.list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.list span {
  color: var(--muted);
}
.quote-band {
  background: var(--deep);
  color: #fff;
  border-radius: 30px;
  padding: 2rem;
}
.quote-band p {
  margin: 0 0 0.8rem;
  font-size: 1.16rem;
}
.quote-band small {
  color: #d4c5ae;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.badge {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  font-weight: 700;
  font-size: 0.84rem;
}
.cta-panel {
  background: linear-gradient(180deg, #211914 0%, #17120f 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.3rem;
}
.cta-panel p {
  color: #e2d5c1;
}
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow);
}
.panel h3,
.panel h4 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.panel h3 {
  font-size: 2rem;
}
.panel h4 {
  font-size: 1.5rem;
}
.info-lines p {
  margin: 0 0 0.9rem;
}
.notice {
  font-size: 0.92rem;
  color: var(--muted);
}
.footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 3rem;
}
.footer-grid {
  align-items: end;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.page-intro {
  max-width: 720px;
  margin-bottom: 2rem;
}
.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}
.mosaic .stack {
  height: 100%;
}
.mosaic .frame,
.mosaic .card {
  height: 100%;
}
.caption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 980px) {
  .section-head,
  .split,
  .contact-grid,
  .footer-grid,
  .mosaic {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .site-nav {
    display: none;
    width: 100%;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
  }
  .site-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-header .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 680px) {
  .hero {
    min-height: 80vh;
  }
  .grid-2,
  .grid-3,
  .metrics {
    grid-template-columns: 1fr;
  }
  .site-name {
    font-size: 1.28rem;
  }
  .site-tag {
    letter-spacing: 0.12em;
  }
  .hero h2 {
    font-size: 3.35rem;
  }
  .page-hero h2 {
    font-size: 3rem;
  }
  .hero p,
  .page-hero p {
    font-size: 1.05rem;
  }
  .hero-content,
  .page-hero-content {
    padding-top: 5rem;
  }
}
