/* Chef & Food Service | Clean, section-scoped, responsive CSS */

:root {
  --brand-blue: #167BB6;
  --brand-red: #962223;
  --brand-yellow: #F5A623;
  --action-red: #DC2626;
  --dark-gray: #1F2937;
  --muted-text: #56616e;
  --light-bg: #F9FAFB;
  --white: #FFFFFF;
  --border-color: #E5E7EB;
  --dark-blue: #0d3f63;
  --heading-font: Georgia, "Times New Roman", serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow-soft: 0 12px 32px rgba(31, 41, 55, 0.10);
  --shadow-card: 0 8px 20px rgba(31, 41, 55, 0.08);
  --radius: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--dark-gray);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
}
body.modal-open,
body.nav-open { overflow: hidden; }
img,
video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,
input,
select,
textarea { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
h1,
h2,
h3,
p { margin-top: 0; }
h1,
h2,
h3 { color: var(--dark-gray); line-height: 1.15; }
h1,
h2 { font-family: var(--heading-font); letter-spacing: -0.025em; }
h1 { font-size: clamp(2.65rem, 5.8vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.15rem); }
h3 { font-size: 1.2rem; }
p { color: var(--muted-text); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: clamp(3.8rem, 6.5vw, 5.9rem) 0; }
.section-tint { background: var(--light-bg); }
.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 1000;
  background: var(--brand-yellow);
  color: #202020;
  padding: 0.75rem 1rem;
  font-weight: 800;
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--brand-yellow); outline-offset: 3px; }

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 2px 15px rgba(31, 41, 55, 0.04);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; min-width: 0; }
.brand-with-logo { gap: 0.62rem; }
.brand-logo-only { gap: 0; }
.brand-mark { width: 42px; height: 42px; color: var(--brand-red); flex: 0 0 auto; }
.brand-mark svg { width: 100%; height: 100%; }
.site-logo { width: 56px; height: 56px; flex: 0 0 auto; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 1.02rem; letter-spacing: -0.025em; color: var(--dark-gray); white-space: nowrap; }
.brand-copy strong span { color: var(--brand-red); }
.brand-copy small {
  color: var(--brand-blue);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.27rem;
}
.primary-nav { display: flex; align-items: center; gap: 1.25rem; }
.nav-link {
  position: relative;
  padding: 0.6rem 0;
  color: #3f4b5b;
  font-size: 0.92rem;
  font-weight: 750;
}
.nav-link:hover,
.nav-link.is-active { color: var(--brand-red); }
.nav-link.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand-yellow);
  content: "";
}
.nav-toggle { display: none; border: 0; background: transparent; padding: 0.55rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 4px 0; background: var(--dark-gray); }

/* Buttons */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.75rem 1.1rem;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 38px; padding: 0.55rem 0.85rem; font-size: 0.84rem; }
.button-red { background: var(--action-red); color: var(--white); }
.button-red:hover { background: #b91c1c; }
.button-blue { background: var(--brand-blue); color: var(--white); }
.button-blue:hover { background: var(--dark-blue); }
.button-yellow { background: var(--brand-yellow); color: #382a00; }
.button-yellow:hover { background: #e99c0c; }
.button-outline-light { border-color: rgba(255,255,255,.9); background: transparent; color: var(--white); }
.button-outline-light:hover { background: var(--white); color: var(--dark-gray); }

/* Eyebrow / section labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
  margin-bottom: 0.75rem;
  color: var(--brand-red);
  font-size: clamp(1rem, 1.45vw, 1.32rem);
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}
.eyebrow span { width: 24px; height: 2px; flex: 0 0 24px; background: var(--brand-yellow); }
.eyebrow-light { color: var(--white); }
.eyebrow-one-line { white-space: nowrap; width: fit-content; margin-inline: auto; }
.text-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--brand-red); font-size: .9rem; font-weight: 850; }
.text-link:hover { text-decoration: underline; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: calc(100svh - 78px);
  align-items: center;
  overflow: hidden;
  background: var(--dark-blue);
}
.hero-video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,26,39,.88) 0%, rgba(8,26,39,.66) 46%, rgba(8,26,39,.35) 100%); }
.hero-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: var(--white);
}
.hero-content .eyebrow {
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  margin-bottom: 1rem;
}
.hero-content h1 { max-width: 1000px; margin-bottom: 1.1rem; color: var(--white); }
.hero-content h1 em { display: block; color: var(--brand-yellow); font-style: normal; }
.hero-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-actions .button {
  min-height: 56px;
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
}
.hero-contact-bar {
  display: flex;
  width: fit-content;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.35rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.35);
  padding-top: 1rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}
.hero-contact-bar a { color: #fff; font-weight: 750; }
.hero-contact-bar a:hover { color: var(--brand-yellow); }
.hero > .container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding-inline: 0;
}

/* General headings */
.section-heading { margin-bottom: clamp(1.8rem, 4vw, 2.35rem); }
.section-heading h2 { max-width: 640px; margin-bottom: 0; }
.section-heading > p { max-width: 500px; margin-bottom: 0; }
.center-heading { max-width: 760px; margin-inline: auto; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.center-heading h2,
.center-heading > p { margin-inline: auto; }
.narrow-heading { max-width: 760px; }

/* Reusable split layout. Section-specific classes control special alignment. */
.section-heading-split,
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  align-items: center;
  gap: clamp(1.8rem, 5vw, 4.5rem);
}
.section-heading-split > p,
.split-heading > p { padding-top: 0; }

/* Home: What we serve */
.services-overview-heading {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  align-items: start;
}
.services-overview-copy {
  max-width: 540px;
  margin: 0;
  transform: translateY(1.05rem);
  font-size: 1rem;
  line-height: 1.7;
}

/* Home: gallery CTA */
.gallery-preview-heading { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
.gallery-view-button { justify-self: end; align-self: center; min-width: 220px; transform: none; }

/* Service cards */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { position: relative; overflow: hidden; border: 1px solid var(--border-color); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-card); }
.service-image-wrap { height: 230px; overflow: hidden; background: #e9edf1; }
.service-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-image-wrap img { transform: scale(1.04); }
.service-card-body { position: relative; padding: 1.45rem; }
.service-number { position: absolute; top: -1.15rem; right: 1.35rem; color: var(--brand-yellow); font-family: var(--heading-font); font-size: 2.9rem; font-weight: 800; line-height: 1; text-shadow: 0 1px 0 rgba(0,0,0,.08); }
.service-icon { display: inline-grid; width: 39px; height: 39px; place-items: center; margin-bottom: .7rem; border-radius: 50%; background: #fff5df; font-size: 1.15rem; }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { min-height: 70px; font-size: .94rem; }
.why-service-note {
  max-width: 850px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-text);
}
@media (max-width: 720px) {
  .why-service-note {
    max-width: 100%;
    margin-top: 1rem;
    font-size: 1rem;
    text-align: center;
  }
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.feature-card { border: 1px solid var(--border-color); border-radius: 12px; padding: 1.55rem; background: var(--white); }
.feature-icon { display: grid; width: 45px; height: 45px; place-items: center; margin-bottom: 1rem; border-radius: 10px; background: #e8f4fb; color: var(--brand-blue); font-size: 1.25rem; }
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p { margin-bottom: 0; font-size: .9rem; }

/* Clients marquee */
.clients-section { overflow: hidden; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); background: var(--white); }
.client-marquee { width: 100%; overflow: hidden; padding: 1rem 0 1.25rem; }
.client-logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.35rem;
  animation: clientLogoMarquee 36s linear infinite;
  will-change: transform;
}
.client-logo-card {
  display: flex;
  width: 220px;
  height: 120px;
  flex: 0 0 220px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.15rem;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.client-logo-card img { display: block; width: 100%; height: 100%; max-width: 180px; object-fit: contain; }
.client-marquee:hover .client-logo-track { animation-play-state: paused; }
@keyframes clientLogoMarquee { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: .85rem; }
.gallery-card { position: relative; min-height: 230px; overflow: hidden; border: 0; border-radius: 12px; padding: 0; background: #d4d8de; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-card:hover img,
.gallery-card:focus-visible img { transform: scale(1.045); }
.gallery-overlay { position: absolute; inset: 0; display: flex; align-items: end; padding: 1rem; background: linear-gradient(0deg, rgba(8,26,39,.72), transparent 60%); color: var(--white); text-align: left; font-size: .8rem; font-weight: 800; opacity: 0; transition: opacity .25s ease; }
.gallery-card:hover .gallery-overlay,
.gallery-card:focus-visible .gallery-overlay { opacity: 1; }
.gallery-preview .gallery-card-1 { grid-column: span 5; }
.gallery-preview .gallery-card-2 { grid-column: span 3; }
.gallery-preview .gallery-card-3 { grid-column: span 4; }
.gallery-preview .gallery-card-4 { grid-column: span 7; }
.gallery-full .gallery-card { grid-column: span 4; }
.gallery-full .gallery-card-1,
.gallery-full .gallery-card-4 { grid-column: span 6; }
.gallery-note { margin-top: 1.15rem; font-size: .86rem; }
.services-gallery-heading { align-items: start; }
.services-gallery-copy { max-width: 520px; transform: translateY(.65rem); }

/* Meal programme */
.meal-programme-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.meal-image { position: relative; }
.meal-image img { width: 100%; min-height: 400px; border-radius: 110px 12px 12px 12px; object-fit: cover; box-shadow: var(--shadow-soft); }
.delhi-accent { position: absolute; right: -1.1rem; bottom: 1.2rem; padding: .55rem .85rem; background: var(--brand-yellow); color: #352400; font-size: .76rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.meal-copy p:not(.eyebrow) { max-width: 560px; font-size: 1.03rem; }
.check-list { margin: 1.25rem 0 1.55rem; padding: 0; list-style: none; }
.check-list li { position: relative; margin: .55rem 0; padding-left: 1.85rem; color: var(--dark-gray); font-weight: 650; }
.check-list li::before { position: absolute; top: .12rem; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: #fff2d2; color: var(--brand-red); content: "✓"; font-size: .75rem; font-weight: 950; }

/* CTA */
.cta-banner { position: relative; overflow: hidden; padding: clamp(2.4rem, 4.5vw, 3.5rem) 0; background: var(--brand-blue); }
.cta-banner::after { position: absolute; top: -90px; right: 7%; width: 260px; height: 260px; border: 38px solid rgba(245,166,35,.22); border-radius: 50%; content: ""; }
.cta-banner-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-banner h2 { max-width: 700px; margin-bottom: 0; color: var(--white); }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Page heroes */
.page-hero { position: relative; overflow: hidden; background-color: var(--dark-blue); color: var(--white); }
.page-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,37,59,.95), rgba(22,123,182,.7)); content: ""; }
.page-hero::after { position: absolute; right: 5%; bottom: -70px; width: 290px; height: 290px; border: 35px solid rgba(245,166,35,.28); border-radius: 100px 100px 0 0; content: ""; }
.page-hero-about { background-image: linear-gradient(125deg, #0e4d78, #167BB6); }
.page-hero-services { background-image: linear-gradient(125deg, #962223, #167BB6); }
.page-hero-contact { background-image: linear-gradient(125deg, #123e5d, #962223); }
.page-hero-content { position: relative; z-index: 1; padding: clamp(3.5rem, 7vw, 6.2rem) 0; }
.page-hero-content h1 { max-width: 870px; margin-bottom: .8rem; color: var(--white); }
.page-hero-content p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.9); font-size: 1.05rem; }

/* About page */
.about-intro-grid,
.two-column-content { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(2rem, 5vw, 5rem); }
.large-copy { max-width: 690px; }
.large-copy p { font-size: 1.08rem; }
.mission-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; align-items: stretch; gap: 1rem; }
.mission-card { border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1.75rem; background: var(--white); }
.mission-card-primary { display: flex; min-height: 285px; flex-direction: column; justify-content: space-between; border-color: var(--brand-blue); background: var(--brand-blue); }
.mission-card-primary h2 { color: var(--white); font-size: clamp(1.65rem, 2.8vw, 2.25rem); }
.mission-kicker { color: var(--brand-yellow); font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.mission-icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 1rem; border-radius: 50%; background: #fff4d6; color: var(--brand-red); font-size: 1.2rem; }
.mission-card p { margin-bottom: 0; font-size: .92rem; }
.mission-note {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-text);
}
@media (max-width: 720px) {
  .mission-note {
    max-width: 100%;
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;
  }
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.value-card { border-top: 4px solid var(--brand-yellow); padding: 1.45rem; background: var(--white); box-shadow: var(--shadow-card); }
.value-count { color: var(--brand-blue); font-family: var(--heading-font); font-size: 1.75rem; font-weight: 800; }
.value-card h3 { margin: .65rem 0 .4rem; }
.value-card p { margin-bottom: 0; font-size: .9rem; }
.leadership-heading { align-items: start; }
.leadership-summary { max-width: 520px; transform: translateY(.6rem); }
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.leader-card { display: flex; align-items: center; gap: 1.2rem; border-left: 4px solid var(--brand-red); border-radius: 12px; padding: 1.45rem; background: var(--light-bg); }
.leader-initial { display: grid; width: 65px; height: 65px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--brand-blue); color: var(--white); font-family: var(--heading-font); font-size: 1.25rem; font-weight: 800; }
.leader-initial-yellow { background: var(--brand-yellow); color: #3f2d00; }
.leader-role { color: var(--brand-red); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.leader-card h3 { margin: .12rem 0 .35rem; }
.leader-card a { color: var(--brand-blue); font-weight: 800; }
.about-story-copy {text-align: justify;text-align-last: left;}
.about-story-copy p {margin-bottom: 1rem;line-height: 1.75;}
.founder-name {color: #b8322a;font-weight: 700;}


/* Services page */
.services-detail-list { display: grid; gap: clamp(3rem, 6vw, 5.4rem); }
.service-detail { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); scroll-margin-top: 120px; }
.service-detail:nth-child(even) .service-detail-image { order: 2; }
.service-detail-image { position: relative; }
.service-detail-image img { width: 100%; min-height: 385px; border-radius: 14px; object-fit: cover; box-shadow: var(--shadow-soft); }
.service-detail-number { position: absolute; bottom: -1rem; left: -1.1rem; padding: .65rem 1rem; background: var(--brand-yellow); color: #4a3200; font-family: var(--heading-font); font-size: 1.45rem; font-weight: 900; }
.service-detail-content h2 { font-size: clamp(1.8rem, 3.1vw, 2.7rem); }
.service-detail-content .eyebrow { font-size: clamp(.9rem, 1.15vw, 1.05rem); letter-spacing: .08em; line-height: 1.3; }
.service-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin: 1.35rem 0 0; }
.service-lists h3 { margin-bottom: .5rem; font-size: 1rem; }
.clean-list { margin: 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: .28rem 0 .28rem 1.05rem; color: var(--muted-text); font-size: .9rem; }
.clean-list li::before { position: absolute; left: 0; color: var(--brand-red); content: "•"; font-weight: 900; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(2rem, 5vw, 5rem); }
.contact-info-list { display: grid; gap: .9rem; margin-top: 1.15rem; }
.contact-info-card { display: flex; align-items: flex-start; gap: .85rem; border-bottom: 1px solid var(--border-color); padding: .9rem 0; }
.contact-icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #fff0e9; color: var(--brand-red); font-weight: 900; }
.contact-info-card h3 { margin-bottom: .08rem; font-size: 1rem; }
.contact-info-card p,
.contact-info-card address { margin-bottom: .25rem; font-size: .92rem; }
.contact-info-card a { color: var(--brand-blue); font-weight: 800; }
.hours { margin-top: 1.35rem; font-size: .9rem; }
.contact-form-wrap { border: 1px solid var(--border-color); border-radius: var(--radius); padding: clamp(1.45rem, 3.5vw, 2.25rem); background: var(--light-bg); scroll-margin-top: 110px; }
.contact-form-wrap > p:not(.eyebrow) { margin-bottom: 1.25rem; }
.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .4rem; }
.form-field label { color: var(--dark-gray); font-size: .87rem; font-weight: 800; }
.form-field label span { color: var(--action-red); }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; border: 1px solid #cfd7df; border-radius: 6px; padding: .75rem .8rem; background: var(--white); color: var(--dark-gray); }
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 2px solid rgba(22,123,182,.4); outline-offset: 1px; border-color: var(--brand-blue); }
.form-error { min-height: 1.2em; margin: 0; color: #b91c1c; font-size: .86rem; font-weight: 700; }
.form-success { display: flex; align-items: flex-start; gap: 1rem; margin-top: .5rem; border: 1px solid #a4d8b5; border-radius: 8px; padding: 1rem; background: #e9f8ef; }
.form-success[hidden] { display: none !important; }
.form-success > span { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #16834c; color: #fff; font-weight: 900; }
.form-success h3 { margin-bottom: .15rem; font-size: 1rem; }
.form-success p { margin-bottom: 0; font-size: .9rem; }

/* Footer */
.site-footer { background: #102a3d; color: rgba(255,255,255,.8); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1.05fr; gap: 2.2rem; padding: 3.2rem 0 2.3rem; }
.footer-title { margin-bottom: .9rem; color: var(--white); font-family: var(--heading-font); font-size: 1.28rem; }
.footer-column p,
.footer-column address { color: rgba(255,255,255,.74); font-size: .9rem; }
.footer-location { color: var(--brand-yellow) !important; font-size: .77rem !important; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: .5rem; }
.footer-links a,
.footer-column address a { width: fit-content; color: rgba(255,255,255,.9); font-size: .9rem; }
.footer-links a:hover,
.footer-column address a:hover { color: var(--brand-yellow); }
.footer-bottom { display: flex; align-items: center; justify-content: center; text-align: center; gap: 1rem; border-top: 1px solid rgba(255,255,255,.14); padding: 1.1rem 0; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.55); font-size: .78rem; }
.social-links { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.social-links a,
.social-disabled { color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 800; }
.social-links a:hover { color: var(--brand-yellow); }
.social-disabled { cursor: not-allowed; opacity: .38; }

/* Lightbox */
.lightbox,
.lightbox[hidden] { display: none !important; }
.lightbox.is-open { position: fixed; inset: 0; z-index: 300; display: grid !important; place-items: center; padding: 1rem; background: rgba(7,16,24,.88); }
.lightbox-panel { position: relative; width: min(100%, 1024px); max-height: calc(100svh - 2rem); border-radius: 10px; padding: .9rem; background: #fff; box-shadow: 0 15px 50px rgba(0,0,0,.45); }
.lightbox-media { display: grid; max-height: calc(100svh - 8rem); place-items: center; overflow: hidden; background: #111; }
.lightbox-media img { width: 100%; max-height: calc(100svh - 8rem); object-fit: contain; }
.lightbox-media iframe { width: min(900px, 100%); border: 0; aspect-ratio: 16/9; }
.lightbox-caption { margin: .65rem 0 0; padding-right: 2rem; color: var(--dark-gray); font-size: .86rem; }
.lightbox-close { position: absolute; z-index: 2; top: -12px; right: -12px; display: grid; width: 38px; height: 38px; place-items: center; border: 2px solid var(--white); border-radius: 50%; background: var(--brand-red); color: var(--white); font-size: 1.7rem; line-height: 1; }

/* Tablet */
@media (max-width: 900px) {
  .service-grid,
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .meal-programme-grid,
  .about-intro-grid,
  .two-column-content,
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .mission-card-primary { grid-column: span 2; min-height: auto; }
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-detail,
  .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-image { order: 0; }
  .footer-grid { grid-template-columns: 1.15fr .75fr 1fr; gap: 1.5rem; }
}

/* Mobile */
@media (max-width: 720px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 3.3rem 0; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  h2 { font-size: clamp(1.85rem, 9.5vw, 2.75rem); }
  .eyebrow { font-size: .98rem; letter-spacing: .11em; line-height: 1.35; }
  .eyebrow-one-line { white-space: normal; }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .header-inner { min-height: 70px; }
  .site-logo { width: 45px; height: 45px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: .89rem; }
  .brand-copy small { font-size: .56rem; }
  .nav-toggle { z-index: 102; display: block; }
  .primary-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.2rem 1.4rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .nav-link { padding: .85rem 0; }
  .nav-cta { width: fit-content; margin-top: .5rem; }
  .hero {
  min-height: calc(100svh - 70px);
  align-items: center;
}
.hero-content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
  .hero-overlay { background: rgba(8,26,39,.75); }
  .hero-actions .button { width: 100%; }
  .hero-contact-bar { display: grid; gap: .35rem; margin-top: 2.2rem; }
  .section-heading-split,
  .split-heading,
  .services-overview-heading,
  .gallery-preview-heading,
  .services-gallery-heading,
  .leadership-heading,
  .cta-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
  }
  .section-heading > p,
  .services-overview-copy,
  .services-gallery-copy,
  .leadership-summary {
    max-width: 100%;
    margin: 0;
    transform: none;
    padding-top: 0;
  }
  .gallery-view-button {
    justify-self: auto;
    align-self: stretch;
    width: 100%;
    min-width: 0;
  }
  .center-heading { text-align: left; }
  .center-heading .eyebrow { justify-content: flex-start; }
  .center-heading h2,
  .center-heading > p { margin-inline: 0; }
  .service-grid,
  .feature-grid,
  .values-grid,
  .leadership-grid,
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card-primary { grid-column: auto; }
  .service-card p { min-height: 0; }
  .gallery-grid { gap: .55rem; }
  .gallery-preview .gallery-card-1,
  .gallery-preview .gallery-card-2,
  .gallery-preview .gallery-card-3,
  .gallery-preview .gallery-card-4,
  .gallery-full .gallery-card,
  .gallery-full .gallery-card-1,
  .gallery-full .gallery-card-4 { grid-column: span 6; min-height: 170px; }
  .meal-image img { min-height: 300px; border-radius: 70px 10px 10px 10px; }
  .delhi-accent { right: .8rem; }
  .service-detail-image img { min-height: 300px; }
  .service-lists,
  .form-row { grid-template-columns: 1fr; gap: .7rem; }
  .client-logo-track { gap: .9rem; animation-duration: 28s; }
  .client-logo-card { width: 170px; height: 92px; flex-basis: 170px; padding: .85rem; }
  .client-logo-card img { max-width: 135px; }
  .footer-grid { grid-template-columns: 1fr; padding: 2.6rem 0 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .gallery-preview .gallery-card-1,
  .gallery-preview .gallery-card-2,
  .gallery-preview .gallery-card-3,
  .gallery-preview .gallery-card-4,
  .gallery-full .gallery-card,
  .gallery-full .gallery-card-1,
  .gallery-full .gallery-card-4 { grid-column: span 12; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .hero-video { display: none; }
  .hero { background: linear-gradient(115deg, #0d3f63, #167BB6); }
  .client-logo-track { width: 100%; flex-wrap: wrap; justify-content: center; animation: none !important; transform: none !important; }
  .client-logo-card[aria-hidden="true"] { display: none; }
}

/* Print */
@media print {
  .site-header,
  .cta-banner,
  .site-footer,
  .nav-toggle,
  .hero-video,
  .hero-overlay,
  .button { display: none !important; }
  .hero,
  .page-hero { min-height: auto; background: var(--white) !important; color: var(--dark-gray); }
  .hero-content,
  .page-hero-content { padding: 1rem 0; }
  .hero-content h1,
  .page-hero-content h1 { color: var(--dark-gray); }
}

/* Homepage specialties grid */
.services-overview .specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.services-overview .specialties-grid .service-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.services-overview .specialties-grid .service-image-wrap {
  height: 190px;
}

.services-overview .specialties-grid .service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.services-overview .specialties-grid .service-card-body p {
  flex-grow: 1;
  min-height: 0;
}

.services-overview .specialties-grid .text-link {
  margin-top: auto;
}

.services-overview .specialties-grid .service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  font-size: 1.3rem;
}

/* Tablet */
@media (max-width: 1050px) {
  .services-overview .specialties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-overview .specialties-grid .service-image-wrap {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .services-overview .specialties-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-overview .specialties-grid .service-image-wrap {
    height: 220px;
  }
}

/* Contact form terms agreement */
.terms-agreement {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.25rem 0 0.35rem;
}

.terms-agreement input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0.2rem 0 0;
  accent-color: var(--action-red);
  cursor: pointer;
}

.terms-agreement label {
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.55;
  cursor: pointer;
}

.terms-agreement a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-agreement a:hover {
  color: var(--brand-red);
}

@media (max-width: 720px) {
  .terms-agreement {
    gap: 0.6rem;
  }

  .terms-agreement label {
    font-size: 0.88rem;
  }
}

/* Terms and Conditions page */
.page-hero-terms {
  background-image: linear-gradient(125deg, #123e5d, #167bb6);
}

.terms-container {
  max-width: 900px;
}

.terms-introduction {
  margin-bottom: 2rem;
  border-left: 4px solid var(--brand-yellow);
  padding: 1rem 1.25rem;
  background: var(--light-bg);
}

.terms-introduction p {
  margin: 0;
}

.terms-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  padding: 1.6rem 0;
}

.terms-number {
  color: var(--brand-blue);
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.terms-item h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
}

.terms-item p {
  margin-bottom: 0;
}

.terms-item ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted-text);
}

.terms-item li {
  margin: 0.45rem 0;
  padding-left: 0.25rem;
}

.terms-item li::marker {
  color: var(--brand-red);
}

.terms-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (max-width: 720px) {
  .terms-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.35rem 0;
  }

  .terms-number {
    font-size: 1.3rem;
  }

  .terms-actions .button {
    width: 100%;
  }
}

#submitEnquiryButton.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

#submitEnquiryButton.is-disabled:hover {
  transform: none;
  background: var(--action-red);
}