:root {
  --butter: #fff7eb;
  --butter-deep: #ffe8c4;
  --paper: #fffaf3;
  --ink: #1c1410;
  --ink-soft: #4a3b32;
  --cheddar: #e65c00;
  --cheddar-deep: #c44a00;
  --tomato: #c8102e;
  --gold: #f0a202;
  --wine: #5c1a1a;
  --line: rgba(28, 20, 16, 0.12);
  --shadow: 0 18px 50px rgba(28, 20, 16, 0.12);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 4.9rem;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: optional;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/sora-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: optional;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(240, 162, 2, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(200, 16, 46, 0.1), transparent 50%),
    linear-gradient(180deg, var(--butter) 0%, var(--paper) 40%, #fff 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  backdrop-filter: blur(14px);
  background: rgba(255, 247, 235, 0.88);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow: visible;
}

.brand-lockup img {
  width: 5.44rem;
  height: auto;
}

.brand-lockup span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--cheddar-deep);
}

.site-header .btn {
  padding: 0.55rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cheddar), var(--tomato));
  color: #fff;
  box-shadow: 0 10px 24px rgba(230, 92, 0, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--cheddar-deep), #a50e24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn-outline {
  background: #fff;
  color: var(--cheddar-deep);
  border: 1px solid rgba(196, 92, 28, 0.35);
  box-shadow: none;
}

.btn-outline:hover {
  background: #fff8f1;
  border-color: var(--cheddar);
}

.hero {
  position: relative;
  display: grid;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  min-height: 28rem;
  background:
    radial-gradient(1100px 520px at 18% 20%, rgba(230, 92, 0, 0.22), transparent 55%),
    radial-gradient(900px 480px at 90% 80%, rgba(200, 16, 46, 0.16), transparent 50%),
    linear-gradient(135deg, #3a2418 0%, #1c1410 48%, #2a1814 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 2.25rem;
  display: grid;
  gap: 1.75rem;
  box-sizing: border-box;
}

.hero-top {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
}

.hero-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid rgba(255, 231, 194, 0.18);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 231, 194, 0.22);
  border-radius: 1.15rem;
  background: rgba(20, 14, 10, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.hero-panel-media {
  padding: 0;
  aspect-ratio: 1 / 1;
  height: auto;
}

.hero-panel-reviews {
  padding: 1rem 1.05rem 1.1rem;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}

.hero-building {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #2a1c14;
}

.hero-building img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  margin: 0;
  max-width: 40rem;
  color: #ffe7c2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.hero-reviews {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.hero-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.hero-reviews-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffe7c2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-reviews-label a {
  color: inherit;
  text-decoration: none;
}

.hero-reviews-label a:hover {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.hero-reviews-nav {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.hero-reviews-arrow {
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, background 0.15s ease;
}

.hero-reviews-arrow:hover {
  transform: scale(1.06);
  background: #fff;
}

.hero-reviews-arrow:focus-visible {
  outline: 2px solid #ffe7c2;
  outline-offset: 2px;
}

.hero-review-stack {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-review-stack .hero-review-bubble {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-review-stack.is-out {
  opacity: 0;
  transform: translateY(8px);
}

.hero-review-stack.is-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-review-bubble {
  background: #fff;
  color: var(--ink);
  border-radius: 1rem;
  padding: 0.8rem 0.95rem 0.75rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero-review-bubble .stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-review-bubble blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  flex: 1 1 auto;
  min-height: 0;
}

.hero-review-bubble footer {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.hero-review-bubble cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

.section {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2.25rem 0;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 0.75rem;
}

.section h1,
.section h2 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.section h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 16ch;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 18ch;
}

#shop-cheeses-heading,
#shop-more-heading {
  max-width: 28ch;
}

.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2.25rem;
  align-items: center;
}

.split-section-flip {
  grid-template-columns: 5fr 7fr;
}

.split-section-flip .split-copy {
  order: 2;
}

.split-section-flip .split-media {
  order: 1;
}

.split-copy {
  min-width: 0;
}

.split-media {
  margin: 0;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
  background: #efe8dc;
}

.split-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
}

.sample-bar .split-media img {
  object-fit: cover;
  object-position: left center;
}

.intro-rotate {
  position: relative;
}

.intro-rotate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.intro-rotate img.is-active {
  opacity: 1;
  z-index: 1;
}

.intro-body {
  margin: 1.15rem 0 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.sample-bar .lead {
  max-width: 54ch;
}

.sample-bar-close {
  margin: 1.25rem 0 0;
  max-width: 46ch;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}

.sample-bar-close strong {
  font-weight: 700;
  color: var(--cheddar-deep);
}

.shop-gallery .gallery-widget {
  margin-top: 1.75rem;
}

.find-us {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
}

.find-us-map {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  min-height: 360px;
}

.find-us-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-directions {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--cheddar-deep);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(28, 20, 16, 0.18);
}

.map-directions:hover {
  background: #fff;
}

.find-us-copy .hours-list {
  margin-top: 1.75rem;
}

.owners-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.25rem;
  align-items: start;
  margin-top: 2rem;
}

.owner-col {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
}

.owner-col figure {
  margin: 0;
}

.owner-col img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.owner-col figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.owner-col blockquote {
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--cheddar);
}

.owner-col blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.4;
  font-weight: 500;
}

.owner-col blockquote footer {
  margin-top: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.owners-store {
  margin: 2.5rem auto 0;
  max-width: 52.9rem;
  text-align: center;
}

.owners-store-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tomato);
}

.owners-store blockquote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.owners-store blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.35;
  font-weight: 550;
}

.owners-store > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1.02rem;
}

.owners-credit {
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
}

.owners-credit a {
  color: var(--cheddar-deep);
  font-weight: 600;
}

.gallery-widget {
  min-width: 0;
}

.gallery-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: 0.65rem;
  box-shadow: var(--shadow);
}

.slideshow-stage {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1c1410;
}

.slideshow-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
  display: block;
}

.slideshow-stage img.is-fading {
  opacity: 0.35;
}

.gallery-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.65rem;
  pointer-events: none;
}

.gallery-arrow {
  pointer-events: auto;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.gallery-arrow:hover {
  transform: scale(1.05);
  background: #fff;
}

.gallery-count {
  position: absolute;
  right: 0.75rem;
  bottom: 0.7rem;
  margin: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(28, 20, 16, 0.72);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.slideshow-thumbs {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.55rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.25rem;
  scrollbar-width: thin;
}

.slideshow-thumbs button {
  appearance: none;
  flex: 0 0 3.1rem;
  width: 3.1rem;
  height: 3.1rem;
  border: 2px solid transparent;
  border-radius: 0.45rem;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #e8e0d4;
  opacity: 0.7;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.slideshow-thumbs button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.slideshow-thumbs button.is-active {
  opacity: 1;
  border-color: var(--cheddar);
}

.slideshow-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 22rem;
}

.hours-list li {
  display: grid;
  grid-template-columns: 10.75rem 1fr;
  column-gap: 1rem;
  align-items: baseline;
}

.hours-day {
  color: var(--ink);
  font-weight: 700;
}

.hours-time {
  font-variant-numeric: tabular-nums;
}

.news > .lead {
  margin-bottom: 0.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(28, 20, 16, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 92, 0, 0.28);
  box-shadow: 0 18px 40px rgba(28, 20, 16, 0.12);
}

.news-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #efe8dc;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.04);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1 1 auto;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin: 0;
  max-width: none;
  transition: color 0.2s ease;
}

.news-card:hover .news-card-title {
  color: var(--cheddar-deep);
}

.news-card-outlet {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--tomato);
  letter-spacing: 0.01em;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 680px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-panel-top {
  flex: 0 0 auto;
}

.contact-panel h2 {
  max-width: none;
  margin-bottom: 0.7rem;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
}

.contact-panel .lead {
  margin: 0 0 1rem;
  max-width: none;
  font-size: 1rem;
}

.fb-page-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
}

.fb-page-actions .btn {
  width: 100%;
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
}

.fb-page-frame {
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f7f4ef;
  position: relative;
}

.fb-page-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  background: #fff;
}

.embed-facade-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 280px;
  border: 0;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(28, 20, 16, 0.04), rgba(28, 20, 16, 0.1)),
    #efe7db;
  color: var(--ink);
  font: inherit;
  text-align: center;
  padding: 1.5rem;
}

.find-us-map .embed-facade-btn {
  min-height: 420px;
  border-radius: 0;
}

.find-us-map.is-embed-loading .embed-facade-btn {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.find-us-map.is-embed-loading iframe {
  opacity: 0;
}

.fb-page-frame .embed-facade-btn {
  min-height: 420px;
}

.fb-page-frame.is-embed-loading .embed-facade-btn {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.fb-page-frame.is-embed-loading iframe {
  opacity: 0;
}

.embed-facade-title {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.25rem;
}

.embed-facade-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.embed-facade-btn:hover {
  background:
    linear-gradient(180deg, rgba(230, 92, 0, 0.08), rgba(28, 20, 16, 0.08)),
    #f4ece0;
}

.contact-visit-line {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-visit-line a {
  color: var(--cheddar-deep);
  font-weight: 600;
}

.contact-panel-form.form-grid {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 0;
}

.contact-message-field {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-message-field textarea {
  flex: 1 1 auto;
  min-height: 180px;
  height: 100%;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(230, 92, 0, 0.35);
  border-color: var(--cheddar);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  min-height: 1.3em;
}

.form-status.ok {
  color: #1f7a3a;
}

.form-status.err {
  color: var(--tomato);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1.25rem 2.5rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.site-footer a:hover {
  color: var(--cheddar-deep);
}

.find-us-nap {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.find-us-nap a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.find-us-nap a:hover {
  color: var(--cheddar-deep);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  max-width: 46rem;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 0.35rem;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.08rem;
  color: var(--ink);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--cheddar-deep);
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0.7rem 0 0.35rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 40rem;
}

.faq-list details a {
  color: var(--cheddar-deep);
  font-weight: 600;
}

.site-footer strong {
  color: var(--ink);
}

@keyframes hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-0.8%, -0.4%, 0); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .site-header {
    backdrop-filter: none;
    background: var(--butter);
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    padding: 1.5rem 0 1.75rem;
  }

  .hero-pair {
    grid-template-columns: 1fr;
    padding: 0.7rem;
  }

  .hero-building {
    min-height: 14rem;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .find-us,
  .split-section,
  .owners-duo,
  .contact {
    grid-template-columns: 1fr;
  }

  .split-media {
    width: min(20rem, 80vw);
    max-width: 100%;
    justify-self: start;
  }

  .split-section-flip .split-copy,
  .split-section-flip .split-media {
    order: unset;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .owners-store {
    text-align: left;
  }

  .owners-credit {
    text-align: left;
  }

  .contact-panel {
    min-height: 0;
  }

  .fb-page-frame iframe {
    min-height: 360px;
  }

  .fb-page-actions {
    grid-template-columns: 1fr;
  }

  .find-us-map iframe {
    height: 300px;
  }

  .hours-list li {
    grid-template-columns: 9.5rem 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links a:not(.btn) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-inner {
    animation: none;
  }
  .hero-review-stack {
    transition: none;
  }
}
