/* ============================================================
   S R Ferro Alloys — light editorial theme
   ============================================================ */
/* Self-hosted fonts (no external requests) */
@font-face { font-family: 'Instrument Serif'; src: url('assets/fonts/instrument-serif-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Instrument Serif'; src: url('assets/fonts/instrument-serif-latin-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('assets/fonts/geist-sans-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('assets/fonts/geist-sans-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('assets/fonts/geist-sans-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --bg: #F4F0EA;          /* warm stone */
  --paper: #FBF9F6;
  --ink: #1C1815;
  --muted: #6B6158;
  --line: #DDD4C9;
  --copper: #B4612A;      /* accent fills */
  --copper-text: #93491B; /* accent text on light */
  --copper-soft: #E9D6C6;
  --charcoal: #1E1A17;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Geist', 'Helvetica Neue', Arial, sans-serif;
  --pad: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
h1, h2, h3, p, figure, ol, ul { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -0.01em; }
h3 { font-weight: 500; }
em { font-style: italic; }
.kicker { font-size: 14px; font-weight: 500; color: var(--copper-text); display: flex; align-items: center; gap: 10px; }
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--copper); }

.btn { display: inline-flex; align-items: center; justify-content: center; height: 50px; padding: 0 26px; border-radius: 999px; border: 0; font: 500 15px/1 var(--sans); text-decoration: none; white-space: nowrap; transition: background .3s var(--ease), transform .3s var(--ease); cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #3A322C; }
.btn-copper { background: var(--copper); color: #FFF8F2; }
.btn-copper:hover { background: #99501F; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* ============================================================ HEADER */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 80px; padding: 0 var(--pad); transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease); }
.site-header.is-scrolled { height: 68px; background: rgba(244, 240, 234, .86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 600; font-size: 17px; letter-spacing: .01em; }
.brand img { width: 64px; height: auto; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a:not(.btn) { position: relative; font-size: 15px; text-decoration: none; color: var(--ink); }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { height: 44px; padding: 0 20px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; position: relative; cursor: pointer; }
.menu-toggle span:not(.sr-only) { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), top .35s var(--ease); }
.menu-toggle span:nth-child(1) { top: 18px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* ============================================================ HERO */
.hero { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: clamp(24px, 4vw, 72px); min-height: 100vh; padding: 120px var(--pad) 56px; }
.hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hero-title { font-family: var(--serif); font-weight: 400; font-size: clamp(46px, 6vw, 96px); line-height: .98; letter-spacing: -0.015em; }
.hero-title em { color: var(--copper-text); }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero-title .line > span { display: inline-block; transform: translateY(105%); transition: transform 1.1s var(--ease); }
.hero-title .line:nth-child(2) > span { transition-delay: .12s; }
.hero-title .line:nth-child(3) > span { transition-delay: .24s; }
.hero-sub { max-width: 480px; font-size: 19px; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.reveal-intro { opacity: 0; transform: translateY(14px); transition: opacity .9s var(--ease) .5s, transform .9s var(--ease) .5s; }
.is-loaded .hero-title .line > span { transform: none; }
.is-loaded .reveal-intro { opacity: 1; transform: none; }

.hero-media { position: relative; justify-self: end; width: 100%; max-width: 460px; aspect-ratio: 9 / 16; max-height: calc(100vh - 176px); border-radius: var(--radius); overflow: hidden; background: #2A2521;
  clip-path: inset(100% 0 0 0 round var(--radius)); transition: clip-path 1.4s var(--ease) .15s; }
.is-loaded .hero-media { clip-path: inset(0 0 0 0 round var(--radius)); }
.hero-media video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 2.2s var(--ease) .15s; }
.is-loaded .hero-media video { transform: scale(1); }
.live-chip { position: absolute; left: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(28, 24, 21, .55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #FBF3EC; font-size: 13px; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: #F08A4B; box-shadow: 0 0 0 0 rgba(240, 138, 75, .7); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { to { box-shadow: 0 0 0 10px rgba(240, 138, 75, 0); } }
.video-toggle { position: absolute; right: 14px; bottom: 12px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(28, 24, 21, .55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); fill: #FBF3EC; display: grid; place-items: center; cursor: pointer; }
.video-toggle .i-play { display: none; }
.video-toggle.is-paused .i-play { display: block; }
.video-toggle.is-paused .i-pause { display: none; }

/* ticker */
.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper); }
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker-track span { padding: 18px 28px; font-family: var(--serif); font-size: 26px; white-space: nowrap; }
.ticker-track span::after { content: "•"; margin-left: 56px; color: var(--copper); font-size: 16px; vertical-align: middle; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================ SECTIONS (shared) */
section { padding: clamp(80px, 11vw, 160px) var(--pad); }
.section-head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-bottom: 56px; }
.section-head p { color: var(--muted); max-width: 420px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================ OFFER */
.offer { position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 110px); }
.offer-intro { position: sticky; top: 120px; align-self: start; display: flex; flex-direction: column; gap: 24px; }
.offer-intro p { color: var(--muted); max-width: 440px; }
.offer-list { border-top: 1px solid var(--line); counter-reset: none; }
.offer-item { border-bottom: 1px solid var(--line); }
.offer-head { width: 100%; display: grid; grid-template-columns: 56px 1fr 44px; align-items: center; gap: 12px; padding: 30px 0; background: none; border: 0; text-align: left; font: inherit; color: inherit; cursor: pointer; }
.offer-num { font-family: var(--serif); font-size: 22px; color: var(--copper-text); }
.offer-title { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 50px); line-height: 1.05; transition: transform .45s var(--ease), color .45s var(--ease); }
.offer-head:hover .offer-title { transform: translateX(10px); }
.plus { position: relative; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); transition: background .35s var(--ease), border-color .35s var(--ease); }
.plus::before, .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1.5px; margin: -.75px 0 0 -7px; background: var(--ink); transition: transform .45s var(--ease), background .35s; }
.plus::after { transform: rotate(90deg); }
.offer-head:hover .plus { border-color: var(--ink); }
.offer-item.is-open .plus { background: var(--ink); border-color: var(--ink); }
.offer-item.is-open .plus::before, .offer-item.is-open .plus::after { background: var(--paper); }
.offer-item.is-open .plus::after { transform: rotate(0deg); }
.offer-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease); }
.offer-body > div { overflow: hidden; display: grid; grid-template-columns: minmax(0, 1fr) 160px; gap: 28px; padding-left: 68px; }
.offer-item.is-open .offer-body { grid-template-rows: 1fr; }
.offer-body p { color: var(--muted); padding-bottom: 32px; max-width: 440px; }
.offer-thumb { width: 160px; height: 200px; object-fit: cover; border-radius: 14px; margin-bottom: 32px; }
.offer-preview { position: fixed; left: 0; top: 0; z-index: 40; width: 240px; height: 300px; border-radius: 16px; overflow: hidden; pointer-events: none; opacity: 0; transform: translate3d(-50%, -50%, 0) scale(.85); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.offer-preview img { width: 100%; height: 100%; object-fit: cover; }
.offer-preview.is-on { opacity: 1; }

/* ============================================================ ABOUT */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 110px); align-items: center; background: var(--paper); }
.about-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.about-media img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.about-copy { display: flex; flex-direction: column; gap: 22px; max-width: 620px; }
.about-copy > p:not(.kicker) { color: var(--muted); }
.award { display: flex; gap: 16px; align-items: flex-start; margin-top: 8px; padding: 20px 22px; border-radius: 16px; background: var(--copper-soft); color: var(--copper-text); }
.award svg { flex-shrink: 0; margin-top: 2px; }
.award p { color: #5A3217; font-size: 15px; }
.award strong { color: var(--ink); font-weight: 600; }

/* ============================================================ STATS */
.stats { text-align: left; }
.stats h2 { max-width: 760px; }
.stats-lead { margin-top: 20px; max-width: 520px; color: var(--muted); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 64px; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: 10px; padding: 32px 28px 8px 0; }
.stat + .stat { padding-left: 28px; border-left: 1px solid var(--line); }
.stat-num { font-family: var(--serif); font-size: clamp(44px, 5vw, 76px); line-height: 1; }
.stat-num small { font-family: var(--sans); font-size: 16px; font-weight: 500; margin-left: 6px; color: var(--muted); }
.stat-label { color: var(--muted); font-size: 15px; }
.stats-note { margin-top: 36px; font-size: 15px; color: var(--muted); }

/* ============================================================ SPEC */
.spec { background: var(--paper); }
.spec-head { display: flex; flex-direction: column; gap: 18px; max-width: 640px; margin-bottom: 56px; }
.spec-head p:last-child { color: var(--muted); }
.spec-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 24px; }
.spec-panel { display: flex; flex-direction: column; gap: 22px; padding: clamp(24px, 3.5vw, 48px); border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); }
.spec-label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 500; }
.spec-label-2 { margin-top: 12px; }
.spec-value { font-family: var(--serif); font-size: clamp(48px, 5vw, 72px); line-height: 1; color: var(--copper-text); }
.grade-track { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.grade-fill { display: block; height: 100%; width: 100%; border-radius: inherit; background: linear-gradient(90deg, #D9B79A, var(--copper)); transition: width .6s var(--ease); }
.chips { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.chip, .size { border: 1px solid var(--line); background: var(--paper); color: var(--ink); border-radius: 999px; height: 48px; font: 500 15px var(--sans); cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.chip:hover, .size:hover { border-color: var(--ink); }
.chip.is-on, .size.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.sizes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.size { height: auto; border-radius: 14px; padding: 14px 16px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; text-align: left; }
.size span { font-size: 13px; color: var(--muted); transition: color .3s; }
.size strong { font-weight: 500; font-size: 17px; }
.size.is-on span { color: #D9C2AF; }
.spec-result { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.spec-result strong { font-size: 18px; font-weight: 500; color: var(--ink); }
.spec-media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; margin: 0; }
.spec-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================ MISSION */
.mission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 80px); }
.mission-grid article { display: flex; flex-direction: column; gap: 18px; }
.mission-text { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 38px); line-height: 1.2; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin-top: 88px; }
.pillars > div { padding-top: 22px; border-top: 1px solid var(--ink); }
.pillars h3 { font-size: 18px; margin-bottom: 8px; }
.pillars p { color: var(--muted); font-size: 15px; }

/* ============================================================ LEADERSHIP */
.leadership { background: var(--paper); }
.leadership .section-head, .group .section-head { margin-bottom: 40px; }
.group-label { font-size: 14px; font-weight: 500; color: var(--muted); margin: 32px 0 16px; }
.people { display: grid; gap: 16px; }
.people-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.people-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.person { display: flex; flex-direction: column; gap: 6px; padding: 28px; border-radius: 18px; background: var(--bg); border: 1px solid transparent; transition: border-color .35s var(--ease), transform .45s var(--ease); }
.person:hover { border-color: var(--line); transform: translateY(-4px); }
.mono-badge { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 16px; border-radius: 50%; background: var(--ink); color: #F1C8A6; font-family: var(--serif); font-size: 20px; }
.person h3 { font-size: 20px; }
.role { font-size: 14px; color: var(--copper-text); font-weight: 500; }
.person p:not(.role) { color: var(--muted); font-size: 15px; margin-top: 8px; }

/* ============================================================ GROUP */
.group-list { border-top: 1px solid var(--line); }
.group-list li { display: grid; grid-template-columns: 180px minmax(0, 1.1fr) minmax(0, 1fr); gap: 24px; align-items: baseline; padding: 26px 0; border-bottom: 1px solid var(--line); transition: padding .45s var(--ease), background .45s var(--ease); }
.group-list li:hover { padding-left: 16px; background: linear-gradient(90deg, var(--copper-soft), transparent 70%); }
.g-cat { font-size: 14px; color: var(--copper-text); font-weight: 500; }
.g-name { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 38px); line-height: 1.1; }
.g-desc { color: var(--muted); font-size: 15px; }

/* ============================================================ CONTACT */
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); margin: 0 var(--pad); padding: clamp(40px, 6vw, 88px); border-radius: 28px; color: #F6ECE2; background: #3A2619 url("assets/images/grain.jpg") center / cover; }
.kicker-light { color: #F0B98E; }
.contact-copy { display: flex; flex-direction: column; gap: 22px; }
.contact-copy > p:not(.kicker) { color: #D9C6B6; max-width: 440px; }
.contact-direct { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; font-size: 16px; }
.contact-direct a { text-decoration: none; border-bottom: 1px solid rgba(246, 236, 226, .35); }
.contact-direct a:hover { border-color: #F6ECE2; }
.contact-direct span { font-size: 13px; color: #F0B98E; margin-left: 8px; }
.enquiry { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-content: start; padding: clamp(22px, 3vw, 36px); border-radius: 20px; background: var(--paper); color: var(--ink); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 500; color: var(--muted); }
.field input { height: 50px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--line); background: #fff; font: 16px var(--sans); color: var(--ink); transition: border-color .3s; }
.field input:focus { outline: none; border-color: var(--copper); }
.field input.is-invalid { border-color: #C0392B; }
.form-note { font-size: 12px; color: var(--muted); }
.form-status { font-size: 14px; padding: 12px 14px; border-radius: 12px; background: var(--copper-soft); color: #5A3217; }
.form-status.is-error { background: #F7DEDA; color: #8A2318; }

/* ============================================================ FOOTER */
.footer { margin-top: clamp(80px, 10vw, 140px); padding: 72px var(--pad) 32px; background: var(--charcoal); color: #D9CDC2; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer-brand img { width: 120px; height: auto; }
.footer-brand p, .footer-col p { font-size: 15px; color: #A99B8F; }
.footer-h { color: #F0B98E !important; font-weight: 500; margin-bottom: 12px; }
.footer-col { display: flex; flex-direction: column; gap: 6px; font-size: 15px; }
.footer-col a { text-decoration: none; color: #D9CDC2; }
.footer-col a:hover { color: #fff; }
.footer-big { margin: 72px 0 28px; font-family: var(--serif); font-size: clamp(56px, 11vw, 180px); line-height: .95; color: #F4EBE2; letter-spacing: -0.02em; }
.footer-big em { color: #E39A62; }
.footer-legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid #3A322C; font-size: 13px; color: #8F8277; }
.footer-legal a { text-decoration: none; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .nav { gap: 22px; }
  .people-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .group-list li { grid-template-columns: 140px 1fr; }
  .g-desc { grid-column: 2; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 0; z-index: -1; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding: 100px var(--pad) 40px; background: var(--bg); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a:not(.btn) { font-family: var(--serif); font-size: 38px; }
  .nav .btn { margin-top: 12px; height: 52px; }
  .site-header.menu-open { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }

  /* hero: video becomes full-bleed background */
  .hero { position: relative; display: flex; align-items: flex-end; min-height: 100svh; padding: 0; color: #FBF3EC; }
  .hero-media { position: absolute; inset: 0; max-width: none; max-height: none; aspect-ratio: auto; border-radius: 0; clip-path: none; }
  .is-loaded .hero-media { clip-path: none; }
  .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,13,.35) 0%, rgba(20,16,13,0) 30%, rgba(20,16,13,.3) 55%, rgba(20,16,13,.88) 100%); pointer-events: none; }
  .live-chip { top: 92px; bottom: auto; left: var(--pad); }
  .video-toggle { top: 88px; bottom: auto; right: var(--pad); z-index: 2; }
  .hero-copy { position: relative; z-index: 2; padding: 0 var(--pad) 40px; gap: 18px; }
  .hero-title em { color: #F0B98E; }
  .hero-sub { color: #E8DCD1; font-size: 16px; }
  .hero .kicker { color: #F0B98E; }
  .hero .link-arrow { color: #FBF3EC; }
  .site-header:not(.is-scrolled):not(.menu-open) .brand { color: #FBF3EC; }
  .site-header:not(.is-scrolled):not(.menu-open) .menu-toggle span:not(.sr-only) { background: #FBF3EC; }

  .ticker-track span { font-size: 20px; padding: 14px 18px; }
  .ticker-track span::after { margin-left: 36px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
  .offer, .about, .spec-grid, .mission-grid, .contact { grid-template-columns: 1fr; }
  .offer-intro { position: static; }
  .offer-head { grid-template-columns: 36px 1fr 44px; padding: 24px 0; }
  .offer-body > div { grid-template-columns: 1fr; padding-left: 48px; gap: 0; }
  .offer-thumb { width: 100%; height: 220px; }
  .offer-preview { display: none; }
  .about-media { aspect-ratio: 4 / 5; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { padding: 24px 16px 20px 0; }
  .stat + .stat { padding-left: 16px; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .spec-media { min-height: 280px; }
  .chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sizes { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 24px; margin-top: 56px; }
  .people-3, .people-2 { grid-template-columns: 1fr; }
  .group-list li { grid-template-columns: 1fr; gap: 4px; }
  .g-desc { grid-column: auto; }
  .contact { margin: 0 12px; border-radius: 22px; }
  .enquiry { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-intro { opacity: 1; transform: none; }
  .hero-title .line > span { transform: none; }
  .hero-media { clip-path: none; }
}

/* Pickaxe cursor */
html, body, body * { cursor: url('assets/cursor-pickaxe.png') 8 8, auto; }
a, button, select, label, summary, a *, button * { cursor: url('assets/cursor-pickaxe-hover.png') 8 7, pointer; }
input, textarea { cursor: text; }

.mono-badge.photo { object-fit: cover; object-position: 50% 22%; padding: 0; }

/* On-site photo strip */

.onsite .section-head { margin-bottom: 40px; }
.onsite-grid { display: grid; grid-template-columns: 1.1fr 1.6fr 1fr; gap: 16px; }
.onsite-grid figure { position: relative; margin: 0; height: clamp(320px, 34vw, 480px); border-radius: var(--radius); overflow: hidden; }
.onsite-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.onsite-grid figure:hover img { transform: scale(1.04); }
.onsite-grid figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 14px; border-radius: 999px; background: rgba(250,248,244,.9); font-size: 13px; font-weight: 500; }
@media (max-width: 900px) {
  .onsite-grid { grid-template-columns: 1fr; }
  .onsite-grid figure { height: 300px; }
}
.onsite-grid figure:nth-child(3) img { object-position: 30% 35%; }
