/* =========================================================================
   Indian Facility Services — stylesheet
   Palette pulled from the IFS logo (red / blue / navy) plus a hazard-yellow
   accent borrowed from the hard hats and floor-marking paint in their own
   site photos. The repeating diagonal stripe used as a section divider is a
   deliberate nod to the caution-tape / floor-marking work IFS does.
   ========================================================================= */

:root {
  /* Brand colour — sampled from the IFS logo */
  --red: #DC2A1E;
  --red-dark: #B41F15;
  --blue: #0EA1D6;
  --blue-dark: #0A81AF;
  --yellow: #FFC107;

  /* Ink / neutrals */
  --ink: #16213A;       /* headings, dark surfaces        */
  --ink-soft: #223252;  /* secondary dark surface          */
  --body: #4B5566;      /* body copy                       */
  --muted: #7C879B;     /* captions, meta                  */
  --paper: #F6F4EF;     /* warm off-white section bg       */
  --white: #FFFFFF;
  --line: #E4E0D4;      /* hairline borders on paper/white */
  --line-dark: rgba(255,255,255,0.14);

  --radius: 3px;
  --radius-lg: 6px;
  --shadow-card: 0 1px 2px rgba(22,33,58,0.06), 0 8px 24px rgba(22,33,58,0.06);
  --max: 1180px;
}

/* ---------------------------------------------------------------------
   Reset / base
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

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

/* ---------------------------------------------------------------------
   Top utility bar
   --------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: #C9D2E0;
  font-size: 0.83rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-contact i { color: var(--yellow); margin-right: 5px; }
.topbar-meta { display: flex; gap: 18px; align-items: center; color: #9FACC2; }
.topbar-meta i { color: var(--yellow); margin-right: 4px; }
.topbar-gst { border-left: 1px solid rgba(255,255,255,0.18); padding-left: 18px; }
@media (max-width: 720px) {
  .topbar-email, .topbar-gst { display: none; }
}

/* ---------------------------------------------------------------------
   Header / navigation
   --------------------------------------------------------------------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(22,33,58,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-family: 'Archivo', sans-serif; }
.brand-text strong { font-size: 1.05rem; color: var(--ink); font-weight: 800; }
.brand-text em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--blue-dark); font-weight: 600; }

.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav > ul { display: flex; gap: 26px; align-items: center; }
.primary-nav > ul > li > a {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a.active { color: var(--red); border-bottom-color: var(--red); }
.primary-nav .fa-chevron-down { font-size: 0.65em; margin-top: 2px; }

.has-children { position: relative; }
.dropdown {
  position: absolute;
  top: 100%; left: -16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  min-width: 240px;
  padding: 8px;
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
}
.has-children:hover .dropdown,
.has-children:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body);
  border-radius: 4px;
}
.dropdown li a:hover { background: var(--paper); color: var(--red); }

.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.nav-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--ink); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; inset: 0 0 0 30%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 28px 28px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -12px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .primary-nav > ul > li > a { padding: 12px 4px; border-bottom: 1px solid var(--line); width: 100%; justify-content: space-between; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none; padding-left: 12px;
  }
  .has-children.is-open .dropdown { display: block; }
  .nav-cta { margin: 18px 0 0; text-align: center; }
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------------
   Hazard divider — literal caution-stripe motif from IFS's own floor
   marking work, used as a structural section break site-wide.
   --------------------------------------------------------------------- */
.hazard-divider {
  height: 12px;
  background: repeating-linear-gradient(135deg, var(--yellow) 0 26px, var(--ink) 26px 52px);
}

/* ---------------------------------------------------------------------
   Section rhythm
   --------------------------------------------------------------------- */
.section { padding: 76px 0; }
.section-sm { padding: 52px 0; }
.section-alt { background: var(--paper); }
.section-dark { background: var(--ink); color: #C9D2E0; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #AEB9CC; }

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead { font-size: 1.08rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   Hero (home)
   --------------------------------------------------------------------- */
.hero { background: var(--paper); overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 60px 24px 0;
}
.hero-content p.section-lead { margin-bottom: 28px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-badges span { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 7px; }
.hero-badges i { color: var(--red); }

.hero-media { position: relative; align-self: end; }
.hero-media img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; box-shadow: var(--shadow-card); }
.hero-media-tag {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(22,33,58,0.88); color: #fff;
  padding: 10px 14px; border-radius: 4px;
  font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.hero-media-tag i { color: var(--yellow); }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-media { order: -1; }
}

/* ---------------------------------------------------------------------
   Page hero (interior pages)
   --------------------------------------------------------------------- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 56px 0 46px;
  position: relative;
}
.page-hero .breadcrumb { font-size: 0.85rem; color: var(--yellow); font-weight: 600; margin-bottom: 12px; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #AEB9CC; font-size: 1.05rem; max-width: 60ch; }

/* ---------------------------------------------------------------------
   Capabilities band — echoes the 4-column table on the IFS business card
   --------------------------------------------------------------------- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cap-col {
  padding: 34px 26px;
  border-left: 1px solid var(--line);
}
.cap-col:first-child { border-left: none; }
.cap-col i.cap-icon { font-size: 1.6rem; color: var(--red); margin-bottom: 16px; display: block; }
.cap-col h3 { margin-bottom: 12px; }
.cap-col ul { margin-bottom: 18px; }
.cap-col ul li {
  font-size: 0.9rem; color: var(--body);
  padding: 5px 0 5px 18px;
  position: relative;
}
.cap-col ul li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 7px; height: 2px; background: var(--yellow);
}
.cap-col a { font-weight: 700; font-size: 0.88rem; color: var(--blue-dark); }
.cap-col a i { margin-left: 4px; font-size: 0.8em; }

@media (max-width: 940px) {
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .cap-col:nth-child(2n+1) { border-left: none; }
  .cap-col:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .capabilities-grid { grid-template-columns: 1fr; }
  .cap-col { border-left: none !important; border-bottom: 1px solid var(--line); }
  .cap-col:last-child { border-bottom: none; }
}

/* ---------------------------------------------------------------------
   Split block (image + content), used on About / Home / service pages
   --------------------------------------------------------------------- */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-block.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.fact-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--body);
}
.fact-list li:last-child { border-bottom: none; }
.fact-list i { color: var(--red); margin-top: 3px; }
.fact-list strong { color: var(--ink); }

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

/* ---------------------------------------------------------------------
   Facts strip — true, verifiable facts (no invented numbers)
   --------------------------------------------------------------------- */
.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact-item {
  padding: 26px 22px;
  border-left: 1px solid var(--line);
  text-align: left;
}
.fact-item:first-child { border-left: none; }
.fact-item i { color: var(--red); font-size: 1.3rem; margin-bottom: 10px; display: block; }
.fact-item strong { display: block; color: var(--ink); font-family: 'Archivo', sans-serif; font-size: 1rem; margin-bottom: 4px; }
.fact-item span { font-size: 0.86rem; color: var(--muted); }

@media (max-width: 760px) {
  .facts-strip { grid-template-columns: 1fr 1fr; }
  .fact-item:nth-child(2n+1) { border-left: none; }
  .fact-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------------------------------------------------------------------
   Process steps — genuinely sequential (Inspect > Treat > Protect)
   --------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 8px; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Archivo', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--yellow);
  -webkit-text-stroke: 1.5px var(--ink);
  display: block;
  margin-bottom: 10px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.95rem; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px; right: -18px;
  width: 12px; height: 12px;
  border-top: 2px solid var(--line);
  border-right: 2px solid var(--line);
  transform: rotate(45deg);
  display: none;
}
@media (min-width: 761px) {
  .process-step:not(:last-child)::after { display: block; }
}
@media (max-width: 760px) {
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------------------------------------------------------------------
   Gallery grid
   --------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3.1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(22,33,58,0.92), rgba(22,33,58,0));
  color: #fff; padding: 34px 16px 14px;
  font-size: 0.86rem; font-weight: 600;
}
.gallery-item figcaption span { display: block; font-weight: 500; font-size: 0.76rem; color: var(--yellow); margin-top: 2px; }

.gallery-item.tall { grid-row: span 2; }

@media (max-width: 940px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.gallery-filters button {
  padding: 9px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--ink-soft);
}
.gallery-filters button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------------------------------------------------------------------
   Client-type chips
   --------------------------------------------------------------------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.chip i { color: var(--blue); }

/* ---------------------------------------------------------------------
   Value / info cards
   --------------------------------------------------------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.value-card i { font-size: 1.4rem; color: var(--red); margin-bottom: 14px; display: block; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   Service detail feature rows (services.php)
   --------------------------------------------------------------------- */
.feature-row:not(:last-child) { margin-bottom: 88px; }
.feature-tag { display: inline-block; background: var(--yellow); color: var(--ink); font-weight: 700; font-size: 0.78rem; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.feature-list { margin: 22px 0; }
.feature-list li { display: flex; gap: 10px; padding: 7px 0; font-size: 0.95rem; }
.feature-list i { color: var(--blue); margin-top: 4px; }

/* ---------------------------------------------------------------------
   Checklist (generic)
   --------------------------------------------------------------------- */
.checklist li { display: flex; gap: 10px; padding: 8px 0; }
.checklist i { color: var(--red); margin-top: 4px; }
.checklist.two-col { columns: 2; column-gap: 30px; }
.checklist.two-col li { break-inside: avoid; }
@media (max-width: 600px) { .checklist.two-col { columns: 1; } }

/* ---------------------------------------------------------------------
   CTA band (in footer include)
   --------------------------------------------------------------------- */
.cta-band { background: var(--ink); color: #fff; padding: 56px 0; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-bottom: 10px; }
.cta-band p { color: #AEB9CC; max-width: 46ch; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--ink-soft); color: #C9D2E0; padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text em { color: var(--yellow); }
.footer-brand p { color: #9FACC2; font-size: 0.92rem; margin-top: 14px; }
.footer-gst { font-size: 0.8rem !important; color: #7C8CA6 !important; margin-top: 10px !important; }
.footer-col h3 { color: #fff; font-size: 0.95rem; text-transform: none; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #C9D2E0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--yellow); }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; color: #C9D2E0; }
.contact-list i { color: var(--yellow); margin-top: 3px; width: 14px; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 22px 24px; font-size: 0.82rem; color: #7C8CA6;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------------------------------------------------------------------
   Forms (contact page)
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.contact-info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .contact-list i { color: var(--yellow); }
.contact-info-card .contact-list a { color: #fff; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 22px; border: 1px solid rgba(255,255,255,0.15); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }
.map-embed.tall iframe { height: 380px; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.form-alert { padding: 14px 18px; border-radius: 6px; margin-bottom: 22px; font-size: 0.92rem; font-weight: 500; }
.form-alert.success { background: #E6F6EC; color: #1E7A3D; border: 1px solid #B7E4C4; }
.form-alert.error { background: #FCEAE8; color: var(--red-dark); border: 1px solid #F4C2BC; }

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

/* ---------------------------------------------------------------------
   404
   --------------------------------------------------------------------- */
.error-page { padding: 110px 0; text-align: left; }
.error-page .code { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 5rem; color: var(--yellow); -webkit-text-stroke: 2px var(--ink); line-height: 1; margin-bottom: 10px; }

/* ---------------------------------------------------------------------
   Misc utility
   --------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 34px; }
.text-muted { color: var(--muted); }
.tag-yellow { background: var(--yellow); color: var(--ink); padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; }
