/* ============ Ahara — Homely.Healthy.Tasty ============ */
:root {
  --red: #E00504;
  --green: #648D00;
  --yellow: #FFB32C;
  --orange: #FF5E17;
  --ink: #524948;
  --ink-deep: #3A3331;
  --ivory: #FDF9F1;
  --cream: #F7EEDF;
  --card: #FFFFFF;
  --line: #EADFCB;
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); color: var(--ink-deep); line-height: 1.12; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hp { position: absolute; left: -9999px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: .78rem 1.5rem; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(224,5,4,.28); }
.btn--red:hover { background: #C50403; }
.btn--ghost { background: transparent; color: var(--ink-deep); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink-deep); color: #fff; border-color: var(--ink-deep); }
.btn--outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--lg { padding: .95rem 1.9rem; font-size: 1.02rem; }
.btn--full { width: 100%; }
.ic { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ---- Eyebrow + tricolor tagline ---- */
.eyebrow {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: rgba(255,255,255,.85); }
.dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.dot--red { background: var(--red); }
.dot--green { background: var(--green); }
.dot--orange { background: var(--orange); }
.dot--yellow { background: var(--yellow); }

.tricolor {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.25rem); letter-spacing: .14em; text-transform: none;
  margin: 1.1rem 0 1rem;
}
.tricolor--sm { font-size: .85rem; margin: .6rem 0 0; }
.t-red { color: var(--red); }
.t-green { color: var(--green); }
.t-orange { color: var(--orange); }
.sep { color: var(--ink); padding: 0 .18em; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,249,241,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1180px; margin: 0 auto; padding: .65rem 1.25rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand img { width: 120px; height: auto; }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: .3rem 0; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav__links a:hover { color: var(--red); border-color: var(--red); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__burger span { display: block; width: 24px; height: 2.5px; background: var(--ink-deep); margin: 5px 0; border-radius: 2px; transition: .2s; }

.nav__cta { margin-left: 0; }
.nav__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--ink-deep); border: 1.5px solid var(--line);
  transition: color .15s, border-color .15s, transform .15s;
}
.nav__social:hover { color: var(--red); border-color: var(--red); transform: translateY(-2px); }
.nav__social .ic { width: 1.05em; height: 1.05em; }

/* ---- Hero ---- */
.hero { overflow: hidden; }
.hero__inner {
  max-width: 1180px; margin: 0 auto; padding: 4rem 1.25rem 4.5rem;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}
.hero__title {
  font-size: clamp(2.6rem, 5.6vw, 4.3rem); font-weight: 600; letter-spacing: -.01em;
}
.hero__title em { font-style: italic; color: var(--red); }
.hero__sub { max-width: 46ch; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.1rem; }
.hero__note { font-size: .85rem; color: var(--ink); opacity: .8; }

.hero__art { position: relative; justify-self: center; }
.arch {
  width: min(400px, 78vw); aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden; background: var(--cream);
  border: 10px solid #fff;
  box-shadow: 0 30px 60px rgba(82,73,72,.22);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.stamp {
  position: absolute; top: 14px; right: -10px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-body); font-weight: 600; font-size: .72rem; letter-spacing: .12em;
  border: 3px dashed rgba(255,255,255,.7);
  transform: rotate(10deg);
  box-shadow: 0 10px 24px rgba(224,5,4,.35);
}

/* ---- Ribbon marquee ---- */
.ribbon { background: var(--red); color: #fff; overflow: hidden; padding: .7rem 0; }
.ribbon__track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; font-style: italic;
  animation: slide 26s linear infinite;
}
.ribbon__track i { font-style: normal; color: var(--yellow); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Story ---- */
.story { background: var(--ivory); }
.story__inner {
  max-width: 1180px; margin: 0 auto; padding: 5rem 1.25rem;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: center;
}
.story__text h2 { margin-bottom: 1.1rem; }
.story__text p + p { margin-top: .9rem; }
.leafs { list-style: none; margin-top: 1.6rem; display: grid; gap: .7rem; }
.leafs li { display: flex; align-items: center; gap: .7rem; font-weight: 500; }
.leaf {
  width: 16px; height: 16px; flex: none;
  border-radius: 0 70% 0 70%; transform: rotate(45deg);
}
.leaf--green { background: var(--green); }
.leaf--orange { background: var(--orange); }
.leaf--red { background: var(--red); }

.story__art {
  background: var(--cream); border-radius: var(--radius);
  padding: 2.4rem 2rem 1.6rem; text-align: center;
  border: 1px solid var(--line);
}
.story__art img { margin: 0 auto; width: min(230px, 60%); }
.story__art figcaption { font-size: .88rem; margin-top: 1rem; font-style: italic; }

/* ---- Weekly menu ---- */
.weekly { background: var(--cream); padding: 5rem 1.25rem; }
.weekly__inner { max-width: 780px; margin: 0 auto; }
.weekly__head { text-align: center; margin-bottom: 2.6rem; }
.weekly__head .eyebrow { justify-content: center; }
.weekly__head h2 { margin-bottom: .6rem; }
.weekly__sub { max-width: 46ch; margin: 0 auto; }
.weekly__list { display: grid; gap: .8rem; margin-bottom: 2.4rem; }
.wday {
  --accent: var(--red);
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--card); border-radius: 12px;
  padding: .95rem 1.3rem; border-left: 5px solid var(--accent);
  box-shadow: 0 4px 14px rgba(82,73,72,.06);
}
.wday__name {
  flex: 0 0 100px; font-weight: 600; font-size: .95rem; color: var(--accent);
}
.wday__dish { font-size: .92rem; color: var(--ink-deep); line-height: 1.5; }
.weekly__cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.weekly__phone { font-weight: 600; color: var(--ink); text-decoration: none; }
.weekly__phone:hover { color: var(--red); }

@media (max-width: 560px) {
  .wday { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .wday__name { flex: none; }
}

/* ---- Menu ---- */
.menu { background: var(--cream); padding: 5rem 1.25rem; }
.menu__head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.menu__head h2 { margin-bottom: .8rem; }
.cards {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(82,73,72,.16); }
.card--featured { border: 2px solid var(--red); }
.card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--yellow); color: var(--ink-deep);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
}
.card__img { background: var(--ivory); padding: 1.4rem; }
.card__img img { width: min(230px, 70%); margin: 0 auto; }
.card__body { padding: 1.4rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card__body p { font-size: .93rem; flex: 1; }
.card__top { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.card__price { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--red); white-space: nowrap; }
.menu__more { text-align: center; margin-top: 2.4rem; font-size: .95rem; }
.menu__more a { color: var(--red); font-weight: 600; }

/* ---- Join ---- */
.join { background: var(--green); color: #fff; padding: 5rem 1.25rem; }
.join__head { max-width: 620px; margin: 0 auto 3rem; text-align: center; }
.join__head h2 { color: #fff; margin-bottom: .8rem; }
.join__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.tile {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  text-decoration: none; color: #fff; display: flex; flex-direction: column; gap: .6rem;
  transition: background .2s ease, transform .2s ease;
}
a.tile:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.tile h3 { color: #fff; }
.tile p { font-size: .92rem; color: rgba(255,255,255,.88); flex: 1; }
.tile__emoji { font-size: 1.7rem; }
.tile__go { font-weight: 600; color: var(--yellow); }
.mini-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.mini-form input[type="email"] {
  flex: 1 1 150px; border: 0; border-radius: 999px; padding: .75rem 1.1rem;
  font-family: var(--font-body); font-size: .93rem; color: var(--ink-deep);
}
.mini-form .btn { padding: .72rem 1.3rem; }

/* ---- Booking ---- */
.book { background: var(--ivory); padding: 5rem 1.25rem; }
.book__inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 3.5rem; align-items: start;
}
.book__copy h2 { margin-bottom: 1rem; }
.book__copy > .book__alt:first-of-type { margin-top: 2rem; }
.book__alt { display: grid; gap: .7rem; justify-items: start; margin-top: 1.2rem; }
.book__alt p { font-weight: 600; }
.book__form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; display: grid; gap: 1.1rem;
  box-shadow: 0 24px 48px rgba(82,73,72,.1);
}
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink-deep); }
.field .opt { font-weight: 400; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink-deep);
  border: 1.5px solid var(--line); border-radius: 10px;
  padding: .7rem .9rem; background: var(--ivory); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
}
.field--split { grid-template-columns: 1fr 1fr; gap: 1rem; }
.field--split > div { display: grid; gap: .35rem; }
.book__fine { font-size: .82rem; text-align: center; opacity: .8; }

/* ---- Footer ---- */
.footer { background: var(--ink-deep); color: #EFE8DC; padding: 3.5rem 1.25rem 1.6rem; }
.footer__inner {
  max-width: 1180px; margin: 0 auto 2.4rem;
  display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 2.5rem;
}
.footer__brand img { filter: brightness(0) invert(1); opacity: .95; width: 130px; height: auto; }
.footer__col { display: grid; gap: .5rem; align-content: start; }
.footer__col h4 {
  font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: .3rem;
}
.footer__col a { text-decoration: none; opacity: .9; }
.footer__col a:hover { opacity: 1; color: #fff; }
.footer__legal { text-align: center; font-size: .8rem; opacity: .65; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.4rem; max-width: 1180px; margin: 0 auto; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-top: 2.6rem; }
  .hero__copy .eyebrow { justify-content: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__art { order: -1; }
  .arch { width: min(320px, 74vw); }
  .story__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .cards, .join__grid { grid-template-columns: 1fr; max-width: 480px; }
  .book__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
}
@media (max-width: 820px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: .5rem 1.25rem 1rem;
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: .7rem 0; border-bottom: 0; }
  .nav__cta { margin-left: auto; padding: .6rem 1rem; font-size: .85rem; }
  .nav__burger { display: block; }
}
@media (max-width: 480px) {
  .field--split { grid-template-columns: 1fr; }
  .stamp { width: 76px; height: 76px; font-size: .62rem; right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon__track { animation: none; }
  .btn, .card, .tile { transition: none; }
}
