:root {
  --bg: #f7f4ef;
  --paper: #fbf8f2;
  --surface: #fffdf9;
  --ink: #201c18;
  --muted: #6b6259;
  --accent: #8b6a3f;
  --accent-2: #2f4a3f;
  --border: #dfd5c7;
  --gridline: rgba(128, 108, 86, 0.18);
  --shadow: 0 18px 35px rgba(34, 24, 16, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--ink);
  background: linear-gradient(to bottom, var(--paper), var(--bg));
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.988);
  filter: blur(3px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(251, 248, 242, 0.9);
  border-bottom: 1px solid var(--border);
  z-index: 20;
  box-shadow: none;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  letter-spacing: 0.02em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.top-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 450;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.top-nav a:hover {
  border-bottom-color: rgba(139, 106, 63, 0.55);
}

.top-nav a.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  border-radius: 4px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(1px);
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 180ms ease;
}

.menu-toggle::before {
  transform: translate(-50%, -6px);
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.menu-toggle::after {
  opacity: 0;
  transform: translate(-50%, 0);
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, 0) rotate(45deg);
  box-shadow: none;
}

.menu-toggle[aria-expanded="true"]::after {
  opacity: 1;
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

main {
  width: min(1060px, 92vw);
  margin: 0 auto;
  padding: 2rem 0 6rem;
  display: grid;
  gap: clamp(2.4rem, 4.5vw, 4rem);
}

.hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(1.8rem, 4vw, 3.6rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.25rem);
  max-width: 16ch;
  text-wrap: balance;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.62rem, 3vw, 2.7rem);
}

.hero-copy {
  max-width: 52ch;
  color: var(--muted);
  margin-bottom: 1.35rem;
  font-size: clamp(1.02rem, 1.2vw, 1.08rem);
}

.hero-actions,
.footer-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-actions {
  align-items: center;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0 0;
}

.hero-points li {
  background: rgba(31, 122, 95, 0.08);
  border: 1px solid rgba(31, 122, 95, 0.2);
  color: #0f5843;
  border-radius: 4px;
  padding: 0.35rem 0.7rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.section {
  margin-top: 0;
  border-top: 1px solid var(--gridline);
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
}

.section-head {
  margin-bottom: 1.3rem;
  display: grid;
  gap: 0.45rem;
}

.section-head h2 {
  max-width: 18ch;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-grid img:nth-child(1),
.photo-grid img:nth-child(4) {
  grid-column: auto;
}

.panel-image {
  width: 100%;
  min-height: 260px;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: block;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.story-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.8rem;
  background: #fffaf1;
}

.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: block;
  margin-bottom: 0.8rem;
}

.story-card-wide {
  grid-column: 1 / -1;
}

.img-fallback {
  background: repeating-linear-gradient(
    45deg,
    #f2e7d6,
    #f2e7d6 10px,
    #ecdfcb 10px,
    #ecdfcb 20px
  );
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cards .card {
  grid-column: auto;
}

.testimonials .cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials .cards .card,
.testimonials .cards .card:nth-child(4n + 1),
.testimonials .cards .card:nth-child(4n + 2) {
  grid-column: auto;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.feature-list li {
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: left;
  background: rgba(255, 253, 249, 0.8);
  padding: 0.65rem 0.85rem;
  font-weight: 450;
}

.location-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 6px;
  padding: 1.3rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.footer-links-grid a {
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fffdf8;
  padding: 0.65rem 0.7rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.05rem;
  background: var(--surface);
  box-shadow: 0 3px 12px rgba(43, 24, 14, 0.05);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  box-shadow: 0 8px 18px rgba(43, 24, 14, 0.09);
  border-color: #d4c2aa;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 1.8rem);
  align-items: center;
  padding: 0;
}

.split > div {
  background: transparent;
  border: 0;
  padding: 0;
}

.highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.15rem;
  align-self: start;
}

.highlight-box ul {
  padding-left: 1.1rem;
  margin: 0.65rem 0 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

a {
  color: var(--ink);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
  text-underline-offset: 4px;
}

.btn {
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
}

.btn:hover {
  transform: none;
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.92rem;
}

.btn-lg {
  padding: 0.72rem 1.2rem;
}

.btn-solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-solid:hover {
  background: #785832;
  border-color: #785832;
}

.btn-outline {
  border-color: var(--border);
  background: var(--surface);
}

.site-footer {
  width: min(1060px, 92vw);
  margin: 0 auto 4.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: transparent;
  padding-inline: 0;
}

.sticky-order {
  position: fixed;
  left: 50%;
  bottom: 0.95rem;
  transform: translateX(-50%);
  width: min(500px, 92vw);
  text-align: center;
  background: #23352d;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.78rem 1rem;
  box-shadow: 0 12px 26px rgba(14, 27, 23, 0.34);
  font-weight: 700;
}

.home-luxe .home-main {
  width: min(1120px, 92vw);
  display: grid;
  gap: 2.4rem;
}

.home-luxe .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.home-luxe .hero-copy-block,
.home-luxe .hero-details-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(1.2rem, 2.2vw, 2rem);
}

.home-luxe .hero-copy-block {
  border-top: 3px solid var(--accent);
}

.home-luxe .hero-copy-block h1 {
  margin-bottom: 0.9rem;
}

.home-luxe .hero-details-block {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.home-luxe .hero-note {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
  color: var(--accent);
}

.home-luxe .hero-details-block h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.home-luxe .hero-details-block p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.home-luxe .signature-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 0.85rem;
}

.home-luxe .signature-intro,
.home-luxe .dish-tile {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 4px;
  padding: 0.95rem;
}

.home-luxe .signature-intro {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.home-luxe .signature-intro p {
  margin: 0;
  color: var(--muted);
}

.home-luxe .dish-tile {
  display: grid;
  gap: 0.62rem;
}

.home-luxe .dish-tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.home-luxe .dish-tile h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
}

.home-luxe .dish-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-luxe .story-band {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.home-luxe .story-band > div {
  padding: clamp(1.2rem, 2.3vw, 2rem);
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.home-luxe .story-band p {
  margin: 0;
  color: var(--muted);
}

.home-luxe .story-band .panel-image {
  border: 0;
  border-left: 1px solid var(--border);
  border-radius: 0;
  min-height: 100%;
}

.home-luxe .gallery-rows {
  display: grid;
  gap: 1rem;
}

.home-luxe .gallery-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-luxe .gallery-layout img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.home-luxe .gallery-layout img:nth-child(1) {
  grid-column: span 6;
  height: 280px;
}

.home-luxe .gallery-layout img:nth-child(2) {
  grid-column: span 3;
}

.home-luxe .gallery-layout img:nth-child(3) {
  grid-column: span 3;
}

.home-luxe .gallery-layout img:nth-child(4) {
  grid-column: span 12;
  height: 320px;
}

.home-luxe .service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-luxe .service-columns article {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 4px;
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.home-luxe .service-columns p {
  margin: 0;
  color: var(--muted);
}

.home-luxe .service-columns h3 {
  font-family: "Fraunces", serif;
  margin: 0;
  font-size: 1.3rem;
}

.home-luxe .quote-strip {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-luxe .quote-strip blockquote {
  margin: 0;
  padding: 0.7rem;
  border-left: 2px solid rgba(139, 106, 63, 0.45);
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.home-luxe .quote-strip cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 940px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.05rem;
  }

  .top-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-self: center;
  }

  .mobile-menu {
    display: grid;
    gap: 0.45rem;
    padding: 0 1rem;
    border: 1px solid rgba(215, 199, 177, 0.85);
    border-radius: 6px;
    background: rgba(251, 248, 242, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    left: 0.7rem;
    right: 0.7rem;
    top: var(--mobile-menu-top, 62px);
    z-index: 60;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(30, 27, 24, 0.12);
    transition:
      max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      padding 300ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 300ms ease;
  }

  .mobile-menu.is-open {
    max-height: 72vh;
    opacity: 1;
    transform: translateY(1px);
    padding: 0.6rem 1rem 1rem;
    border-color: rgba(215, 199, 177, 0.85);
    overflow-y: auto;
  }

  .mobile-menu a {
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      border-bottom-color 220ms ease;
  }

  .mobile-menu.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu.is-open a:nth-child(1) { transition-delay: 40ms; }
  .mobile-menu.is-open a:nth-child(2) { transition-delay: 70ms; }
  .mobile-menu.is-open a:nth-child(3) { transition-delay: 100ms; }
  .mobile-menu.is-open a:nth-child(4) { transition-delay: 130ms; }
  .mobile-menu.is-open a:nth-child(5) { transition-delay: 160ms; }
  .mobile-menu.is-open a:nth-child(6) { transition-delay: 190ms; }
  .mobile-menu.is-open a:nth-child(7) { transition-delay: 220ms; }

  .mobile-menu a {
    text-decoration: none;
    color: var(--ink);
    padding: 0.65rem 0.2rem;
    border-bottom: 1px solid rgba(215, 199, 177, 0.45);
  }

  .mobile-menu a.active {
    color: var(--accent);
  }

  main {
    width: min(1120px, 94vw);
    padding: 1rem 0 7rem;
  }

  .hero {
    border-radius: 6px;
    padding: 1.2rem;
  }

  .hero::after {
    content: none;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.9rem);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions,
  .footer-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .footer-actions .btn,
  .location-panel .hero-actions .btn {
    width: 100%;
    min-height: 44px;
  }

  .cards,
  .photo-grid,
  .story-grid,
  .split,
  .feature-list,
  .footer-links-grid,
  .visit-grid,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .photo-grid img:nth-child(1),
  .photo-grid img:nth-child(4) {
    grid-column: auto;
  }

  .cards .card,
  .cards .card:nth-child(4n + 1),
  .cards .card:nth-child(4n + 2) {
    grid-column: auto;
  }

  .testimonials .cards {
    grid-template-columns: 1fr;
  }

  .photo-grid img {
    height: 190px;
  }

  .story-card img {
    height: 190px;
  }

  .panel-image {
    min-height: 220px;
  }

  .site-footer {
    gap: 0.75rem;
    margin-bottom: calc(5.8rem + env(safe-area-inset-bottom));
  }

  .feature-list li {
    text-align: left;
    border-radius: 4px;
    padding: 0.6rem 0.7rem;
  }

  .sticky-order {
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
    transform: none;
    bottom: calc(0.65rem + env(safe-area-inset-bottom));
    padding: 0.9rem 1rem;
    min-height: 48px;
  }

  .home-luxe .home-main {
    width: min(1120px, 94vw);
    gap: 1.4rem;
  }

  .home-luxe .hero-layout,
  .home-luxe .signature-grid,
  .home-luxe .story-band,
  .home-luxe .service-columns,
  .home-luxe .quote-strip {
    grid-template-columns: 1fr;
  }

  .home-luxe .gallery-layout {
    grid-template-columns: 1fr;
  }

  .home-luxe .gallery-layout img,
  .home-luxe .gallery-layout img:nth-child(1),
  .home-luxe .gallery-layout img:nth-child(2),
  .home-luxe .gallery-layout img:nth-child(3),
  .home-luxe .gallery-layout img:nth-child(4) {
    grid-column: auto;
    height: 210px;
  }

  .home-luxe .story-band .panel-image {
    border-left: 0;
    border-top: 1px solid var(--border);
    min-height: 240px;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 0.98rem;
  }

  .btn-sm,
  .btn-lg {
    font-size: 0.95rem;
  }

  .sticky-order {
    font-size: 0.95rem;
  }
}

@media (min-width: 941px) {
  .sticky-order {
    display: none;
  }
}

/* Home redesign inspired by high-end restaurant presentation */
.home-luxe {
  background: #f3efe7;
}

.home-luxe .announce-bar {
  background: #171411;
  color: #f0e7d9;
  min-height: 38px;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-luxe .announce-bar p {
  margin: 0;
}

.home-luxe .announce-link {
  color: #f7d8a6;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 216, 166, 0.55);
}

.home-luxe .site-header {
  background: #201a15;
  border-bottom: 1px solid rgba(255, 240, 214, 0.14);
}

.home-luxe .logo-mark {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.home-luxe .top-nav a {
  color: #efe7da;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.78rem;
  font-weight: 500;
  border-bottom: 0;
}

.home-luxe .top-nav a.active {
  color: #f7d8a6;
}

.home-luxe .top-nav a:hover {
  color: #f7d8a6;
}

.home-luxe .menu-toggle {
  border-color: rgba(239, 231, 218, 0.35);
  background: transparent;
  color: #efe7da;
}

.home-luxe .home-main {
  width: min(1180px, 94vw);
  gap: 3rem;
}

.home-luxe .hero-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0;
  background: #1b1713;
  border: 1px solid #2f2821;
}

.home-luxe .hero-copy-block,
.home-luxe .hero-details-block {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-luxe .hero-copy-block {
  border-top: 0;
  padding: clamp(1.3rem, 2.8vw, 2.6rem);
}

.home-luxe .hero-copy-block .eyebrow {
  color: #f0d5a8;
}

.home-luxe .hero-copy-block h1 {
  color: #f8f2e8;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 0.98;
  max-width: 12ch;
}

.home-luxe .hero-copy-block .hero-copy {
  color: #d9cec0;
  max-width: 40ch;
}

.home-luxe .hero-details-block {
  padding: 0;
  display: grid;
  grid-template-rows: minmax(380px, 1fr) auto;
  border-left: 1px solid #2f2821;
}

.home-luxe .hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.home-luxe .hero-facts {
  padding: 0.95rem 1rem;
  background: #15110e;
  border-top: 1px solid #2f2821;
}

.home-luxe .hero-note {
  color: #c9a26a;
}

.home-luxe .hero-facts h2 {
  color: #f4ebdd;
  font-size: 1.2rem;
}

.home-luxe .hero-facts p {
  color: #cfc3b4;
}

.home-luxe .hero-facts .text-link {
  color: #f0d5a8;
}

.home-luxe .btn {
  border-radius: 0;
}

.home-luxe .btn-solid {
  background: #d2a167;
  border-color: #d2a167;
  color: #1d1712;
}

.home-luxe .btn-solid:hover {
  background: #c39056;
  border-color: #c39056;
}

.home-luxe .btn-outline {
  background: transparent;
  border-color: rgba(240, 213, 168, 0.58);
  color: #f0d5a8;
}

.home-luxe .signature-grid,
.home-luxe .story-band,
.home-luxe .service-columns,
.home-luxe .quote-strip {
  border-radius: 0;
}

.home-luxe .dish-tile,
.home-luxe .signature-intro,
.home-luxe .service-columns article {
  border-radius: 0;
}

.home-luxe .gallery-layout img,
.home-luxe .dish-tile img,
.home-luxe .panel-image {
  border-radius: 0;
}

.home-luxe .quote-strip {
  background: #efe8dc;
}

@media (max-width: 940px) {
  .home-luxe .announce-bar {
    justify-content: space-between;
    text-transform: none;
    letter-spacing: 0;
  }

  .home-luxe .hero-layout {
    grid-template-columns: 1fr;
  }

  .home-luxe .hero-details-block {
    border-left: 0;
    border-top: 1px solid #2f2821;
    grid-template-rows: minmax(260px, 1fr) auto;
  }

  .home-luxe .top-nav a {
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
  }
}

/* Girl-and-the-Goat-inspired full UI system for Relish home */
.gtg-home {
  background: #333333;
  color: #ffffff;
  font-family: "Fraunces", serif;
}

.gtg-home .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #333333;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 84px;
}

.gtg-home .logo {
  display: none;
}

.gtg-home .top-nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
}

.gtg-home .nav-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 0;
  width: 100%;
}

.gtg-home .nav-logo-link {
  display: inline-flex;
  justify-content: center;
}

.gtg-home .logo-mark {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.gtg-home .top-nav a {
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 0.45rem 0.5rem;
  text-align: center;
  width: 100%;
}

.gtg-home .top-nav a:hover {
  color: #a76435;
}

.gtg-home .menu-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.gtg-home .mobile-menu {
  background: #222222;
}

.gtg-home .mobile-menu a {
  color: #f4f1ec;
}

.gtg-home .gtg-main {
  width: 100%;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.gtg-home .section {
  margin: 0;
  border-top: 0;
  padding-top: 0;
}

.gtg-home .gtg-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.gtg-home .hero-slide-track {
  position: absolute;
  inset: 0;
}

.gtg-home .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: gtgFade 15s infinite;
}

.gtg-home .hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.gtg-home .hero-slide:nth-child(2) {
  animation-delay: 5s;
}

.gtg-home .hero-slide:nth-child(3) {
  animation-delay: 10s;
}

@keyframes gtgFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  30% { opacity: 1; }
  38% { opacity: 0; }
  100% { opacity: 0; }
}

.gtg-home .gtg-hero-content {
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  padding: clamp(1rem, 3vw, 2.4rem) clamp(1rem, 4vw, 3.6rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.gtg-home .gtg-hero-content .eyebrow {
  color: #ffffff;
  opacity: 0.92;
}

.gtg-home .gtg-hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  line-height: 1;
  color: #ffffff;
}

.gtg-home .gtg-hero-content p {
  margin: 0.7rem 0 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.06rem;
  max-width: 50ch;
  color: #f1ece3;
}

.gtg-home .gtg-info {
  background: #333333;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 6vw, 7rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 3rem);
}

.gtg-home .gtg-info article {
  text-align: center;
}

.gtg-home .gtg-info .eyebrow,
.gtg-home .gtg-about .eyebrow,
.gtg-home .gtg-happenings .eyebrow,
.gtg-home .gtg-feature .eyebrow,
.gtg-home .gtg-newsletter .eyebrow {
  color: #ffffff;
  letter-spacing: 0.05em;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.45rem;
  text-transform: lowercase;
}

.gtg-home .gtg-info h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin: 0.6rem 0;
  font-weight: 500;
}

.gtg-home .gtg-info p,
.gtg-home .gtg-info a {
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  text-decoration: none;
}

.gtg-home .gtg-about {
  background: #333333;
  padding: clamp(2rem, 7vw, 5rem) clamp(1rem, 6vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.gtg-home .gtg-about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.gtg-home .gtg-about-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gtg-home .gtg-about-copy h2,
.gtg-home .gtg-happenings h2,
.gtg-home .gtg-reserve h2,
.gtg-home .gtg-feature h2,
.gtg-home .gtg-newsletter h2 {
  color: #ffffff;
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.gtg-home .gtg-about-copy p,
.gtg-home .gtg-row-copy p,
.gtg-home .gtg-feature p,
.gtg-home .gtg-newsletter p {
  color: #f4eee4;
  font-family: "Bricolage Grotesque", sans-serif;
}

.gtg-home .gtg-reserve {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.gtg-home .gtg-reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38));
  z-index: 1;
}

.gtg-home .gtg-reserve-bg {
  position: absolute;
  inset: -42% 0;
  background-image: url("https://relishthaicuisine.com/pluto-images/funnel/images/56650e31-7225-4302-b809-4a148435a6b7?w=1800&fit=cover");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.22);
  will-change: transform;
  backface-visibility: hidden;
  contain: paint;
  z-index: 0;
}

.gtg-home .gtg-reserve-inner {
  position: relative;
  z-index: 2;
}

.gtg-home .gtg-happenings {
  background: #333333;
  padding: clamp(2rem, 7vw, 5rem) clamp(1rem, 6vw, 7rem);
  display: grid;
  gap: 1.4rem;
}

.gtg-home .gtg-happenings .section-head {
  margin-bottom: 0;
}

.gtg-home .gtg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.gtg-home .gtg-row img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.gtg-home .gtg-row-copy h3 {
  margin: 0 0 0.5rem;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.gtg-home .gtg-feature {
  background: #333333;
  padding: clamp(2rem, 7vw, 5rem) clamp(1rem, 6vw, 7rem);
  display: grid;
  gap: 1.2rem;
}

.gtg-home .quote-strip.section {
  background: #333333;
  border: 0;
  padding: clamp(1rem, 4vw, 2rem) clamp(1rem, 6vw, 7rem) clamp(2rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gtg-home .quote-strip.section blockquote {
  border: 0;
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
}

.gtg-home .quote-strip.section cite {
  color: #d9c8b3;
}

.gtg-home .gtg-newsletter {
  background: #333333;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1rem clamp(3rem, 8vw, 5rem);
}

.gtg-home .btn {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Bricolage Grotesque", sans-serif;
  border: 0;
}

.gtg-home .btn-solid {
  background: #a76435;
  color: #ffffff;
}

.gtg-home .btn-solid:hover {
  background: #91552b;
}

.gtg-home .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.gtg-home .site-footer.gtg-footer {
  width: 100%;
  margin: 0;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 5vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #333333;
  display: grid;
  gap: 1rem;
}

.gtg-home .gtg-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gtg-home .footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.gtg-home .footer-actions a,
.gtg-home .footer-note {
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  text-decoration: none;
}

@media (max-width: 940px) {
  .gtg-home .top-nav {
    display: none;
  }

  .gtg-home .logo {
    display: inline-flex;
  }

  .gtg-home .logo-mark {
    height: 42px;
  }

  .gtg-home .gtg-info,
  .gtg-home .gtg-about,
  .gtg-home .gtg-row,
  .gtg-home .quote-strip.section {
    grid-template-columns: 1fr;
  }

  .gtg-home .gtg-about-gallery img,
  .gtg-home .gtg-row img {
    height: 240px;
  }

  .gtg-home .gtg-footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-luxe .goat-main {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 1.2rem 0 6rem;
  display: grid;
  gap: 2.1rem;
}

.home-luxe .goat-hero {
  position: relative;
  min-height: min(74vh, 760px);
  overflow: hidden;
  border: 1px solid #2f2821;
}

.home-luxe .goat-hero-image {
  width: 100%;
  height: 100%;
  min-height: min(74vh, 760px);
  object-fit: cover;
  display: block;
}

.home-luxe .goat-hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1rem, 3.4vw, 2.6rem);
  background: linear-gradient(to top, rgba(15, 11, 8, 0.9), rgba(15, 11, 8, 0.18) 62%, rgba(15, 11, 8, 0));
  color: #f8f2e8;
}

.home-luxe .goat-hero-overlay .eyebrow {
  color: #f0d5a8;
}

.home-luxe .goat-hero-overlay h1 {
  color: #fff6e8;
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(2.3rem, 6vw, 5.6rem);
  line-height: 0.94;
  max-width: 12ch;
}

.home-luxe .goat-hero-overlay p {
  margin: 0 0 1rem;
  max-width: 52ch;
  color: #e8dbca;
}

.home-luxe .goat-info-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
  background: var(--surface);
}

.home-luxe .goat-info-rail article {
  padding: 1rem;
  border-right: 1px solid var(--border);
}

.home-luxe .goat-info-rail article:last-child {
  border-right: 0;
}

.home-luxe .goat-info-rail h3 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1.1rem;
  font-family: "Fraunces", serif;
}

.home-luxe .goat-info-rail p {
  margin: 0;
  color: var(--muted);
}

.gtg-menu-page .gtg-main {
  background: #333333;
}

.gtg-menu-page .menu-hero {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 8vw, 6rem) clamp(2rem, 6vw, 3rem);
  background: #333333;
}

.gtg-menu-page .menu-hero-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.gtg-menu-page .menu-hero h1 {
  margin: 0;
  color: #ffffff;
  text-transform: lowercase;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.gtg-menu-page .menu-collage {
  width: min(980px, 100%);
  margin-top: clamp(2rem, 6vw, 4rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.gtg-menu-page .menu-catalog-wrap {
  background: #ffffff;
  color: #252525;
  padding: 0 0 clamp(2rem, 5vw, 4rem);
}

.gtg-menu-page .menu-catalog-nav {
  position: sticky;
  top: 72px;
  z-index: 8;
  display: flex;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 5vw, 3rem);
  border-bottom: 1px solid #e4e4e4;
  background: #ffffff;
}

.gtg-menu-page .menu-catalog-nav a {
  text-decoration: none;
  color: #252525;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.95rem;
}

.gtg-menu-page .menu-catalog-section {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding-top: 1.6rem;
}

.gtg-menu-page .menu-catalog-section h2 {
  color: #252525;
  text-transform: none;
  margin: 0 0 0.9rem;
}

.gtg-menu-page .menu-catalog-section h3 {
  margin: 1.5rem 0 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e7e7e7;
  color: #252525;
}

.gtg-menu-page .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gtg-menu-page .menu-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #f1f1f1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
}

.gtg-menu-page .menu-list .item {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  color: #1f1f1f;
}

.gtg-menu-page .menu-list .price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.92rem;
  color: #333333;
}

.gtg-menu-page .menu-list p {
  grid-column: 1 / -1;
  margin: 0;
  color: #5b5b5b;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.92rem;
}

.gtg-menu-page .menu-widget-shell {
  background-color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
}

.gtg-menu-page .menu-widget-inner {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gtg-menu-page .menu-widget-title {
  color: #ffffff;
  text-align: center;
  margin: 0 auto 80px;
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  text-transform: lowercase;
}

.gtg-menu-page .menu-widget-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  place-items: center;
}

.gtg-menu-page .menu-widget-tab {
  background-color: #757263;
  color: #ffffff;
  text-decoration: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.5px;
  min-height: 48px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  text-transform: lowercase;
  transition: background-color 0.4s;
}

.gtg-menu-page .menu-widget-tab.is-active {
  background-color: #a76435;
}

.gtg-menu-page .menu-widget-frame-wrap {
  width: 80%;
  max-width: 1800px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gtg-menu-page .menu-widget-frame-inner {
  width: 100%;
}

.gtg-menu-page .menu-local-data {
  color: #ffffff;
}

.gtg-menu-page .menu-local-group {
  margin: 0 0 2.5rem;
  scroll-margin-top: 120px;
}

.gtg-menu-page {
  scroll-behavior: smooth;
}

.gtg-menu-page .menu-local-group h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #ffffff;
}

.gtg-menu-page .menu-local-group h4 {
  margin: 1.2rem 0 0.5rem;
  color: #d8c1a7;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gtg-menu-page .menu-local-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gtg-menu-page .menu-local-group li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.56rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Bricolage Grotesque", sans-serif;
}

.gtg-menu-page .menu-local-group li span {
  color: #ffffff;
}

.gtg-menu-page .menu-local-group li strong {
  color: #e8d6c1;
  font-weight: 600;
}

.gtg-menu-page .menu-bottom-action {
  width: 100%;
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.gtg-menu-page .menu-order-now {
  background: #a76435;
  color: #ffffff;
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  line-height: 16px;
  min-height: 48px;
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.gtg-menu-page .menu-order-now:hover {
  background: #91552b;
}

.gtg-hiring-page .hiring-form-wrap {
  width: min(760px, 100%);
  margin: 0 auto;
  background: #2d2d2d;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.gtg-hiring-page .hiring-form {
  display: grid;
  gap: 0.7rem;
}

.gtg-hiring-page .hiring-form label {
  color: #d9c8b3;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.95rem;
}

.gtg-hiring-page .hiring-form input,
.gtg-hiring-page .hiring-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: #1f1f1f;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  padding: 0.78rem 0.85rem;
}

.gtg-hiring-page .hiring-form input::placeholder,
.gtg-hiring-page .hiring-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.gtg-hiring-page .hiring-form input[type="file"] {
  padding: 0.5rem 0;
  background: transparent;
  border: 0;
}

.gtg-hiring-page .hiring-note {
  margin: 0.1rem 0 0.4rem;
  color: #d9c8b3;
  font-size: 0.9rem;
  font-family: "Bricolage Grotesque", sans-serif;
}

.gtg-hiring-page .hiring-status {
  min-height: 1.25rem;
  margin: 0;
  color: #f6e4ce;
  font-family: "Bricolage Grotesque", sans-serif;
}

.gtg-hiring-page .hiring-status.is-error {
  color: #ffbdbd;
}

.gtg-hiring-page .hiring-status.is-success {
  color: #ccebc9;
}

.gtg-menu-page .menu-collage img:first-child {
  width: 62%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gtg-menu-page .menu-collage img:last-child {
  width: 40%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-left: -4%;
  margin-bottom: 8%;
}

.gtg-menu-page .menu-explore {
  background: #333333;
  padding: clamp(2rem, 7vw, 4.5rem) clamp(1rem, 8vw, 6rem);
  text-align: center;
}

.gtg-menu-page .menu-explore h2 {
  margin: 0 0 2rem;
  color: #ffffff;
  text-transform: lowercase;
}

.gtg-menu-page .menu-tab-row {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gtg-menu-page .menu-tab {
  text-decoration: none;
  text-transform: lowercase;
  padding: 0.8rem 1.8rem;
  min-width: 150px;
  background: #757263;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif;
}

.gtg-menu-page .menu-tab.is-active {
  background: #a76435;
}

.gtg-menu-page .menu-grid {
  margin: 2rem auto 0;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gtg-menu-page .menu-block {
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 1.2rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
}

.gtg-menu-page .menu-block h3 {
  margin: 0 0 0.45rem;
  color: #ffffff;
}

.gtg-menu-page .menu-block p {
  margin: 0;
  color: #f1ece3;
  font-family: "Bricolage Grotesque", sans-serif;
}

.gtg-menu-page .menu-actions {
  margin-top: 1.6rem;
  text-align: center;
}

.gtg-menu-page .menu-reserve {
  min-height: 360px;
  display: grid;
  gap: 1rem;
  place-content: center;
  text-align: center;
  padding: 2rem 1rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://relishthaicuisine.com/pluto-images/funnel/images/56650e31-7225-4302-b809-4a148435a6b7?w=1800&fit=cover") center 40% / cover no-repeat;
}

.gtg-menu-page .menu-reserve h2 {
  margin: 0;
  color: #ffffff;
  text-transform: lowercase;
}

@media (max-width: 900px) {
  .gtg-menu-page .menu-widget-inner {
    padding: 0 16px;
  }

  .gtg-menu-page .menu-widget-tabs {
    grid-template-columns: 1fr;
  }

  .gtg-menu-page .menu-widget-tab {
    max-width: 100%;
  }

  .gtg-menu-page .menu-widget-frame-wrap {
    width: 94%;
  }

  .gtg-menu-page .menu-catalog-nav {
    top: 64px;
    overflow-x: auto;
  }

  .gtg-menu-page .menu-grid {
    grid-template-columns: 1fr;
  }

  .gtg-menu-page .menu-collage {
    flex-direction: column;
    align-items: center;
  }

  .gtg-menu-page .menu-collage img:first-child,
  .gtg-menu-page .menu-collage img:last-child {
    width: 100%;
    margin: 0;
  }

  .gtg-menu-page .menu-collage img:last-child {
    margin-top: 0.7rem;
  }
}

.home-luxe .goat-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}

.home-luxe .goat-story-text {
  padding: clamp(1rem, 2.6vw, 2rem);
}

.home-luxe .goat-story-text p {
  color: var(--muted);
}

.home-luxe .goat-story-image-wrap {
  border-left: 1px solid var(--border);
}

.home-luxe .goat-story-image-wrap .panel-image {
  min-height: 100%;
  border: 0;
}

.home-luxe .goat-happenings .section-head {
  margin-bottom: 0.85rem;
}

.home-luxe .goat-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-luxe .goat-card {
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.home-luxe .goat-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-right: 1px solid var(--border);
}

.home-luxe .goat-card > div {
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.home-luxe .goat-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
}

.home-luxe .goat-card p {
  margin: 0;
  color: var(--muted);
}

.home-luxe .goat-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid var(--border);
  background: var(--surface);
}

.home-luxe .goat-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-right: 1px solid var(--border);
}

.home-luxe .goat-feature > div {
  padding: clamp(1rem, 2.5vw, 2rem);
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.home-luxe .goat-feature > div p {
  margin: 0;
  color: var(--muted);
}

.home-luxe .quote-strip.section {
  border: 1px solid var(--border);
  background: #efe8dc;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-luxe .quote-strip.section blockquote {
  margin: 0;
  padding: 1rem;
  border-right: 1px solid rgba(128, 108, 86, 0.22);
  font-size: 0.97rem;
  line-height: 1.6;
  color: #4b3e33;
}

.home-luxe .quote-strip.section blockquote:last-child {
  border-right: 0;
}

.home-luxe .quote-strip.section cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-weight: 600;
  color: #2f241c;
}

@media (max-width: 940px) {
  .home-luxe .goat-main {
    width: min(1200px, 95vw);
    gap: 1.3rem;
    padding-top: 0.8rem;
  }

  .home-luxe .goat-hero,
  .home-luxe .goat-hero-image {
    min-height: 66vh;
  }

  .home-luxe .goat-info-rail,
  .home-luxe .goat-story,
  .home-luxe .goat-cards,
  .home-luxe .goat-card,
  .home-luxe .goat-feature,
  .home-luxe .quote-strip.section {
    grid-template-columns: 1fr;
  }

  .home-luxe .goat-info-rail article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .home-luxe .goat-info-rail article:last-child {
    border-bottom: 0;
  }

  .home-luxe .goat-story-image-wrap,
  .home-luxe .goat-feature img,
  .home-luxe .goat-card img {
    border: 0;
    min-height: 220px;
  }

  .home-luxe .quote-strip.section blockquote {
    border-right: 0;
    border-bottom: 1px solid rgba(128, 108, 86, 0.22);
  }

  .home-luxe .quote-strip.section blockquote:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.65rem 0.85rem;
    min-height: 72px;
  }

  .menu-toggle {
    min-height: 44px;
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .mobile-menu {
    left: 0.55rem;
    right: 0.55rem;
    border-radius: 10px;
  }

  .mobile-menu.is-open {
    max-height: calc(100vh - var(--mobile-menu-top, 62px) - 12px);
    padding: 0.6rem 0.9rem 0.9rem;
  }

  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.72rem 0.2rem;
  }

  .btn,
  .btn-sm,
  .btn-lg {
    min-height: 44px;
  }

  .gtg-home .gtg-hero {
    min-height: min(82svh, 560px);
  }

  .gtg-home .gtg-hero-content {
    padding: 1.1rem 1rem 1.25rem;
  }

  .gtg-home .gtg-hero-content h1 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
    line-height: 1.02;
  }

  .gtg-home .gtg-hero-content p {
    margin-top: 0.6rem;
    font-size: 0.98rem;
    max-width: 36ch;
  }

  .gtg-home .gtg-info,
  .gtg-home .gtg-about,
  .gtg-home .gtg-happenings,
  .gtg-home .gtg-feature {
    padding: 2rem 1rem;
    gap: 1.1rem;
  }

  .gtg-home .gtg-newsletter {
    padding: 2rem 1rem 3rem;
  }

  .gtg-home .quote-strip.section {
    padding: 1.2rem 1rem 2.2rem;
    gap: 0.75rem;
  }

  .gtg-home .gtg-info .eyebrow,
  .gtg-home .gtg-about .eyebrow,
  .gtg-home .gtg-happenings .eyebrow,
  .gtg-home .gtg-feature .eyebrow,
  .gtg-home .gtg-newsletter .eyebrow {
    font-size: clamp(0.95rem, 4.7vw, 1.18rem);
    line-height: 1.25;
  }

  .gtg-home .gtg-info h3 {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
    margin: 0.45rem 0;
  }

  .gtg-home .gtg-about-copy h2,
  .gtg-home .gtg-happenings h2,
  .gtg-home .gtg-reserve h2,
  .gtg-home .gtg-feature h2,
  .gtg-home .gtg-newsletter h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    margin: 0.35rem 0 0.7rem;
  }

  .gtg-home .gtg-row img,
  .gtg-home .gtg-about-gallery img {
    height: clamp(190px, 54vw, 250px);
  }

  .gtg-menu-page .menu-widget-shell {
    padding: 34px 0 46px;
  }

  .gtg-menu-page .menu-widget-inner {
    padding: 0 14px;
  }

  .gtg-menu-page .menu-widget-title {
    margin: 0 auto 28px;
    font-size: clamp(1.7rem, 8vw, 2.05rem);
    line-height: 1.15;
  }

  .gtg-menu-page .menu-widget-tabs {
    gap: 10px;
  }

  .gtg-menu-page .menu-widget-tab {
    max-width: 100%;
    min-height: 48px;
    font-size: 0.95rem;
    line-height: 1.2;
    padding: 0.72rem 1rem;
  }

  .gtg-menu-page .menu-widget-frame-wrap {
    width: 100%;
    margin-top: 30px;
    padding: 0 14px;
  }

  .gtg-menu-page .menu-local-group {
    margin: 0 0 1.9rem;
  }

  .gtg-menu-page .menu-local-group li {
    align-items: flex-start;
    gap: 0.65rem;
  }

  .gtg-menu-page .menu-local-group li span {
    flex: 1;
    min-width: 0;
  }

  .gtg-menu-page .menu-local-group li strong {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .gtg-menu-page .menu-bottom-action {
    width: 100%;
    margin-top: 1.4rem;
    padding: 0 14px;
  }

  .gtg-menu-page .menu-order-now {
    width: 100%;
    min-height: 56px;
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 24px rgba(116, 65, 30, 0.36);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  .gtg-menu-page .menu-order-now:hover,
  .gtg-menu-page .menu-order-now:focus-visible {
    background: #8f542c;
    box-shadow: 0 12px 28px rgba(116, 65, 30, 0.4);
  }

  .gtg-menu-page .menu-order-now:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }

  .gtg-menu-page .menu-order-now:active {
    background: #7f4a28;
    transform: translateY(1px) scale(0.99);
  }

  .gtg-menu-page .sticky-order {
    border-radius: 14px;
    min-height: 54px;
    background: #a76435;
    box-shadow: 0 14px 30px rgba(116, 65, 30, 0.42);
    font-size: 0.98rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }

  .gtg-menu-page .sticky-order:hover,
  .gtg-menu-page .sticky-order:focus-visible {
    background: #8f542c;
  }

  .gtg-menu-page .sticky-order:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }

  .gtg-menu-page .sticky-order:active {
    background: #7f4a28;
  }
}
