:root {
  --ink: #221b16;
  --muted: #6f6259;
  --paper: #f8f3ea;
  --paper-2: #fffaf2;
  --brick: #793a28;
  --brick-dark: #4b241b;
  --gold: #b88a48;
  --line: rgba(74, 40, 28, .18);
  --shadow: 0 24px 70px rgba(42, 26, 18, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(248, 243, 234, .82);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brick), var(--brick-dark));
  font-size: 13px;
  letter-spacing: .12em;
  box-shadow: 0 8px 22px rgba(74, 40, 28, .18);
}
.brand-text { font-size: 18px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 14px;
  color: var(--muted);
}
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--brick); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(184, 138, 72, .22), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(121, 58, 40, .15), transparent 32%),
    linear-gradient(135deg, var(--paper-2), var(--paper));
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(74, 40, 28, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 40, 28, .04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.08));
}
.hero-crest {
  position: absolute;
  right: max(18px, calc((100vw - 1120px)/2));
  top: 92px;
  width: min(420px, 40vw);
  opacity: .18;
  filter: sepia(.18) saturate(.95) contrast(.98);
  transform: rotate(-2deg);
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: center;
  gap: 50px;
  padding: 96px 0;
}
.eyebrow,
.section-kicker,
.card-label {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: var(--brick);
  font-weight: 700;
  margin: 0 0 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(46px, 7vw, 88px);
  line-height: .93;
  letter-spacing: -.06em;
  max-width: 850px;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(31px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}
h3 {
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.lead {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  max-width: 760px;
  color: #4d4038;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--brick-dark);
  color: #fff;
  box-shadow: 0 12px 26px rgba(75, 36, 27, .22);
}
.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.35);
  color: var(--ink);
}
.button.full { width: 100%; margin-top: 20px; }
.hero-card {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 250, 242, .72), rgba(255, 250, 242, .97));
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}
.crest-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.card-crest {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(74,40,28,.18);
  border: 2px solid rgba(74, 40, 28, .18);
  background: rgba(255,255,255,.5);
}
.card-crest img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.crest-label {
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(74,40,28,.12);
  font: 700 11px/1.2 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brick-dark);
}
.hero-card > *:not(.crest-badge) { position: relative; z-index: 1; }
.hero-card p:last-child { color: var(--muted); margin-bottom: 0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; }

.section { padding: 98px 0; }
.two-column {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 54px;
}
.two-column p,
.section-heading + .use-list p,
.support-grid p,
.gallery-heading p,
.photo-card figcaption {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--muted);
  font-size: 17px;
}
.two-column p { max-width: 850px; }
.warm { background: #efe5d6; border-block: 1px solid var(--line); }
.warm-soft { background: #f4ece1; border-block: 1px solid var(--line); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .75);
  border: 1px solid rgba(74, 40, 28, .14);
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.panel-number {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: auto;
}
.feature-panel p { color: var(--muted); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; margin-bottom: 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.gallery-heading { max-width: 860px; }
.photo-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: 20px;
  align-items: stretch;
}
.photo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.photo-large img { min-height: 430px; }
.photo-card figcaption {
  padding: 14px 18px 18px;
  font-size: 14px;
}
.use-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.use-list article { background: var(--paper-2); padding: 28px; min-height: 255px; }
.use-list p { margin-bottom: 0; }
.quote-band {
  background: var(--brick-dark);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.quote-band::after {
  content: "";
  position: absolute;
  right: 8%;
  top: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.quote-inner p {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
  max-width: 900px;
  margin-bottom: 0;
}
.support-section { background: var(--paper-2); }
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: start;
}
.support-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}
ul { margin: 0; padding-left: 19px; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; color: var(--muted); }
li + li { margin-top: 9px; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: var(--paper);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner p { margin: 4px 0 0; color: var(--muted); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; }
.footer-crest-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-crest {
  width: 86px;
  height: 86px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 10px 22px rgba(74,40,28,.16);
  border: 2px solid rgba(74,40,28,.14);
}
.footer-crest-label {
  font: 700 12px/1.2 ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brick-dark);
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.45);
    border-radius: 999px;
    padding: 9px 14px;
    font: 700 14px ui-sans-serif, system-ui, sans-serif;
  }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 250, 242, .98);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .hero { min-height: auto; }
  .hero-grid, .feature-grid, .use-list, .photo-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 78px 0; }
  .hero-card { min-height: 320px; }
  .hero-crest { width: min(320px, 70vw); opacity: .13; top: 106px; }
  .two-column, .support-grid { grid-template-columns: 1fr; gap: 26px; }
  .section { padding: 72px 0; }
  .photo-card img, .photo-large img { min-height: 280px; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .brand-text { font-size: 16px; }
  h1 { font-size: 44px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .footer-inner, .footer-crest-wrap { align-items: flex-start; }
  .footer-inner { flex-direction: column; }
  .footer-crest { width: 72px; height: 72px; }
  .card-crest { width: 112px; height: 112px; }
  .crest-label { font-size: 10px; }
}
