/* ---------- Base & Tokens ---------- */
:root {
  --cream: #f8efdc;
  --cream-soft: #fbf6ea;
  --dark: #2a0a0a;
  --dark-2: #3a1010;
  --maroon: #5c1414;
  --accent: #c4432c;
  --accent-dark: #a8341f;
  --ink: #241210;
  --ink-soft: #6b5850;
  --line: rgba(36, 18, 16, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 50px rgba(42, 10, 10, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-full: 999px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.4);
}

.eyebrow strong, .eyebrow b { font-weight: 600; color: var(--accent-dark); }

.eyebrow.on-dark {
  border-color: var(--line-light);
  color: var(--cream-soft);
  background: rgba(255, 255, 255, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  box-shadow: 0 10px 24px rgba(196, 67, 44, 0.28);
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--accent-dark);
  box-shadow: 0 16px 32px rgba(196, 67, 44, 0.38);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-scale.in-view { opacity: 1; transform: scale(1); }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.nav-wrap.scrolled { box-shadow: 0 10px 30px rgba(42,10,10,0.08); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  letter-spacing: 0.01em;
}
.logo span { color: var(--accent); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 30px; text-align: center; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); max-width: 900px; margin: 0 auto; }
.hero h1 .accent-word { color: var(--accent); font-style: italic; }

.hero-image {
  position: relative;
  margin: 56px auto 0;
  max-width: 1160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 560px;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.6s var(--ease);
}
.hero-image:hover img { transform: scale(1); }

.reserve-orb {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  cursor: pointer;
  animation: floaty 4.5s ease-in-out infinite;
  transition: transform 0.4s var(--ease);
}
.reserve-orb:hover { transform: translate(-50%, -50%) scale(1.08); }
.reserve-orb .arrow { font-size: 1.3rem; animation: bounce 1.8s ease-in-out infinite; }

@keyframes floaty {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  padding: 130px 0;
}
.about-copy .eyebrow { margin-bottom: 22px; }
.about-copy h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-bottom: 30px; max-width: 520px; }
.about-copy .kicker {
  font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.about-copy .kicker::before { content: ""; width: 30px; height: 1px; background: var(--accent); }

.about-cta { display: flex; align-items: center; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--cream); margin-left: -12px;
}
.avatars img:first-child { margin-left: 0; }
.review-txt { font-size: 0.85rem; }
.review-txt strong { display: block; font-size: 0.95rem; }

.about-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-visual img { width: 100%; height: 460px; object-fit: cover; transition: transform 0.9s var(--ease); }
.about-visual:hover img { transform: scale(1.06); }

/* ---------- Menu ---------- */
.menu-section { padding-bottom: 130px; }
.menu-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.menu-list { display: flex; flex-direction: column; }
.menu-list-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.menu-list-item h4 { font-family: "Playfair Display", serif; font-size: 1.15rem; margin-bottom: 6px; font-weight: 500; }
.menu-list-item p { font-size: 0.85rem; color: var(--ink-soft); }

.menu-heading { display: flex; align-items: center; gap: 22px; margin-bottom: 40px; }
.menu-heading .icon-badge {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cream-soft); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.menu-heading h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.menu-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.menu-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.menu-card .m-icon { font-size: 1.6rem; margin-bottom: 20px; display: block; }
.menu-card h4 { font-family: "Playfair Display", serif; font-size: 1.1rem; margin-bottom: 8px; font-weight: 500; }
.menu-card p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }
.menu-card:hover, .menu-card.active {
  background: var(--dark);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.menu-card:hover h4, .menu-card.active h4,
.menu-card:hover p, .menu-card.active p { color: var(--cream); }
.menu-card:hover p, .menu-card.active p { color: rgba(248,239,220,0.7); }

/* ---------- Reserve Banner ---------- */
.reserve-banner {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin: 0 auto 130px;
  max-width: 1240px;
}
.reserve-banner h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin: 20px 0 34px; }
.reserve-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reserve-photos img {
  border-radius: var(--radius-md);
  height: 190px; object-fit: cover; width: 100%;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.reserve-photos img:hover { transform: translateY(-6px); filter: saturate(1.15); }
.reserve-photos .tall { height: 400px; grid-row: span 2; }

/* ---------- Gallery (dark) ---------- */
.gallery {
  background: var(--dark);
  background-image: radial-gradient(circle at 15% 20%, rgba(196,67,44,0.14), transparent 45%),
                     radial-gradient(circle at 85% 80%, rgba(196,67,44,0.1), transparent 45%);
  padding: 110px 0;
  text-align: center;
  color: var(--cream-soft);
  overflow: hidden;
}
.gallery h2 { color: var(--cream-soft); font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 20px 0 60px; }

.polaroid-row {
  display: flex;
  gap: 26px;
  justify-content: center;
  padding: 0 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.polaroid-row::-webkit-scrollbar { display: none; }

.polaroid {
  background: var(--cream-soft);
  padding: 14px 14px 46px;
  border-radius: 6px;
  flex: 0 0 190px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}
.polaroid:nth-child(odd) { transform: rotate(-6deg); }
.polaroid:nth-child(even) { transform: rotate(5deg); }
.polaroid:nth-child(3n) { transform: rotate(-3deg); }
.polaroid img { border-radius: 2px; height: 210px; object-fit: cover; width: 100%; }
.polaroid span {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center; font-family: "Playfair Display", serif;
  color: var(--ink); font-size: 1rem;
}
.polaroid:hover { transform: rotate(0deg) translateY(-14px) scale(1.04); box-shadow: 0 35px 60px rgba(0,0,0,0.45); z-index: 5; }

/* ---------- Careers ---------- */
.careers {
  padding: 130px 0 90px;
  text-align: center;
  position: relative;
}
.careers-inner {
  max-width: 900px; margin: 0 auto; position: relative; padding: 40px 0;
}
.careers h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); position: relative; z-index: 2; }
.careers .eyebrow { margin-bottom: 22px; }

.float-tag {
  position: absolute;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  border: 1px solid var(--line);
  background: var(--cream-soft);
  box-shadow: 0 10px 24px rgba(42,10,10,0.08);
  animation: drift 6s ease-in-out infinite;
}
.float-tag.honest { top: 10%; left: 4%; animation-delay: 0s; }
.float-tag.friendly { top: -4%; left: 42%; animation-delay: 0.6s; }
.float-tag.passionate { top: 8%; right: 2%; animation-delay: 1.2s; }
.float-tag.adaptable { bottom: 4%; left: 12%; animation-delay: 1.8s; }
.float-tag.creative { bottom: -6%; right: 22%; animation-delay: 2.4s; }
.float-tag.applynow { bottom: 8%; right: 0%; background: var(--dark); color: var(--cream); animation-delay: 3s; }

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.corner-icon { position: absolute; font-size: 1.8rem; opacity: 0.6; }
.corner-icon.tl { top: 0; left: 2%; }
.corner-icon.tr { top: 0; right: 2%; }
.corner-icon.bl { bottom: -10px; left: 6%; }
.corner-icon.br { bottom: -10px; right: 6%; }

.careers .btn { margin-top: 40px; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 40px 0 130px; }
.testi-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 50px; flex-wrap: wrap; }
.testi-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); max-width: 480px; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.testi-card.featured { background: var(--dark); color: var(--cream-soft); }
.testi-card p { font-family: "Playfair Display", serif; font-size: 1.05rem; line-height: 1.5; margin-bottom: 24px; font-weight: 400; font-style: italic; }
.testi-foot { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.testi-foot .stars { color: var(--accent); }
.testi-card.featured .stars { color: #f2c14e; }

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  color: var(--cream-soft);
  padding: 70px 0 30px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 50px; border-bottom: 1px solid var(--line-light);
}
.footer-top .logo { color: var(--cream-soft); font-size: 2.4rem; }
.footer-top .logo span { color: var(--accent); }
.newsletter { display: flex; flex-direction: column; gap: 14px; }
.newsletter p { font-size: 0.95rem; color: rgba(248,239,220,0.65); }
.newsletter form { display: flex; gap: 12px; }
.newsletter input {
  padding: 14px 20px; border-radius: var(--radius-full);
  border: 1px solid var(--line-light); background: transparent;
  color: var(--cream-soft); min-width: 260px; font-family: inherit;
}
.newsletter input::placeholder { color: rgba(248,239,220,0.45); }
.newsletter input:focus { outline: none; border-color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 30px;
  font-size: 0.8rem; color: rgba(248,239,220,0.5); flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a:hover { color: var(--cream-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about, .menu-grid, .reserve-banner, .testi-grid { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
  .reserve-banner { padding: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .float-tag { position: static; display: inline-flex; margin: 6px; animation: none; }
  .careers-inner .float-tag { display: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .navbar { padding: 20px 22px; }
  .nav-links {
    position: fixed; inset: 0 0 0 30%; top: 0;
    flex-direction: column; justify-content: center; align-items: flex-start;
    background: var(--cream); padding: 40px; gap: 28px;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    z-index: 200;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .hero-image { height: 340px; }
  .reserve-orb { width: 96px; height: 96px; font-size: 0.62rem; }
  .menu-cards { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .newsletter input { min-width: 0; flex: 1; }
}
