/* ============================================================
   main.css — Buns & Bottles Main Landing Page
   ============================================================ */

@font-face {
  font-family: "Tenor Sans";
  src: url("/assets/Fonts.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  color-scheme: dark;
  --navy-950: #030913;
  --navy-900: #06111d;
  --navy-800: #0a1827;
  --navy-700: #102235;
  --gold-500: #d8a852;
  --gold-400: #f0c978;
  --gold-300: #ffe0a2;
  --cream: #f8f2e9;
  --muted: #b8c1ca;
  --line: rgba(240, 201, 120, 0.28);
  --panel: rgba(7, 18, 31, 0.84);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  --serif: "Cinzel", Georgia, serif;
  --sans: "Tenor Sans", Arial, sans-serif;
}

/* ── Reset & base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 12%, rgba(216, 168, 82, 0.11), transparent 26rem),
    radial-gradient(circle at 15% 70%, rgba(50, 116, 143, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 48%, #03070d);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.35rem;
  color: #fff9ef;
  font-size: clamp(3rem, 6.5vw, 6rem);
}

h2 {
  margin-bottom: 1.2rem;
  color: #fff7e8;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
}

h3 {
  margin: 0 0 0.5rem;
  color: var(--gold-300);
  font-size: 0.95rem;
  font-family: var(--serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Shared utilities ───────────────────────────────────────── */
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5.5rem);
}

.section-heading {
  max-width: 52rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p.section-body {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
  margin: 0 auto;
}

.section-heading.left p.section-body {
  margin-left: 0;
}

.gold-rule {
  display: block;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  margin: 1rem auto 0;
}

.section-heading.left .gold-rule {
  margin-left: 0;
}

/* ── Buttons ────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0.95rem 1.75rem;
  border-radius: 0.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #07101a;
  box-shadow: 0 14px 32px rgba(216, 168, 82, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(216, 168, 82, 0.38);
}

.button-secondary {
  border-color: var(--gold-500);
  color: var(--gold-300);
}

.button-secondary:hover {
  border-color: var(--gold-400);
  background: rgba(216, 168, 82, 0.06);
}

.button-ghost {
  border-color: rgba(248, 242, 233, 0.22);
  color: var(--cream);
  font-size: 0.82rem;
}

.button-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.button-disabled {
  opacity: 0.44;
  cursor: default;
  pointer-events: none;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 9, 19, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(3, 9, 19, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 0.7rem;
  box-shadow: inset 0 0 0 1px rgba(216, 168, 82, 0.16);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.3rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand strong {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.32em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.desktop-nav a {
  color: rgba(248, 242, 233, 0.84);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--gold-400);
}

.header-cta {
  min-width: max-content;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--gold-400);
  border-radius: 0.45rem;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  background: rgba(240, 201, 120, 0.08);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: var(--cream);
}

/* ── Mobile nav ─────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 5.75rem 1rem auto;
  z-index: 19;
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: rgba(3, 9, 19, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: rgba(248, 242, 233, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.mobile-nav a:hover {
  color: var(--gold-400);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 5.4rem);
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5.5rem) 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.hero-copy {
  max-width: 44rem;
}

.hero-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 16ch;
}

.hero-description {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
  border-radius: 0.5rem;
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(3, 9, 19, 0.5));
  pointer-events: none;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Our Story ──────────────────────────────────────────────── */
.story-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.story-image-wrap {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 32rem;
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

.story-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.story-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 9, 19, 0.35));
  pointer-events: none;
}

.story-content .tagline {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.philosophy-label {
  margin: 0.25rem 0 1.25rem;
  color: var(--cream);
  font-size: 0.98rem;
}

.philosophy-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.philosophy-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.philosophy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  color: var(--gold-400);
  background: rgba(216, 168, 82, 0.06);
}

.philosophy-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.philosophy-name {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.story-closing {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Services ───────────────────────────────────────────────── */
.services-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(7, 18, 31, 0.5);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
}

.service-card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
  background: var(--navy-800);
}

.service-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 9, 19, 0.5));
  pointer-events: none;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem 1.75rem 1.75rem;
  gap: 0.75rem;
}

.service-card-body h3 {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.service-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.service-card-body .button {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  padding: 0.7rem 1.35rem;
  min-height: auto;
}

/* Dark "coming soon" card */
.service-card-dark {
  background: rgba(3, 9, 19, 0.7);
  border-color: var(--gold-500);
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 22rem;
}

.service-card-dark .service-card-body {
  align-items: center;
  padding: 3rem 2rem;
}

.service-card-dark h3 {
  font-size: 0.88rem;
  max-width: 16ch;
  line-height: 1.4;
}

.service-card-dark .service-soon-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.service-card-dark .service-soon-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

/* ── Cocktail carousel ──────────────────────────────────────── */
.cocktails-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.cocktails-section .section-heading {
  padding: 0 clamp(1.25rem, 5vw, 5.5rem);
}

.carousel-wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0 clamp(1.25rem, 5vw, 5.5rem);
  margin-bottom: 1.5rem;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-btn:hover {
  border-color: var(--gold-400);
  background: rgba(216, 168, 82, 0.08);
  color: var(--gold-400);
}

.carousel-btn svg {
  width: 1rem;
  height: 1rem;
}

.cocktail-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem clamp(1.25rem, 5vw, 5.5rem) 1.25rem;
  scrollbar-width: none;
}

.cocktail-track::-webkit-scrollbar {
  display: none;
}

.cocktail-card {
  scroll-snap-align: start;
  flex: 0 0 min(18rem, 80vw);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(7, 18, 31, 0.6);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.cocktail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38);
}

.cocktail-img-wrap {
  position: relative;
  height: 14rem;
  overflow: hidden;
  background: var(--navy-800);
}

.cocktail-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.cocktail-card:hover .cocktail-img-wrap img {
  transform: scale(1.05);
}

.cocktail-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 9, 19, 0.55));
  pointer-events: none;
}

.cocktail-info {
  padding: 1.4rem 1.4rem 1.6rem;
}

.cocktail-info h3 {
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.cocktail-tagline {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
  margin: 0 0 0.85rem;
  line-height: 1.5;
}

.cocktail-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cocktail-ingredients li {
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(240, 201, 120, 0.22);
  border-radius: 2rem;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(216, 168, 82, 0.06);
}

.carousel-footer {
  display: flex;
  justify-content: center;
  padding: 2rem clamp(1.25rem, 5vw, 5.5rem) 0;
}

/* ── Why guests choose us ───────────────────────────────────── */
.benefits-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  background: rgba(3, 9, 19, 0.3);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2.25rem 1rem 2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-icon {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1.1rem;
  color: var(--gold-400);
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-label {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ── Contact / Visit us ─────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 36rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-photo {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
}

.contact-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 9, 19, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.contact-logo-overlay {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 2;
}

.contact-info {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
  background: rgba(3, 9, 19, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1.1rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-detail-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--gold-400);
  width: 1.1rem;
  height: 1.1rem;
}

.contact-detail-icon svg {
  width: 100%;
  height: 100%;
}

.contact-detail-content {
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.6;
}

.contact-detail-content a {
  transition: color 180ms ease;
}

.contact-detail-content a:hover {
  color: var(--gold-400);
}

.contact-detail-content .detail-label {
  display: block;
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.hours-grid {
  display: grid;
  gap: 0.25rem;
}

.hours-row {
  font-size: 0.92rem;
}

.hours-row .day {
  display: block;
  color: var(--muted);
}

.hours-row .time {
  display: block;
  color: var(--cream);
  font-weight: 700;
}

.hours-row .time.closed {
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 5vw, 5.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 2rem;
}

.footer-nav a {
  color: rgba(184, 193, 202, 0.7);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--gold-400);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-link:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  background: rgba(216, 168, 82, 0.06);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-copy {
  margin: 0;
  color: rgba(184, 193, 202, 0.5);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-dark {
    grid-column: span 2;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-item:nth-child(3) {
    border-right: 0;
  }

  .benefit-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .benefit-item:nth-child(6) {
    border-right: 0;
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 8vw, 5rem);
  }

  .hero-visual {
    min-height: 28rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-image-wrap {
    min-height: 22rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    min-height: 22rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
  }

  .hero {
    padding: 3rem 1.25rem 3rem;
  }

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

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 20rem;
  }

  .story-section {
    padding: 4rem 1.25rem;
  }

  .story-image-wrap {
    min-height: 18rem;
  }

  .services-section {
    padding: 4rem 1.25rem;
  }

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

  .service-card-dark {
    grid-column: span 1;
  }

  .benefits-section {
    padding: 4rem 1.25rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-item:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .benefit-item:nth-child(-n + 3) {
    border-bottom: none;
  }

  .benefit-item {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .benefit-item:nth-child(even) {
    border-right: 0;
  }

  .benefit-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .contact-info {
    padding: 3rem 1.25rem;
  }

  .footer-inner {
    gap: 1.25rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }
}

@media (max-width: 460px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-item:last-child {
    border-bottom: 0;
  }

  .benefit-item:nth-child(even) {
    border-right: 0;
  }

  .cocktail-card {
    flex: 0 0 min(16rem, 88vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Language picker */
.lang-picker {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--color-muted, #b8c1ca);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 0.25rem 0.3rem;
  line-height: 1;
  transition: color 0.2s;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--color-gold, #d8a852);
}
.lang-sep {
  color: var(--color-muted, #b8c1ca);
  font-size: 0.65rem;
  opacity: 0.5;
  user-select: none;
}
.lang-picker-mobile {
  margin: 0.5rem 0 0 0;
  justify-content: center;
}
@media (max-width: 767px) {
  .lang-picker:not(.lang-picker-mobile) {
    display: none;
  }
}
@media (min-width: 768px) {
  .lang-picker-mobile {
    display: none;
  }
}
