/* ═══════════════════════════════════════════
   Aegis Food Safety — shared styles
   Clean, calm, one idea per section.
   ═══════════════════════════════════════════ */

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

:root {
  --navy:    #080357;  /* deep indigo — headings, dark bands, buttons */
  --slate:   #102D5E;  /* secondary navy */
  --blue:    #080357;  /* primary action colour */
  --blue-dk: #05023C;  /* hover */
  --blue-lt: #EAE9F3;  /* soft navy tint — icon chips */
  --sky:     #F39A9D;  /* salmon accent (on dark backgrounds) */
  --rose:    #D9737A;  /* deeper rose — accent text on light backgrounds */
  --bg:      #FFFFFF;
  --bg-alt:  #F5F5F5;
  --line:    #E5E5E5;
  --text:    #4B4F58;
  --muted:   #7A7A7A;
  --radius:  8px;
  --wrap:    1080px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 4.5rem 0; }
.alt { background: var(--bg-alt); }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--blue); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 0.75rem;
}
.lead { font-size: 1.05rem; color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 2.75rem; }

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-block;
  background: var(--blue); color: #fff;
  padding: 0.85rem 1.9rem;
  border-radius: 4px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--blue-dk); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--blue-lt); color: var(--navy); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--blue); color: var(--blue); }
.link-more {
  display: inline-block; margin-top: 1rem;
  font-weight: 600; font-size: 0.9rem;
  color: var(--blue); text-decoration: none;
}
.link-more:hover { text-decoration: underline; }

/* ── Nav ───────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand img {
  width: 52px; height: 52px; object-fit: contain;
  border-radius: 8px; flex-shrink: 0;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--navy);
  line-height: 1.1;
}
.brand-name span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--slate); text-decoration: none;
  font-size: 0.93rem; font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links .btn { color: #fff; }
.nav-links .btn:hover { color: #fff; }

/* ── Hero ──────────────────────────────── */
.hero { padding: 5.5rem 0 4.5rem; }
.hero .lead { font-size: 1.1rem; margin-top: 1.25rem; }
.hero-btns { margin-top: 2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.75rem; font-size: 0.85rem; color: var(--muted);
}

/* ── Hero slideshow (slow crossfade) ───── */
.hero-slides {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slides .slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.4s ease-in-out;
  transform: scale(1.04);
}
.hero-slides .slide.active { opacity: 1; }
.hero-slides::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,3,87,0.90) 0%, rgba(8,3,87,0.72) 45%, rgba(8,3,87,0.35) 100%);
}
.hero-slides .wrap { position: relative; z-index: 2; padding-top: 3rem; padding-bottom: 3rem; }
.hero-slides h1 { color: #fff; }
.hero-slides .lead { color: rgba(255,255,255,0.88); }
.hero-slides .hero-note { color: rgba(255,255,255,0.65); }
.hero-slides .eyebrow { color: var(--sky); }
.hero-slides .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero-slides .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* slideshow dots */
.slide-dots {
  position: absolute; bottom: 22px; left: 0; right: 0;
  z-index: 3; display: flex; justify-content: center; gap: 8px;
}
.slide-dots button {
  width: 9px; height: 9px; padding: 0;
  border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s, width 0.3s;
}
.slide-dots button.on { background: var(--sky); width: 22px; border-radius: 5px; }

/* ── Page hero band (sub-pages) ────────── */
.page-hero {
  position: relative;
  background-size: cover; background-position: center;
  padding: 4rem 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,3,87,0.82);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.85); }
.page-hero .eyebrow { color: var(--sky); }

/* ── Card images ───────────────────────── */
.card-img {
  width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1.25rem;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ── Cards ─────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(8,3,87,0.08);
  transform: translateY(-3px);
  border-color: #D5D5D5;
}
.card-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; color: var(--muted); }
.card ul { list-style: none; margin-top: 1rem; }
.card ul li {
  font-size: 0.89rem; color: var(--slate);
  padding-left: 1.4rem; position: relative;
  margin-bottom: 0.45rem;
}
.card ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}

/* ── CTA band ──────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-band .eyebrow { color: var(--sky); }
.cta-band h2 { color: #fff; margin-bottom: 1.5rem; }
.cta-band p { color: #D8D9E2; max-width: 560px; margin: 0 auto 1.75rem; }

/* ── Meera intro ───────────────────────── */
.intro { display: grid; grid-template-columns: 1fr 1.35fr; gap: 3rem; align-items: center; }
.intro-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.intro-card img {
  width: 92px; height: 92px; object-fit: contain;
  background: #fff; border-radius: 12px; padding: 6px;
  margin-bottom: 1rem;
}
.intro-card .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
}
.intro-card .role {
  font-size: 0.82rem; color: var(--sky); margin-top: 0.25rem;
}
.intro-card .creds {
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem; color: #B9BAC6; line-height: 1.9;
}

/* ── Credential pills ──────────────────── */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.pill {
  background: var(--bg-alt); border: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: 20px;
}

/* ── Steps ─────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.step { text-align: center; }
.step-num {
  width: 44px; height: 44px; margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: var(--blue-lt); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.85rem; color: var(--muted); }

/* ── Simple list rows ──────────────────── */
.rows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.row-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: 8px; padding: 0.9rem 1.1rem;
  font-size: 0.88rem; font-weight: 600; color: var(--navy);
}
.row-item span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* ── Lead magnet band ──────────────────── */
.magnet { background: var(--navy); padding: 3.5rem 0; }
.magnet-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
.magnet .eyebrow { color: var(--sky); }
.magnet h2 { color: #fff; }
.magnet p { color: #D8D9E2; font-size: 0.98rem; }
.magnet ul { list-style: none; margin-top: 1rem; }
.magnet ul li {
  color: #D8D9E2; font-size: 0.92rem;
  padding-left: 1.5rem; position: relative; margin-bottom: 0.4rem;
}
.magnet ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--sky); font-weight: 700;
}
.magnet for
/* ── Booking panel (contact page) ──────── */
.book-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.book-panel .eyebrow { color: var(--sky); }
.book-panel h3 { color: #fff; margin-bottom: 0.4rem; }
.book-panel p { color: #D8D9E2; font-size: 0.92rem; margin-bottom: 1.1rem; }
.book-panel .btn { background: #fff; color: var(--navy); }
.book-panel .btn:hover { background: var(--blue-lt); }
padding: 2.5rem 2rem;
}
.download-card .big-check {
  width: 56px; height: 56px; margin: 0 auto 1.25rem;
  border-radius: 50%; background: var(--blue-lt); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700;
}

/* ── Contact ───────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info p { font-size: 0.95rem; }
.info-item { margin-bottom: 1.25rem; }
.info-item .label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem;
}
.info-item .value { font-size: 0.98rem; font-weight: 600; color: var(--navy); }
.info-item .value a { color: var(--navy); text-decoration: none; }
.info-item .value a:hover { color: var(--blue); }

form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fgrp { margin-bottom: 1rem; }
label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.35rem;
}
input, select, textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1px solid #D5D5D5; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: 0.93rem;
  color: var(--navy); background: #fff;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8,3,87,0.12);
}
textarea { resize: vertical; min-height: 96px; }
form .btn { width: 100%; border: none; cursor: pointer; margin-top: 0.35rem; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }

/* ── Footer ────────────────────────────── */
footer { background: var(--navy); color: #B9BAC6; padding: 3rem 0 1.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.foot-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem;
}
footer p { font-size: 0.86rem; line-height: 1.7; }
.foot-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff; margin-bottom: 0.9rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a, footer a { color: #B9BAC6; text-decoration: none; font-size: 0.88rem; }
footer ul a:hover, footer a:hover { color: var(--sky); }
.foot-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem; color: #9A9BA8;
}
.foot-bottom .privacy { margin-top: 0.5rem; max-width: 680px; }

/* ── Mobile ────────────────────────────── */
@media (max-width: 900px) {
  .hero-slides { min-height: 480px; }
  .hero-slides::after {
    background: linear-gradient(180deg, rgba(8,3,87,0.86) 0%, rgba(8,3,87,0.80) 100%);
  }
  .page-hero { padding: 3rem 0; }
  .grid-3, .grid-2, .rows { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .intro, .contact-grid { grid-template-columns: 1fr; gap: 2re