:root {
  --bg: #f4f1ea;
  --surface: #ffffff;
  --surface-soft: #fbf9f5;
  --ink: #191715;
  --muted: #5d5851;
  --brand-red: #ad0021;
  --brand-red-deep: #7f0018;
  --brand-green: #007a44;
  --accent-gold: #bf975e;
  --line: #dfd8cf;
  --glass: rgba(255, 255, 255, 0.18);
  --glass-line: rgba(255, 255, 255, 0.4);
  --shadow-soft: 0 14px 32px rgba(29, 18, 9, 0.1);
  --nav-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -4%, rgba(191, 151, 94, 0.18), transparent 30%),
    radial-gradient(circle at 90% 92%, rgba(0, 122, 68, 0.14), transparent 34%),
    linear-gradient(170deg, #f5f2ec 0%, #ece6dd 40%, #f4f1ea 100%);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: 1.2rem;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.13) 0px,
      rgba(0, 0, 0, 0.13) 2px,
      transparent 2px,
      transparent 18px
    ),
    linear-gradient(160deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%),
    url("../assets/bg.jpg");
  background-size: auto, cover, cover;
  background-position: center, center, center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(173, 0, 33, 0.62) 0%, rgba(127, 0, 24, 0.68) 58%, rgba(80, 0, 15, 0.72) 100%);
}

.hero__texture {
  position: absolute;
  inset: -12%;
  z-index: 1;
  opacity: 0.22;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 255, 255, 0.55), transparent 26%),
    radial-gradient(circle at 84% 25%, rgba(255, 255, 255, 0.4), transparent 20%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.09) 2px,
      transparent 2px,
      transparent 14px
    );
  transform: rotate(-7deg);
}

.hero__nav,
.hero__content {
  position: relative;
}

.glass {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.11));
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  z-index: 2000;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.hero__links {
  display: inline-flex;
  justify-content: center;
  gap: 0.4rem;
}

.hero__links a {
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.hero__links a:hover {
  background: rgba(173, 0, 33, 0.08);
}

.hero__socials {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}

.hero__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--brand-red);
  border: 1.5px solid var(--line);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero__socials a:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  height: 38px;
  padding: 0 0.65rem 0 0.5rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-red);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switcher__btn:hover {
  border-color: var(--brand-red);
  box-shadow: 0 2px 10px rgba(173, 0, 33, 0.14);
}

.lang-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.lang-chevron {
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.lang-switcher__btn[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 130px;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  z-index: 100;
}

.lang-switcher__menu.open {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease;
}

.lang-option:hover {
  background: var(--bg);
}

.lang-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1998;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lang-backdrop.open {
  opacity: 1;
}

@media (max-width: 860px) {
  .lang-backdrop {
    display: block;
    pointer-events: none;
  }

  .lang-backdrop.open {
    pointer-events: auto;
  }

  #langMenuMobile {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    min-width: unset !important;
    border-radius: 1.2rem 1.2rem 0 0 !important;
    padding: 1.2rem !important;
    z-index: 2001 !important;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18) !important;
  }

  #langMenuMobile .lang-option {
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
  }
}

.hero__content {
  width: min(920px, 100%);
  margin: calc(var(--nav-h) + 3rem) auto 0;
  text-align: center;
  border-radius: 1.35rem;
  padding: clamp(1.2rem, 3.6vw, 2.4rem);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.hero__logo {
  width: clamp(260px, 55vw, 630px);
  margin: 0 auto;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.4));
}

.hero__tag {
  margin: 1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  opacity: 0.9;
}

.hero h1 {
  margin: 0.75rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.04;
}

.hero p {
  margin: 0.95rem auto 0;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  max-width: 58ch;
}

.hero__actions {
  margin-top: 1.55rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__meta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.36rem 0.75rem;
  font-size: 0.83rem;
  font-weight: 600;
}

.hero__note {
  margin-top: 1.25rem;
  font-weight: 700;
  color: #f9e8ea;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  padding: 0.8rem 1.28rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn--light {
  color: var(--brand-red);
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

main {
  position: relative;
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: clamp(2.9rem, 6vw, 5.4rem) 0;
}

.section--soft {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
  border: 1px solid rgba(227, 218, 207, 0.7);
  border-radius: 1.5rem;
  padding: clamp(1.8rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.section__header {
  margin-bottom: 1.2rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--brand-green);
}

h2 {
  margin: 0.3rem 0 0;
  color: var(--brand-red-deep);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 3vw, 2.75rem);
}

p {
  line-height: 1.65;
}

.grid {
  display: grid;
  gap: clamp(1rem, 2.7vw, 2rem);
}

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

.media-card {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.media-card--tall {
  min-height: 430px;
}

.categories__grid {
  align-items: stretch;
}

.categories__img {
  position: relative;
  min-height: 0;
  align-self: stretch;
}

.categories__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top;
}

.about__top {
  display: grid;
  gap: clamp(1rem, 2.7vw, 2rem);
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 860px) {
  .about__top {
    grid-template-columns: 1fr 1fr;
  }
}

.about__text {
  text-align: center;
}

.about__text .eyebrow {
  display: block;
  margin-bottom: 0.3rem;
}

.about__text .checks {
  list-style: none;
  padding-left: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.2rem;
  margin-top: 1rem;
}

.about__text .checks li::before {
  content: "✓ ";
  color: var(--brand-green);
  font-weight: 700;
}

.about__img {
  min-height: 340px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.7rem, 2vw, 1.2rem);
  margin-top: clamp(1.2rem, 3vw, 2rem);
}

.gallery__item {
  position: relative;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
  pointer-events: none;
}

.gallery__item:hover .gallery__zoom {
  background: rgba(0, 0, 0, 0.32);
}

.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.lightbox__img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 0.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: 1.2rem;
  right: 1.4rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.checks {
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.checks li {
  margin: 0.45rem 0;
}


.category-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.category-item {
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-red);
  border-radius: 0.95rem;
  background: linear-gradient(170deg, var(--surface), var(--surface-soft));
  padding: 0.95rem 1rem;
  box-shadow: 0 8px 22px rgba(23, 17, 11, 0.06);
}

.category-item h3 {
  margin: 0;
  font-size: 1.06rem;
}

.category-item p {
  margin: 0.32rem 0 0;
  color: var(--muted);
}

.whatsapp__box {
  text-align: center;
  border-radius: 1.2rem;
  padding: clamp(1.25rem, 3.5vw, 2.4rem);
  border: 1px solid rgba(191, 151, 94, 0.35);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 122, 68, 0.12), transparent 38%),
    radial-gradient(circle at 80% 88%, rgba(173, 0, 33, 0.1), transparent 30%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.btn--whatsapp {
  margin-top: 0.65rem;
  color: #fff;
  background: linear-gradient(130deg, #2fb96e, #17894d);
  box-shadow: 0 10px 26px rgba(31, 155, 89, 0.35);
}

/* ── Loyalty section ───────────────────────────────────── */
.loyalty__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, var(--brand-red-deep) 0%, var(--brand-red) 100%);
  border-radius: 1.4rem;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-strong);
  color: #fff;
  align-items: center;
}

@media (min-width: 860px) {
  .loyalty__box {
    grid-template-columns: 1fr auto;
  }
}

.loyalty__text .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.loyalty__text h2 {
  color: #fff;
  margin-top: 0.3rem;
}

.loyalty__text p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.85rem;
  padding: 0.55rem 1rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.22);
}

.app-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-badge small {
  font-size: 0.7rem;
  opacity: 0.8;
}

.app-badge strong {
  font-size: 0.95rem;
}

.loyalty__visual {
  display: flex;
  justify-content: center;
}

.loyalty__points {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.2rem;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 220px;
}

.loyalty__star {
  font-size: 2.5rem;
  line-height: 1;
}

.loyalty__points p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.loyalty__bar {
  margin-top: 0.9rem;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.loyalty__bar-fill {
  height: 100%;
  width: 68%;
  background: #fff;
  border-radius: 999px;
}

.loyalty__bar-label {
  margin-top: 0.5rem !important;
  font-size: 0.82rem;
  opacity: 0.85;
}

/* ── App download section ──────────────────────────────── */
.app-dl__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(173, 0, 33, 0.07), transparent 38%),
    radial-gradient(circle at 85% 80%, rgba(191, 151, 94, 0.10), transparent 35%),
    #fff;
  border-radius: 1.4rem;
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1.5rem, 5vw, 3.2rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  align-items: center;
  overflow: hidden;
  position: relative;
}

@media (min-width: 860px) {
  .app-dl__box {
    grid-template-columns: 1fr 340px;
  }
}

.app-dl__text .eyebrow {
  color: var(--brand-green);
  letter-spacing: 0.18em;
}

.app-dl__text h2 {
  color: var(--brand-red-deep);
  margin-top: 0.25rem;
}

.app-dl__accent {
  color: var(--brand-red);
}

.app-dl__text > p {
  color: var(--muted);
  max-width: 52ch;
  margin-top: 0.9rem;
}

.app-dl__cta {
  color: var(--ink) !important;
  font-weight: 700 !important;
  margin-top: 0.5rem !important;
}

.app-dl__features {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.2rem;
}

.app-dl__features li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.app-dl__features li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.app-dl__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  align-items: center;
}

.app-dl__badges a {
  display: inline-block;
  transition: transform 0.22s ease, opacity 0.22s ease;
  border-radius: 0.65rem;
  outline-offset: 3px;
}

.app-dl__badges a:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}

.app-dl__badges img {
  height: 48px;
  width: auto;
  display: block;
}

.app-dl__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.app-dl__visual img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.6));
  display: block;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .app-dl__visual img {
    max-width: 220px;
  }

  .app-dl__features {
    grid-template-columns: 1fr;
  }
}

.app-dl.reveal {
  animation-delay: 0.3s;
}

.contact-grid {
  align-items: stretch;
}

.contact__details {
  display: grid;
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
}

.card h3 {
  margin-top: 0;
  color: var(--brand-red-deep);
}

.hours {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px dashed #ddd3c8;
  padding: 0.5rem 0;
}

.hours dt,
.hours dd {
  margin: 0;
}

.contact-list {
  margin: 0;
  padding-left: 1rem;
}

.contact-list li {
  margin: 0.5rem 0;
}

.contact-list a {
  color: var(--brand-green);
}

.map-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.map-frame {
  flex: 1;
  min-height: 370px;
  border-radius: 1rem;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-strong);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 370px;
  border: 0;
  display: block;
}

.btn--route {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
  background: linear-gradient(130deg, var(--brand-red), #d2123d);
  box-shadow: 0 10px 26px rgba(173, 0, 33, 0.45);
}

.footer {
  margin-top: 1.2rem;
  text-align: center;
  padding: 2.6rem 1rem 3rem;
  color: #fde8ec;
  background:
    linear-gradient(160deg, var(--brand-red) 0%, var(--brand-red-deep) 100%);
}

.footer img {
  width: min(300px, 80vw);
  margin: 0 auto;
}

.footer a {
  color: #ffe0b2;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up 0.8s ease forwards;
}

.about.reveal {
  animation-delay: 0.1s;
}

.categories.reveal {
  animation-delay: 0.18s;
}

.whatsapp.reveal {
  animation-delay: 0.26s;
}

.contact.reveal {
  animation-delay: 0.34s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hamburger button ──────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-red);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ─────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 1999;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.28s ease;
}

.mobile-menu.open {
  max-height: 480px;
  opacity: 1;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__links a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.06rem;
  transition: color 0.2s ease;
}

.mobile-menu__links a:last-child { border-bottom: none; }

.mobile-menu__links a:hover { color: var(--brand-red); }

.mobile-menu__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.mobile-menu__socials {
  display: flex;
  gap: 0.6rem;
}

.mobile-menu__socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mobile-menu__socials a:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

@media (min-width: 860px) {
  .grid--2 {
    grid-template-columns: 1.02fr 0.98fr;
  }
}

@media (max-width: 860px) {
  .hero__content {
    margin-top: calc(var(--nav-h) + 2rem);
  }

  .hero__links {
    display: none;
  }

  .hero__socials {
    display: none;
  }

  .hero__nav {
    grid-template-columns: 1fr auto;
  }

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

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 0.8rem;
  }

  .hero__nav {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .hero__content {
    margin-top: calc(var(--nav-h) + 1.5rem);
    border-radius: 1rem;
    padding: 1rem 0.85rem 1.2rem;
  }

  .btn--route {
    position: static;
    margin-top: 0.8rem;
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
