/* ============================================================
   Flavour Indian — style.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --saffron: #E8863A;
  --saffron-dark: #C96A1A;
  --saffron-light: #F5A96B;
  --burgundy: #6B1A2A;
  --burgundy-dark: #4A0F1C;
  --cream: #FAF6EF;
  --cream-dark: #F0E8D8;
  --charcoal: #1C1410;
  --mid: #5C4A3A;
  --muted: #9A8070;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(28, 20, 16, 0.12);
  --shadow-lg: 0 12px 48px rgba(28, 20, 16, 0.20);

  --max-w: 1200px;
  --section-pad: 5rem 1.5rem;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ── Placeholder Images ── */
.img-placeholder {
  background: #D8CFC5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9A8070;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 2px dashed #BEB3A8;
  border-radius: var(--radius);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 26, 42, 0.12);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.02em;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--burgundy);
}

.btn-order {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: background 0.25s, transform 0.2s !important;
  white-space: nowrap;
}

.btn-order::after {
  display: none !important;
}

.btn-order:hover {
  background: var(--burgundy-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   PAGE HERO — HOME
   ============================================================ */
.hero-home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
}

.hero-home__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 5rem;
  background: var(--cream);
  position: relative;
}

.hero-home__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--burgundy));
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--saffron);
}

.hero-home__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.hero-home__title em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
}

.hero-home__title .outline {
  -webkit-text-stroke: 1.5px var(--charcoal);
  color: transparent;
}

.hero-home__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-home__desc {
  font-size: 1rem;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--saffron);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 134, 58, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.9rem;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--burgundy);
  transition: opacity 0.2s;
}

.btn-secondary:hover {
  opacity: 0.7;
}

.hero-home__image {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

.hero-home__image .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border-radius: 0;
  border: none;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 1rem 1.5rem 1rem 2.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-display);
}

.hero-badge__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  font-family: var(--font-body);
}

.hero-badge__text {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ============================================================
   PAGE HERO — INNER (Find Us, Contact)
   ============================================================ */
.hero-inner {
  padding: calc(72px + 3.5rem) 1.5rem 3.5rem;
  background: var(--burgundy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner .container {
  position: relative;
}

.hero-inner__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 0.75rem;
}

.hero-inner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

.hero-inner__sub {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   HOME — FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--burgundy);
  padding: 0;
}

.features-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-item__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 0.25rem;
}

.feature-item__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================================
   HOME — ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border: 6px solid var(--cream);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--saffron);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em {
  color: var(--burgundy);
  font-style: italic;
}

.about-text {
  font-size: 0.975rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.divider-spice {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divider-spice::before,
.divider-spice::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.divider-spice__icon {
  color: var(--saffron);
  font-size: 1.2rem;
}

/* ============================================================
   HOME — MENU TEASE
   ============================================================ */
.menu-section {
  padding: var(--section-pad);
  background: var(--cream-dark);
}

.menu-section .container {
  max-width: var(--max-w);
}

.menu-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(28, 20, 16, 0.06);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card__img {
  height: 200px;
}

.menu-card__img .img-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
}

.menu-card__body {
  padding: 1.5rem;
}

.menu-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  margin-bottom: 0.5rem;
}

.menu-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.menu-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.menu-section__cta {
  text-align: center;
}

/* ============================================================
   DELIVERY CHARGES
   ============================================================ */
.delivery-charges {
  padding: 4.5rem 0;
  background: var(--cream);
}

.delivery-charges .container {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 2fr);
  align-items: center;
  gap: 3rem;
}

.delivery-charges__intro .section-eyebrow,
.delivery-charges__intro .section-title {
  margin-bottom: 0;
}

.delivery-charges__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.delivery-charges__item {
  padding: 1.35rem 1rem;
  text-align: center;
}

.delivery-charges__item + .delivery-charges__item {
  border-left: 1px solid var(--cream-dark);
}

.delivery-charges__item dt {
  color: var(--mid);
  font-size: 0.85rem;
  font-weight: 600;
}

.delivery-charges__item dd {
  margin: 0.3rem 0 0;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--charcoal);
}

.testimonials-section .container {
  max-width: var(--max-w);
}

.testimonials-section .section-eyebrow {
  color: var(--saffron-light);
}

.testimonials-section .section-eyebrow::before {
  background: var(--saffron);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-card__stars {
  color: var(--saffron);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron-light);
}

/* ============================================================
   HOME — ORDER CTA BAND
   ============================================================ */
.cta-band {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--saffron) 50%, var(--saffron-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'FLAVOUR';
  position: absolute;
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.cta-band .container {
  position: relative;
  max-width: 700px;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-band__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--saffron-dark);
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.25s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   FIND US PAGE
   ============================================================ */
.findus-section {
  padding: 4rem 1.5rem 5rem;
  background: var(--cream);
}

.findus-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.info-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dark);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--burgundy);
}

.info-item__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.info-item__value {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

.info-item__value a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-item__value a:hover {
  color: var(--saffron-dark);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.3rem 0;
  font-size: 0.875rem;
}

.hours-table td:first-child {
  color: var(--mid);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--charcoal);
}

.hours-table tr.today td {
  color: var(--saffron-dark);
  font-weight: 600;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 500px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 4rem 1.5rem 5rem;
  background: var(--cream);
}

.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: start;
}

.contact-info {}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.contact-info__lead {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.social-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.social-links__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid;
  transition: background 0.2s, color 0.2s;
}

.social-btn--fb {
  border-color: #1877F2;
  color: #1877F2;
}

.social-btn--fb:hover {
  background: #1877F2;
  color: var(--white);
}

.social-btn--ig {
  border-color: #E1306C;
  color: #E1306C;
}

.social-btn--ig:hover {
  background: #E1306C;
  color: var(--white);
}

.social-btn--tt {
  border-color: #000;
  color: #000;
}

.social-btn--tt:hover {
  background: #000;
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding: 4rem 1.5rem 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-brand__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}

.footer-brand__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.fade-up--1 {
  animation-delay: 0.1s;
}

.fade-up--2 {
  animation-delay: 0.25s;
}

.fade-up--3 {
  animation-delay: 0.4s;
}

.fade-up--4 {
  animation-delay: 0.55s;
}

/* ============================================================
   OFFER MODAL
   ============================================================ */
body.modal-open {
  overflow: hidden;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.offer-modal.is-open {
  display: flex;
}

.offer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 18, 16, 0.72);
  backdrop-filter: blur(4px);
}

.offer-modal__dialog {
  position: relative;
  width: min(100%, 760px);
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  text-align: center;
  overflow: hidden;
  animation: offerModalIn 0.28s ease both;
}

.offer-modal__dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--burgundy), var(--saffron));
}

.offer-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.offer-modal__close:hover,
.offer-modal__close:focus-visible {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-1px);
}

.offer-modal__eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-dark);
}

.offer-modal__offers {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 0 1.75rem;
}

.offer-modal__offer {
  padding: 0.25rem 2rem 0;
}

.offer-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  font-weight: 700;
  color: var(--burgundy);
}

.offer-modal__title span {
  display: block;
  font-size: clamp(3.6rem, 8vw, 5.4rem);
  line-height: 0.9;
  margin-bottom: 0.35rem;
}

.offer-modal__desc {
  margin: 1.15rem auto 0;
  max-width: 330px;
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.65;
}

.offer-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(95, 31, 36, 0.25);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.offer-modal__button:hover,
.offer-modal__button:focus-visible {
  background: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(95, 31, 36, 0.3);
}

@keyframes offerModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-home {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-home__content {
    padding: 3rem 2rem 2.5rem;
  }

  .hero-home__image {
    min-height: 400px;
  }

  .hero-home__image .img-placeholder {
    min-height: 400px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    height: 360px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-strip__inner {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 3.5rem 1.25rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem;
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 1rem;
  }

  .nav-links.open a:last-child {
    border-bottom: none;
  }

  .btn-order {
    margin-top: 0.75rem;
    text-align: center;
    display: block;
  }

  .nav-toggle {
    display: flex;
  }

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

  .delivery-charges .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .findus-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 350px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-badge {
    display: none;
  }

  .about-images {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero-home__content {
    padding: 2.5rem 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .delivery-charges__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-charges__item:nth-child(3) {
    border-left: 0;
  }

  .delivery-charges__item:nth-child(n + 3) {
    border-top: 1px solid var(--cream-dark);
  }

  .offer-modal {
    padding: 1rem;
  }

  .offer-modal__dialog {
    padding: 2.25rem 1.25rem 1.6rem;
  }

  .offer-modal__offer {
    padding: 0.25rem 0.5rem;
  }
}
