:root {
  --ink: #17130f;
  --muted: #685f55;
  --line: rgba(36, 26, 16, 0.12);
  --cream: #fff8ec;
  --paper: #fffdf7;
  --saffron: #f3a51b;
  --tomato: #dd4938;
  --leaf: #207d5a;
  --plum: #4a2440;
  --shadow: 0 24px 60px rgba(47, 31, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(243, 165, 27, 0.18), transparent 28rem),
    linear-gradient(180deg, #fff8ec 0%, #fffdf7 44%, #f7f0e6 100%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), 1160px);
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 16px 45px rgba(36, 26, 16, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.nav-links,
.hero-actions,
.contact-pills {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--tomato), var(--saffron));
  box-shadow: 0 10px 24px rgba(221, 73, 56, 0.25);
}

.nav-links {
  gap: 8px;
}

.nav-links a,
.nav-cta {
  border-radius: 999px;
  padding: 11px 16px;
  color: #382c23;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: rgba(243, 165, 27, 0.16);
  transform: translateY(-1px);
}

.nav-cta {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 56px;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.82), rgba(23, 19, 15, 0.48) 40%, rgba(23, 19, 15, 0.06) 72%),
    linear-gradient(0deg, rgba(23, 19, 15, 0.48), transparent 38%);
}

.hero-content {
  width: min(680px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffd78b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--tomato);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.34rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-button,
.secondary-button,
.contact-form button,
.plan-card a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button,
.contact-form button {
  color: #1d140c;
  background: var(--saffron);
  box-shadow: 0 14px 34px rgba(243, 165, 27, 0.32);
}

.secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.primary-button:hover,
.secondary-button:hover,
.contact-form button:hover,
.plan-card a:hover {
  transform: translateY(-3px);
}

.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 56px;
  width: min(330px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  background: rgba(23, 19, 15, 0.54);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card strong {
  display: block;
  margin: 0 0 10px 24px;
}

.hero-card p {
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.78);
}

.pulse-dot {
  position: absolute;
  top: 23px;
  left: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(32, 125, 90, 0.7);
  animation: pulse 1.9s infinite;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 32px));
  margin: -28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.stats-strip div {
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 253, 247, 0.92);
}

.stats-strip strong {
  display: block;
  font-size: 1.45rem;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 600;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-grid,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card,
.plan-card,
.contact-form,
.menu-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 45px rgba(47, 31, 17, 0.08);
}

.feature-card {
  min-height: 255px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.feature-card span,
.plan-label,
.event-cards span {
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card p,
.plan-card p,
.plan-card li {
  color: var(--muted);
  line-height: 1.62;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.menu-shell {
  padding: 12px;
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.tab-button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.tab-button.active,
.tab-button:hover {
  color: #fff;
  background: var(--plum);
}

.menu-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  min-height: 230px;
  margin-top: 12px;
  padding: clamp(24px, 5vw, 46px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(74, 36, 64, 0.92), rgba(32, 125, 90, 0.84)),
    url("assets/tiffin-hero.png") center / cover;
  overflow: hidden;
}

.menu-kicker {
  color: #ffd78b;
  font-weight: 800;
}

.menu-panel h3 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
}

.menu-panel p:not(.menu-kicker) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 320px;
}

.menu-tags span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-card.featured {
  color: #fff;
  background: linear-gradient(160deg, var(--ink), var(--plum));
  transform: translateY(-14px);
}

.plan-card.featured p,
.plan-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.plan-card.featured .plan-label {
  color: #ffd78b;
}

.price {
  margin: 14px 0;
  font-size: 2.7rem;
  font-weight: 900;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.featured .price span {
  color: rgba(255, 255, 255, 0.68);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 24px;
  padding-left: 20px;
}

.plan-card a {
  margin-top: auto;
  color: #fff;
  background: var(--ink);
}

.plan-card.featured a {
  color: var(--ink);
  background: var(--saffron);
}

.events-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 94px max(24px, calc((100vw - 1160px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 19, 15, 0.92), rgba(74, 36, 64, 0.88)),
    url("assets/tiffin-hero.png") center / cover fixed;
}

.events-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.event-cards article {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease;
}

.event-cards article:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-7px) rotate(-1deg);
}

.event-cards strong {
  display: block;
  margin-top: 72px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.contact-pills {
  flex-wrap: wrap;
  gap: 9px;
}

.contact-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--muted);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #372b22;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

footer {
  display: flex;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 0 48px;
  color: var(--muted);
  font-weight: 700;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 125, 90, 0.65);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(32, 125, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 125, 90, 0);
  }
}

@media (max-width: 900px) {
  .site-header {
    border-radius: 8px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding-top: 126px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .stats-strip,
  .intro-grid,
  .contact-section,
  .events-band,
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .plans-grid,
  .event-cards {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }

  .menu-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 8px;
  }

  .brand span:last-child {
    max-width: 110px;
    line-height: 1.1;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(23, 19, 15, 0.82), rgba(23, 19, 15, 0.42));
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .menu-tabs {
    grid-template-columns: 1fr;
  }

  .events-band {
    padding-inline: 16px;
  }

  footer {
    flex-direction: column;
  }
}
