/* Karried Away by J. Smith — brand styles */

:root {
  --navy: #1c2740;
  --navy-deep: #131b2e;
  --navy-soft: #2a3a5c;
  --gold-light: #f7d494;
  --gold: #d9a655;
  --gold-dark: #b5754f;
  --rust: #b5563c;
  --cream: #fff8ec;
  --cream-2: #fbeed9;
  --text: #26241f;
  --text-soft: #5a5449;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(28, 39, 64, 0.15);
  --shadow-lg: 0 20px 50px rgba(19, 27, 46, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Mulish", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  margin: 0;
  color: var(--navy);
}

p { line-height: 1.65; color: var(--text-soft); }

a { text-decoration: none; }

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-doordash {
  background: #ff3008;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 48, 8, 0.35);
}
.btn-doordash:hover { background: #e22a06; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(181, 117, 79, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--cream); }

.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28, 39, 64, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(217, 166, 85, 0.25);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand img { width: 52px; height: 52px; border-radius: 50%; }
.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: "Mulish", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid rgba(217,166,85,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-actions .btn-sm-hide { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 25% 20%, var(--navy-soft), var(--navy) 60%, var(--navy-deep));
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(217,166,85,0.35) 1px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.15;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 70px 24px 40px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--cream);
  line-height: 1.08;
  margin: 16px 0 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p.lead {
  color: #d6dced;
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: "Fraunces", serif; font-size: 1.6rem; color: var(--gold-light); }
.hero-stats span { font-size: 0.78rem; color: #b9c1d6; text-transform: uppercase; letter-spacing: 0.08em; }

.hero-art { position: relative; display: flex; justify-content: center; align-items: center; padding: 30px; min-height: 420px; }

.ring-decor {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px dashed rgba(247, 212, 148, 0.35);
  animation: spin 40s linear infinite;
}
.ring-decor::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 1px solid rgba(247, 212, 148, 0.2);
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.steam-svg {
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  z-index: 1;
}

.plate-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(-3deg);
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.plate-card img { width: 100%; display: block; }
.plate-seal {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: var(--shadow-lg);
  transform: rotate(6deg);
}
.plate-seal img { width: 100%; height: 100%; border-radius: 50%; }

.floating-chip {
  position: absolute;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  white-space: nowrap;
}
.chip-1 { top: 10%; left: -2%; transform: rotate(-6deg); }
.chip-2 { bottom: 6%; right: -4%; transform: rotate(4deg); background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); }

@media (max-width: 980px) {
  .ring-decor { width: 340px; height: 340px; }
  .chip-1, .chip-2 { font-size: 0.72rem; padding: 8px 14px; }
}
@media (max-width: 460px) {
  .chip-1 { left: 0; top: 2%; }
  .chip-2 { right: 0; bottom: 2%; }
}

.wave {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -2px;
}

/* ---------- About / highlights ---------- */
.about {
  padding: 80px 0 60px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 10px 0 18px; }
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3.1;
  object-fit: cover;
}
.pill-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.pill {
  background: var(--cream-2);
  border: 1px solid rgba(181,117,79,0.25);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.highlight-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.highlight-card .ico { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.highlight-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.highlight-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Order banner ---------- */
.order-banner {
  background: linear-gradient(120deg, var(--rust), var(--gold-dark));
  color: #fff;
  padding: 46px 0;
}
.order-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.order-banner h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.order-banner p { color: rgba(255,255,255,0.85); margin: 0; }
.order-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Menu ---------- */
.menu-section { padding: 80px 0 40px; }
.menu-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.menu-head h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); margin: 10px 0 12px; }

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}
.menu-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.menu-tab:hover { background: rgba(28,39,64,0.06); }
.menu-tab.active { background: var(--navy); color: var(--cream); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }

.menu-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.88rem;
  margin-bottom: 30px;
  font-style: italic;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.dish-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; }
.dish-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
}
.dish-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.dish-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.dish-top h4 { font-size: 1.08rem; }
.dish-price { font-family: "Fraunces", serif; font-weight: 700; color: var(--gold-dark); font-size: 1.05rem; white-space: nowrap; }
.dish-body p { font-size: 0.88rem; margin: 0; flex: 1; }

/* simple rows for sides/sauces/drinks */
.row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.row-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.row-card .thumb {
  width: 62px; height: 62px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-2);
}
.row-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.row-card .thumb.no-img {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.row-info { flex: 1; }
.row-info .row-top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.row-info h5 { margin: 0; font-family: "Fraunces", serif; font-size: 0.98rem; color: var(--navy); }
.row-info p { margin: 4px 0 0; font-size: 0.82rem; }
.row-price { font-weight: 800; color: var(--gold-dark); font-size: 0.92rem; white-space: nowrap; }

.sauce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sauce-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.sauce-card .row-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.sauce-card h5 { margin: 0; font-family: "Fraunces", serif; color: var(--navy); font-size: 0.98rem; }
.sauce-card p { margin: 6px 0 0; font-size: 0.82rem; }
.sauce-card .row-price { font-size: 0.88rem; }

/* ---------- Order / location ---------- */
.order-section { padding: 70px 0; background: var(--cream-2); }
.order-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}
.order-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.order-card h3 { color: var(--cream); font-size: 1.8rem; margin-bottom: 14px; }
.order-card p { color: #cdd4e6; margin-bottom: 26px; }
.order-steps { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.order-steps div { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: #d6dced; }
.order-steps span {
  background: var(--gold);
  color: var(--navy);
  min-width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem; flex-shrink: 0;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: var(--shadow);
}
.info-card h4 { font-size: 1.2rem; margin-bottom: 18px; }
.info-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.info-row .ico { font-size: 1.2rem; }
.info-row strong { display: block; color: var(--navy); font-size: 0.92rem; }
.info-row span { font-size: 0.86rem; color: var(--text-soft); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: #b9c1d6;
  padding: 50px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 50%; }
.footer-brand strong { color: var(--cream); font-family: "Fraunces", serif; font-size: 1.1rem; }
footer h5 { color: var(--cream); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer a { color: #b9c1d6; font-size: 0.9rem; transition: color 0.2s; }
footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #7c86a3;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-stats { justify-content: center; }
  .hero-art { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .highlights { grid-template-columns: 1fr; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .row-grid { grid-template-columns: 1fr; }
  .sauce-grid { grid-template-columns: repeat(2, 1fr); }
  .order-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .order-banner .wrap { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .dish-grid { grid-template-columns: 1fr; }
  .sauce-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
