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

:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --charcoal-mid: #3d3d3d;
  --coral: #C45B3A;
  --coral-light: #d4785e;
  --coral-pale: #f5e6e0;
  --cream: #faf8f6;
  --cream-dark: #f0ebe6;
  --white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --line: #e5e0db;
  --line-light: #f0ebe6;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--coral);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-display), serif;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

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

.nav-link:hover {
  color: var(--white);
}

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

.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--coral-light);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.92) 0%,
    rgba(26, 26, 26, 0.75) 50%,
    rgba(26, 26, 26, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.hero-greeting {
  max-width: 600px;
}

.hero-greeting-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(196, 91, 58, 0.3);
  border-radius: 20px;
}

.hero-headline {
  font-family: var(--font-display), serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

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

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background: var(--coral-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 91, 58, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

/* ── Stat Cards ── */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 91, 58, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  display: block;
  font-family: var(--font-display), serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--coral);
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Section Shared ── */
.section {
  padding: 120px 0;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display), serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 20px;
}

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

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

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

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

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--coral-pale);
  border-radius: 12px;
  z-index: -1;
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-features {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
}

.about-icon {
  color: var(--coral);
  flex-shrink: 0;
}

/* ── Menu ── */
.menu {
  background: var(--cream);
}

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

.menu-category {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  border: 1px solid var(--line);
  transition: all var(--transition);
}

.menu-category:hover {
  border-color: rgba(196, 91, 58, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.menu-category-icon {
  width: 48px;
  height: 48px;
  background: var(--coral-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 20px;
}

.menu-category-title {
  font-family: var(--font-display), serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.menu-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.menu-item-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
}

.menu-item-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  text-align: right;
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Gallery ── */
.gallery {
  background: var(--white);
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item--wide {
  grid-column: span 12;
  height: 400px;
}

.gallery-item:nth-child(2) {
  grid-column: span 6;
  height: 320px;
}

.gallery-item:nth-child(3) {
  grid-column: span 6;
  height: 320px;
}

.gallery-item:nth-child(4) {
  grid-column: span 6;
  height: 320px;
}

.gallery-item:nth-child(5) {
  grid-column: span 6;
  height: 320px;
}

/* ── Visit ── */
.visit {
  background: var(--cream);
}

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

.visit-info .section-label {
  text-align: left;
}

.visit-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.visit-details {
  margin-top: 40px;
  display: grid;
  gap: 28px;
}

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

.visit-icon {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.visit-detail a {
  color: var(--text-secondary);
}

.visit-detail a:hover {
  color: var(--coral);
}

.visit-map {
  border-radius: 12px;
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--line);
}

/* ── CTA ── */
.cta {
  background: var(--charcoal);
  padding: 120px 0;
}

.cta-card {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta .section-label {
  color: var(--coral);
}

.cta .section-title {
  color: var(--white);
  margin-bottom: 24px;
}

.cta-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal-light);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand .nav-logo-mark {
  width: 44px;
  height: 44px;
  font-size: 22px;
}

.footer-name {
  font-family: var(--font-display), serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 400;
  transition: color var(--transition);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.45);
}

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

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* ── Mobile Menu ── */
.nav-links {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links.open {
  max-height: 400px;
  padding: 24px 0;
}

.nav-links li {
  width: 100%;
  text-align: center;
}

.nav-links .nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
}

.nav-links .nav-link::after {
  display: none;
}

.nav-links .nav-cta {
  margin-top: 8px;
}

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

  .hero-stats {
    max-width: 400px;
  }

  .about-grid {
    gap: 48px;
  }

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

  .visit-map {
    height: 360px;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    top: 72px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-content {
    padding: 80px 24px 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 18px 14px;
  }

  .stat-number {
    font-size: 26px;
  }

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

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

  .about-content .section-label,
  .about-content .section-title {
    text-align: center;
  }

  .about-content .lead {
    text-align: center;
  }

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

  .gallery-item--wide {
    height: 260px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 12;
    height: 240px;
  }

  .cta {
    padding: 80px 0;
  }

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

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

  .footer {
    padding: 56px 0 0;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 15px;
  }

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

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

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .menu-category {
    padding: 28px 24px;
  }

  .menu-item {
    flex-direction: column;
    gap: 4px;
  }

  .menu-item-desc {
    text-align: left;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
