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

:root {
  --midnight: #0a2e5c;
  --midnight-light: #134074;
  --mint: #3dd9c0;
  --mint-light: #e8faf7;
  --mint-dark: #2bb5a0;
  --white: #ffffff;
  --off-white: #f8fafb;
  --gray-50: #f4f7f8;
  --gray-100: #e8ecef;
  --gray-200: #d1d9e0;
  --gray-400: #9aa8b5;
  --gray-600: #5a6b7a;
  --gray-800: #2a3a48;
  --gray-900: #1a2a36;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-800);
  background: var(--white);
  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;
}

address {
  font-style: normal;
}

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

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

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--midnight);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--mint-dark);
}

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

.btn-primary {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
}

.btn-primary:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10, 46, 92, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--midnight);
  border-color: var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--midnight);
  color: var(--midnight);
}

.btn-full {
  width: 100%;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 1px 12px rgba(10, 46, 92, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--midnight);
}

.nav-logo {
  color: var(--mint-dark);
}

.nav-brand-text {
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gray-600);
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover {
  color: var(--midnight);
  background: var(--gray-50);
}

.nav-cta {
  background: var(--midnight) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--midnight-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--midnight);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: rotate(-45deg);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 217, 192, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--mint-dark);
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.1;
  color: var(--midnight);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--mint-dark);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  border-radius: 4px;
}

.hero-image-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--mint);
  border-radius: 4px;
  z-index: -1;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  animation: float 2.4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--off-white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 4px;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -24px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--mint);
  border-radius: 4px;
  z-index: -1;
}

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

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

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--midnight);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-100);
}

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

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

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

.drink-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.drink-card:hover {
  box-shadow: 0 16px 48px rgba(10, 46, 92, 0.08);
  transform: translateY(-4px);
}

.drink-card-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.drink-card:hover .drink-card-image img {
  transform: scale(1.03);
}

.drink-card-image {
  overflow: hidden;
}

.drink-card-body {
  padding: 28px;
}

.drink-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--midnight);
  margin-bottom: 10px;
}

.drink-card-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 0;
  background: var(--midnight);
}

.gallery .section-eyebrow {
  color: var(--mint);
}

.gallery .section-title {
  color: var(--white);
}

.gallery .section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s 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 {
  height: 100%;
}

.gallery-item:nth-child(2) {
  grid-column: 5 / 9;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
}

.gallery-item--wide {
  grid-column: 5 / 13;
  grid-row: 2 / 3;
}

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

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.visit-info {
  padding: 20px 0;
}

.visit-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.visit-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--mint-dark);
}

.visit-row a {
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s, border-color 0.2s;
}

.visit-row a:hover {
  color: var(--midnight);
  border-color: var(--midnight);
}

.visit-map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 400px;
  background: var(--gray-100);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--off-white);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-900);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint-dark);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--mint-light);
  border: 1px solid var(--mint);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--midnight);
  margin-top: 8px;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--mint-dark);
}

/* ── Footer ── */
.footer {
  background: var(--midnight);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo-icon {
  color: var(--mint);
}

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.8;
}

.footer-contact a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--mint);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Mobile Menu ── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    padding: 14px 16px;
    border-radius: 6px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-image img {
    height: 500px;
  }

  .hero-image-accent {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap img {
    height: 400px;
  }

  .about-image-wrap::after {
    display: none;
  }

  .drinks-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .gallery-item--tall {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-item--tall img {
    height: 300px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item img {
    height: 240px;
  }

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

  .visit-map {
    min-height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 100px 20px 80px;
  }

  .hero-headline {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

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

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

  .about,
  .drinks,
  .gallery,
  .visit,
  .contact {
    padding: 80px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px;
  }

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

  .gallery-item--tall {
    grid-column: auto;
  }
}
