:root {
  --ink: #2a2218;
  --muted: #5c5348;
  --paper: #f6efe4;
  --paper-2: #efe4d2;
  --cream: #fffaf3;
  --forest: #1d4638;
  --forest-2: #2d6a54;
  --leaf: #3d8b6e;
  --copper: #b85a38;
  --gold: #c4a15a;
  --line: rgba(42, 34, 24, 0.12);
  --shadow: 0 18px 50px rgba(42, 34, 24, 0.12);
  --radius: 22px;
  --max: 1120px;
}

*,
*::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:
    radial-gradient(1200px 500px at 10% -10%, rgba(196, 161, 90, 0.18), transparent 50%),
    radial-gradient(900px 400px at 110% 8%, rgba(61, 139, 110, 0.12), transparent 45%),
    var(--paper);
  line-height: 1.65;
}

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

a {
  color: var(--forest-2);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  z-index: 50;
  background: var(--cream);
  padding: 8px 12px;
}

.topbar {
  background: var(--forest);
  color: #f4ead8;
  font-size: 0.92rem;
}

.topbar-inner,
.nav-inner,
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}

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

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--forest-2), var(--forest));
  color: #f6efe4;
  display: grid;
  place-items: center;
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.logo span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf3;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 70, 56, 0.15) 0%, rgba(29, 32, 24, 0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

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

.hero h1,
.page-hero h1,
h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 560;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 10px 0 16px;
  max-width: 14ch;
}

.lede {
  max-width: 42ch;
  font-size: 1.15rem;
  color: #f4ead8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--copper);
  color: #fffaf3;
}

.btn-ghost {
  background: transparent;
  color: #fffaf3;
  border-color: rgba(255, 250, 243, 0.45);
}

.btn-dark {
  background: var(--forest);
  color: #fffaf3;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.grid-3,
.grid-2,
.hours,
.cards,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.grid-2 {
  grid-template-columns: 1.15fr 0.85fr;
}

.card,
.hours article,
.news-card,
.price-card,
.winner {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hours article,
.card,
.news-card,
.price-card,
.winner {
  padding: 22px;
}

.hours article strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
}

.hours article b {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.7rem;
  margin: 8px 0 4px;
}

.card h3 {
  margin-top: 0;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
}

.photo-strip img,
.mosaic img,
.gallery-grid img,
.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.photo-strip a,
.gallery-grid a,
.album-cover {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  min-height: 180px;
}

.photo-strip a:first-child {
  min-height: 380px;
  grid-row: span 2;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.news-card time {
  font-family: Fraunces, Georgia, serif;
  color: var(--forest);
  font-weight: 650;
}

.quote {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--forest);
}

.page-hero {
  padding: 56px 0 24px;
}

.page-hero p {
  max-width: 62ch;
  color: var(--muted);
}

.prose {
  max-width: 72ch;
}

.prose p,
.prose li {
  color: var(--ink);
}

.timeline {
  border-left: 3px solid var(--gold);
  margin: 32px 0 0 8px;
  padding-left: 24px;
  display: grid;
  gap: 22px;
}

.timeline h3 {
  margin: 0 0 6px;
}

.order article {
  margin-bottom: 28px;
}

.order h2 {
  font-size: 1.4rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--forest);
  color: #f6efe4;
}

.album-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.album-cover {
  position: relative;
  min-height: 240px;
  color: #fff;
  text-decoration: none;
}

.album-cover span {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(20, 16, 12, 0.82));
  font-weight: 700;
}

.album-cover small {
  font-weight: 500;
  opacity: 0.88;
}

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

.gallery-grid a {
  min-height: 220px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 10, 0.92);
  display: none;
  place-items: center;
  z-index: 40;
  padding: 24px;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 88vh;
  max-width: 92vw;
  border-radius: 12px;
}

.lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  border: 0;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  cursor: pointer;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  background: var(--forest);
  color: #efe4d2;
  padding: 42px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

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

.legal {
  margin-top: 28px;
  border-top: 1px solid rgba(246, 239, 228, 0.16);
  padding-top: 14px;
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .grid-3,
  .hours,
  .grid-2,
  .photo-strip,
  .album-list,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-strip a:first-child {
    grid-row: auto;
    min-height: 240px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .grid-3,
  .hours,
  .grid-2,
  .photo-strip,
  .album-list,
  .gallery-grid,
  .footer-grid,
  .news-card {
    grid-template-columns: 1fr;
  }
}
