:root {
  --bg: #0f0b09;
  --bg-soft: #18130f;
  --panel: rgba(255, 248, 241, 0.06);
  --panel-strong: rgba(255, 248, 241, 0.1);
  --line: rgba(255, 244, 235, 0.12);
  --gold: #d9b47a;
  --gold-strong: #f0ca8d;
  --text: #f5efe7;
  --muted: #c7beb4;
  --wine: #6e2331;
  --stone: #7d6d5e;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 180, 122, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(110, 35, 49, 0.18), transparent 26%),
    linear-gradient(180deg, #120d09 0%, #0a0706 100%);
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0));
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 3rem;
}

@media (min-width: 1200px) {
  .site-shell {
    width: min(1360px, calc(100vw - 1rem));
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 7, 6, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-main-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  will-change: transform, filter;
  animation: rosetonHeaderMotion 6s ease-in-out infinite;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-award-inline {
  display: inline-flex;
  align-items: center;
  margin-left: 2cm;
  width: fit-content;
  flex: 0 0 auto;
  padding: 0.3rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(240, 202, 141, 0.45);
  background: rgba(247, 239, 228, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.brand-award-image {
  width: 152px;
  height: auto;
  max-height: 58px;
  display: block;
  object-fit: contain;
  animation: none;
  will-change: auto;
  filter: contrast(1.06) brightness(1.04);
}

.brand strong,
.hero h1,
.story-copy h2,
.section-head h2,
.location-copy h2,
.cta-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand strong {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.96rem;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 202, 141, 0.28);
  background: linear-gradient(135deg, rgba(240, 202, 141, 0.24), rgba(110, 35, 49, 0.24));
  color: #fff8ef;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 10px 24px rgba(0,0,0,0.25);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 202, 141, 0.42);
}

.btn-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.btn-ghost {
  background: rgba(255,255,255,0.02);
  border-color: var(--line);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-text,
.story-copy p,
.section-head p,
.location-copy p,
.cta-section p,
.review-cards p,
.menu-card p,
.menu-note p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 60ch;
  margin: 1.2rem 0 0;
  font-size: 1.02rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-stats article,
.menu-card,
.score-card,
.review-cards article,
.map-card,
.story-panel,
.cta-section,
.menu-note {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.hero-stats article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 136px;
  padding: 2.35rem 1.08rem 1.06rem;
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 12%, rgba(240, 202, 141, 0.22), transparent 45%),
    linear-gradient(155deg, rgba(45, 29, 21, 0.95), rgba(21, 14, 11, 0.95) 48%, rgba(66, 23, 30, 0.9) 100%) padding-box,
    linear-gradient(132deg, rgba(240, 202, 141, 0.72), rgba(255, 255, 255, 0.18), rgba(110, 35, 49, 0.66)) border-box;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-stats article::before {
  content: "Detalle";
  position: absolute;
  top: 0.76rem;
  left: 0.82rem;
  z-index: 2;
  padding: 0.24rem 0.6rem;
  border: 1px solid rgba(240, 202, 141, 0.45);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(240, 202, 141, 0.95), rgba(217, 180, 122, 0.86));
  color: #2d1b12;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.hero-stats article:nth-child(1)::before {
  content: "Reseñas";
}

.hero-stats article:nth-child(2)::before {
  content: "Ticket medio";
}

.hero-stats article:nth-child(3)::before {
  content: "Cocina";
}

.hero-stats article::after {
  content: "";
  position: absolute;
  inset: 0.78rem 0.84rem auto auto;
  width: 34px;
  height: 34px;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(240, 202, 141, 0.34);
  box-shadow:
    inset 0 0 0 5px rgba(240, 202, 141, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-stats article:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 202, 141, 0.44);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-stats strong {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 0.34rem;
  font-size: clamp(1.64rem, 1.85vw, 2.18rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.hero-stats article:nth-child(3) strong {
  font-size: clamp(1.4rem, 1.5vw, 1.82rem);
}

.hero-stats span {
  position: relative;
  z-index: 1;
  color: rgba(245, 239, 231, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}

.hero-card img,
.story-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 0 2rem 3rem 0;
}

.hero-card-secondary {
  right: 0;
  bottom: 0;
  width: 230px;
  height: 230px;
  border-radius: 28px;
}

.location-chip {
  position: absolute;
  left: 0;
  bottom: 1.25rem;
  padding: 1rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(240, 202, 141, 0.18);
  background: rgba(15, 11, 9, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.location-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.location-chip strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.2rem;
}

.floating-card {
  animation: levitate 6s ease-in-out infinite;
}

.floating-chip {
  animation: levitate 7s ease-in-out infinite reverse;
}

@keyframes levitate {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rosetonHeaderMotion {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    filter: drop-shadow(0 0 0 rgba(217, 180, 122, 0));
  }
  50% {
    transform: translateY(-4px) rotate(8deg) scale(1.04);
    filter: drop-shadow(0 0 10px rgba(217, 180, 122, 0.45));
  }
}

.story-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.story-copy {
  padding: 1.6rem;
}

.story-copy h2,
.section-head h2,
.location-copy h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.97;
}

.story-image {
  min-height: 420px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
}

.menu-section,
.intent-section,
.reviews-section,
.social-section,
.pub-section,
.faq-section,
.location-section {
  padding-top: 5rem;
}

.section-head {
  max-width: 700px;
  margin-bottom: 1.6rem;
}

.section-head.compact-head {
  margin-bottom: 1.8rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 1.4rem;
  border-radius: 26px;
}

.menu-card-chuleton {
  background: rgba(12, 9, 8, 0.45);
}

.menu-card-chuleton::before {
  content: "";
  position: absolute;
  inset: -7%;
  z-index: -2;
  background: url("../assets/images/carne-brasa-humo-el-roseton.jpg") center/cover no-repeat;
  filter: blur(4px) saturate(1.06) brightness(0.74);
  opacity: 0.95;
  transform: scale(1.03);
}

.menu-card-chuleton::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(165deg, rgba(12, 9, 8, 0.34), rgba(12, 9, 8, 0.52));
}

.menu-card-chuleton > * {
  position: relative;
  z-index: 1;
}

.menu-card-chuleton h3,
.menu-card-chuleton p,
.menu-card-chuleton strong {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.menu-card-chuleton p {
  color: rgba(245, 239, 231, 0.9);
}

.menu-card-paletilla {
  background: rgba(12, 9, 8, 0.44);
}

.menu-card-paletilla::before {
  content: "";
  position: absolute;
  inset: -7%;
  z-index: -2;
  background: url("../assets/images/paletilla-cordero-carbon-el-roseton.png") center/cover no-repeat;
  filter: blur(4px) saturate(1.04) brightness(0.72);
  opacity: 0.94;
  transform: scale(1.03);
}

.menu-card-paletilla::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(170deg, rgba(12, 9, 8, 0.36), rgba(12, 9, 8, 0.54));
}

.menu-card-paletilla > * {
  position: relative;
  z-index: 1;
}

.menu-card-paletilla h3,
.menu-card-paletilla p,
.menu-card-paletilla strong {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.46);
}

.menu-card-paletilla p {
  color: rgba(245, 239, 231, 0.91);
}

.menu-card-pescado {
  background: rgba(12, 9, 8, 0.44);
}

.menu-card-pescado::before {
  content: "";
  position: absolute;
  inset: -7%;
  z-index: -2;
  background: url("../assets/images/pescado-entero-brasa-limon-el-roseton.png") center/cover no-repeat;
  filter: blur(4px) saturate(1.05) brightness(0.74);
  opacity: 0.94;
  transform: scale(1.03);
}

.menu-card-pescado::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(170deg, rgba(12, 9, 8, 0.35), rgba(12, 9, 8, 0.54));
}

.menu-card-pescado > * {
  position: relative;
  z-index: 1;
}

.menu-card-pescado h3,
.menu-card-pescado p,
.menu-card-pescado strong {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.46);
}

.menu-card-pescado p {
  color: rgba(245, 239, 231, 0.9);
}

.featured-card {
  background: linear-gradient(180deg, rgba(110,35,49,0.4), rgba(255,255,255,0.04));
}

.menu-card h3,
.review-cards h3 {
  margin: 0.4rem 0 0.65rem;
  font-size: 1.35rem;
}

.menu-card strong {
  font-size: 1.6rem;
  color: var(--gold-strong);
}

.menu-label {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  border-radius: 22px;
}

.menu-note a {
  color: var(--gold-strong);
  font-weight: 700;
}

.intent-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 5rem;
  padding: 2rem 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.intent-section::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -2;
  background: url("../assets/images/carne-brasa-humo-el-roseton.jpg") center/cover no-repeat;
  filter: blur(8px) saturate(0.95) brightness(0.55);
  opacity: 0.58;
  transform: scale(1.08);
}

.intent-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, rgba(12, 9, 8, 0.72), rgba(12, 9, 8, 0.56));
}

.intent-section > * {
  position: relative;
  z-index: 1;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.intent-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.intent-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.3rem;
}

.intent-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.intent-card a {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--gold-strong);
  font-weight: 700;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 26px;
  cursor: pointer;
  background: #111;
  box-shadow: var(--shadow);
}

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 7, 6, 0.02), rgba(10, 7, 6, 0.82));
  color: #fff7ee;
  text-align: left;
  font-weight: 600;
}

.gallery-item img {
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
}

.score-card {
  display: grid;
  place-items: center;
  padding: 2rem;
  border-radius: 30px;
  text-align: center;
}

.score-card span {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
}

.score-card strong {
  font-size: clamp(4rem, 7vw, 5.5rem);
  line-height: 1;
}

.score-card p {
  margin: 0.25rem 0 0.3rem;
  font-size: 1.15rem;
}

.score-card small {
  color: var(--muted);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-cards article {
  padding: 1.4rem;
  border-radius: 24px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 202, 141, 0.42);
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex: 0 0 56px;
  font-size: 1.6rem;
  background: rgba(255,255,255,0.04);
}

.social-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.social-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.18rem;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.social-card.instagram .social-icon {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 6%, #fd5949 42%, #d6249f 63%, #285aeb 92%);
}

.social-card.instagram .social-icon img {
  width: 28px;
  height: 28px;
}

.social-card.google .social-icon {
  border-color: rgba(255, 255, 255, 0.28);
  background: #ffffff;
}

.social-card.google .social-icon img {
  width: 29px;
  height: 29px;
}

.pub-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.35rem;
  align-items: stretch;
  padding: 1.25rem;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.pub-logo-wrap {
  margin: 0;
  width: 100%;
  min-height: 220px;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(240, 202, 141, 0.3);
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 202, 141, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(110, 35, 49, 0.25), transparent 60%),
    rgba(10, 7, 6, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pub-logo-wrap img {
  width: 100px;
  height: 100px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.28);
  object-fit: contain;
  object-position: center;
}

.pub-logo-caption {
  margin: 0;
  text-align: center;
  color: var(--gold-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.pub-copy {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 248, 241, 0.15);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
}

.pub-copy h3 {
  margin: 0;
  font-size: 1.35rem;
}

.pub-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.pub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.15rem;
}

.pub-actions .btn {
  justify-self: auto;
  margin-top: 0;
}

.location-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: stretch;
}

.location-copy,
.map-card {
  min-height: 520px;
}

.location-copy {
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.location-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.location-list div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.location-list span,
.footer span {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.location-list strong,
.location-list a {
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.map-card {
  overflow: hidden;
  border-radius: 30px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) saturate(0.8) contrast(1.05);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid details {
  padding: 1.05rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
}

.faq-grid p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-grid a {
  color: var(--gold-strong);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 5rem;
  padding: 2rem;
  border-radius: 34px;
}

.legal-main {
  display: grid;
  gap: 1rem;
  padding-top: 2.2rem;
}

.legal-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.legal-card h1,
.legal-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.legal-card h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
}

.legal-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.legal-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.legal-list li {
  color: var(--muted);
  line-height: 1.62;
}

.legal-list strong {
  color: var(--text);
}

.legal-note {
  display: inline-flex;
  margin-top: 0.9rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 202, 141, 0.26);
  color: var(--gold-strong) !important;
  background: rgba(217, 180, 122, 0.08);
  font-size: 0.86rem;
  line-height: 1.25 !important;
}

.legal-pending {
  color: #ffd8a1;
  font-weight: 600;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.6rem 0 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  position: relative;
}

.footer strong {
  color: var(--text);
  font-size: 1.05rem;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 1rem;
  margin-top: 0.2rem;
  padding-top: 0.8rem;
  padding-right: 8.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: rgba(245, 239, 231, 0.72);
}

.footer-legal p {
  margin: 0;
  line-height: 1.55;
}

.footer-legal a {
  color: var(--gold-strong);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  text-decoration: underline;
}

.footer-admin-link {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 238, 227, 0.46);
  text-decoration: none;
  border: 1px solid rgba(247, 238, 227, 0.18);
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  transition: color 140ms ease, border-color 140ms ease, background 140ms ease;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  color: rgba(247, 238, 227, 0.82);
  border-color: rgba(217, 180, 122, 0.62);
  background: rgba(10, 7, 6, 0.5);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 3, 3, 0.88);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 100;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  position: relative;
  max-width: min(920px, 100%);
  margin: 0;
}

.lightbox img {
  max-height: min(78vh, 860px);
  width: auto;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox figcaption {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.delay-1 {
  transition-delay: 120ms;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1240px) {
  .topbar {
    gap: 1rem;
    padding: 0.9rem 1rem;
  }

  .brand-main-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-award-inline {
    margin-left: 1.1rem;
    padding: 0.25rem 0.4rem;
  }

  .brand-award-image {
    width: 132px;
    max-height: 50px;
  }

  .brand strong {
    font-size: 1.2rem;
  }

  .brand em {
    font-size: 0.82rem;
  }

  .nav {
    gap: 0.7rem;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .btn-small {
    min-height: 40px;
    padding: 0.62rem 0.9rem;
  }
}

@media (max-width: 1080px) {
  .hero,
  .story-panel,
  .location-section,
  .reviews-layout,
  .pub-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: 560px;
  }

  .menu-grid,
  .intent-grid,
  .review-cards,
  .social-grid,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid .menu-card:last-child,
  .review-cards article:last-child {
    grid-column: 1 / -1;
  }

  .intent-section {
    margin-top: 3.8rem;
    padding: 1.6rem 1rem 1.1rem;
    border-radius: 24px;
  }

  .location-copy,
  .map-card {
    min-height: 420px;
  }

  .pub-logo-wrap {
    max-width: 220px;
    justify-self: center;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section .btn {
    align-self: flex-start;
  }
}

@media (max-width: 960px) {
  .topbar {
    border-radius: 26px;
    padding: 1rem;
  }

  .brand em {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(10, 7, 6, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a.btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1,
  .story-copy h2,
  .section-head h2,
  .location-copy h2,
  .cta-section h2 {
    line-height: 1;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-card-main {
    inset: 0 0 4rem 0;
  }

  .hero-card-secondary {
    width: 170px;
    height: 170px;
  }

  .story-copy,
  .location-copy,
  .cta-section,
  .legal-card {
    padding: 1.3rem;
  }

  .menu-note {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-admin-link {
    position: static;
    justify-self: end;
    margin-top: 0.2rem;
  }

  .footer-legal {
    padding-right: 0;
    font-size: 0.78rem;
  }

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

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

  .social-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 1.4rem;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100vw - 1rem, 100%);
  }

  .topbar {
    margin-top: 0.6rem;
    padding: 0.85rem;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .brand-award-inline {
    margin-left: 0.65rem;
    padding: 0.2rem 0.34rem;
  }

  .brand-award-image {
    width: 116px;
    max-height: 44px;
  }

  .brand em {
    font-size: 0.82rem;
  }

  .hero {
    gap: 1.6rem;
  }

  .intent-section {
    margin-top: 2.8rem;
    padding: 1.2rem 0.85rem 0.95rem;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-stats article {
    min-height: 122px;
    padding: 2.12rem 0.92rem 0.92rem;
  }

  .hero-stats article::before {
    top: 0.68rem;
    left: 0.72rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card-secondary {
    display: none;
  }

  .hero-visual {
    min-height: 360px;
  }

  .story-image {
    min-height: 300px;
  }

  .location-copy,
  .map-card {
    min-height: auto;
  }

  .pub-card {
    padding: 1rem;
  }

  .pub-logo-wrap {
    max-width: 220px;
  }

  .pub-logo-wrap img {
    width: 100px;
    height: 100px;
  }

  .pub-actions {
    width: 100%;
    flex-direction: column;
  }

  .pub-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .map-card {
    min-height: 320px;
  }

  .gallery-item::after {
    font-size: 0.92rem;
  }

  .social-card {
    align-items: flex-start;
  }

  .cta-section .btn {
    width: 100%;
  }

  .score-card strong {
    font-size: 4rem;
  }
}
