/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1A1A1A;
  background: #FAFAFA;
  -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; }
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #1A1A1A; color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 6px 6px; z-index: 200; font-weight: 500;
}
.skip-link:focus { top: 0; }

/* ── Tokens ─────────────────────────────────────── */
:root {
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --coral: #F97583;
  --coral-dark: #E05A6A;
  --cream: #FAFAFA;
  --warm-gray: #F3F0ED;
  --mid-gray: #6B6B6B;
  --border: #E5E0DB;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.10);
  --transition: .25s ease;
}

/* ── Container ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ─────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; color: var(--charcoal); }
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .75rem;
}
.section-eyebrow-center { text-align: center; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.section-title-center { text-align: center; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-coral:hover { background: 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: #fff; }
.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,250,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 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: .55rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--charcoal);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--coral);
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition);
}
.nav a:not(.btn):hover { color: var(--coral); }
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}
.nav a:not(.btn):hover::after { width: 100%; }

.menu-toggle {
  display: none;
  padding: .5rem;
  color: var(--charcoal);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}
.hero-content { max-width: 540px; }
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--mid-gray);
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-meta { display: flex; gap: 2rem; flex-wrap: wrap; }
.meta-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--mid-gray);
}
.hero-image { position: relative; }
.hero-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600/760;
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* ── About ──────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content p { color: var(--mid-gray); margin-bottom: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: .35rem;
}
.stat-label { font-size: .8rem; color: var(--mid-gray); line-height: 1.5; }

/* ── Experience ─────────────────────────────────── */
.experience {
  padding: 7rem 0;
  background: var(--warm-gray);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.exp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card-img { overflow: hidden; aspect-ratio: 420/280; }
.exp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.exp-card:hover .exp-card-img img { transform: scale(1.05); }
.exp-card-body { padding: 1.75rem; }
.exp-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: .75rem;
}
.exp-card-body p { font-size: .92rem; color: var(--mid-gray); line-height: 1.7; }

/* ── Menu ───────────────────────────────────────── */
.menu {
  padding: 7rem 0;
  background: #fff;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.menu-col {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.menu-col-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--coral);
  display: inline-block;
}
.menu-list { display: flex; flex-direction: column; gap: .85rem; }
.menu-item-name {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  color: var(--charcoal);
}
.menu-item-desc {
  display: block;
  font-size: .82rem;
  color: var(--mid-gray);
  margin-top: .15rem;
}
.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .85rem;
  color: var(--mid-gray);
  font-style: italic;
}

/* ── Visit ──────────────────────────────────────── */
.visit {
  padding: 7rem 0;
  background: var(--charcoal);
  color: #fff;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.visit .section-title { color: #fff; }
.visit-info p { color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.visit-details { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }
.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-detail svg { flex-shrink: 0; margin-top: .2rem; color: var(--coral); }
.visit-detail strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.visit-detail p { font-size: .9rem; color: rgba(255,255,255,.7); margin: 0; }
.visit-detail a { color: var(--coral); transition: color var(--transition); }
.visit-detail a:hover { color: #fff; }
.hours-note { font-size: .8rem; opacity: .6; }
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.visit-map iframe { width: 100%; height: 100%; }

/* ── Contact ────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-content p { color: var(--mid-gray); margin-bottom: 2rem; }
.contact-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 520/680; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--charcoal);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(249,117,131,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .85rem 1rem;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
}
.form-success.show { display: flex; }

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-links strong,
.footer-contact strong {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .5rem;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: .9rem; margin: 0; }
.footer-contact a { color: var(--coral); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .visit-grid,
  .contact-grid { gap: 2.5rem; }
  .experience-grid,
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(250,250,250,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.15rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
  .hero-img-wrapper { aspect-ratio: 4/3; }
  .about-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .experience-grid,
  .menu-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  .hero { padding-top: 72px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
