/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0B1D3A;
  --navy-2:  #122749;
  --gold:    #C8973A;
  --gold-l:  #D4A94E;
  --cream:   #FAF8F4;
  --white:   #FFFFFF;
  --gray-100:#F3F1ED;
  --gray-200:#E5E2DC;
  --gray-400:#9E9A91;
  --gray-600:#5C5850;
  --gray-800:#2A2722;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 200;
  font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 151, 58, 0.3);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--full { width: 100%; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 29, 58, 0.0);
  backdrop-filter: blur(0px);
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 29, 58, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(200, 151, 58, 0.15);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-logo-mark {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold);
  font-style: italic;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,151,58,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200,151,58,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { padding-right: 16px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.hero-meta-item svg { color: var(--gold); opacity: 0.7; flex-shrink: 0; }

.hero-image-col {
  position: relative;
  height: 720px;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img--main {
  width: 85%;
  height: 88%;
  top: 0;
  right: 0;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}

.hero-img--float {
  width: 52%;
  height: 52%;
  bottom: 4%;
  left: -8%;
  border: 4px solid var(--navy);
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}

.hero-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
  margin-top: 0;
  opacity: 0.3;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 140px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 640/800;
}

.about-content { padding: 8px 0; }

.about-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* ── Menu ─────────────────────────────────────────── */
.menu {
  padding: 120px 0;
  background: var(--white);
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.menu-header .section-title { margin-bottom: 20px; }

.menu-intro {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(11,29,58,0.1);
}

.menu-card-img {
  overflow: hidden;
  aspect-ratio: 600/400;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.menu-card:hover .menu-card-img img { transform: scale(1.04); }

.menu-card-body { padding: 32px; }

.menu-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.menu-card-desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.menu-list { list-style: none; }

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9375rem;
}
.menu-list li:last-child { border-bottom: none; }

.menu-item-name {
  font-weight: 500;
  color: var(--gray-800);
}

.menu-item-note {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
}

.menu-footer {
  text-align: center;
  margin-top: 48px;
  font-size: 0.875rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ── Drinks ───────────────────────────────────────── */
.drinks {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.drinks::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(200,151,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.drinks-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.drinks-text .section-title { color: var(--white); }
.drinks-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.drinks-highlights {
  list-style: none;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drinks-highlights li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drinks-highlights li:last-child { border-bottom: none; padding-bottom: 0; }

.drink-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  font-style: italic;
}

.drink-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

.drinks-image {
  overflow: hidden;
  border-radius: 2px;
}
.drinks-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 560/780;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}
.gallery .container > :first-child {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--tall { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item--tall img { aspect-ratio: 500/700; }
.gallery-item:not(.gallery-item--tall) img { aspect-ratio: 500/500; }
.gallery-item--wide img { aspect-ratio: 700/500; }

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--white);
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.visit-info .section-title { margin-bottom: 40px; }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.visit-detail svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.visit-detail strong {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.visit-detail p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.visit-detail a {
  color: var(--gold);
  transition: color 0.2s;
}
.visit-detail a:hover { color: var(--gold-l); }

.visit-map {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(11,29,58,0.1);
  aspect-ratio: 4/3;
}
.visit-map iframe { width: 100%; height: 100%; display: block; }

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 80% at 10% 50%, rgba(200,151,58,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-text .section-title { color: var(--white); margin-bottom: 20px; }
.contact-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
}

.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group--full { margin-bottom: 24px; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9375rem;
  color: var(--gold);
  line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--gray-800);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-col { display: none; }
  .hero-content { padding-right: 0; }
  .hero { padding-top: 100px; min-height: auto; padding-bottom: 80px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 480px; }

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

  .drinks-layout { grid-template-columns: 1fr; gap: 48px; }
  .drinks-image { max-width: 480px; }

  .gallery-item--tall { grid-column: 1 / 5; }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 3; }
  .gallery-item--wide { grid-column: 5 / 13; }

  .visit-layout { grid-template-columns: 1fr; gap: 48px; }
  .visit-map { aspect-ratio: 16/9; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { max-width: 560px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 29, 58, 0.98);
    backdrop-filter: blur(16px);
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .nav-menu a {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
  }
  .nav-menu .btn {
    margin-top: 16px;
    display: inline-flex;
  }

  .hero-headline { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .about { padding: 80px 0; }
  .about-stats { flex-direction: column; gap: 28px; }

  .menu { padding: 80px 0; }
  .menu-grid { grid-template-columns: 1fr; }

  .drinks { padding: 80px 0; }

  .gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item--tall img,
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img { aspect-ratio: 1/1; }
  .gallery-item--wide { grid-column: 1 / 3; }
  .gallery-item--wide img { aspect-ratio: 16/9; }

  .visit { padding: 80px 0; }

  .contact { padding: 80px 0; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 60px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 0 18px; }
  .hero { padding-top: 88px; padding-bottom: 60px; }
  .hero-headline { font-size: 2.125rem; }
  .section-title { font-size: 1.875rem; }
}
