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

:root {
  --coral: #E07A5F;
  --coral-light: #F2A48E;
  --coral-dark: #C4624A;
  --charcoal: #2D2D2D;
  --charcoal-light: #4A4A4A;
  --cream: #FDF8F5;
  --cream-dark: #F7EDE6;
  --sand: #F5EDE8;
  --white: #FFFFFF;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.08);
  --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ── Typography ─────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}

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

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

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

.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224, 122, 95, 0.1);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--coral);
}

.logo-name {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--coral);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 0;
}

.hamburger::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
}

.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 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 50%, var(--cream-dark) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-image {
  position: relative;
}

.hero-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 600/750;
}

.hero-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

.hero-accent::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: var(--coral-light);
  border-radius: 50%;
  opacity: 0.2;
}

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

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

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 18px;
}

.about-image {
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 520/640;
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--coral);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

/* ── Menu ───────────────────────────────────────── */
.menu {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

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

.menu-header .menu-intro {
  font-size: 1.0625rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(224, 122, 95, 0.08);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(224, 122, 95, 0.2);
}

.menu-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
}

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

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9375rem;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list li span:first-child {
  font-weight: 600;
  color: var(--charcoal);
}

.menu-list li span:last-child {
  font-size: 0.8125rem;
  color: var(--charcoal-light);
  font-style: italic;
}

.menu-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--charcoal-light);
  font-style: italic;
}

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

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

.vibe-header .vibe-intro {
  font-size: 1.0625rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

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

.vibe-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.vibe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vibe-img:hover img {
  transform: scale(1.04);
}

.vibe-img-large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  aspect-ratio: 700/500;
}

.vibe-img:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  aspect-ratio: 400/500;
}

.vibe-img:nth-child(3) {
  grid-column: 1 / 6;
  grid-row: 2 / 3;
  aspect-ratio: 400/500;
}

.vibe-img-wide {
  grid-column: 6 / 13;
  grid-row: 2 / 3;
  aspect-ratio: 700/350;
}

/* ── Visit ──────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a3a3a 100%);
  color: var(--white);
}

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

.visit .section-tag {
  color: var(--coral-light);
}

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

.hours-table {
  margin-top: 40px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 500;
  color: var(--white);
}

.hours-time {
  color: var(--coral-light);
  font-weight: 400;
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  text-align: center;
}

.map-pin {
  margin: 0 auto 20px;
  color: var(--coral);
}

.map-address {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 24px;
}

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

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

.contact-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.contact-item:hover {
  color: var(--coral);
}

.contact-item svg {
  color: var(--coral);
  flex-shrink: 0;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(224, 122, 95, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a8a2;
}

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

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  text-align: center;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-brand .logo-mark {
  color: var(--coral-light);
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-brand p {
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--coral-light);
}

.footer-bottom {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

/* ── Scroll animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .about-inner,
  .visit-inner,
  .contact-inner {
    gap: 48px;
  }

  .menu-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  }

  .main-nav a {
    font-size: 1.125rem;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .about-inner,
  .visit-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .vibe-img-large,
  .vibe-img:nth-child(2),
  .vibe-img:nth-child(3),
  .vibe-img-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 400/320;
  }

  .vibe-img-wide {
    grid-column: 1 / -1;
    aspect-ratio: 400/260;
  }

  .contact-form-wrapper {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  .vibe-img,
  .vibe-img-wide {
    grid-column: 1 / -1;
    aspect-ratio: 400/300;
  }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 45, 0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
