/* RESTAURANT — Editorial Fine Dining · Cream body · Wine accents · No cards */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #faf6f0;
  --cream2: #f2ebe0;
  --parchment: #e2d5c3;
  --wine: #7a1a33;
  --wine-d: #4a0f1e;
  --gold: #c8922a;
  --ink: #1c0a12;
  --muted: #7a6a6a;
  --font-d: "Cormorant Garamond", serif;
  --font-b: "Raleway", sans-serif;
  --tr: 0.35s ease;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: inherit;
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── NAV — centered logo, links on both sides ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background var(--tr),
    box-shadow var(--tr);
}
#navbar.scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 12px rgba(28, 10, 18, 0.06);
  border-bottom: 1px solid var(--parchment);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-right {
  justify-content: flex-end;
}
.nav-left a,
.nav-right a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--tr);
}
#navbar.scrolled .nav-left a,
#navbar.scrolled .nav-right a {
  color: var(--muted);
}
.nav-left a:hover,
.nav-right a:hover {
  color: #fff;
}
#navbar.scrolled .nav-left a:hover,
#navbar.scrolled .nav-right a:hover {
  color: var(--ink);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}
.nl-icon {
  font-size: 1rem;
  color: var(--gold);
  display: block;
}
.nl-name {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}
.nl-name em {
  color: var(--gold);
  font-style: italic;
}
#navbar.scrolled .nl-name {
  color: var(--ink);
}
.nav-cta {
  background: var(--wine) !important;
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--wine-d) !important;
}
#navbar.scrolled .nav-cta {
  color: #fff !important;
}
.hamburger {
  display: none;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background var(--tr);
}
#navbar.scrolled .hamburger span {
  background: var(--ink);
}
.mobile-menu {
  display: none;
  background: var(--cream);
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--parchment);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu a {
  font-size: 1rem;
  color: var(--ink);
}

/* ── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--wine);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: none;
  cursor: pointer;
  transition:
    background var(--tr),
    transform var(--tr);
  font-family: var(--font-b);
}
.btn-primary:hover {
  background: var(--wine-d);
  transform: translateY(-3px);
  letter-spacing: 0.15em;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.88rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    border-color var(--tr),
    color var(--tr);
  font-family: var(--font-b);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.75rem;
}

/* ── HERO — editorial, no stats bar ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  overflow: hidden;
  text-align: center;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(122, 26, 51, 0.5) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 75% 25%,
      rgba(200, 146, 42, 0.12) 0%,
      transparent 50%
    );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem 4rem;
  max-width: 860px;
}
.hero-est {
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-rule {
  width: 80px;
  height: 1px;
  background: rgba(200, 146, 42, 0.4);
  margin: 1rem auto;
}
.hero-title {
  font-family: var(--font-d);
  line-height: 0.92;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
}
.ht-light {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: rgba(250, 246, 240, 0.55);
}
.ht-italic {
  font-size: clamp(4rem, 10vw, 8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
}
.ht-bold {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--cream);
}
.ht-gold {
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(250, 246, 240, 0.5);
  letter-spacing: 0.08em;
  font-weight: 300;
  margin: 1.5rem 0 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-awards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.9rem 2rem;
  background: var(--wine);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.8);
  flex-wrap: wrap;
}
.ha-dot {
  color: rgba(250, 246, 240, 0.3);
}

/* ── MENU — printed menu, two columns, ruled lines ─── */
#menu {
  padding: 5.5rem 0;
  background: var(--cream);
}
.menu-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}
.menu-header h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.menu-note-top {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  font-style: italic;
  font-family: var(--font-d);
}
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 3rem;
}
.menu-col-divider {
  background: var(--parchment);
}
.menu-col-title {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--wine);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--parchment);
}
.menu-col-title:first-child {
  margin-top: 0;
}
.menu-row {
  padding: 1.1rem 0;
  border-bottom: 1px dotted rgba(122, 63, 42, 0.15);
}
.menu-row:last-child {
  border-bottom: none;
}
.mr-top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.mr-name {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.mr-name em {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--wine);
  margin-left: 0.35rem;
}
.mr-dots {
  flex: 1;
  border-bottom: 1px dotted var(--parchment);
  margin: 0 0.5rem 0.3rem;
}
.mr-price {
  font-family: var(--font-d);
  font-size: 1.05rem;
  color: var(--wine);
  white-space: nowrap;
  font-weight: 600;
}
.mr-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
  font-family: var(--font-d);
}
.featured-row .mr-name {
  color: var(--wine);
}
.menu-footer-note {
  text-align: center;
  margin-top: 3.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-d);
  padding-top: 2rem;
  border-top: 1px solid var(--parchment);
}

/* ── ABOUT — full-bleed dark visual left + editorial text right ─── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.about-feature {
  display: contents;
}
.af-visual {
  background: var(--wine-d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.af-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(200, 146, 42, 0.1) 0%,
    transparent 65%
  );
}
.flame {
  border-radius: 50% 50% 0 50%;
}
.af-fire {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.f1 {
  width: 18px;
  height: 42px;
  background: linear-gradient(to top, #ff6b00, #ffd700);
  animation: flicker 1.5s ease-in-out infinite;
}
.f2 {
  width: 32px;
  height: 62px;
  background: linear-gradient(to top, #cc3300, #ff8800);
  margin-top: -18px;
  animation: flicker 1.8s ease-in-out infinite 0.2s;
}
.f3 {
  width: 48px;
  height: 82px;
  background: linear-gradient(to top, #8b0000, #ff4400);
  margin-top: -28px;
  animation: flicker 2s ease-in-out infinite 0.4s;
}
.flame-base {
  width: 56px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  margin-top: -6px;
}
@keyframes flicker {
  0%,
  100% {
    transform: scale(1) rotate(-3deg);
  }
  50% {
    transform: scale(1.04) rotate(3deg);
  }
}
.af-quote {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.af-attr {
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.af-text {
  background: var(--cream2);
  padding: 5rem 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.af-text h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0.75rem 0 1.5rem;
}
.af-text h2 em {
  color: var(--wine);
  font-style: italic;
}
.af-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1rem;
}
.af-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.94rem;
  margin-bottom: 2.5rem;
}
.af-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.af-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.afp-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.af-pillar strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.af-pillar p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.af-years {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--wine);
  color: #fff;
}
.afy-num {
  font-family: var(--font-d);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.af-years strong {
  display: block;
  font-size: 0.9rem;
}
.af-years p {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0;
}

/* ── CHEF — centered full-width pull-quote spread ─── */
#chef {
  padding: 8rem 2rem;
  background: var(--cream);
  text-align: center;
}
.chef-spread {
  max-width: 800px;
  margin: 0 auto;
}
.chef-name {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--ink);
  margin: 0.75rem 0 0.5rem;
}
.chef-name em {
  color: var(--wine);
  font-style: italic;
  font-weight: 300;
}
.chef-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2rem;
}
.chef-rule {
  width: 60px;
  height: 1px;
  background: var(--parchment);
  margin: 0 auto 2.5rem;
}
.chef-quote {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.chef-credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.cc {
  text-align: center;
}
.cc strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.cc span {
  font-size: 0.78rem;
  color: var(--muted);
}
.cc-sep {
  font-size: 1.5rem;
  color: var(--parchment);
}

/* ── GALLERY — asymmetric collage ─── */
#gallery {
  padding: 5.5rem 0;
  background: var(--cream2);
}
.gallery-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-header h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
}
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 180px 220px;
  gap: 0.75rem;
}
.col-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.col-item:hover {
  transform: scale(1.02);
  z-index: 2;
}
.ci1 {
  grid-column: 1/7;
  grid-row: 1/3;
  background: linear-gradient(160deg, #2a1008, #3a1808);
}
.ci2 {
  grid-column: 7/10;
  grid-row: 1;
  background: linear-gradient(160deg, #1a0806, #2a120a);
}
.ci3 {
  grid-column: 10/13;
  grid-row: 1/3;
  background: linear-gradient(160deg, #0a0004, #1a0010);
}
.ci4 {
  grid-column: 7/9;
  grid-row: 2;
  background: linear-gradient(160deg, #08080a, #141018);
}
.ci5 {
  grid-column: 9/10;
  grid-row: 2;
  background: linear-gradient(160deg, #100a00, #1a1000);
}
.ci6 {
  grid-column: 1/13;
  grid-row: 3;
  background: linear-gradient(160deg, #0a0000, #1c0812);
}
.col-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(200, 146, 42, 0.08) 0%,
    transparent 70%
  );
}
.ci-label {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-family: var(--font-d);
  font-size: 1rem;
  font-style: italic;
  color: rgba(250, 246, 240, 0.9);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--tr),
    transform var(--tr);
  z-index: 1;
}
.col-item:hover .ci-label {
  opacity: 1;
  transform: none;
}

/* ── RESERVATIONS — centered minimal column ─── */
#reservations {
  padding: 5.5rem 0;
  background: var(--cream);
}
.res-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.res-header {
  margin-bottom: 2.5rem;
}
.res-header h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 0.6rem 0 0.75rem;
}
.res-header p {
  color: var(--muted);
  font-size: 0.9rem;
}
.res-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1rem;
  background: var(--cream2);
  border: 1px solid var(--parchment);
  margin-bottom: 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.ris-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ris-sep {
  color: var(--parchment);
}
.res-form {
  display: grid;
  gap: 1.1rem;
  text-align: left;
}
.rf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fg-full {
  grid-column: 1 / -1;
}
.fg label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg input,
.fg select,
.fg textarea {
  background: var(--white, #fff);
  border: 1px solid var(--parchment);
  color: var(--ink);
  padding: 0.8rem 1rem;
  font-family: var(--font-b);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--tr);
  resize: vertical;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(122, 106, 106, 0.4);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--wine);
}
.fg select option {
  background: #fff;
}
.res-success {
  display: none;
  padding: 4rem 2rem;
  text-align: center;
}
.rs-icon {
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.res-success h3 {
  font-family: var(--font-d);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.res-success p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ── FOOTER ─── */
footer {
  background: var(--wine-d);
  padding: 5rem 0 0;
  color: rgba(250, 246, 240, 0.7);
}
.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ft-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ft-icon {
  color: var(--gold);
  font-size: 1rem;
}
.ft-name {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.ft-name em {
  color: var(--gold);
  font-style: italic;
}
.footer-top > p {
  font-size: 0.88rem;
  max-width: 300px;
}
.ft-social {
  display: flex;
  gap: 1.5rem;
}
.ft-social a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.4);
  transition: color var(--tr);
}
.ft-social a:hover {
  color: var(--cream);
}
.footer-mid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.fm-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.fm-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.45);
  margin-bottom: 0.6rem;
  transition: color var(--tr);
}
.fm-col a:hover {
  color: var(--cream);
}
.fm-col p {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  line-height: 1.65;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.25);
}

@media (max-width: 1024px) {
  #about {
    grid-template-columns: 1fr;
  }
  .menu-cols {
    grid-template-columns: 1fr;
  }
  .menu-col-divider {
    height: 1px;
    width: 100%;
  }
  .footer-mid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-left,
  .nav-right {
    display: none;
  }
  .hamburger {
    display: flex;
    position: absolute;
  }
  .nav-inner {
    position: relative;
  }
}
@media (max-width: 768px) {
  .collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .col-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 160px;
  }
  .rf-row {
    grid-template-columns: 1fr;
  }
  .footer-mid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-top {
    flex-direction: column;
  }
  .hero-awards {
    font-size: 0.65rem;
    gap: 0.75rem;
  }
}

/* ── Language Toggle ─── */
.lang-toggle {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 2px;
  margin-left: 1rem;
}
.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  font-family: Raleway, sans-serif;
  transition: all 0.2s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lang-btn.active {
  background: rgba(196, 158, 82, 0.3);
  color: #c49e52;
}
body.lang-es .lang-btn {
  color: rgba(255, 255, 255, 0.3);
}
body.lang-es .lang-btn.active {
  background: rgba(196, 158, 82, 0.3);
  color: #c49e52;
}
