:root {
  --navy: #1b2b5e;
  --navy-deep: #0f1629;
  --navy-soft: #2d3a8c;
  --lime: #8dc63f;
  --lime-deep: #628d28;
  --lime-pale: #f1f7e8;
  --crimson: #c62828;
  --crimson-deep: #922020;
  --crimson-pale: #fff0ef;
  --silver: #b0b8c4;
  --canvas: #fafbfc;
  --paper: #ffffff;
  --ink: #1a1d2e;
  --muted: #444b60;
  --faint: #656d82;
  --line: #c8ceda;
  --whatsapp: #168a46;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', Consolas, monospace;
  --max-w: 1200px;
  --radius: 6px;
  --radius-sm: 4px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--canvas); font: 450 16px/1.58 var(--font-body); }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); letter-spacing: 0; line-height: 1.08; }
h1, h2 { font-family: var(--font-display); font-weight: 600; }
h1 { font-size: 4.1rem; }
h2 { font-size: 2.55rem; }
h3, h4 { font-family: var(--font-body); font-weight: 750; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 20px; color: var(--muted); }
ul { margin: 0; padding-left: 1.2rem; }
li + li { margin-top: 8px; }
.container { width: min(calc(100% - 48px), var(--max-w)); margin-inline: auto; }
.section { padding: 72px 0; }
.section.compact { padding: 52px 0; }
.section.paper { background: var(--paper); }
.section.navy { color: #fff; background: var(--navy-deep); }
.section.navy h2, .section.navy h3 { color: #fff; }
.section.navy p { color: #cbd3e5; }
.section.mulmin-tint { background: var(--lime-pale); }
.section.qualimin-tint { background: var(--crimson-pale); }
.lead { max-width: 59ch; font-size: 1.12rem; line-height: 1.58; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--navy-soft); font: 600 .76rem/1.4 var(--font-body); letter-spacing: 0; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 2px; background: currentColor; content: ''; }
.eyebrow.light { color: #d4dbef; }
.eyebrow.mulmin { color: var(--lime-deep); }
.eyebrow.qualimin { color: var(--crimson); }
.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; top: -70px; left: 16px; z-index: 100; padding: 10px 16px; color: #fff; background: var(--navy); border-radius: var(--radius-sm); }
.skip-link:focus { top: 14px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; height: var(--header-h); border-bottom: 1px solid rgba(217, 221, 230, .9); }
.site-header::before { position: absolute; inset: 0; z-index: -1; background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); content: ''; }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; width: min(calc(100% - 48px), var(--max-w)); height: 100%; margin-inline: auto; }
.brand { display: inline-flex; align-items: center; color: var(--navy); }
.brand-logo { display: block; width: 214px; height: auto; }
.main-nav { justify-self: center; display: flex; align-items: stretch; gap: 24px; height: 100%; color: var(--muted); font-size: .9rem; font-weight: 600; }
.main-nav a { position: relative; display: grid; place-items: center; }
.main-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--navy); content: ''; transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle { display: grid; width: 42px; height: 42px; place-items: center; padding: 0; color: var(--navy); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.theme-toggle:hover { color: var(--navy-soft); background: var(--paper); border-color: var(--navy-soft); transform: translateY(-2px); }
.theme-icon { width: 18px; height: 18px; }
.moon-icon { display: none; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }

/* Commands */
.btn, .contact-button, .icon-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 10px 18px; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 700; line-height: 1.1; transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease; }
.btn svg, .contact-button svg { width: 18px; height: 18px; }
.btn:hover, .contact-button:hover { box-shadow: 0 8px 20px rgba(15,22,41,.14); transform: translateY(-2px); }
.btn:active, .contact-button:active { box-shadow: none; transform: translateY(0); }
.btn-primary { color: #fff; background: var(--navy); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-secondary { color: var(--navy); background: #fff; border-color: var(--silver); }
.btn-secondary:hover { border-color: var(--navy); }
.btn-light { color: var(--navy); background: #fff; }
.btn-light:hover { background: #f2f4f8; }
.btn-whatsapp { color: #fff; background: var(--whatsapp); }
.btn-whatsapp:hover { background: #116f39; }
.btn-product-mulmin { color: var(--navy-deep); background: var(--lime); }
.btn-product-mulmin:hover { background: #9bd64b; }
.btn-product-qualimin { color: #fff; background: var(--crimson); }
.btn-product-qualimin:hover { background: var(--crimson-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-row.center { justify-content: center; }
.contact-button { min-height: 40px; padding: 8px 14px; color: #fff; background: var(--navy); font-size: .84rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 700; }
.text-link svg { width: 17px; height: 17px; transition: transform .18s ease; }
.text-link:hover svg { transform: translateX(3px); }
.ui-icon { display: block; width: 22px; height: 22px; flex: 0 0 auto; }

/* Homepage */
.home-hero { position: relative; min-height: 620px; overflow: hidden; color: #fff; background: var(--navy-deep) url('/assets/images/v2/omanfields-range-hero-1920.webp') center/cover no-repeat; }
.home-hero .container { display: flex; min-height: 620px; align-items: center; }
.home-hero-copy { position: relative; z-index: 2; width: min(45%, 540px); padding: 68px 0 76px; }
.home-hero h1 { max-width: 9.6ch; color: #fff; }
.home-hero h1 .mulmin-word { color: var(--lime); }
.home-hero h1 .qualimin-word { color: #ff6868; }
.home-hero p { max-width: 48ch; margin-top: 22px; color: #f0f2f7; font-weight: 500; }
.hero-note { margin-top: 23px; color: #e1e5ef; font: 500 .78rem/1.5 var(--font-body); }
.trust-strip { color: #fff; background: var(--navy); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 78px; padding: 15px 22px; border-left: 1px solid rgba(255, 255, 255, .24); }
.trust-item:last-child { border-right: 1px solid rgba(255, 255, 255, .16); }
.trust-item strong { display: block; font-size: .9rem; font-weight: 750; }
.trust-item span { display: block; margin-top: 2px; color: #d8deec; font-size: .75rem; line-height: 1.4; }
.section-head { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: 42px; align-items: end; margin-bottom: 34px; }
.section-head p { max-width: 58ch; margin: 0; }
.section-head.center { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center p { margin: 18px auto 0; }
.range-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); }
.range-card { position: relative; display: grid; grid-template-rows: 320px auto; min-width: 0; background: #fff; transition: box-shadow .22s ease, transform .22s ease; }
.range-card + .range-card { border-left: 1px solid var(--line); }
.range-visual { overflow: hidden; background: #f1f2f4; }
.range-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.range-card:hover, .range-card:focus-within { z-index: 2; box-shadow: 0 16px 34px rgba(15,22,41,.13); transform: translateY(-3px); }
.range-card:hover .range-visual img, .range-card:focus-within .range-visual img { transform: scale(1.025); }
.range-body { padding: 28px 30px 30px; border-top: 5px solid var(--lime); }
.range-card.qualimin .range-body { border-color: var(--crimson); }
.range-kicker { margin-bottom: 9px; color: var(--lime-deep); font: 700 .74rem/1.4 var(--font-body); text-transform: uppercase; }
.range-card.qualimin .range-kicker { color: var(--crimson); }
.range-body h3 { font-size: 1.7rem; }
.product-card-title { font-family: var(--font-body); font-size: 1.7rem; font-weight: 750; }
.range-body p { min-height: 54px; margin-top: 12px; }
.quick-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.quick-facts span { padding: 6px 9px; color: var(--muted); background: #f3f4f7; border: 1px solid var(--line); border-radius: 999px; font-size: .75rem; }
.need-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.need-link { position: relative; min-height: 176px; padding: 24px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s ease, box-shadow .2s ease, transform .2s ease; }
.need-link:hover, .need-link:focus-visible { z-index: 2; background: #f7f8fa; box-shadow: 0 12px 26px rgba(15,22,41,.11); transform: translateY(-3px); }
.need-top { display: flex; align-items: center; gap: 9px; }
.need-link .ui-icon { width: 19px; height: 19px; color: var(--navy-soft); }
.need-link.mulmin .ui-icon { color: var(--lime-deep); }
.need-link.qualimin .ui-icon { color: var(--crimson); }
.need-arrow { width: 17px; height: 17px; margin-left: auto; color: var(--faint); transition: color .18s ease, transform .18s ease; }
.need-link:hover .need-arrow, .need-link:focus-visible .need-arrow { color: var(--navy); transform: translateX(3px); }
.need-link .need-label { color: var(--navy-soft); font: 700 .7rem/1.4 var(--font-body); text-transform: uppercase; }
.need-link.mulmin .need-label { color: var(--lime-deep); }
.need-link.qualimin .need-label { color: var(--crimson); }
.need-link h3 { margin: 18px 0 8px; font-size: 1.05rem; }
.need-link p { margin: 0; font-size: .88rem; line-height: 1.52; }
.editorial-split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; }
.editorial-split.reverse { grid-template-columns: .95fr 1.05fr; }
.editorial-media { aspect-ratio: 4 / 3; min-height: 0; overflow: hidden; background: #edf0f4; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-media.pack-feature { aspect-ratio: 16 / 10; background: #edf0f4; }
.editorial-media.pack-feature img { object-fit: cover; }
.editorial-copy { display: flex; flex-direction: column; justify-content: center; padding: 50px; background: #fff; }
.editorial-copy h2 { max-width: 12ch; }
.editorial-copy p { margin-top: 20px; }
.editorial-copy.mulmin { border-top: 5px solid var(--lime); }
.editorial-copy.qualimin { border-top: 5px solid var(--crimson); }
.photo-story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.photo-story-grid.three { grid-template-columns: repeat(3, 1fr); }
.photo-story { position: relative; display: block; min-width: 0; min-height: 340px; overflow: hidden; background: var(--navy-deep); transition: box-shadow .22s ease, transform .22s ease; }
a.photo-story:hover, a.photo-story:focus-visible { box-shadow: 0 14px 30px rgba(15,22,41,.18); transform: translateY(-3px); }
.photo-story-media { position: absolute; inset: 0; overflow: hidden; background: #eef0f3; }
.photo-story-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,22,41,.86) 0%, rgba(15,22,41,.55) 42%, rgba(15,22,41,0) 72%); content: ''; }
.photo-story.copy-right .photo-story-media::after { background: linear-gradient(270deg, rgba(15,22,41,.88) 0%, rgba(15,22,41,.56) 42%, rgba(15,22,41,0) 72%); }
.photo-story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
a.photo-story:hover .photo-story-media img, a.photo-story:focus-visible .photo-story-media img { transform: scale(1.02); }
.photo-story-copy { position: relative; z-index: 1; display: flex; width: 47%; min-height: 340px; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff; }
.photo-story-grid.three .photo-story-copy { width: 100%; min-height: 0; padding: 24px; }
.photo-story.copy-right .photo-story-copy { margin-left: auto; }
.photo-story-copy .need-label { color: var(--lime); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.photo-story.qualimin-story .photo-story-copy .need-label { color: #ff7a78; }
.photo-story h3 { margin-top: 8px; color: #fff; font-size: 1.15rem; }
.photo-story p { margin: 8px 0 0; color: #eef1f7; font-size: .9rem; line-height: 1.5; }
.story-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; color: #fff; font-size: .78rem; font-weight: 750; }
.story-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
a.photo-story:hover .story-link svg, a.photo-story:focus-visible .story-link svg { transform: translateX(3px); }
.photo-story-grid.three .photo-story { min-height: 0; aspect-ratio: 4 / 3; }
.object-family { object-position: 70% 50%; }
.object-working { object-position: 35% 50%; }
.object-ageing { object-position: 35% 50%; }
.object-womens { object-position: 72% 50%; }

/* Keep the age-group descriptions separate from the photography. */
#family .photo-story {
  display: grid;
  grid-template-rows: auto 1fr;
  aspect-ratio: auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
#family .photo-story-media {
  position: relative;
  inset: auto;
  aspect-ratio: 16 / 10;
}
#family .photo-story-media::after { display: none; }
#family .photo-story-copy,
#family .photo-story.copy-right .photo-story-copy {
  width: 100%;
  min-height: 0;
  margin-left: 0;
  padding: 20px 22px 24px;
  color: var(--ink);
  border-top: 4px solid var(--lime);
}
#family .photo-story-copy .need-label { color: var(--lime-deep); }
#family .photo-story h3 { color: var(--navy); }
#family .photo-story p { color: var(--muted); }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, .18); border-left: 1px solid rgba(255, 255, 255, .18); }
.testimonial { display: flex; min-height: 250px; flex-direction: column; justify-content: space-between; padding: 28px; border-right: 1px solid rgba(255, 255, 255, .24); border-bottom: 1px solid rgba(255, 255, 255, .24); }
.testimonial-product { display: inline-block; margin-bottom: 14px; color: var(--lime); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.testimonial-product.qualimin { color: #ff7a78; }
.rating { margin-bottom: 14px; color: #f6c64e; font-size: 1rem; letter-spacing: 2px; }
.testimonial blockquote { margin: 0; color: #fff; font-family: var(--font-body); font-size: 1.05rem; font-weight: 650; line-height: 1.52; }
.testimonial footer { margin-top: 28px; color: #cbd3e5; font-size: .8rem; }
.location-cta { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: stretch; padding: 38px 42px; color: #fff; background: var(--navy); }
.location-cta h2, .location-cta h3 { color: #fff; }
.location-cta p { margin: 12px 0 0; color: #d7ddec; }
.location-paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-left: 1px solid rgba(255,255,255,.2); }
.location-path { padding: 4px 0 4px 28px; }
.location-path + .location-path { margin-left: 28px; border-left: 1px solid rgba(255,255,255,.2); }
.location-path .ui-icon { width: 25px; height: 25px; color: var(--lime); }
.location-path h3 { margin-top: 17px; font-size: 1.05rem; }
.location-path p { font-size: .88rem; }
.location-path .btn-row { margin-top: 18px; }
.location-path .btn { min-height: 42px; padding: 9px 13px; font-size: .8rem; }
.stockist-callout { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; padding: 38px 42px; color: #fff; background: var(--navy); }
.stockist-callout h2 { color: #fff; }
.stockist-callout p { max-width: 64ch; margin: 12px 0 0; color: #d7ddec; }

/* Inner pages */
.page-hero { padding: 82px 0 70px; background: #f0f2f6; border-bottom: 1px solid var(--line); }
.page-hero.dark { color: #fff; background: var(--navy-deep); }
.page-hero.dark h1 { color: #fff; }
.page-hero.dark p { color: #d4daea; }
.page-hero .lead { margin-top: 22px; }
.page-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.page-hero-image { aspect-ratio: 16 / 9; overflow: hidden; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.role-list { display: grid; border-top: 1px solid var(--line); }
.role-row { display: grid; grid-template-columns: 210px 1fr; gap: 34px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.role-row strong { color: var(--navy); }
.role-row p { margin: 0; }

/* Product hero and gallery */
.product-hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.product-hero .container { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 610px; }
.product-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px 54px 72px 0; }
.product-hero-copy .lead { margin-top: 22px; }
.product-hero-copy.mulmin { border-top: 6px solid var(--lime); }
.product-hero-copy.qualimin { border-top: 6px solid var(--crimson); }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.product-meta span { padding: 6px 9px; color: var(--muted); background: #f3f4f7; border: 1px solid var(--line); border-radius: 999px; font-size: .75rem; }
.product-gallery { display: grid; grid-template-columns: 88px 1fr; gap: 14px; padding: 34px 0 34px 34px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 10px; }
.gallery-thumb { width: 88px; height: 72px; padding: 0; overflow: hidden; background: #f2f3f6; border: 2px solid transparent; border-radius: var(--radius-sm); cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.gallery-thumb[aria-selected='true'] { border-color: var(--navy); }
.gallery-thumb:hover { border-color: var(--silver); box-shadow: 0 7px 16px rgba(15,22,41,.13); transform: translateY(-2px); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-stage { position: relative; min-width: 0; aspect-ratio: 4 / 5; overflow: hidden; background: #f1f2f4; touch-action: pan-y; }
.gallery-stage img { width: 100%; height: 100%; object-fit: contain; transform: scale(var(--gallery-zoom, 1)); transition: opacity .2s ease, transform .18s ease; }
.gallery-stage[data-fit='cover'] img { object-fit: cover; }
.gallery-controls { position: absolute; right: 12px; bottom: 12px; display: flex; gap: 7px; }
.gallery-control { display: grid; width: 42px; height: 42px; place-items: center; padding: 0; color: var(--navy); background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: background .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease; }
.gallery-control:hover { color: #fff; background: var(--navy); box-shadow: 0 7px 16px rgba(15,22,41,.18); transform: translateY(-2px); }
.gallery-control svg { width: 18px; height: 18px; }
.gallery-status { position: absolute; left: 14px; bottom: 14px; padding: 5px 8px; color: var(--muted); background: rgba(255,255,255,.94); font: 500 .7rem/1.3 var(--font-mono); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-item { min-height: 220px; padding: 28px; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-item .number { color: var(--faint); font: 500 .72rem/1 var(--font-mono); }
.benefit-item h3 { margin: 28px 0 10px; font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; }
.benefit-item p { margin: 0; font-size: .92rem; }
.ingredient-band { color: #fff; background: var(--navy-deep); }
.ingredient-band h2 { color: #fff; }
.ingredient-band p { color: #d0d6e5; }
.ingredient-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 34px; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.ingredient-grid div { min-height: 126px; padding: 22px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.ingredient-grid strong { display: block; color: #fff; }
.ingredient-grid span { display: block; margin-top: 6px; color: #bfc7da; font-size: .8rem; }
.info-split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: start; }
.info-split.reverse { grid-template-columns: 1.12fr .88fr; }
.info-media { aspect-ratio: 16 / 10; min-height: 0; overflow: hidden; background: #eef0f3; }
.info-media img { width: 100%; height: 100%; object-fit: cover; }
.info-media img.contain-image { object-fit: contain; }
.fact-box { padding: 24px; background: #f1f3f7; border-left: 4px solid var(--navy); }
.fact-box.warning { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 12px; align-items: start; background: var(--crimson-pale); border-color: var(--crimson); }
.warning-icon { width: 24px; height: 24px; margin-top: 2px; color: var(--crimson); }
.fact-box p:last-child { margin-bottom: 0; }
.fact-box.spaced { margin-top: 24px; }
.mt-22 { margin-top: 22px; }
.dose-list { display: grid; margin-top: 28px; border-top: 1px solid var(--line); }
.dose-row { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.dose-row b { color: var(--navy-soft); font: 500 .8rem/1.6 var(--font-mono); }
.dose-row p { margin: 0; }
.composition-wrap { overflow-x: auto; border: 1px solid var(--line); }
.composition-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.composition-table th, .composition-table td { padding: 13px 17px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.composition-table th { color: var(--navy); background: #f0f2f6; font: 600 .74rem/1.4 var(--font-mono); text-transform: uppercase; }
.composition-table tbody tr { transition: background .16s ease; }
.composition-table tbody tr:hover { background: #f5f7fa; }
.composition-table tr:last-child td { border-bottom: 0; }
.table-note { margin-top: 14px; color: var(--faint); font-size: .78rem; }
.table-note.on-dark { color: #bfc7da; }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); background: #fff; }
.product-comparison { width: 100%; border-collapse: collapse; font-size: .94rem; }
.product-comparison th, .product-comparison td { width: 40%; padding: 18px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.product-comparison th:first-child { width: 20%; }
.product-comparison th:last-child, .product-comparison td:last-child { border-right: 0; }
.product-comparison tr:last-child th, .product-comparison tr:last-child td { border-bottom: 0; }
.product-comparison thead th { color: var(--navy); background: #eef1f6; font-weight: 800; }
.product-comparison thead .mulmin-cell { border-top: 5px solid var(--lime); }
.product-comparison thead .qualimin-cell { border-top: 5px solid var(--crimson); }
.product-comparison tbody th { color: var(--navy); background: #f7f8fa; font-size: .82rem; font-weight: 750; }
.comparison-cards { display: none; }
.comparison-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--lime); }
.comparison-card.qualimin { border-top-color: var(--crimson); }
.comparison-card h3 { font-size: 1.3rem; }
.comparison-card dl { margin: 20px 0 22px; }
.comparison-card dl div { padding: 13px 0; border-top: 1px solid var(--line); }
.comparison-card dt { color: var(--faint); font-size: .75rem; font-weight: 750; text-transform: uppercase; }
.comparison-card dd { margin: 4px 0 0; color: var(--ink); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); transition: background .18s ease; }
.faq-list details:hover, .faq-list details[open] { background: #f7f8fa; }
.faq-list summary { display: flex; gap: 16px; align-items: center; padding: 20px 12px; color: var(--navy); cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-chevron { width: 19px; height: 19px; flex: 0 0 auto; margin-left: auto; color: var(--navy-soft); transition: transform .2s ease; }
.faq-list details[open] .faq-chevron { transform: rotate(180deg); }
.faq-list details p { max-width: 78ch; margin: -2px 44px 20px 12px; }

/* Retail, contact and legal */
.buy-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.buy-option { padding: 38px; background: #fff; }
.buy-option + .buy-option { border-left: 1px solid var(--line); }
.buy-option.mulmin { border-top: 5px solid var(--lime); }
.buy-option.qualimin { border-top: 5px solid var(--crimson); }
.buy-option h2 { font-size: 2.1rem; }
.buy-option p { margin-top: 14px; }
.buy-option-pack { display: grid; place-items: center; min-height: 214px; margin: 24px 0 4px; overflow: hidden; background: #f3f5f8; border: 1px solid var(--line); }
.buy-option-pack img { display: block; width: 100%; height: 214px; object-fit: contain; }
.purchase-paths { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.purchase-path { padding: 34px 30px 38px 0; }
.purchase-path + .purchase-path { padding-left: 30px; border-left: 1px solid var(--line); }
.purchase-path .ui-icon { width: 27px; height: 27px; color: var(--navy-soft); }
.purchase-path.retail .ui-icon { color: var(--lime-deep); }
.purchase-path.wholesale .ui-icon { color: var(--crimson); }
.purchase-path h3 { margin-top: 20px; font-size: 1.12rem; }
.purchase-path p { margin-top: 10px; font-size: .9rem; }
.purchase-path .btn-row { margin-top: 20px; }
.purchase-path .btn { min-height: 42px; padding: 9px 13px; font-size: .8rem; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; }
.contact-detail { padding: 20px 0; border-top: 1px solid var(--line); }
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail strong { display: block; color: var(--navy); font: 600 .74rem/1.5 var(--font-mono); text-transform: uppercase; }
.contact-detail a { display: inline-block; margin-top: 6px; color: var(--navy-soft); font-size: 1.08rem; font-weight: 700; }
.social-channel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.social-channel { position: relative; min-height: 250px; padding: 32px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--navy-soft); border-radius: 8px; box-shadow: 0 8px 24px rgba(15,22,41,.06); transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.social-channel.instagram { border-top-color: #e1306c; }
.social-channel.facebook { border-top-color: #1877f2; }
.social-channel.whatsapp { border-top-color: #25d366; }
.social-channel:hover, .social-channel:focus-within { box-shadow: 0 16px 34px rgba(15,22,41,.13); transform: translateY(-5px); }
.social-channel .ui-icon { width: 48px; height: 48px; padding: 12px; color: #fff; background: var(--navy-soft); border-radius: 10px; }
.social-channel.instagram .ui-icon { background: linear-gradient(135deg, #833ab4 0%, #e1306c 52%, #f77737 100%); }
.social-channel.facebook .ui-icon { background: #1877f2; }
.social-channel.whatsapp .ui-icon { background: #25d366; }
.social-channel h3 { margin-top: 20px; font-size: 1.25rem; }
.social-channel p { margin-top: 10px; font-size: .9rem; }
.social-channel .text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; }
.social-channel .text-link::after { content: '\2197'; font-size: .9em; }
.legal-body { max-width: 820px; }
.legal-body h2 { margin: 42px 0 13px; font-size: 1.65rem; }
.legal-body h3 { margin: 26px 0 10px; font-family: var(--font-body); font-size: 1rem; }
.legal-body a { color: var(--navy-soft); font-weight: 700; text-decoration: underline; }
.legal-meta { margin-bottom: 30px; color: var(--faint); font-size: .82rem; }
.notice { padding: 20px 22px; color: var(--navy); background: #f0f2f6; border-left: 4px solid var(--navy); }
.error-page { display: grid; min-height: calc(100vh - var(--header-h)); place-items: center; padding: 70px 24px; text-align: center; }
.error-code { color: var(--lime-deep); font: 500 .8rem/1.4 var(--font-mono); }
.centered-lead { margin: 20px auto 0; }

/* Footer and motion */
.site-footer { padding: 62px 0 26px; color: #c6cede; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; }
.site-footer .brand { color: #fff; }
.site-footer .brand-logo { width: 228px; }
.footer-note { max-width: 64ch; margin: 18px 0 0; color: #aeb8cd; font-size: .84rem; }
.footer-navigation { display: grid; align-content: start; gap: 24px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; align-content: start; font-size: .88rem; }
.footer-links a:hover { color: #fff; }
.footer-social { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); }
.footer-social-label { display: block; margin-bottom: 12px; color: #fff; font: 600 .7rem/1.4 var(--font-mono); text-transform: uppercase; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; padding: 2px 12px 2px 2px; overflow: hidden; color: #d6ddec; background: rgba(255,255,255,.06); border: 1px solid transparent; border-radius: 8px; font-size: .8rem; font-weight: 650; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.social-link svg { width: 40px; height: 40px; flex: 0 0 auto; padding: 10px; color: #fff; background: #34466d; border-radius: 6px; }
.social-link.instagram svg { background: linear-gradient(135deg, #833ab4 0%, #e1306c 52%, #f77737 100%); }
.social-link.facebook svg { background: #1877f2; }
.social-link.whatsapp svg { background: #25d366; }
.social-link:hover, .social-link:focus-visible { color: #fff; background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 20px; color: #8e99b0; border-top: 1px solid rgba(255,255,255,.15); font-size: .74rem; }
.floating-contact { position: fixed; right: 20px; bottom: 20px; z-index: 35; display: grid; width: 50px; height: 50px; place-items: center; color: #fff; background: var(--whatsapp); border-radius: 50%; box-shadow: 0 10px 24px rgba(15,22,41,.25); }
.floating-contact svg { width: 22px; height: 22px; }
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }

@media (max-width: 980px) {
  h1 { font-size: 3.45rem; }
  h2 { font-size: 2.3rem; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand, .header-actions { position: relative; z-index: 2; }
  .main-nav { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; display: flex; width: 100vw; height: 100vh; height: 100dvh; justify-self: auto; flex-direction: column; justify-content: center; gap: 0; padding: 90px 36px 40px; visibility: hidden; background: #fff; pointer-events: none; transform: translate3d(100%, 0, 0); transition: transform .24s ease, visibility 0s linear .24s; }
  .main-nav.open { visibility: visible; pointer-events: auto; transform: translate3d(0, 0, 0); transition-delay: 0s; }
  .main-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .contact-button { display: none; }
  .home-hero { background-position: 38% center; }
  .home-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,22,41,.82) 0%, rgba(15,22,41,.62) 42%, rgba(15,22,41,.1) 66%, transparent 82%); content: ''; }
  .home-hero-copy { width: 48%; }
  .home-hero h1 { font-size: 3.15rem; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
  .trust-item:nth-child(4) { border-right: 1px solid rgba(255,255,255,.16); }
  .section-head, .page-hero-grid, .editorial-split, .editorial-split.reverse, .info-split, .info-split.reverse, .contact-grid, .location-cta { grid-template-columns: 1fr; }
  .section-head { gap: 18px; }
  .editorial-copy { padding: 42px; }
  .photo-story-grid { grid-template-columns: 1fr 1fr; }
  .photo-story-grid.three { grid-template-columns: 1fr 1fr; }
  .product-hero .container { grid-template-columns: .9fr 1.1fr; }
  .product-gallery { grid-template-columns: 70px 1fr; padding-left: 22px; }
  .gallery-thumb { width: 70px; height: 60px; }
  .ingredient-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 700px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
  .container, .header-inner { width: min(calc(100% - 32px), var(--max-w)); }
  .brand-logo { width: 190px; }
  .section { padding: 52px 0; }
  .section.compact { padding: 40px 0; }
  .home-hero { min-height: 600px; background-image: url('/assets/images/v2/omanfields-range-hero-960.webp'); background-size: 200% auto; background-position: right bottom; }
  .home-hero::before { position: absolute; inset: 0; background: rgba(15,22,41,.68); content: ''; }
  .home-hero .container { min-height: 600px; align-items: flex-start; }
  .home-hero-copy { width: 100%; padding: 50px 0 205px; }
  .home-hero h1 { max-width: 10ch; }
  .home-hero p { max-width: 36ch; }
  .trust-strip .container { width: 100%; }
  .trust-item { min-height: 74px; padding: 13px 16px; }
  .range-grid, .need-grid, .testimonials, .buy-grid, .benefit-grid, .social-channel-grid { grid-template-columns: 1fr; }
  .social-channel { min-height: auto; padding: 26px; }
  .range-card + .range-card, .buy-option + .buy-option { border-left: 0; border-top: 1px solid var(--line); }
  .range-card { grid-template-rows: 245px auto; }
  .range-body p { min-height: 0; }
  .need-grid { border-top: 0; }
  .need-link { min-height: 0; }
  .editorial-media { aspect-ratio: 16 / 10; min-height: 0; }
  .editorial-copy { padding: 34px 24px; }
  .photo-story-grid { grid-template-columns: 1fr; }
  .photo-story-grid.three { grid-template-columns: 1fr; }
  .photo-story { min-height: 0; overflow: visible; background: #fff; }
  .photo-story-grid.three .photo-story { aspect-ratio: auto; }
  .photo-story-media { position: relative; aspect-ratio: 16 / 10; }
  .photo-story-media::after, .photo-story.copy-right .photo-story-media::after { display: none; }
  .photo-story-copy, .photo-story.copy-right .photo-story-copy, .photo-story-grid.three .photo-story-copy { width: 100%; min-height: 0; margin-left: 0; padding: 20px 20px 22px; color: var(--ink); border: 1px solid var(--line); border-top: 4px solid var(--lime); }
  .photo-story.qualimin-story .photo-story-copy { border-top-color: var(--crimson); }
  .photo-story-copy .need-label { color: var(--lime-deep); }
  .photo-story.qualimin-story .photo-story-copy .need-label { color: var(--crimson); }
  .photo-story h3 { color: var(--navy); }
  .photo-story p { color: var(--muted); }
  .story-link { color: var(--navy); }
  .stockist-callout { grid-template-columns: 1fr; padding: 30px 24px; }
  .location-cta { padding: 30px 24px; }
  .location-paths { grid-template-columns: 1fr; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .location-path { padding: 24px 0 0; }
  .location-path + .location-path { margin: 24px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .page-hero { padding: 54px 0 48px; }
  .role-row { grid-template-columns: 1fr; gap: 7px; }
  .product-hero .container { grid-template-columns: 1fr; }
  .product-hero-copy { padding: 54px 0 38px; }
  .product-gallery { grid-template-columns: 1fr; padding: 0 0 30px; }
  .gallery-thumbs { order: 2; flex-direction: row; overflow-x: auto; padding-bottom: 2px; }
  .gallery-thumb { flex: 0 0 72px; width: 72px; height: 62px; }
  .gallery-stage { aspect-ratio: 4 / 5; }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-grid div { min-height: 112px; padding: 17px; }
  .info-media { aspect-ratio: 16 / 10; min-height: 0; }
  .buy-option { padding: 30px 24px; }
  .buy-option-pack { min-height: 190px; }
  .buy-option-pack img { height: 190px; }
  .purchase-paths { grid-template-columns: 1fr; }
  .purchase-path, .purchase-path + .purchase-path { padding: 28px 0; border-left: 0; }
  .purchase-path + .purchase-path { border-top: 1px solid var(--line); }
  .comparison-wrap { display: none; }
  .comparison-cards { display: grid; gap: 16px; }
  .floating-contact { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); width: 44px; height: 44px; }
  .floating-contact svg { width: 20px; height: 20px; }
  .footer-bottom { flex-direction: column; }
}

/* Dark mode */
html[data-theme="dark"] {
  color-scheme: dark;
  --canvas: #0b0e1a;
  --paper: #141829;
  --ink: #f2f5fb;
  --muted: #c3cada;
  --faint: #9ca8bf;
  --line: #364159;
  --silver: #73809a;
  --navy-soft: #aebeff;
  --lime-pale: #1b2a13;
  --crimson-pale: #35191c;
}
html[data-theme="dark"] body { background: var(--canvas); }
html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3, html[data-theme="dark"] h4,
html[data-theme="dark"] .role-row strong, html[data-theme="dark"] .text-link,
html[data-theme="dark"] .need-link .need-label, html[data-theme="dark"] .need-arrow,
html[data-theme="dark"] .contact-detail strong, html[data-theme="dark"] .contact-detail a,
html[data-theme="dark"] .legal-body a, html[data-theme="dark"] .notice { color: #e4eaff; }
html[data-theme="dark"] .site-header { border-bottom-color: rgba(255,255,255,.14); }
html[data-theme="dark"] .site-header::before { background: rgba(11,14,26,.94); }
html[data-theme="dark"] .site-header .brand-logo { content: url('/assets/omanfields-lockup-dark.svg?v=2.4.3'); }
html[data-theme="dark"] .main-nav a:hover, html[data-theme="dark"] .main-nav a.active { color: #e4eaff; }
html[data-theme="dark"] .main-nav a::after { background: #aebeff; }
html[data-theme="dark"] .main-nav { background: transparent; }
html[data-theme="dark"] .theme-toggle { color: #e4eaff; border-color: #4d5b78; }
html[data-theme="dark"] .theme-toggle:hover { color: #fff; background: #20283b; border-color: #aebeff; }
html[data-theme="dark"] .sun-icon { display: none; }
html[data-theme="dark"] .moon-icon { display: block; }
html[data-theme="dark"] .btn-primary, html[data-theme="dark"] .contact-button { color: #fff; background: #263b78; }
html[data-theme="dark"] .btn-primary:hover, html[data-theme="dark"] .contact-button:hover { background: #344e98; }
html[data-theme="dark"] .btn-secondary, html[data-theme="dark"] .btn-light { color: #e4eaff; background: #1b2234; border-color: #4d5b78; }
html[data-theme="dark"] .btn-secondary:hover, html[data-theme="dark"] .btn-light:hover { background: #252e45; border-color: #aebeff; }
html[data-theme="dark"] .section.mulmin-tint { background: var(--lime-pale); }
html[data-theme="dark"] .section.qualimin-tint { background: var(--crimson-pale); }
html[data-theme="dark"] .range-card, html[data-theme="dark"] .need-link, html[data-theme="dark"] .editorial-copy,
html[data-theme="dark"] .benefit-item, html[data-theme="dark"] .comparison-wrap,
html[data-theme="dark"] .comparison-card, html[data-theme="dark"] .buy-option,
html[data-theme="dark"] .photo-story, html[data-theme="dark"] .social-channel:hover,
html[data-theme="dark"] .social-channel:focus-within { background: var(--paper); }
html[data-theme="dark"] .range-visual, html[data-theme="dark"] .editorial-media,
html[data-theme="dark"] .photo-story-media, html[data-theme="dark"] .info-media,
html[data-theme="dark"] .gallery-stage, html[data-theme="dark"] .gallery-thumb { background: #20283b; }
html[data-theme="dark"] .range-card:hover, html[data-theme="dark"] .range-card:focus-within,
html[data-theme="dark"] .need-link:hover, html[data-theme="dark"] .need-link:focus-visible { background: #1b2234; }
html[data-theme="dark"] .quick-facts span, html[data-theme="dark"] .product-meta span { color: #c3cada; background: #1b2234; border-color: #364159; }
html[data-theme="dark"] .page-hero { background: #171e30; }
html[data-theme="dark"] .product-hero { background: var(--paper); }
html[data-theme="dark"] .gallery-control, html[data-theme="dark"] .gallery-status { color: #e4eaff; background: rgba(27,34,52,.96); border-color: #4d5b78; }
html[data-theme="dark"] .gallery-control:hover { color: #0b0e1a; background: #aebeff; }
html[data-theme="dark"] .gallery-thumb[aria-selected="true"] { border-color: #aebeff; }
html[data-theme="dark"] .buy-option-pack { background: #20283b; border-color: #364159; }
html[data-theme="dark"] .fact-box { background: #1b2234; }
html[data-theme="dark"] .fact-box.warning { background: #35191c; }
@media (max-width: 980px) {
  html[data-theme="dark"] .main-nav { background: var(--paper); }
}
html[data-theme="dark"] .composition-table th, html[data-theme="dark"] .product-comparison thead th,
html[data-theme="dark"] .product-comparison tbody th { color: #e4eaff; background: #20283b; }
html[data-theme="dark"] .composition-table tbody tr:hover, html[data-theme="dark"] .product-comparison tbody tr:hover,
html[data-theme="dark"] .faq-list details:hover, html[data-theme="dark"] .faq-list details[open] { background: #1b2234; }
html[data-theme="dark"] .faq-list summary { color: #e4eaff !important; }
html[data-theme="dark"] .faq-list details p { color: #cbd4ea !important; }
html[data-theme="dark"] .faq-chevron { color: #aebeff; }
html[data-theme="dark"] .notice { background: #20283b; }
html[data-theme="dark"] .photo-story h3, html[data-theme="dark"] .photo-story p { color: #fff; }
html[data-theme="dark"] #family .photo-story { background: var(--paper); }
html[data-theme="dark"] #family .photo-story h3 { color: #fff; }
html[data-theme="dark"] #family .photo-story p { color: #cbd4ea; }
html[data-theme="dark"] .skip-link { color: #0b0e1a; background: #aebeff; }
