:root {
  --ink: #11263a;
  --ink-soft: #1b344b;
  --blue: #1380c9;
  --blue-bright: #7dc8f3;
  --blue-pale: #d9edf8;
  --orange: #f39824;
  --paper: #f3f0e9;
  --sand: #e7dfd0;
  --white: #fff;
  --line: rgba(17, 38, 58, .16);
  --shadow: 0 26px 70px rgba(11, 28, 43, .14);
  --radius: 3px;
  --container: min(1180px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 132px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(17, 38, 58, .96);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: var(--container);
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark, .hero-logo-mark {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--blue-bright) 5%, var(--blue) 45%, var(--orange) 46%, var(--orange) 72%, #e7edf1 73%);
  -webkit-mask: url("assets/abh-mark-mask.png") center / contain no-repeat;
  mask: url("assets/abh-mark-mask.png") center / contain no-repeat;
  -webkit-mask-size: 230% auto;
  mask-size: 230% auto;
  -webkit-mask-position: center top;
  mask-position: center top;
  mask-mode: luminance;
}
.brand-copy { display: grid; line-height: 1.05; text-transform: uppercase; }
.brand-copy strong { font-size: 1.28rem; letter-spacing: .12em; }
.brand-copy span { margin-top: 4px; font-size: .62rem; letter-spacing: .16em; opacity: .76; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.7vw, 38px); }
.site-nav a {
  position: relative;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 17px; border: 1px solid rgba(255,255,255,.38); }
.nav-cta:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; background: transparent; border: 1px solid rgba(255,255,255,.3); }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 560px; height: 560px; right: -220px; top: 20px; background: radial-gradient(circle, rgba(19,128,201,.3), transparent 68%); }
.hero-orb-two { width: 340px; height: 340px; left: -120px; bottom: 30px; background: radial-gradient(circle, rgba(243,152,36,.12), transparent 70%); }
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .82fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
  min-height: 772px;
  padding-top: 104px;
  padding-bottom: 62px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue-bright);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6.6vw, 6.45rem);
  font-weight: 750;
  line-height: .95;
  letter-spacing: -.055em;
}
h1 em { color: var(--blue-bright); font-style: normal; }
.hero-intro { max-width: 690px; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.65vw, 1.25rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 38px 0 52px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--orange); }
.button-primary:hover { background: #ffac3f; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.32); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-facts { display: flex; margin: 0; }
.hero-facts div { min-width: 130px; padding-right: 28px; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.16); }
.hero-facts div:last-child { border: 0; }
.hero-facts dt { font-size: 1.05rem; font-weight: 800; }
.hero-facts dd { margin: 3px 0 0; color: rgba(255,255,255,.52); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { position: relative; height: 560px; }
.hero-photo-wrap {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 0;
  width: 82%;
  height: 462px;
  overflow: hidden;
  border-radius: 180px 180px 4px 4px;
  box-shadow: 0 35px 80px rgba(0,0,0,.3);
}
.hero-photo-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,31,48,.72), transparent 55%); }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: contrast(1.03); }
.photo-label {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  padding: 6px 10px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-logo-card {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 170px;
  width: 174px;
  padding: 25px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.hero-logo-card .hero-logo-mark { width: 72px; }
.hero-logo-card p { margin: 18px 0 0; font-size: .63rem; line-height: 1.45; letter-spacing: .09em; text-transform: uppercase; }
.hero-logo-card strong { color: var(--blue); font-size: 1.25rem; letter-spacing: .18em; }
.route-line {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 28px;
  width: 85%;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--blue-bright);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.route-line i { position: relative; flex: 1; height: 1px; background: linear-gradient(90deg, var(--orange), var(--blue-bright)); }
.route-line i::after { content: ""; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--blue-bright); border-right: 1px solid var(--blue-bright); transform: rotate(45deg); }
.hero-ribbon { position: absolute; inset: auto 0 0; height: 48px; overflow: hidden; color: var(--ink); background: var(--blue-bright); }
.ribbon-track { display: flex; width: max-content; height: 100%; align-items: center; gap: 32px; animation: ticker 26s linear infinite; }
.ribbon-track span { font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.ribbon-track i { width: 6px; height: 6px; background: var(--orange); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

.about { background: var(--paper); }
.about-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(50px, 9vw, 140px); }
.section-heading { position: relative; }
.section-heading::after { content: "ABH / INDIA"; display: block; margin-top: 60px; color: rgba(17,38,58,.24); font-size: .67rem; font-weight: 800; letter-spacing: .26em; }
h2 { margin-bottom: 28px; font-size: clamp(2.4rem, 4.2vw, 4.35rem); line-height: 1.04; letter-spacing: -.045em; }
.lead { font-size: clamp(1.2rem, 2vw, 1.52rem); line-height: 1.55; letter-spacing: -.015em; }
.about-copy > p:not(.lead) { max-width: 700px; color: rgba(17,38,58,.72); }
.signature-line { display: flex; gap: 34px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.signature-line span { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.story-gallery { display: grid; grid-template-columns: 1.25fr .7fr .7fr; grid-template-rows: 190px 190px; gap: 14px; margin-top: 86px; }
.story-gallery figure { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--sand); }
.story-gallery figure img { width: 100%; height: 100%; object-fit: cover; }
.story-gallery .gallery-main { grid-row: 1 / 3; }
.story-gallery .gallery-main img { object-position: center; }
.story-gallery figcaption { position: absolute; inset: auto 0 0; padding: 32px 22px 16px; color: var(--white); background: linear-gradient(transparent, rgba(13,32,49,.8)); font-size: .68rem; letter-spacing: .06em; }
.story-gallery blockquote {
  grid-row: 1 / 3;
  margin: 0;
  padding: 38px;
  color: var(--white);
  background: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.story-gallery blockquote span { color: var(--blue-bright); font-size: 5rem; line-height: .5; }
.story-gallery blockquote p { margin: 22px 0 0; font-size: clamp(1.3rem, 2.25vw, 2rem); font-weight: 700; line-height: 1.25; letter-spacing: -.03em; }

.products { background: var(--white); }
.products-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.products-head > p { padding-bottom: 12px; color: rgba(17,38,58,.68); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-card { position: relative; min-height: 390px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s ease, background .25s ease, transform .25s ease; }
.product-card:hover { z-index: 2; color: var(--white); background: var(--ink); transform: translateY(-8px); }
.product-number { color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .15em; }
.product-icon { width: 74px; margin: 66px 0 34px; color: var(--orange); }
.product-icon svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.product-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.product-card p { margin-bottom: 0; color: rgba(17,38,58,.65); font-size: .9rem; }
.product-card:hover p { color: rgba(255,255,255,.65); }
.catalogue-note { margin: 38px 0 0; color: rgba(17,38,58,.67); }
.catalogue-note a { margin-left: 10px; color: var(--blue); font-weight: 800; text-underline-offset: 4px; }

.process { color: var(--white); background: var(--ink); }
.process-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro p:not(.eyebrow) { color: rgba(255,255,255,.64); }
.text-link { display: inline-block; margin-top: 28px; color: var(--blue-bright); font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-underline-offset: 7px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.process-list li { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.step-number { color: var(--blue-bright); font-size: .74rem; font-weight: 800; letter-spacing: .16em; }
.process-list h3 { margin-bottom: 10px; font-size: 1.45rem; }
.process-list p { max-width: 600px; margin: 0; color: rgba(255,255,255,.6); }

.buyer-first { background: var(--sand); }
.buyer-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(58px, 10vw, 145px); align-items: center; }
.buyer-image { position: relative; height: 720px; }
.buyer-image::before { content: ""; position: absolute; z-index: 0; width: 76%; height: 90%; right: -24px; bottom: -24px; border: 1px solid rgba(17,38,58,.25); }
.buyer-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.buyer-badge { position: absolute; z-index: 2; right: -50px; bottom: 58px; padding: 20px 24px; color: var(--ink); background: var(--orange); text-transform: uppercase; line-height: 1.15; }
.buyer-badge strong, .buyer-badge span { display: block; }
.buyer-badge strong { font-size: .68rem; letter-spacing: .13em; }
.buyer-badge span { margin-top: 5px; font-size: .61rem; letter-spacing: .08em; }
.buyer-copy > p:not(.eyebrow):not(.lead) { color: rgba(17,38,58,.68); }
.market-card { margin-top: 48px; padding: 32px; background: rgba(255,255,255,.56); border-left: 3px solid var(--blue); }
.market-label { margin-bottom: 12px; color: var(--blue); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.market-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.market-card > p:not(.market-label) { color: rgba(17,38,58,.68); }
.market-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 26px; margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.market-card li { position: relative; padding-left: 13px; font-size: .77rem; font-weight: 700; }
.market-card li::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; background: var(--orange); }

.credentials { padding: 0; color: var(--ink); background: var(--white); }
.credentials-layout { width: 100%; display: grid; grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr); }
.vision { position: relative; padding: 110px max(44px, calc((100vw - 1180px) / 2)); padding-right: 72px; color: var(--white); background: var(--blue); overflow: hidden; }
.vision::after { content: "ABH"; position: absolute; right: -22px; bottom: -58px; color: rgba(255,255,255,.08); font-size: 13rem; font-weight: 900; letter-spacing: -.09em; }
.vision .eyebrow { color: var(--white); }
.vision blockquote { position: relative; z-index: 1; margin: 0 0 32px; font-size: clamp(2rem, 3vw, 3.25rem); font-weight: 750; line-height: 1.1; letter-spacing: -.04em; }
.vision > p:last-child { position: relative; z-index: 1; color: rgba(255,255,255,.72); }
.registration { padding: 110px max(36px, calc((100vw - 1180px) / 2)); padding-left: 72px; }
.registration-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; }
.registration-head h2 { font-size: clamp(2.1rem, 3.4vw, 3.4rem); }
.verified-chip { flex: 0 0 auto; padding: 9px 12px; color: #256243; background: #e1f0e6; border-radius: 40px; font-size: .67rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.verified-chip i { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 5px; color: var(--white); background: #3d8961; border-radius: 50%; font-style: normal; }
.registration-list { margin: 30px 0 0; border-top: 1px solid var(--line); }
.registration-list div { display: grid; grid-template-columns: 138px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.registration-list dt { color: rgba(17,38,58,.5); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.registration-list dd { margin: 0; font-size: .85rem; font-weight: 700; overflow-wrap: anywhere; }
.directors { margin-top: 24px; }
.directors > span { color: rgba(17,38,58,.5); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.directors p { margin: 7px 0 0; font-weight: 700; }
.directors small { color: var(--blue); font-size: .68rem; text-transform: uppercase; }
.directors i { margin: 0 8px; color: var(--orange); font-style: normal; }

.contact { position: relative; overflow: hidden; padding: 130px 0 44px; color: var(--white); background: #0a1c2c; }
.contact-map { position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(circle at 68% 30%, var(--blue-bright) 1px, transparent 1.5px); background-size: 16px 16px; mask-image: radial-gradient(ellipse at 68% 40%, black 0, transparent 58%); }
.contact-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 140px); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.65); }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 38px; }
.contact-phone { color: var(--white); font-weight: 800; text-underline-offset: 6px; }
.enquiry-form { padding: 38px; color: var(--ink); background: var(--paper); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.enquiry-form label { display: grid; gap: 7px; margin-bottom: 17px; font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form input, .enquiry-form textarea { width: 100%; padding: 12px 2px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(17,38,58,.34); border-radius: 0; outline: 0; resize: vertical; text-transform: none; letter-spacing: 0; }
.enquiry-form input:focus, .enquiry-form textarea:focus { border-color: var(--blue); box-shadow: 0 1px var(--blue); }
.enquiry-form textarea::placeholder { color: rgba(17,38,58,.38); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--blue); }
.form-note { margin: 14px 0 0; color: rgba(17,38,58,.5); font-size: .68rem; }
.contact-details { position: relative; display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 36px; margin-top: 92px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-details a, .contact-details address { color: rgba(255,255,255,.72); font-size: .78rem; line-height: 1.65; text-decoration: none; overflow-wrap: anywhere; }
.contact-details a:hover { color: var(--blue-bright); }
.contact-details span { display: block; margin-bottom: 6px; color: rgba(255,255,255,.38); font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-footer { padding: 28px 0; color: rgba(255,255,255,.46); background: #071521; border-top: 1px solid rgba(255,255,255,.07); }
.footer-layout { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-brand .brand-mark { width: 34px; }
.footer-brand .brand-copy strong { color: var(--white); font-size: 1rem; }
.footer-layout > p { margin: 0; font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-layout > p:last-child { justify-self: end; }
.footer-layout i { color: var(--orange); font-style: normal; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal-delay { transition-delay: .18s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .74rem; }
  .hero-layout { grid-template-columns: 1.1fr .9fr; gap: 40px; }
  .hero-logo-card { left: -20px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .credentials-layout { grid-template-columns: 1fr; }
  .vision, .registration { padding: 90px max(36px, calc((100vw - 930px) / 2)); }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 36px, 680px); }
  .section { padding: 92px 0; }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 18px 22px;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.12);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s;
  }
  .site-nav.open { transform: translateY(0); visibility: visible; }
  .site-nav a { padding: 13px 8px; font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav .nav-cta { margin-top: 12px; text-align: center; border: 1px solid rgba(255,255,255,.3); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 145px; padding-bottom: 110px; }
  .hero-copy { position: relative; z-index: 3; }
  .hero-visual { height: 510px; max-width: 540px; width: 100%; margin-inline: auto; }
  .hero-photo-wrap { height: 430px; }
  .about-layout, .products-head, .process-layout, .buyer-layout, .contact-layout { grid-template-columns: 1fr; }
  .section-heading::after { display: none; }
  .story-gallery { grid-template-columns: 1.2fr .8fr; grid-template-rows: 180px 180px 250px; }
  .story-gallery blockquote { grid-row: 3; grid-column: 1 / 3; }
  .products-head { gap: 16px; }
  .process-intro { position: static; }
  .buyer-image { width: calc(100% - 28px); max-width: 530px; height: 620px; }
  .buyer-badge { right: -28px; }
  .contact-details { grid-template-columns: 1fr 1fr; }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .footer-layout > p:nth-child(2) { display: none; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 30px); }
  h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.3rem); }
  .brand-copy span { display: none; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .hero-facts div { min-width: 0; }
  .hero-facts div:nth-child(2) { border: 0; }
  .hero-visual { height: 420px; }
  .hero-photo-wrap { width: 86%; height: 350px; }
  .hero-logo-card { top: 120px; left: 0; width: 140px; padding: 18px; }
  .hero-logo-card .hero-logo-mark { width: 55px; }
  .story-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 130px 250px; }
  .story-gallery .gallery-main { grid-column: 1 / 3; grid-row: 1; }
  .story-gallery blockquote { grid-row: 3; }
  .signature-line { flex-direction: column; gap: 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 330px; }
  .product-icon { margin: 44px 0 28px; }
  .catalogue-note a { display: block; margin: 8px 0 0; }
  .process-list li { grid-template-columns: 54px 1fr; }
  .buyer-image { height: 500px; }
  .market-card { padding: 25px; }
  .market-card ul { grid-template-columns: 1fr; }
  .vision, .registration { padding: 76px 25px; }
  .registration-head { display: block; }
  .verified-chip { display: inline-block; margin-bottom: 25px; }
  .registration-list div { grid-template-columns: 1fr; gap: 3px; }
  .contact { padding-top: 90px; }
  .enquiry-form { padding: 25px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-details { grid-template-columns: 1fr; margin-top: 65px; }
  .footer-layout { grid-template-columns: 1fr; }
  .footer-layout > p:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
