/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2a2d32;
  background: #f5f3f0;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ── Tokens ──────────────────────────────────────── */
:root {
  --charcoal: #1e2227;
  --charcoal-light: #2c3036;
  --coral: #e07a5f;
  --coral-dark: #c4624a;
  --coral-light: #f2a08b;
  --cream: #f5f3f0;
  --cream-dark: #ebe8e3;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #ececec;
  --gray-300: #d4d4d4;
  --gray-500: #767676;
  --gray-700: #3d3d3d;
  --blue: #3a6b8c;
  --blue-dark: #2a5270;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(30,34,39,.08), 0 4px 16px rgba(30,34,39,.06);
  --shadow-lg: 0 4px 24px rgba(30,34,39,.12);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 600; }
p { color: var(--gray-700); }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.1rem; max-width: 540px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

/* ── Layout ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--white); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--coral);
}
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ── Header ──────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,243,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-text { font-style: italic; }

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-link:hover { color: var(--charcoal); background: var(--gray-100); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-toggle:hover { background: var(--gray-100); }
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-content { padding-right: 1rem; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.hero-headline {
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}
.hero-headline em { color: var(--coral); font-style: italic; }
.hero-sub {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
}
.trust-item svg { color: var(--coral); }
.hero-image { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
}
.hero-badge svg { color: var(--coral); }

/* ── About ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.2;
}
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content > p { margin-bottom: 1rem; }
.about-content > p:last-child { margin-bottom: 2rem; }
.about-features { display: flex; flex-direction: column; gap: 1.5rem; }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--coral);
}
.feature-title { margin-bottom: 0.2rem; }
.feature-desc { font-size: 0.9rem; color: var(--gray-500); }

/* ── Drinks ──────────────────────────────────────── */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.drink-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.drink-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.drink-img { overflow: hidden; }
.drink-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.drink-card:hover .drink-img img { transform: scale(1.05); }
.drink-body { padding: 1.5rem; }
.drink-title { margin-bottom: 0.5rem; }
.drink-desc { font-size: 0.92rem; color: var(--gray-500); line-height: 1.65; }

/* ── Food ────────────────────────────────────────── */
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.food-content .section-title { margin-bottom: 1.25rem; }
.food-content > p { margin-bottom: 2rem; }
.food-highlights { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.highlight { display: flex; gap: 1rem; align-items: flex-start; }
.highlight-num {
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  padding-top: 0.15rem;
}
.highlight h4 { margin-bottom: 0.2rem; }
.highlight p { font-size: 0.9rem; color: var(--gray-500); }
.food-images { position: relative; }
.food-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.food-img-main img { width: 100%; height: 100%; object-fit: cover; }
.food-img-float {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.food-img-float img { width: 100%; height: 100%; object-fit: cover; }

/* ── Events ──────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.event-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.event-card:hover { border-color: var(--coral); transform: translateY(-4px); box-shadow: var(--shadow); }
.event-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--coral);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.event-card:hover .event-icon { background: var(--coral); border-color: var(--coral); color: var(--white); }
.event-title { margin-bottom: 0.5rem; }
.event-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

/* ── Visit ───────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.visit-info .section-title { margin-bottom: 2rem; }
.visit-details { display: flex; flex-direction: column; gap: 1.5rem; }
.visit-item { display: flex; gap: 1rem; align-items: flex-start; }
.visit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--coral);
}
.visit-item h4 { margin-bottom: 0.2rem; }
.visit-item p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }
.visit-item a { color: var(--coral); transition: var(--transition); }
.visit-item a:hover { color: var(--coral-dark); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.map-wrap iframe { width: 100%; height: 480px; }

/* ── Contact ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-content .section-title { margin-bottom: 1rem; }
.contact-content > p { margin-bottom: 2rem; }
.contact-direct { display: flex; flex-direction: column; gap: 1rem; }
.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-direct-item:hover { border-color: var(--coral); color: var(--coral); }
.contact-direct-item svg { color: var(--coral); flex-shrink: 0; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(224,122,95,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-500); }
.form-group textarea { resize: vertical; }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  color: #2e7d32;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg { color: #2e7d32; flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 300px; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--coral); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
}
.footer-contact svg { flex-shrink: 0; margin-top: 0.2rem; color: var(--coral); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Mobile Nav ──────────────────────────────────── */
@media (max-width: 868px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { padding: 0.75rem 0; width: 100%; }
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .food-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content { padding-right: 0; order: 1; }
  .hero-image { order: 0; }
  .hero-img-wrap img { height: 400px; }
  .hero-badge { left: 1rem; bottom: -0.75rem; }
  .about-img-small { right: 0; bottom: -1.5rem; }
  .food-img-float { left: 0; bottom: -1.5rem; }
  .drinks-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .events-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 0.75rem; }
}
