/* ---------------------------------------------------
   Lahori Bowls — design tokens
--------------------------------------------------- */
:root {
  --charcoal: #1a1512;
  --charcoal-2: #2b241f;
  --cream: #f2e8d5;
  --cream-2: #e9dcc0;
  --orange: #ff6b35;
  --orange-deep: #d9501f;
  --teal: #2bb3a3;
  --teal-deep: #1f8a7d;
  --marigold: #d9a441;
  --brick: #b8412a;
  --ink: #2a2420;
  --ink-soft: #55493e;
  --line: rgba(42, 36, 32, 0.14);
  --line-dark: rgba(242, 232, 213, 0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1120px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

/* skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #1a1512;
  padding: 10px 16px;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ---------------------------------------------------
   Nav
--------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 21, 18, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-dark);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 56px;
  width: auto;
  border-radius: 10px;
}

.brand span {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--cream-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.nav-links .btn { padding: 10px 20px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--cream);
}

/* ---------------------------------------------------
   Buttons
--------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease, color .15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: #201007;
}
.btn-primary:hover { background: var(--orange-deep); }

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

.btn-outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { border-color: var(--brick); color: var(--brick); }

/* ---------------------------------------------------
   Hero
--------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: #100d0b url("assets/hero-mural.jpg") center 38% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(180deg, rgba(14,11,9,0.72) 0%, rgba(14,11,9,0.64) 45%, rgba(14,11,9,0.9) 100%);
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 70px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(242, 232, 213, 0.45);
  color: var(--cream);
  background: rgba(255, 107, 53, 0.15);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 26px;
}

.badge strong { color: var(--orange); font-weight: 700; }

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  max-width: 16ch;
  margin: 0 auto 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.hero .sub {
  color: var(--cream-2);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 52ch;
  margin: 0 auto 40px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------
   About strip
--------------------------------------------------- */
.about {
  padding: 96px 0 88px;
  background: var(--cream);
}

.about .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 22px;
  color: var(--brick);
}

.about p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 46ch;
}

.about p + p { margin-top: 16px; }

.pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: #fff8;
}

.about-card {
  border-radius: 18px;
  padding: 34px;
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 85% -10%, rgba(43,179,163,0.35), transparent 55%);
}

.about-card h3 {
  color: var(--cream);
  font-size: 1.4rem;
  position: relative;
}

.about-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  position: relative;
}

.about-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--cream-2);
  font-size: 0.98rem;
}

.about-card li span:last-child {
  color: var(--marigold);
  font-weight: 600;
}

/* ---------------------------------------------------
   Build your bowl
--------------------------------------------------- */
.build {
  background: var(--charcoal);
  color: var(--cream);
  padding: 96px 0;
}

.build .head {
  max-width: 60ch;
  margin-bottom: 56px;
}

.build h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.build .head p {
  color: var(--cream-2);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 54px;
}

.step {
  background: rgba(242, 232, 213, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 26px 22px;
}

.step .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.step h3 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--cream-2);
  font-size: 0.92rem;
  margin: 0;
}

.build-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--line-dark);
  padding-top: 40px;
}

.build-cta .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--teal);
}

.build-cta .price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream-2);
  font-weight: 400;
  margin-top: 4px;
}

/* ---------------------------------------------------
   Visit
--------------------------------------------------- */
.visit {
  background: var(--cream);
  padding: 96px 0;
}

.visit .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.visit h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--brick);
  margin-bottom: 24px;
}

.info-line {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.info-line:last-of-type { border-bottom: 1px solid var(--line); }

.info-line .k {
  min-width: 92px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding-top: 2px;
}

.info-line .v {
  font-size: 1.05rem;
  font-weight: 500;
}

.info-line .v a { text-decoration: none; border-bottom: 1px solid var(--line); }
.info-line .v a:hover { border-color: var(--brick); color: var(--brick); }

.visit-ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hours-card {
  background: var(--charcoal-2);
  border-radius: 18px;
  padding: 34px;
  color: var(--cream);
}

.hours-card h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.98rem;
}

.hours-row:last-child { border-bottom: 1px solid var(--line-dark); }

.hours-row .day { color: var(--cream-2); }
.hours-row .time { font-weight: 600; }

.hours-row.today {
  color: var(--orange);
}
.hours-row.today .day,
.hours-row.today .time { color: var(--orange); }

.hours-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--cream-2);
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
footer {
  background: var(--charcoal);
  color: var(--cream-2);
  padding: 56px 0 34px;
}

footer .grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-dark);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-brand img {
  height: 46px;
  border-radius: 8px;
}

.foot-brand span {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
}

.foot-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.foot-col h4 {
  font-size: 0.85rem;
  color: var(--cream);
  margin: 0 0 12px;
  font-weight: 600;
}

.foot-col a, .foot-col span {
  display: block;
  color: var(--cream-2);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.foot-col a:hover { color: var(--orange); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  color: rgba(242,232,213,0.55);
}

/* ---------------------------------------------------
   Responsive
--------------------------------------------------- */
@media (max-width: 880px) {
  .about .grid,
  .visit .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(26, 21, 18, 0.98);
    border-bottom: 1px solid var(--line-dark);
    padding: 8px 28px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-top: 1px solid var(--line-dark); }
  .nav-links li:first-child { border-top: none; }
  .nav-links .btn { margin-top: 10px; width: 100%; }
  .nav-toggle { display: inline-flex; }
  .hero { min-height: 100vh; }
  .steps { grid-template-columns: 1fr; }
  .build-cta { flex-direction: column; align-items: flex-start; }
  footer .grid { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
