:root {
  --bg: #2a1d16;
  --bg-soft: #5c4332;
  --surface: rgba(255, 250, 244, 0.88);
  --surface-strong: rgba(255, 250, 244, 0.96);
  --surface-muted: rgba(246, 234, 216, 0.7);
  --card-dark: rgba(34, 23, 16, 0.76);
  --text: #2d2119;
  --text-soft: #725d50;
  --line: rgba(45, 33, 25, 0.12);
  --line-strong: rgba(185, 120, 61, 0.26);
  --accent: #d2ab7b;
  --accent-strong: #c98f52;
  --accent-deep: #8f5a32;
  --pink: #cda58b;
  --pink-soft: #f5e6dc;
  --mint: #d8dfc3;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(55, 34, 20, 0.14);
  --shadow-soft: 0 14px 32px rgba(55, 34, 20, 0.1);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, 92vw);
  --font-display: "Chonburi", serif;
  --font-body: "IBM Plex Sans Thai", system-ui, sans-serif;
  --font-accent: "Space Grotesk", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(205, 165, 139, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(216, 223, 195, 0.18), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(210, 171, 123, 0.14), transparent 22%),
    linear-gradient(180deg, #fff8f0 0%, #f8efe3 38%, #fffdf9 100%);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

section[id] {
  scroll-margin-top: 100px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.announcement-bar {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(42, 29, 22, 0.98), rgba(117, 77, 43, 0.95), rgba(112, 124, 83, 0.92));
}

.announcement-track {
  display: flex;
  gap: 2.5rem;
  min-width: max-content;
  padding: 0.82rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

.announcement-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-40%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 239, 0.82);
  border-bottom: 1px solid rgba(45, 33, 25, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 248, 239, 0.95);
  box-shadow: 0 10px 34px rgba(42, 29, 22, 0.08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand img {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), #8d9a66);
  transition: width 0.2s ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-cta {
  padding: 0.86rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7f4d29, #b77a43);
  color: var(--white) !important;
  box-shadow: 0 14px 28px rgba(143, 90, 50, 0.24);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(45, 33, 25, 0.1);
  background: rgba(255, 250, 244, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.concept,
.menu-section,
.pairing-section,
.article-section,
.gallery-section,
.review-section,
.faq-section,
.contact-section {
  position: relative;
  padding: 5.6rem 0;
}

.hero {
  padding-top: 4.6rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1,
.section-head h2,
.concept-panel h2,
.article-head h2,
.contact-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.22;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 4.9vw, 4.7rem);
  max-width: 14ch;
}

.hero-lead {
  max-width: 62ch;
  margin: 1.4rem 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.btn {
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #7f4d29, #b77a43);
  box-shadow: 0 16px 30px rgba(143, 90, 50, 0.22);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 249, 241, 0.94);
  border: 1px solid rgba(45, 33, 25, 0.08);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-point {
  padding: 1.15rem 1.1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(247, 239, 229, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-point strong {
  display: block;
  margin-bottom: 0.32rem;
  font-size: 1rem;
  color: var(--text);
}

.hero-point span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  width: min(100%, 560px);
  overflow: hidden;
  border-radius: 48px;
  background: rgba(255, 248, 240, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 34px 88px rgba(56, 35, 21, 0.16);
}

.hero-frame img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  max-width: 220px;
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 248, 240, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.floating-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.floating-card span,
.floating-card small {
  color: var(--text-soft);
}

.floating-card--menu {
  top: 60px;
  left: -32px;
}

.floating-card--rating {
  right: -10px;
  top: 120px;
}

.floating-card--address {
  bottom: 58px;
  left: 10px;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-blur--one {
  width: 320px;
  height: 320px;
  right: -100px;
  top: 90px;
  background: radial-gradient(circle, rgba(201, 143, 82, 0.3), transparent 70%);
}

.hero-blur--two {
  width: 360px;
  height: 360px;
  left: -80px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(216, 223, 195, 0.34), transparent 70%);
}

.concept {
  background:
    radial-gradient(circle at 12% 18%, rgba(210, 171, 123, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 240, 0.34), rgba(248, 239, 227, 0.5));
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.5rem;
  align-items: start;
}

.concept-panel,
.glass-card,
.pairing-card,
.review-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.concept-panel {
  position: relative;
  overflow: hidden;
  padding: 2.6rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(247, 238, 227, 0.9));
}

.concept-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  transform: translate(35%, -35%);
  background: radial-gradient(circle, rgba(201, 143, 82, 0.2), transparent 68%);
  pointer-events: none;
}

.concept-panel h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1.18;
}

.concept-panel p {
  position: relative;
  z-index: 1;
}

.concept-panel p:last-child {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--text-soft);
}

.concept-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.glass-card {
  min-height: 230px;
  padding: 1.55rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.97), rgba(244, 235, 224, 0.88));
}

.glass-card:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1rem;
  align-items: start;
  min-height: unset;
}

.glass-card:last-child .glass-index {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.glass-index {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 143, 82, 0.16), rgba(216, 223, 195, 0.34));
  color: var(--accent-deep);
  font-family: var(--font-accent);
  font-weight: 700;
}

.glass-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.16rem;
  line-height: 1.45;
}

.glass-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.42), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 15% 20%, rgba(210, 171, 123, 0.14), transparent 24%);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

.section-intro {
  margin-top: 1rem;
  color: var(--text-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.menu-card {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(247, 241, 234, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(59, 38, 23, 0.16);
}

.menu-image {
  overflow: hidden;
  position: relative;
}

.menu-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(61, 38, 24, 0.12));
  pointer-events: none;
}

.menu-image img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
}

.menu-body {
  padding: 1.25rem 1.2rem 1.4rem;
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.74rem;
  border-radius: 999px;
  background: rgba(201, 143, 82, 0.14);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-body h3 {
  margin: 0.9rem 0 0.55rem;
  font-size: 1.18rem;
}

.menu-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.price {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-accent);
  font-size: 1.08rem;
  color: var(--accent-deep);
}

.pairing-grid,
.review-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.pairing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pairing-card {
  padding: 1.6rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(44, 30, 22, 0.95), rgba(95, 67, 50, 0.9));
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 171, 123, 0.18);
  box-shadow: 0 28px 56px rgba(42, 29, 22, 0.18);
}

.pairing-card .section-kicker {
  color: rgba(242, 212, 171, 0.9);
}

.pairing-card h3 {
  margin: 0;
  font-size: 1.38rem;
}

.pairing-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.article-shell {
  position: relative;
}

.article-head {
  max-width: 940px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(260px, 290px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 110px;
}

.article-toc {
  padding: 1.4rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(246, 238, 227, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.article-toc h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.article-toc a {
  display: block;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}

.article-toc a:last-child {
  border-bottom: 0;
}

.article-copy {
  padding: 1.8rem 1.8rem 0.4rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(250, 244, 237, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.article-copy section + section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 33, 25, 0.08);
}

.article-copy h3 {
  margin: 0 0 0.85rem;
  font-size: 1.46rem;
  line-height: 1.35;
}

.article-copy p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(247, 239, 229, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--text-soft);
}

.gallery-card--large {
  grid-row: span 2;
}

.gallery-card--large img {
  min-height: 100%;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 1.6rem;
  border-radius: 28px;
}

.review-card p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.review-card strong {
  color: var(--text);
}

.faq-shell {
  display: grid;
  gap: 1.6rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding-right: 2rem;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent-deep);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: start;
}

.contact-copy,
.contact-card {
  padding: 2rem;
  border-radius: 34px;
}

.contact-copy {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(247, 240, 231, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.contact-copy p {
  color: var(--text-soft);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-list div {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(45, 33, 25, 0.08);
}

.contact-list span {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--text);
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(44, 30, 22, 0.96), rgba(94, 67, 49, 0.92));
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 171, 123, 0.2);
  box-shadow: 0 32px 72px rgba(42, 29, 22, 0.22);
}

.contact-card h3 {
  margin-top: 0;
  font-size: 1.65rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card .btn {
  width: 100%;
  margin-top: 0.8rem;
}

.contact-card .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.contact-note {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.6rem;
  padding: 1.4rem 1.6rem;
  border-radius: 26px;
  background: rgba(255, 249, 242, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.footer-inner strong {
  display: block;
  margin-bottom: 0.3rem;
}

.footer-inner p {
  margin: 0;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-soft);
}

.footer-copy {
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1150px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .concept-stack {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card--large {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 10px);
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 26px;
    background: rgba(255, 249, 242, 0.97);
    border: 1px solid rgba(45, 33, 25, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.85rem 0.4rem;
  }

  .hero-grid,
  .concept-grid,
  .article-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .pairing-grid,
  .review-grid,
  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-frame img {
    height: 620px;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero,
  .concept,
  .menu-section,
  .pairing-section,
  .article-section,
  .gallery-section,
  .review-section,
  .faq-section,
  .contact-section {
    padding: 4.6rem 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero h1,
  .section-head h2,
  .concept-panel h2,
  .article-head h2,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-points,
  .pairing-grid,
  .review-grid,
  .contact-list,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-frame {
    border-radius: 34px;
  }

  .hero-frame img {
    height: 520px;
  }

  .floating-card {
    max-width: 180px;
    padding: 0.85rem;
  }

  .floating-card--menu {
    left: 0;
    top: 14px;
  }

  .floating-card--rating {
    right: 0;
    top: auto;
    bottom: 120px;
  }

  .floating-card--address {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .concept-panel,
  .article-copy,
  .contact-copy,
  .contact-card {
    padding: 1.4rem;
  }

  .article-toc,
  .review-card,
  .pairing-card {
    padding: 1.2rem;
  }

  .gallery-card--large {
    grid-column: auto;
  }

  .gallery-card img {
    min-height: 320px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .announcement-track {
    gap: 1.6rem;
    font-size: 0.74rem;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .hero-lead,
  .section-intro,
  .article-copy p,
  .contact-copy p,
  .menu-body p {
    font-size: 0.95rem;
  }

  .hero-actions,
  .footer-links {
    width: 100%;
  }

  .hero-actions .btn,
  .contact-card .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-point,
  .menu-body,
  .faq-list details {
    padding-inline: 1rem;
  }

  .menu-body h3,
  .article-copy h3,
  .contact-card h3 {
    font-size: 1.2rem;
  }
}
