/* Tosty Pasty — cream page + gold accent */
:root {
  color-scheme: light;
  --bg: #fdfbf3;
  --bg-elevated: #fffefb;
  --text: #0a0a0a;
  --text-muted: #4a4a4a;
  --accent: #d9a036;
  --accent-hover: #c48f2a;
  --accent-soft: rgba(217, 160, 54, 0.18);
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 4.25rem;
  --header-scrim: rgba(253, 251, 243, 0.94);
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --nav-drawer-bg: #f2ebe1;
  --nav-drawer-text: #4b3a35;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
  font-family: var(--font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background: var(--header-scrim);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.65rem;
  position: relative;
  overflow: visible;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

@media (min-width: 900px) {
  .site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    overflow: visible;
  }
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background 0.2s ease;
}

.nav-toggle-label:hover {
  background: var(--accent-soft);
}

.nav-toggle-label .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-nav .nav-drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.site-nav a {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.lang-switch button {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.65rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch button:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.lang-switch button.is-active {
  background: var(--accent);
  color: #0a0a0a;
}

.lang-switch button.is-active:hover {
  background: var(--accent-hover);
  color: #0a0a0a;
}

.lang-switch--header.lang-switch--dual button {
  padding: 0.38rem 0.5rem;
  font-size: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 4px 24px rgba(217, 160, 54, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #0a0a0a;
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--text);
  background: var(--bg);
}

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

.btn-ghost:hover {
  background: var(--accent-soft);
  border-color: rgba(0, 0, 0, 0.14);
  color: var(--text);
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.875rem;
}

/* Hero: full-viewport splash, warm yellow wash for text legibility, subtle photo motion */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 0;
  overflow: hidden;
  background-color: var(--bg);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Vignette + top depth — no darkening on the left where text sits */
.hero::before {
  background:
    radial-gradient(ellipse 95% 85% at 50% 115%, rgba(0, 0, 0, 0.18) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 88% 18%, rgba(0, 0, 0, 0.14) 0%, transparent 45%),
    linear-gradient(180deg, rgba(15, 12, 8, 0.18) 0%, rgba(15, 12, 8, 0.05) 28%, transparent 55%);
}

/* Warm yellow-cream “glass” on the left + soft gold bottom for readability */
.hero::after {
  z-index: 2;
  background:
    linear-gradient(
      118deg,
      rgba(255, 248, 225, 0.98) 0%,
      rgba(255, 241, 200, 0.9) 18%,
      rgba(255, 234, 185, 0.55) 36%,
      rgba(255, 228, 170, 0.18) 52%,
      transparent 66%
    ),
    linear-gradient(
      12deg,
      transparent 38%,
      rgba(217, 160, 54, 0.12) 100%
    ),
    radial-gradient(ellipse 95% 55% at 8% 45%, rgba(255, 244, 210, 0.85) 0%, transparent 50%),
    radial-gradient(ellipse 125% 72% at 50% 100%, rgba(255, 230, 175, 0.55) 0%, transparent 50%),
    linear-gradient(
      0deg,
      rgba(255, 246, 220, 0.98) 0%,
      rgba(255, 242, 205, 0.88) 12%,
      rgba(255, 236, 190, 0.45) 32%,
      rgba(255, 230, 175, 0.1) 58%,
      transparent 76%
    );
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  transform-origin: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__media img {
    animation: hero-ken 22s ease-in-out infinite alternate;
  }
}

@keyframes hero-ken {
  0% {
    transform: scale(1.04) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-0.6%, -0.4%);
  }
}

.hero .container {
  position: relative;
  z-index: 3;
  transform: translateY(-20vh);
}

.hero__content {
  max-width: 38rem;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img {
    animation: none;
    transform: scale(1.05);
  }
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(253, 251, 243, 0.6);
}

.hero__highlights {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 1.125rem 1.35rem;
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: rgba(255, 254, 249, 0.94);
  border: 1px solid rgba(217, 160, 54, 0.4);
  border-radius: var(--radius-sm);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__highlights li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 32rem;
  text-shadow: 0 1px 0 rgba(253, 251, 243, 0.5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero__meta strong {
  color: var(--text);
  font-weight: 600;
}

/* Sections */
.section {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.section--tight-top {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section__head--flush {
  margin-bottom: 0;
}

.section__head h2 {
  font-family: var(--font);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.section__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* About */
.about__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about__text {
  font-size: 1.0625rem;
  color: var(--text-muted);
}

/* Menu section — PDF link */
.menu-pdf {
  margin: 0 0 1.5rem;
}

.menu-sheets {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .menu-sheets {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-sheets__item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-elevated);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-sheets__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.menu-sheets__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.menu-sheets__item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Menu cards */
.menu-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.menu-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.menu-card:hover .menu-card__img img {
  transform: scale(1.04);
}

.menu-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.menu-card__body h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.menu-card__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Popular — hits grid and text block */
.section--popular {
  overflow: hidden;
}

.popular-shell {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius);
  border: 1px solid rgba(217, 160, 54, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.98) 0%, rgba(253, 251, 243, 0.92) 45%, rgba(255, 244, 220, 0.35) 100%);
  box-shadow: var(--shadow);
}

.popular-shell__head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.popular-shell__head h2 {
  margin: 0;
}

.popular-trio {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  align-items: stretch;
  grid-template-areas:
    "picks"
    "cta";
}

@media (min-width: 960px) {
  .popular-trio {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
    grid-template-areas: "picks cta";
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: center;
  }
}

.popular-trio__grid-wrap {
  grid-area: picks;
}

.popular-trio__cta {
  grid-area: cta;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 960px) {
  .popular-trio__cta {
    text-align: left;
    padding-left: 0.25rem;
  }
}

.popular-picks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.popular-picks__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem 0.65rem 0.65rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.25;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(1rem);
  will-change: transform, opacity;
}

.popular-picks__item:hover {
  border-color: rgba(217, 160, 54, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.popular-picks__thumb {
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.popular-picks__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-picks__label {
  text-align: left;
}

.popular-trio__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 22rem;
  margin-inline: auto;
}

@media (min-width: 960px) {
  .popular-trio__lead {
    margin-inline: 0;
  }
}

.popular-menu-btn {
  align-self: center;
}

@media (min-width: 960px) {
  .popular-menu-btn {
    align-self: flex-start;
  }
}

@keyframes popular-rise-item {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popular-shell.is-visible .popular-picks__item {
  animation: popular-rise-item 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.popular-shell.is-visible .popular-picks__item:nth-child(1) {
  animation-delay: 0.06s;
}
.popular-shell.is-visible .popular-picks__item:nth-child(2) {
  animation-delay: 0.12s;
}
.popular-shell.is-visible .popular-picks__item:nth-child(3) {
  animation-delay: 0.18s;
}
.popular-shell.is-visible .popular-picks__item:nth-child(4) {
  animation-delay: 0.24s;
}
.popular-shell.is-visible .popular-picks__item:nth-child(5) {
  animation-delay: 0.3s;
}
.popular-shell.is-visible .popular-picks__item:nth-child(6) {
  animation-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .popular-picks__item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Whom */
.whom-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .whom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .whom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .whom-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.whom-card {
  padding: 1.25rem 1.15rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.whom-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 160, 54, 0.5);
}

/* Gallery — column layout, live photos from img */
.section--gallery {
  position: relative;
}

.gallery-shell {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid rgba(217, 160, 54, 0.14);
  background: linear-gradient(165deg, rgba(255, 252, 244, 0.9) 0%, rgba(253, 251, 243, 0.35) 42%, transparent 72%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.gallery-intro {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

@media (min-width: 768px) {
  .gallery-intro {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

.gallery-intro__head h2 {
  position: relative;
  margin: 0;
  padding-bottom: 0.5rem;
}

.gallery-intro__head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.5rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(217, 160, 54, 0.25));
}

.gallery-intro__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.gallery-intro__side p {
  margin: 0;
  max-width: 32rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.gallery-showcase {
  columns: 2;
  column-gap: clamp(0.65rem, 2vw, 1rem);
}

@media (min-width: 640px) {
  .gallery-showcase {
    columns: 3;
  }
}

@media (min-width: 1024px) {
  .gallery-showcase {
    columns: 4;
    column-gap: 1rem;
  }
}

.gallery-tile {
  margin: 0 0 clamp(0.65rem, 2vw, 1rem);
  break-inside: avoid;
  page-break-inside: avoid;
}

.gallery-tile__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--bg-elevated);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.25s ease;
}

.gallery-tile:hover .gallery-tile__inner {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11);
  border-color: rgba(217, 160, 54, 0.35);
  transform: translateY(-3px);
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-tile:hover img {
  transform: scale(1.045);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-tile:hover .gallery-tile__inner,
  .gallery-tile:hover img {
    transform: none;
  }
}

/* Reviews — editorial panel */
.section--reviews {
  position: relative;
  overflow: hidden;
}

.section--reviews::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% -18%, rgba(217, 160, 54, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 38% at 100% 100%, rgba(217, 160, 54, 0.07), transparent 52%);
}

.section--reviews .container {
  position: relative;
  z-index: 1;
}

.reviews-header {
  text-align: center;
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: clamp(1.75rem, 4vw, 2.85rem);
}

.reviews-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.reviews-kicker::after {
  content: "★★★★★";
  display: block;
  margin-top: 0.45rem;
  letter-spacing: 0.32em;
  font-size: 0.58rem;
  opacity: 0.55;
  color: var(--accent);
}

.section__head--reviews {
  margin-bottom: 0;
  max-width: none;
  margin-inline: auto;
}

.section__head--reviews h2 {
  margin-bottom: 0;
}

.reviews-board {
  padding: clamp(1.2rem, 3.2vw, 2rem);
  border-radius: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(217, 160, 54, 0.24);
  background: linear-gradient(
    168deg,
    rgba(255, 254, 251, 0.97) 0%,
    rgba(252, 248, 238, 0.65) 48%,
    rgba(255, 254, 251, 0.92) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 56px -28px rgba(0, 0, 0, 0.14);
}

.reviews-grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.4rem);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  position: relative;
  margin: 0;
  padding: clamp(1.2rem, 2.4vw, 1.55rem) clamp(1.15rem, 2.2vw, 1.45rem) 1.3rem
    clamp(1.15rem, 2.2vw, 1.45rem);
  min-height: 100%;
  background: rgba(255, 254, 251, 0.94);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(0, 0, 0, 0.055);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease,
    border-color 0.28s ease;
  overflow: hidden;
  isolation: isolate;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.55rem;
  right: 0.85rem;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}

.review-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(217, 160, 54, 0.28) 100%);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px -18px rgba(0, 0, 0, 0.11);
  border-color: rgba(217, 160, 54, 0.22);
}

.review-card blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
}

.review-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.64;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.012em;
}

@media (prefers-reduced-motion: reduce) {
  .review-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .review-card:hover {
    transform: none;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.contact-info p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.dl-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.dl-grid dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.dl-grid dd {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.map-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
}

.map-block__caption {
  margin: 0;
  padding: 0.85rem 1rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.embed-map {
  position: relative;
  overflow: hidden;
  background: #e8e4dc;
}

.embed-map__frame {
  display: block;
  width: 100%;
  height: min(52vw, 320px);
  min-height: 220px;
  border: 0;
}

.embed-map__open {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  color: var(--text);
  background: var(--bg);
  border-top: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease;
}

.embed-map__open:hover {
  background: var(--accent-soft);
  color: var(--text);
}

.embed-map--footer .embed-map__frame {
  min-height: 200px;
  height: min(42vw, 240px);
}

@media (min-width: 768px) {
  .embed-map--footer .embed-map__frame {
    height: 220px;
  }
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 768px) {
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
  }

  .faq-aside {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 720px;
}

@media (min-width: 768px) {
  .faq-list {
    max-width: none;
  }
}

.faq-aside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.faq-aside__mark {
  width: min(100%, 280px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.06));
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 1.15rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  color: var(--text);
}

.faq-item__body {
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: #f7f3e8;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.1fr 0.95fr minmax(260px, 360px);
    align-items: start;
  }
}

.footer-brand img {
  display: block;
  height: 42px;
  width: auto;
  margin-bottom: 0.65rem;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 22rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.footer-map {
  width: 100%;
  min-width: 0;
}

.footer-copy {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Mobile nav — slide-out panel on the right */
.nav-drawer-scrim {
  display: none;
}

@media (max-width: 899px) {
  /* Header: disable backdrop-filter so fixed panel is not clipped by ancestor */
  .site-header {
    overflow: visible;
    z-index: 1000;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    overflow: visible;
  }

  .logo,
  .nav-toggle-label,
  .header-actions {
    position: relative;
    z-index: 5600;
  }

  .nav-drawer-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 5400;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
    background: rgba(43, 36, 32, 0.45);
  }

  .nav-toggle:checked ~ .nav-drawer-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .logo {
    margin-right: auto;
  }

  .nav-toggle-label {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(20.5rem, 88vw);
    max-width: 100%;
    margin: 0;
    padding: calc(var(--header-h) + 1.35rem) 1.5rem 1.25rem;
    background: var(--nav-drawer-bg);
    color: var(--nav-drawer-text);
    border: none;
    border-top-left-radius: 2.25rem;
    border-bottom-left-radius: 2.25rem;
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.14);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 5500;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: none;
  }

  .site-nav .nav-drawer-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex: 0 0 auto;
  }

  .site-nav .nav-drawer-list a {
    display: block;
    padding: 0.62rem 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nav-drawer-text);
    border-bottom: none;
    text-decoration: none;
  }

  .site-nav .nav-drawer-list a:hover {
    color: #2e241f;
    opacity: 0.88;
    border-bottom-color: transparent;
  }

  .nav-drawer-divider {
    display: block;
    border: none;
    height: 1px;
    margin: 0.35rem 0 0.75rem;
    background: rgba(75, 58, 53, 0.14);
    flex-shrink: 0;
  }

  .nav-drawer-secondary {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nav-drawer-text);
    padding: 0.25rem 0 0.85rem;
    text-decoration: none;
    border-bottom: none !important;
  }

  .nav-drawer-secondary:hover {
    opacity: 0.82;
  }

  .site-nav .nav-mobile-cta {
    margin-top: 0.15rem;
    margin-bottom: auto;
    display: block;
  }

  .site-nav .nav-mobile-cta .nav-drawer-route {
    width: 100%;
    justify-content: center;
    background: var(--nav-drawer-text) !important;
    color: #fdfbf3 !important;
    border: none !important;
    box-shadow: none !important;
  }

  .site-nav .nav-mobile-cta .nav-drawer-route:hover {
    background: #3d312c !important;
    color: #fdfbf3 !important;
  }

  .nav-drawer-close {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.75rem;
    padding: 0.85rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nav-drawer-text);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
    flex-shrink: 0;
  }

  .nav-drawer-close:hover {
    background: rgba(75, 58, 53, 0.08);
  }

  .nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }

  .nav-toggle:checked ~ .nav-toggle-label .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-toggle-label .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-inner .btn.btn-primary.nav-cta {
    display: none;
  }

  @supports selector(:has(*)) {
    body:has(#nav-toggle:checked) {
      overflow: hidden;
    }
  }
}

@media (min-width: 900px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .site-nav {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    border: none;
    flex: 1;
    justify-content: center;
  }

  .site-nav .nav-drawer-list {
    justify-content: center;
  }

  .nav-drawer-divider,
  .nav-drawer-secondary,
  .nav-drawer-close,
  .nav-drawer-scrim {
    display: none !important;
  }

  .nav-mobile-cta {
    display: none !important;
  }

  .nav-toggle-label {
    display: none;
  }
}

.nav-mobile-cta {
  display: none;
}
