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

:root {
  --terracotta: #B85C38;
  --terracotta-dark: #9A4B2C;
  --terracotta-light: #D4845E;
  --sand: #F5EDE4;
  --sand-light: #FAF6F1;
  --sand-dark: #E8DDD2;
  --cream: #FDF9F4;
  --charcoal: #2A2420;
  --charcoal-light: #5A4E44;
  --warm-gray: #8A7E74;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  -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 var(--space-md);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 0.85rem; font-family: var(--font-sans); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--charcoal-light);
}

.accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
}

/* ── Section Tags ── */
.section-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 92, 56, 0.25);
}

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

.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

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

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(42, 36, 32, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.nav-logo:hover {
  color: var(--terracotta);
}

.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal-light);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--terracotta);
}

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

.nav-cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--terracotta);
  color: var(--terracotta) !important;
  border-radius: 2px;
  transition: all 0.3s ease !important;
}

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

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

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--space-md) var(--space-lg);
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(184, 92, 56, 0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(184, 92, 56, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-main {
  max-width: 540px;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.hero-headline {
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
  line-height: 1.8;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-photo-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42, 36, 32, 0.12);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(transparent, rgba(42, 36, 32, 0.6));
  color: var(--white);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
}

.stat-cards {
  position: absolute;
  bottom: -40px;
  left: -40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card {
  background: var(--white);
  padding: 1.2rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(42, 36, 32, 0.1);
  min-width: 180px;
  border: 1px solid var(--sand-dark);
}

.stat-card--accent {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.stat-card--accent .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.stat-card--accent .stat-number {
  color: var(--white);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ── Specialties ── */
.specialties {
  padding: var(--space-2xl) 0;
  background: var(--sand-light);
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
}

.specialties .container {
  text-align: center;
  max-width: 1100px;
}

.specialties .section-title {
  margin-bottom: var(--space-lg);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: left;
}

.specialty-card {
  padding: var(--space-md);
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--sand-dark);
  transition: all 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 36, 32, 0.08);
  border-color: var(--terracotta-light);
}

.specialty-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: 50%;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.specialty-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.specialty-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── About ── */
.about {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 600px;
}

.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42, 36, 32, 0.1);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(42, 36, 32, 0.14);
  border: 4px solid var(--cream);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: var(--space-md) 0;
}

.about-content .section-title {
  margin-bottom: var(--space-md);
}

.about-content p {
  margin-bottom: var(--space-sm);
  color: var(--charcoal-light);
  line-height: 1.85;
}

.about-signature {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--sand-dark);
  font-size: 1.2rem;
}

/* ── Menu ── */
.menu {
  padding: var(--space-2xl) 0;
  background: var(--sand-light);
  border-top: 1px solid var(--sand-dark);
}

.menu .container {
  max-width: 1100px;
}

.menu-lead {
  max-width: 600px;
  color: var(--warm-gray);
  margin-bottom: var(--space-lg);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.menu-category {
  background: var(--white);
  border-radius: 4px;
  padding: var(--space-md);
  border: 1px solid var(--sand-dark);
  position: relative;
}

.menu-category--featured {
  border-color: var(--terracotta-light);
  background: linear-gradient(to bottom, var(--sand-light), var(--white));
}

.menu-category-badge {
  position: absolute;
  top: -1px;
  right: var(--space-sm);
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 4px 4px;
}

.menu-category h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--sand-dark);
}

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

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--sand);
  gap: var(--space-sm);
}

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

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--warm-gray);
  text-align: right;
  line-height: 1.5;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-style: italic;
}

/* ── Visit ── */
.visit {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.visit-info .section-title {
  margin-bottom: var(--space-lg);
}

.visit-details {
  display: grid;
  gap: var(--space-md);
}

.visit-detail {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: var(--space-sm);
}

.visit-detail dt {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  padding-top: 0.2rem;
}

.visit-detail dd {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.visit-detail a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--sand-dark);
  transition: border-color 0.2s ease;
}

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

.visit-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(42, 36, 32, 0.1);
  border: 1px solid var(--sand-dark);
  min-height: 400px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

/* ── Contact ── */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--sand-light);
  border-top: 1px solid var(--sand-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-content .section-title {
  margin-bottom: var(--space-sm);
}

.contact-content p {
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 440px;
}

.contact-form {
  background: var(--white);
  padding: var(--space-md);
  border-radius: 4px;
  border: 1px solid var(--sand-dark);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.08);
}

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

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

.form-success {
  margin-top: var(--space-sm);
  padding: 1rem;
  background: rgba(184, 92, 56, 0.08);
  border: 1px solid rgba(184, 92, 56, 0.2);
  border-radius: 2px;
  color: var(--terracotta-dark);
  font-size: 0.9rem;
  text-align: center;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer .container {
  max-width: 1200px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.footer-brand span:not(.nav-logo-mark) {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--terracotta-light);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .hero-main {
    max-width: 100%;
    text-align: center;
  }

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

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

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .stat-cards {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-images {
    min-height: 400px;
  }

  .about-img-float {
    right: -16px;
    bottom: -16px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 249, 244, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-bottom: 1px solid var(--sand-dark);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

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

  .nav-toggle {
    display: flex;
  }

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

  .stat-cards {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    justify-content: center;
    margin-top: var(--space-sm);
  }

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

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-images {
    min-height: 360px;
    order: -1;
  }

  .about-img-float {
    right: -10px;
    bottom: -10px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .stat-cards {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
  }
}
