:root {
  --bg: #efe4d6;
  --bg-deep: #d3b79c;
  --ink: #2a1b13;
  --muted: #6a4b3a;
  --accent: #7a3a2a;
  --accent-dark: #5a2c20;
  --ember: #5b1907;
  --cream: #f6efe5;
  --border: rgba(74, 50, 38, 0.2);
  --shadow: 0 14px 26px rgba(38, 26, 20, 0.14);
  --radius: 18px;
  --radius-lg: 26px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 16%, rgba(122, 73, 52, 0.1), transparent 55%),
    radial-gradient(circle at 86% 18%, rgba(74, 50, 38, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  color: var(--ink);
  line-height: 1.6;
}

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

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

.page {
  --page-pad: clamp(20px, 5vw, 52px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px var(--page-pad) 48px;
}

.section-block {
  margin: 32px 0;
  padding: clamp(24px, 5vw, 46px) 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 0 8px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: static;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  justify-content: center;
  flex: 1;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: space-between;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.nav-toggle-label {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}

.nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.nav-toggle-icon span {
  width: 22px;
  height: 2px;
  background: var(--accent-dark);
  display: block;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  background: var(--accent);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(111, 46, 34, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-areas:
    "text media"
    "text hours";
  align-items: center;
  column-gap: 42px;
  row-gap: 18px;
  padding: 0;
  position: relative;
}

.hero.section-block {
  padding: clamp(24px, 5vw, 52px) 0;
  margin-top: 6px;
}

.hero-text {
  animation: rise 0.9s ease forwards;
  grid-area: text;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-badge::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.hero h1 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  line-height: 1.05;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.btn.primary {
  background: var(--accent);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 0.9rem;
  color: var(--muted);
  align-items: flex-start;
}

.map-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.hero-meta .map-link {
  display: inline-block;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 16px;
  grid-area: media;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: clamp(550px, 65vh, 680px);
  object-fit: cover;
}

.hero-hours {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
  color: var(--muted);
  grid-area: hours;
  align-self: start;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(246, 239, 229, 0.9);
}

.hero-hours .label {
  color: var(--ink);
}


.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.signature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0 10px 18px;
  border-left: 3px solid rgba(123, 58, 42, 0.35);
  min-height: clamp(120px, 18vw, 160px);
}

.signature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.signature-card p {
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.story-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-text h2 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.story-text p {
  margin-bottom: 12px;
  color: var(--muted);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-head p {
  color: var(--muted);
  max-width: 600px;
}

.menu {
  padding: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.menu-item {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item h3 {
  font-size: 1.05rem;
  padding: 0 18px;
}

.menu-item p {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.feature-content h2 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.feature-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
}

.feature-list li::before {
  content: "*";
  color: var(--accent);
  font-size: 0.8rem;
}

.feature-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.feature-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  height: 260px;
}

.feature-images .feature-img.left {
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.feature-images .feature-img.right {
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -8px;
}

.gallery {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 14px;
  grid-template-areas:
    "g1 g1 g1 g1 g1 g2 g2 g2 g3 g3 g3 g3"
    "g1 g1 g1 g1 g1 g2 g2 g2 g3 g3 g3 g3"
    "g1 g1 g1 g1 g1 g4 g4 g4 g4 g7 g7 g7"
    "g5 g5 g5 g5 g5 g4 g4 g4 g4 g7 g7 g7"
    "g5 g5 g5 g5 g5 g6 g6 g6 g8 g8 g8 g8"
    "g5 g5 g5 g5 g5 g6 g6 g6 g8 g8 g8 g8";
}

.gallery-item {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.gallery-item.g1 {
  grid-area: g1;
}

.gallery-item.g2 {
  grid-area: g2;
}

.gallery-item.g3 {
  grid-area: g3;
}

.gallery-item.g4 {
  grid-area: g4;
}

.gallery-item.g5 {
  grid-area: g5;
}

.gallery-item.g6 {
  grid-area: g6;
}

.gallery-item.g7 {
  grid-area: g7;
}

.gallery-item.g8 {
  grid-area: g8;
}

.visit {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(360px, 1.3fr);
  gap: 24px;
  align-items: center;
}

.visit-card {
  background: transparent;
  padding: 0 0 0 18px;
  border-radius: 0;
  border: none;
  border-left: 3px solid rgba(122, 58, 42, 0.35);
  box-shadow: none;
  display: grid;
  gap: 12px;
  max-width: 380px;
  width: 100%;
  justify-self: start;
}

.visit-card h2 {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.visit-details {
  display: grid;
  gap: 16px;
  font-size: 0.95rem;
}

.detail-row {
  display: grid;
  gap: 6px;
}

.detail-row:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.visit-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 4px;
}

.visit-actions .btn {
  text-align: center;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
}

.visit-actions .btn.ghost {
  border: none;
  background: rgba(122, 58, 42, 0.08);
  color: var(--accent-dark);
}

.label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.visit-details a {
  color: var(--accent-dark);
  font-weight: 600;
}

.social-row span:not(.label) {
  color: var(--muted);
  font-weight: 400;
}

.social-row a {
  font-weight: 600;
}

.social-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.visit-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  min-height: 380px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 20px;
}

.footer-content {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.footer-content h3 {
  font-family: "Marcellus", "Times New Roman", serif;
}

.footer-phone {
  color: var(--accent-dark);
  font-weight: 600;
}

.footer-powered {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s ease forwards;
}

.stagger > *:nth-child(1) {
  animation-delay: 0.1s;
}

.stagger > *:nth-child(2) {
  animation-delay: 0.2s;
}

.stagger > *:nth-child(3) {
  animation-delay: 0.3s;
}

.stagger > *:nth-child(4) {
  animation-delay: 0.4s;
}

.stagger > *:nth-child(5) {
  animation-delay: 0.5s;
}

.stagger > *:nth-child(6) {
  animation-delay: 0.6s;
}

.stagger > *:nth-child(7) {
  animation-delay: 0.7s;
}

.stagger > *:nth-child(8) {
  animation-delay: 0.8s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .brand-name {
    font-size: 1.15rem;
  }

  .site-nav {
    font-size: 0.78rem;
    gap: 14px;
  }

  .header-cta {
    font-size: 0.78rem;
    padding: 9px 16px;
  }

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

  .hero-media img {
    height: clamp(460px, 55vh, 520px);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-meta,
  .hero-hours {
    font-size: 0.85rem;
  }
}

@media (max-width: 1130px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 970px) {
  .visit-photo img {
    min-height: 320px;
  }
}

@media (max-width: 950px) {
  .visit-photo img {
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero.section-block {
    padding: 22px 0;
  }

  .feature-images {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-images img {
    height: 220px;
  }

  .feature-images .feature-img.left,
  .feature-images .feature-img.right {
    margin-left: 0;
  }

  .feature-images .feature-img.left {
    clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
  }

  .feature-images .feature-img.right {
    clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%);
    margin-top: -24px;
    position: relative;
    z-index: 1;
  }

  .gallery-grid {
    grid-template-areas: none;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
  }

  .gallery-item.g1,
  .gallery-item.g2,
  .gallery-item.g3,
  .gallery-item.g4,
  .gallery-item.g5,
  .gallery-item.g6,
  .gallery-item.g7,
  .gallery-item.g8 {
    grid-area: auto;
    grid-column: span 3;
    grid-row: span 2;
  }

  .visit {
    grid-template-columns: 1fr;
  }

  .visit-card {
    max-width: 420px;
    justify-self: center;
    border-left: none;
    padding-left: 0;
  }

  .visit-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .visit-photo img {
    min-height: 280px;
  }
}

@media (max-width: 775px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 865px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-toggle-label {
    display: flex;
    order: 2;
    flex-direction: row-reverse;
    justify-content: flex-start;
  }

  .nav-panel {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 24px;
    align-self: stretch;
    flex-basis: 100%;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--cream);
    order: 4;
  }

  .nav-panel .site-nav {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
  }

  .nav-panel .header-cta {
    align-self: center;
    text-align: center;
    margin-left: 0;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav-panel {
    display: flex;
  }

  .header-cta {
    order: 3;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "text"
      "hours";
  }

  .hero-media {
    grid-area: media;
    width: calc(100% + (2 * var(--page-pad)));
    margin-left: calc(-1 * var(--page-pad));
    margin-right: calc(-1 * var(--page-pad));
    min-height: 0;
  }

  .hero-media img {
    border-radius: 0;
    height: 260px;
  }

  .hero-text {
    grid-area: text;
  }

  .hero-hours {
    grid-area: hours;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-meta,
  .hero-hours {
    font-size: 0.82rem;
  }
}

@media (max-width: 608px) {
  .story-media img {
    max-width: 90%;
    margin: 0 auto;
    max-height: 260px;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .page {
    --page-pad: 20px;
    padding: 18px var(--page-pad) 40px;
  }

  .site-header {
    position: static;
    padding-top: 12px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .brand-name {
    font-size: 1rem;
  }


  .footer-content {
    justify-items: center;
  }

  .section-block {
    margin: 28px 0;
    padding: 24px 0;
  }

  .hero.section-block {
    padding: 12px 0 20px;
    margin-top: 0;
  }

  .hero-media {
    width: calc(100% + (2 * var(--page-pad)));
    margin-left: calc(-1 * var(--page-pad));
    margin-right: calc(-1 * var(--page-pad));
  }

  .hero-media img {
    border-radius: 0;
    height: 220px;
  }

  .hero-text {
    margin-top: 0;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .hero h1 {
    margin-top: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "text"
      "hours";
  }

  .hero-media {
    grid-area: media;
  }

  .hero-text {
    grid-area: text;
  }

  .hero-hours {
    grid-area: hours;
    margin-top: 12px;
  }

  .hero-lead {
    font-size: 0.94rem;
  }

  .hero-meta,
  .hero-hours {
    font-size: 0.8rem;
  }
  
  .hero-meta {
    margin-bottom: 16px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }


  .visit-card {
    max-width: 100%;
    border-left: none;
    padding-left: 0;
  }

  .visit-photo img {
    min-height: 240px;
  }

  .gallery-grid {
    grid-template-areas: none;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-item.g1,
  .gallery-item.g2,
  .gallery-item.g3,
  .gallery-item.g4,
  .gallery-item.g5,
  .gallery-item.g6,
  .gallery-item.g7,
  .gallery-item.g8 {
    grid-area: auto;
    grid-column: span 2;
    grid-row: span 2;
  }
}
