/* ============================================
   EMBER & GROUNDS — Stylesheet
   Palette: Terracotta Studio
   ============================================ */

:root {
  --terracotta:   #B5563E;
  --terra-light:  #D4896A;
  --cream:        #F2E6D9;
  --dark:         #3D2B1F;
  --dark-mid:     #5C3D2E;
  --warm-white:   #FAF5EF;
  --text:         #2C1A10;
  --text-muted:   #7A5C4A;
  --border:       rgba(61,43,31,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Cabinet Grotesk', sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--terra-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--terra-light); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::after { transform: translateX(0); }

.btn--primary {
  background: var(--terracotta);
  color: #fff;
}
.btn--primary:hover { background: var(--dark-mid); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,230,217,0.5);
}
.btn--ghost:hover { border-color: var(--cream); background: rgba(242,230,217,0.08); }

.btn--cream {
  background: var(--cream);
  color: var(--dark);
}
.btn--cream:hover { background: #fff; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(250,245,239,0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 var(--border);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}
.nav.scrolled .nav__logo { color: var(--dark); }
.nav__logo span { font-style: italic; color: var(--terra-light); }
.nav.scrolled .nav__logo span { color: var(--terracotta); }

.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,230,217,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terra-light);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--cream); }
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover { color: var(--terracotta); }
.nav.scrolled .nav__links a::after { background: var(--terracotta); }

.nav__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(242,230,217,0.5);
  color: var(--cream);
  transition: all 0.3s;
}
.nav__cta:hover { background: var(--cream); color: var(--dark); border-color: var(--cream); }
.nav.scrolled .nav__cta { border-color: var(--terracotta); color: var(--terracotta); }
.nav.scrolled .nav__cta:hover { background: var(--terracotta); color: #fff; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav.scrolled .nav__burger span { background: var(--dark); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--terra-light); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero__img.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,43,31,0.75) 0%,
    rgba(61,43,31,0.4) 60%,
    rgba(61,43,31,0.2) 100%
  );
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.35;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1.5rem;
  transition-delay: 0.1s;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.hero__title--line { display: block; }
.hero__title--line.italic { font-style: italic; color: var(--terra-light); }
.hero__title .reveal:nth-child(1) { transition-delay: 0.2s; }
.hero__title .reveal:nth-child(2) { transition-delay: 0.35s; }
.hero__title .reveal:nth-child(3) { transition-delay: 0.5s; }

.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(242,230,217,0.8);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  transition-delay: 0.6s;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  transition-delay: 0.75s;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,230,217,0.6);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(242,230,217,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--terracotta);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 2rem;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,230,217,0.9);
}
.marquee__track .dot { color: rgba(242,230,217,0.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 8rem 4rem;
  background: var(--warm-white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about__images {
  position: relative;
  height: 600px;
}
.about__img-wrap {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}
.about__img-wrap img {
  transition: transform 0.6s var(--ease-out);
}
.about__img-wrap:hover img { transform: scale(1.04); }

.about__img-wrap--top {
  top: 0; left: 0;
  width: 65%; height: 55%;
}
.about__img-wrap--bottom {
  bottom: 0; right: 0;
  width: 60%; height: 50%;
  transition-delay: 0.15s;
}
.about__badge {
  position: absolute;
  bottom: 30%; left: 55%;
  transform: translate(-50%, 50%);
  background: var(--terracotta);
  color: var(--cream);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(181,86,62,0.35);
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.4;
}

.about__text { padding-left: 1rem; }
.about__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 8rem 4rem;
  background: var(--cream);
}
.menu__header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.menu__header .section-label { justify-content: center; display: flex; }
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.tab {
  padding: 0.75rem 1.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
}
.tab:hover { color: var(--terracotta); }
.tab.active { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}
.menu-item {
  background: var(--warm-white);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.3s;
  animation: fadeIn 0.4s var(--ease-out);
}
.menu-item:hover { background: #fff; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-item__info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.menu-item__info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--terracotta);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   STORY
   ============================================ */
.story {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.story__parallax {
  position: absolute;
  inset: -20%;
}
.story__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(61,43,31,0.85) 0%,
    rgba(61,43,31,0.5) 100%
  );
}
.story__content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 700px;
}
.story__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(242,230,217,0.8);
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
}

/* ============================================
   SPECIALTIES
   ============================================ */
.specialties {
  padding: 8rem 4rem;
  background: var(--warm-white);
}
.specialties__header {
  text-align: center;
  margin-bottom: 4rem;
}
.specialties__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.special-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.special-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(61,43,31,0.12);
}
.special-card__img {
  height: 260px;
  overflow: hidden;
}
.special-card__img img {
  transition: transform 0.6s var(--ease-out);
}
.special-card:hover .special-card__img img { transform: scale(1.06); }
.special-card__body {
  padding: 1.8rem;
}
.special-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(181,86,62,0.1);
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.8rem;
}
.special-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.special-card__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}
.special-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--terracotta);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--dark);
  padding: 7rem 4rem;
}
.testimonials__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonials__slider { position: relative; min-height: 160px; }
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
}
.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial__author {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-light);
}
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.tdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(242,230,217,0.25);
  transition: all 0.3s;
}
.tdot.active {
  background: var(--terra-light);
  width: 24px;
  border-radius: 3px;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding: 8rem 4rem;
  background: var(--warm-white);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.visit__details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.8rem; }
.visit__detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.visit__detail svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 2px;
}
.visit__detail strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.3rem;
}
.visit__detail p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}
.visit__social {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.visit__social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.visit__social a svg { width: 16px; height: 16px; }
.visit__social a:hover { border-color: var(--terracotta); color: var(--terracotta); background: rgba(181,86,62,0.05); }

.visit__map {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.visit__map img { border-radius: 2px; }
.visit__map-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--dark);
  color: var(--cream);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.visit__map-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-light);
}
.visit__map-badge strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--terracotta);
  padding: 7rem 4rem;
}
.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.newsletter__inner h2 em { font-style: italic; }
.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 1rem;
}
.newsletter__form input {
  flex: 1;
  padding: 1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(242,230,217,0.15);
  border: 1px solid rgba(242,230,217,0.4);
  border-right: none;
  color: var(--cream);
  outline: none;
  transition: background 0.3s;
}
.newsletter__form input::placeholder { color: rgba(242,230,217,0.5); }
.newsletter__form input:focus { background: rgba(242,230,217,0.22); }
.newsletter__form button {
  padding: 1rem 1.8rem;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.newsletter__form button:hover { background: var(--dark-mid); }
.newsletter__note {
  font-size: 0.78rem;
  color: rgba(242,230,217,0.6);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 5rem 4rem 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,230,217,0.1);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}
.footer__logo em { font-style: italic; color: var(--terra-light); }
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(242,230,217,0.5);
  line-height: 1.7;
  font-weight: 300;
}
.footer__links h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1.2rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(242,230,217,0.5);
  transition: color 0.3s;
  font-weight: 300;
}
.footer__links a:hover { color: var(--cream); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(242,230,217,0.3);
  letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about__grid,
  .visit__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__images { height: 400px; }
  .specialties__cards { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__logo { color: var(--cream); }

  .hero__content { padding: 0 1.5rem; }
  .hero__scroll { right: 1.5rem; }

  .about, .menu, .specialties, .visit, .newsletter, .footer { padding: 5rem 1.5rem; }
  .story__content { padding: 0 1.5rem; }

  .specialties__cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .menu__tabs { flex-wrap: wrap; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form input { border-right: 1px solid rgba(242,230,217,0.4); border-bottom: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 3rem; }
  .hero__actions { flex-direction: column; }
  .about__stats { flex-direction: column; gap: 1.5rem; }
}