/* ==========================================================================
   DeliMoMo — B2B showcase site
   Brand tokens pulled from the client's logo & packaging artwork.
   ========================================================================== */

:root{
  --red: #E5140C;
  --red-dark: #A80D07;
  --gold: #FFD400;
  --gold-soft: #FFE668;
  --cream: #FFF8EA;
  --cream-deep: #FBEFD4;
  --ink: #22140D;
  --ink-soft: #5B4A3F;
  --green: #3F8F29;
  --green-soft: #EAF5E4;
  --maroon: #7A3418;
  --maroon-soft: #F6E9E1;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 12px 30px rgba(34,20,13,0.10);
  --max-width: 1180px;
}

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

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

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin: 0 0 .4em; line-height: 1.12; font-weight: 700; overflow-wrap: break-word; }
p{ margin: 0 0 1em; max-width: 62ch; }
section{ position: relative; }

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

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

.skip-link{
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus{
  left: 0;
  top: 0;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  html{ scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--red); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover{ background: var(--red-dark); }
.btn-gold{ background: var(--gold); color: var(--ink); box-shadow: var(--shadow-soft); }
.btn-gold:hover{ background: var(--gold-soft); }
.btn-outline{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--cream); }
.btn-outline-light{ background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-light:hover{ background: var(--white); color: var(--red-dark); }

/* ---------- Pleat motif ----------
   A row of bumps echoing a momo's pleated fold — used as a signature
   divider at a handful of section transitions. Set --pleat-color to
   the color of the section the bumps belong to. */
.pleat-top{ position: relative; }
.pleat-top::before{
  content: "";
  position: absolute;
  top: -13px; left: 0; width: 100%; height: 14px;
  background-image: radial-gradient(circle at 14px 14px, var(--pleat-color, var(--ink)) 14px, transparent 14.5px);
  background-size: 28px 28px;
  background-repeat: repeat-x;
  background-position: 0 0;
}
.pleat-bottom{ position: relative; }
.pleat-bottom::after{
  content: "";
  position: absolute;
  bottom: -13px; left: 0; width: 100%; height: 14px;
  background-image: radial-gradient(circle at 14px 0, var(--pleat-color, var(--ink)) 14px, transparent 14.5px);
  background-size: 28px 28px;
  background-repeat: repeat-x;
  background-position: 0 0;
}

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(34,20,13,0.08);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}
.nav-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--red);
}
.nav-brand img{ height: 84px; width: auto; }
@media (max-width: 860px){
  .nav-brand img{ height: 64px; }
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.98rem;
}
.nav-links a{
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav-links a:hover, .nav-links a.active{
  border-color: var(--red);
  color: var(--red-dark);
}
.nav-cta{ display: flex; align-items: center; gap: 16px; }
.nav-cta .btn{ padding: 10px 20px; font-size: 0.92rem; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span{
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 3px;
}

@media (max-width: 860px){
  .nav-links{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(34,20,13,0.08);
    display: none;
  }
  .nav-links.open{ display: flex; }
  .nav-cta .btn-outline{ display: none; }
  .nav-toggle{ display: block; }
}

/* ---------- Hero ---------- */
.hero{
  padding: 64px 0 0;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-kicker{
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red-dark);
  background: var(--gold-soft);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.hero h1{
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--ink);
}
.hero h1 .accent{ color: var(--red); }
.hero p.lead{
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero-art{
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-height: 460px;
  width: 100%;
  object-fit: cover;
}
.hero-art::after{
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50%;
  top: -30px; right: -20px;
  z-index: -1;
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ order: -1; }
}

/* ---------- Trust strip ---------- */
.trust-strip{
  background: var(--ink);
  color: var(--cream);
  padding: 20px 0;
  margin-top: 56px;
}
.trust-strip ul{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
}
.trust-strip li{
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 26px;
  border-right: 1px solid rgba(255,248,234,0.16);
}
.trust-strip li:last-child{ border-right: none; }
.trust-strip li svg{ width: 19px; height: 19px; flex-shrink: 0; }
@media (max-width: 640px){
  .trust-strip li{ border-right: none; padding: 0 12px; }
}

/* ---------- Section basics ---------- */
.section{ padding: 88px 0; }
.section-tight{ padding: 56px 0; }
.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.5rem); }
.section-head p{ color: var(--ink-soft); font-size: 1.08rem; }
.section-link{
  display: inline-block;
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red-dark);
}
.section-link:hover{ color: var(--red); }
.bg-cream-deep{ background: var(--cream-deep); }
.bg-ink{ background: var(--ink); color: var(--cream); }
.bg-ink h2, .bg-ink h3{ color: var(--white); }
.bg-red{ background: var(--red); color: var(--white); }

/* ---------- Who we serve tags ---------- */
.audience-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.audience-tag{
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--cream-deep);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
}
.audience-tag .dot{
  width: 9px; height: 9px; border-radius: 50%; background: var(--red);
}

/* ---------- Category cards (home preview) ---------- */
.category-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
}

/* Auto-sliding marquee variant */
.category-marquee{
  --tile: min(84vw, 100mm);    /* square momo tile — 100mm per side */
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.category-track{
  display: flex;
  align-items: flex-start;
  width: max-content;
  animation: category-scroll 42s linear infinite;
}
.category-marquee:hover .category-track,
.category-marquee:focus-within .category-track{ animation-play-state: paused; }
.category-track .category-card{
  flex: 0 0 var(--tile);
  margin-right: 24px;
}
.category-track .category-card .thumb{
  width: var(--tile);
  height: var(--tile);          /* explicit square, no stretch */
  aspect-ratio: auto;
  flex: none;
  padding: 10px;
}
.category-track .category-card .thumb img{
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;          /* whole plate, never cropped */
}
.category-track .category-card .card-body{ padding: 12px 18px 16px; }
@keyframes category-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .category-track{ animation: none; }
  .category-marquee{ overflow-x: auto; }
}

.category-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease;
}
.category-card:hover{ transform: translateY(-6px); }
.category-card .thumb{
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.category-card .thumb img{ max-height: 100%; object-fit: contain; }
.category-card .card-body{ padding: 16px 18px 22px; }
.category-card h3{ font-size: 1.15rem; margin-bottom: 6px; }
.category-card p{ font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0; }
.veg-red .thumb{ background: var(--maroon-soft); }
.veg-green .thumb{ background: var(--green-soft); }

.diet-tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.diet-mark{
  width: 14px; height: 14px;
  border: 1.6px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.diet-mark::after{ content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.diet-veg{ color: var(--green); }
.diet-nonveg{ color: var(--maroon); }

/* ---------- Why pillars ---------- */
.pillars-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.pillar{ display: flex; flex-direction: column; gap: 10px; }
.pillar .icon{
  width: 52px; height: 52px;
  color: var(--red);
}
.pillar h3{ font-size: 1.1rem; }
.pillar p{ font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2{ color: var(--white); margin-bottom: 8px; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta-banner p{ color: var(--gold-soft); margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img{ height: 72px; width: auto; }
.footer-brand span{ font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--cream); }
.site-footer h4{ font-family: var(--font-display); color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.site-footer p{ color: rgba(255,248,234,0.75); font-size: 0.95rem; }
.footer-links li{ margin-bottom: 10px; }
.footer-links a:hover{ color: var(--gold); }
.footer-contact li{ margin-bottom: 10px; font-size: 0.95rem; color: rgba(255,248,234,0.85); }
.footer-bottom{
  border-top: 1px solid rgba(255,248,234,0.15);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,248,234,0.6);
}
@media (max-width: 760px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- Page header (inner pages) ---------- */
.page-header{
  padding: 56px 0 40px;
  text-align: left;
}
.page-header .kicker{
  font-family: var(--font-display);
  color: var(--red-dark);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.page-header h1{ font-size: clamp(2.1rem, 4vw, 3rem); }
.page-header p{ font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- About page ---------- */
.about-columns{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}
.about-columns h2{ font-size: 1.6rem; margin-top: 1.2em; }
.about-columns h2:first-child{ margin-top: 0; }
.pull-card{
  background: var(--ink);
  color: var(--gold-soft);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  position: sticky;
  top: 100px;
}
.pull-card p{
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0;
}
.pull-card span{ color: var(--gold); font-weight: 700; display: block; margin-top: 14px; font-family: var(--font-body); font-size: 0.9rem; }

.mission-list{ display: grid; gap: 18px; margin-top: 18px; }
.mission-item{
  background: var(--white);
  border-left: 5px solid var(--red);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mission-item p{ margin: 0; font-size: 1.02rem; }

.value-list{ display: grid; gap: 14px; margin-top: 18px; }
.value-list li{ padding-left: 26px; position: relative; }
.value-list li::before{
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

.company-card{
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-top: 30px;
}
.company-card h4{ font-family: var(--font-display); margin-bottom: 6px; }
.company-card p{ margin-bottom: 4px; font-size: 0.96rem; }

@media (max-width: 880px){
  .about-columns{ grid-template-columns: 1fr; }
  .pull-card{ position: static; }
}

/* ---------- Products page ---------- */
.filter-row{
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn{
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background .15s ease, color .15s ease;
}
.filter-btn.active, .filter-btn:hover{ background: var(--ink); color: var(--cream); }

.product-block{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid rgba(34,20,13,0.09);
}
.product-block:last-child{ border-bottom: none; }
.product-block.reverse .product-media{ order: 2; }
.product-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  width: 100%;
}
.product-media.flat{ padding: 30px; }
.product-media img{ width: 100%; height: 100%; object-fit: contain; }
.product-media.photo img{ object-fit: cover; height: 100%; }
.veg-media{ background: var(--green-soft); }
.nonveg-media{ background: var(--maroon-soft); }

.product-info h3{ font-size: 1.7rem; margin-bottom: 10px; }
.product-info .desc{ font-size: 1.02rem; color: var(--ink-soft); }
.spec-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 14px;
  margin: 22px 0;
}
.spec-item{
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.spec-item .label{ font-size: 0.74rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); display:block; margin-bottom: 3px; }
.spec-item .value{ font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; }
.ingredients-line{ font-size: 0.92rem; color: var(--ink-soft); }
.ingredients-line strong{ color: var(--ink); }
.allergen-note{
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gold-soft);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
}

@media (max-width: 860px){
  .product-block, .product-block.reverse{ grid-template-columns: 1fr; }
  .product-block.reverse .product-media{ order: 0; }
}

/* ---------- Chutney strip ---------- */
.chutney-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
}
.chutney-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.chutney-card img{ width: 100%; height: auto; aspect-ratio: 1397 / 1126; object-fit: cover; display: block; }
.chutney-card .body{ padding: 20px 22px; }
.chutney-card h4{ font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; }
.chutney-card p{ font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 8px; }

/* ---------- Cooking method grid ---------- */
.method-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 20px;
}
.method-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: left;
}
.method-card .icon{ width: 40px; height: 40px; color: var(--red); margin-bottom: 14px; }
.method-card h4{ font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.method-card p{ font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Why Us page ---------- */

/* Problems we solve — two-column table */
.problem-table{
  border: 1px solid rgba(34,20,13,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.problem-row{ display: grid; grid-template-columns: 1fr 1fr; }
.problem-row > span{
  padding: 18px 22px;
  border-top: 1px solid rgba(34,20,13,0.10);
}
.problem-row:first-child > span{ border-top: none; }
.problem-row > span:first-child{
  color: var(--ink-soft);
  border-right: 1px solid rgba(34,20,13,0.10);
}
.problem-row > span:last-child{ font-weight: 600; color: var(--ink); }
.problem-head > span,
.problem-head > span:first-child,
.problem-head > span:last-child{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  background: var(--cream-deep);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 680px){
  .problem-row{ grid-template-columns: 1fr; }
  .problem-row > span:first-child{
    border-right: none;
    padding-bottom: 4px;
    font-size: 0.9rem;
  }
  .problem-row > span:last-child{ padding-top: 4px; }
  .problem-head{ display: none; }
}

/* What you can count on — value cards */
.why-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.why-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-card .icon{ width: 40px; height: 40px; color: var(--red); }
.why-card h3{ font-size: 1.12rem; }
.why-card p{ font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 0; }

/* Quality process strip */
.process-strip{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.process-strip li{
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--gold);
  padding: 22px 20px;
}
.process-strip .step-num{
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  font-size: 1.35rem;
  display: block;
  margin-bottom: 6px;
}
.process-strip h3{ font-size: 1rem; margin-bottom: 4px; }
.process-strip p{ font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 0; }

/* CTA with WhatsApp / Call actions */
.cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; }
.cta-actions .btn svg{ width: 20px; height: 20px; }

.cert-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 22px;
}
.cert-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border-top: 5px solid var(--gold);
}
.cert-card h4{ font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 6px; }
.cert-card p{ font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0; }
.cert-card .num{ font-family: var(--font-body); font-weight: 700; color: var(--red-dark); font-size: 0.85rem; display:block; margin-top:8px; }

.promise-banner{
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
}
.promise-banner p{
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  max-width: 46ch;
  margin: 0 auto;
  color: var(--ink);
}

/* ---------- Contact page ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.contact-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
}
.contact-card h3{ font-size: 1.3rem; margin-bottom: 18px; }
.contact-item{ display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item .icon{ width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.contact-item a:hover{ color: var(--red-dark); }
.contact-item .label{ font-size: 0.78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); display: block; margin-bottom: 2px; }
.map-link{
  display: inline-flex; align-items:center; gap:8px;
  margin-top: 6px; font-weight: 600; font-size: 0.92rem; color: var(--red-dark);
}

.enquiry-form{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-soft);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ margin-bottom: 20px; }
.field label{ display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.6px solid rgba(34,20,13,0.18);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--cream);
  color: var(--ink);
}
.field textarea{ resize: vertical; min-height: 100px; }
.checkbox-group{ display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-pill{
  display: flex; align-items: center; gap: 8px;
  border: 1.6px solid rgba(34,20,13,0.18);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}
.checkbox-pill input{ accent-color: var(--red); }
.form-note{ font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; }
.form-success{
  display: none;
  background: var(--green-soft);
  color: var(--green);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 16px;
}

@media (max-width: 880px){
  .contact-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}

/* ---------- Minimum order badge ---------- */
.moq-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--gold);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ==========================================================================
   Small-screen hardening (phones)
   ========================================================================== */
@media (max-width: 600px){
  .wrap{ padding: 0 18px; }

  /* Header: keep logo + quote button + menu on one row */
  .nav{ padding: 8px 16px; gap: 10px; }
  .nav-brand img{ height: 44px; }
  .nav-cta{ gap: 8px; }
  .nav-cta .btn{ padding: 8px 14px; font-size: 0.8rem; }

  /* Tighter vertical rhythm */
  .section{ padding: 56px 0; }
  .section-tight{ padding: 40px 0; }
  .section-head{ margin-bottom: 30px; }
  .hero{ padding: 32px 0 0; }
  .hero p.lead{ font-size: 1.04rem; }

  /* Full-width stacked buttons everywhere they cluster */
  .hero-actions .btn,
  .cta-actions .btn{ flex: 1 1 100%; justify-content: center; }
  .hero-actions,
  .cta-actions{ width: 100%; }

  /* CTA banner */
  .cta-banner{ padding: 30px 22px; }

  /* Trust strip */
  .trust-strip ul{ font-size: 0.9rem; gap: 10px 0; }
  .trust-strip li{ padding: 0 10px; }

  /* Product rows */
  .product-info h3{ font-size: 1.4rem; }
  .spec-grid{ grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Process strip: single column reads better than a cramped 2-up */
  .process-strip{ grid-template-columns: 1fr; }

  /* Problems table: label the two stacked halves */
  .problem-row > span:first-child::before{
    content: "Problem — ";
    font-weight: 700;
    color: var(--red-dark);
  }
  .problem-row > span:last-child::before{
    content: "DeliMoMo — ";
    font-weight: 700;
    color: var(--green);
  }
}
