:root {
  --bg: #f4efe6;
  --paper: #fffaf2;
  --surface: #fffdf8;
  --ink: #201814;
  --muted: #6e6259;
  --line: rgba(32, 24, 20, 0.12);
  --brand: #a43a20;
  --brand-strong: #7a2815;
  --accent: #d8b36a;
  --forest: #31473a;
  --shadow: 0 24px 70px rgba(32, 24, 20, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 172, 104, 0.25), transparent 24%),
    linear-gradient(180deg, #f8f2e9 0%, #f4efe6 32%, #efe5d7 100%);
  font-family: "Sansation", "Trebuchet MS", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 242, 233, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand img {
  width: auto;
  height: 64px;
  max-width: 220px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.98rem;
}

.site-nav a {
  padding: 10px 0;
  color: var(--muted);
  position: relative;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
}

.hero,
.page-hero {
  padding: 54px 0 28px;
}

.hero-grid,
.page-hero-grid,
.split,
.contact-layout {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.page-hero-grid,
.split,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  letter-spacing: -0.04em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.35rem;
}

.lead,
p,
li {
  font-size: 1.03rem;
  line-height: 1.65;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  margin: 22px 0 0;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #fff7f1;
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.84);
}

.meta-strip,
.bullet-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-strip li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.94rem;
}

.hero-visual,
.page-hero img {
  position: relative;
}

.hero-main,
.page-hero img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-stack {
  position: absolute;
  right: -12px;
  bottom: -30px;
  width: min(240px, 42%);
  display: grid;
  gap: 12px;
}

.hero-stack img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 4px solid rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow);
}

.section {
  padding: 54px 0;
}

.section-accent {
  background: linear-gradient(180deg, rgba(49, 71, 58, 0.06), rgba(49, 71, 58, 0.02));
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.feature-grid,
.document-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.document-card,
.promo-card,
.hours-card,
.contact-card-large,
.map-frame {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card div {
  padding: 22px;
}

.card p,
.document-card p,
.promo-card small,
.hours-card p,
.contact-card-large p {
  color: var(--muted);
}

.promo-list {
  display: grid;
  gap: 16px;
}

.promo-card,
.document-card {
  padding: 24px;
}

.document-card-featured {
  background: linear-gradient(135deg, rgba(164, 58, 32, 0.96), rgba(122, 40, 21, 0.95));
  color: #fff7f1;
  grid-column: span 2;
}

.document-card-featured p {
  color: rgba(255, 247, 241, 0.82);
}

.promo-label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(216, 179, 106, 0.16);
  color: var(--brand);
  margin-bottom: 10px;
}

.document-card-featured .promo-label {
  background: rgba(255, 247, 241, 0.16);
  color: #fff7f1;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid img,
.masonry-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.gallery-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 18px;
}

.masonry-grid img {
  height: auto;
  margin-bottom: 18px;
  break-inside: avoid;
}

.section-link {
  margin: 24px 0 0;
}

.section-link a,
.site-footer a,
.contact-list a {
  color: var(--brand-strong);
}

.contact-band {
  padding-bottom: 68px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.hours-card,
.contact-card-large {
  padding: 28px;
}

.info-block {
  margin-top: 24px;
}

.info-block p {
  margin: 0 0 8px;
}

.note-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  padding: 24px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0b0a;
  color: rgba(255, 248, 239, 0.82);
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
  justify-items: center;
}

.footer-brand {
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff8ef;
}

.site-footer a {
  color: #f0c674;
}

.site-footer p {
  text-align: center;
}

.page-main {
  padding-bottom: 24px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

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

  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-layout,
  .feature-grid,
  .document-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .document-card-featured {
    grid-column: auto;
  }

  .hero-stack {
    position: static;
    width: 100%;
    margin-top: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section {
    padding: 34px 0;
  }

  .shell {
    width: min(1120px, calc(100% - 24px));
  }

  .brand span {
    display: none;
  }

  .brand img {
    height: 56px;
    max-width: 180px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .hero-main,
  .page-hero img,
  .card img,
  .gallery-grid img {
    min-height: 0;
    height: auto;
  }
}
