/* ============================================================
   Hunter Grey – Property Development
   Black & white design system – matched to brand reference
   ============================================================ */

:root {
  --black: #000000;
  --ink: #111111;
  --white: #ffffff;
  --off: #f6f6f4;
  --grey-100: #ececea;
  --grey-300: #c9c9c6;
  --grey-500: #6f6f6c;
  --text: #3c3c3a;
  --line: #e4e4e1;
  --line-d: rgba(255, 255, 255, 0.18);
  --shadow: 0 1px 2px rgba(0,0,0,0.05), 0 10px 28px -14px rgba(0,0,0,0.18);
  --shadow-lg: 0 26px 60px -26px rgba(0,0,0,0.35);

  --container: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sans: "Poppins", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; line-height: 1.15; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 36px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--black); color: #fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 0; }

/* Photo helper – real photo over SVG fallback, mono, sharp corners */
.photo {
  background-size: cover, cover; background-position: center, center; background-repeat: no-repeat, no-repeat;
  background-color: var(--ink); filter: grayscale(1) contrast(1.04);
}

/* ---------- Primitives ---------- */
.eyebrow {
  display: block; position: relative;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink);
  padding-bottom: 14px; margin-bottom: 22px;
}
.eyebrow::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--black); }
.eyebrow.light { color: rgba(255,255,255,0.85); }
.eyebrow.light::after { background: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 26px;
  font-family: var(--sans); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 18px 28px; border: 1px solid var(--black); background: var(--black); color: var(--white);
  cursor: pointer; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s;
}
.btn-arrow { font-size: 1.05rem; letter-spacing: 0; line-height: 1; transition: transform 0.3s var(--ease); }
.btn:hover { background: transparent; color: var(--black); }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn-white { background: var(--white); border-color: var(--white); color: var(--black); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-block { width: 100%; }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; height: 48px; width: auto; }
.footer-logo { height: 44px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--black); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.nav-list { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); list-style: none; margin: 0; padding: 0; }
.nav-list a {
  position: relative; display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); padding: 8px 0; transition: opacity 0.25s var(--ease);
}
.nav-list a::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0;
  width: 0; height: 2px; background: var(--white); transition: width 0.3s var(--ease);
}
.nav-list a:hover { opacity: 0.85; }
.nav-list a:hover::after, .nav-list a.active::after { width: 26px; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 10px; z-index: 110; }
.nav-toggle span { width: 25px; height: 2px; background: var(--white); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--white); overflow: hidden; }
.hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0; width: 62%;
  background-image: url('public/image/hunter-grey-hero.webp');
  background-size: cover; background-position: center right; background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.02);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
}
/* Cut-out heritage building hero — the image is isolated on white, so it sits
   on the page (contain, grounded bottom-right) rather than bleeding (cover). */
.hero-cut { width: 54%; background-size: contain; background-position: right calc(100% + 50px);
  filter: grayscale(1) contrast(1.04); -webkit-mask-image: none; mask-image: none; }
.hero-b1 { background-image: url('public/image/1.webp'); }
.hero-b2 { background-image: url('public/image/2.webp'); }
.hero-b3 { background-image: url('public/image/3.webp'); }
.hero-b4 { background-image: url('public/image/4.webp'); }
.hero-b5 { background-image: url('public/image/5.webp'); }
.hero-b6 { background-image: url('public/image/6.webp'); }
.hero-b7 { background-image: url('public/image/7.webp'); }
.hero-b8 { background-image: url('public/image/8.webp'); }

.hero-inner { position: relative; display: flex; align-items: center; min-height: clamp(440px, 60vh, 570px); padding-top: 64px; padding-bottom: 40px; }
.hero-copy { max-width: 460px; }
.hero-title { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 20px; overflow-wrap: break-word; }
.hero-sub { color: var(--text); font-size: 1.02rem; max-width: 26em; margin-bottom: 30px; }
.intents { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 14px; margin-top: 26px; font-size: 0.74rem; color: var(--grey-300); }
.intents-label { font-weight: 500; font-size: 0.78rem; color: var(--grey-500); letter-spacing: 0.02em; }
.intents a {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  border-bottom: 2px solid var(--black); padding-bottom: 4px; transition: opacity 0.25s var(--ease);
}
.intents a:hover { opacity: 0.6; }


/* ---------- Sections ---------- */
.section { padding: clamp(72px, 9vw, 124px) 0; }
.section.off-sec { background: var(--off); }
.section.dark { background: var(--black); color: rgba(255,255,255,0.75); }
.section.dark h2 { color: var(--white); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 60px); }
.section h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 600; letter-spacing: -0.015em; margin-bottom: 16px; }
.section-lede { color: var(--grey-500); font-size: 1rem; max-width: 46ch; }

/* ---------- Service tiles ---------- */
.tiles { padding: clamp(56px, 7vw, 90px) 0; }
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tile {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--black); color: rgba(255,255,255,0.75);
  padding: 40px 36px 44px; min-height: 320px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.tile:hover { transform: translateY(-6px); }
.tile-no { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; color: rgba(255,255,255,0.5); margin-bottom: 26px; }
.tile h2 { color: var(--white); font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
.tile p { font-size: 0.94rem; margin-bottom: 26px; }
.tile-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white);
  border-bottom: 2px solid var(--white); padding-bottom: 6px;
}
.tile:hover .btn-arrow { transform: translateX(5px); }

/* ---------- Dash lists (typographic) ---------- */
.dash-list { list-style: none; margin: 0 0 36px; padding: 0; }
.dash-list li { position: relative; padding: 7px 0 7px 40px; font-size: 1rem; color: var(--ink); font-weight: 500; }
.dash-list li::before { content: "\2013"; position: absolute; left: 0; top: 7px; color: var(--grey-300); }

/* ---------- We Buy (flow) ---------- */
.flow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 110px); align-items: center; }
/* Cut-out building in a flow panel: grounded on a black line, like the hero bar */
.flow-cut { background-color: transparent; background-size: contain; background-position: center bottom;
  background-repeat: no-repeat; filter: grayscale(1) contrast(1.03); border-bottom: 2px solid var(--black); }
.flow-lede { color: var(--grey-500); font-size: 1.02rem; margin-bottom: 30px; max-width: 34em; }
.flow-photo { aspect-ratio: 4 / 4.6; margin-top: clamp(0px, 4vw, 64px); }
/* When a flow panel is a cut-out building, keep it grounded and not pushed down */
.flow-photo.flow-cut { margin-top: 0; aspect-ratio: 3 / 3.3; padding-bottom: 14px; }

/* ---------- Developments (editorial flow) ---------- */
.works { display: flex; flex-direction: column; gap: clamp(56px, 7vw, 96px); }
.work-photo { margin-bottom: 26px; }
.work-photo.full { width: 100%; aspect-ratio: 21 / 9; }
.work-photo.w-right { width: 72%; margin-left: auto; aspect-ratio: 16 / 9; }
.work-photo.w-left { width: 72%; margin-right: auto; aspect-ratio: 16 / 9; }
.work-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px 26px; font-size: 1rem; }
.work-line.indent { justify-content: flex-end; }
.work-no { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; color: var(--grey-500); }
.work-line strong { font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -0.01em; color: var(--ink); }
.work-meta { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-500); }

/* ---------- Money (typographic stack) ---------- */
.prod { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); margin-bottom: clamp(56px, 7vw, 88px); }
.prod-entry h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 600; letter-spacing: -0.015em; margin-bottom: 10px; }
.prod-entry h3 em { font-style: normal; color: var(--grey-500); font-weight: 500; }
.prod-entry > p { color: var(--grey-500); font-size: 1rem; max-width: 52ch; }
.prod-terms { margin-top: 10px !important; font-size: 0.78rem !important; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink) !important; }

.geo-note { color: var(--grey-500); font-size: 0.94rem; max-width: 62ch; margin-bottom: clamp(44px, 5vw, 64px); padding-top: 22px; border-top: 1px solid var(--line); }
.journey { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 60px; max-width: 980px; }
.journey-step { position: relative; padding-left: 46px; color: var(--grey-500); font-size: 0.96rem; line-height: 1.7; }
.journey-step span { position: absolute; left: 0; top: 2px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; color: var(--ink); }

/* ---------- Investors (flow) ---------- */
.inv-flow { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(44px, 6vw, 100px); align-items: start; }
.inv-lede { color: var(--grey-500); font-size: 1.02rem; margin-bottom: 28px; max-width: 40em; }

/* ---------- Testimonials (staggered) ---------- */
.sq { margin: clamp(44px, 6vw, 72px) 0 0; max-width: 640px; }
.sq blockquote { margin: 0 0 16px; font-size: clamp(1.2rem, 2.2vw, 1.65rem); font-weight: 500; line-height: 1.55; letter-spacing: -0.01em; color: var(--ink); }
.sq figcaption { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-500); }
.sq-r { margin-left: auto; text-align: right; }

/* ---------- FAQ (boxed accordion) ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq-list details { border: 2px solid var(--black); background: var(--white); margin-bottom: 14px; }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-weight: 600; font-size: 0.96rem; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex: 0 0 14px; height: 14px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--black); transition: transform 0.3s var(--ease); }
.faq-icon::before { left: 0; right: 0; top: 6px; height: 2px; }
.faq-icon::after { top: 0; bottom: 0; left: 6px; width: 2px; }
.faq-list details[open] .faq-icon::after { transform: scaleY(0); }
.faq-list details p { padding: 0 22px 20px; color: var(--grey-500); font-size: 0.93rem; margin: 0; max-width: 60ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(44px, 6vw, 90px); align-items: start; }
.contact-lede { color: var(--grey-500); font-size: 1rem; margin-bottom: 32px; max-width: 34em; }
.contact-points { list-style: none; margin: 0; padding: 0; }
.contact-points li { display: flex; align-items: baseline; gap: 22px; padding: 14px 0; font-size: 0.98rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.contact-points li:first-child { border-top: 2px solid var(--black); }
.contact-points li span:first-child { flex: 0 0 64px; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-500); }
.contact-points a { font-weight: 500; transition: opacity 0.2s var(--ease); }
.contact-points a:hover { opacity: 0.6; }

.contact-form { border: 2px solid var(--black); padding: 34px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.96rem; color: var(--ink);
  padding: 12px 13px; border: 1px solid var(--grey-300); background: var(--white); border-radius: 0;
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--black); }
.field textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--ink); font-weight: 500; min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.6); padding: clamp(48px, 5vw, 68px) 0 38px; border-top: 1px solid var(--line-d); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 38px; border-bottom: 1px solid var(--line-d); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-top: 16px; max-width: 30ch; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-weight: 600; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.footer-col a, .footer-col span { font-size: 0.88rem; color: rgba(255,255,255,0.62); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-legal { display: flex; flex-direction: column; gap: 12px; padding-top: 26px; font-size: 0.74rem; line-height: 1.6; color: rgba(255,255,255,0.42); max-width: 92ch; }
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: #fff; }
.footer-links { margin-top: 6px; }

/* ---------- Finance section (hero actions, trust strip, service links) ---------- */
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-tel { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink); border-bottom: 2px solid var(--black); padding-bottom: 3px; transition: opacity 0.25s var(--ease); }
.hero-tel:hover { opacity: 0.6; }

.trust-strip { background: var(--black); color: rgba(255,255,255,0.85); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 40px; padding: 20px 36px; min-height: 20px; }
.trust-inner span { position: relative; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.04em; padding-left: 22px; }
.trust-inner span::before { content: "\2013"; position: absolute; left: 0; color: rgba(255,255,255,0.5); }

.intro-cols { columns: 2; column-gap: clamp(40px, 6vw, 80px); max-width: 1000px; }
.intro-cols p { break-inside: avoid; margin-bottom: 18px; font-size: 1rem; color: var(--text); }
.intro-cols p strong { color: var(--ink); }

.svc-link {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 18px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  border-bottom: 2px solid var(--black); padding-bottom: 6px;
}
.svc-link:hover .btn-arrow { transform: translateX(5px); }
.section.dark .svc-link { color: #fff; border-bottom-color: #fff; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px) clamp(40px, 6vw, 90px); }
.why-item h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.section.dark .why-item h3 { color: #fff; }
.why-item p { font-size: 0.96rem; line-height: 1.7; color: var(--grey-500); max-width: 46ch; }
.section.dark .why-item p { color: rgba(255,255,255,0.7); }

.where-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); margin-bottom: clamp(36px, 4vw, 52px); }
.where-grid h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 14px; }
.where-grid p { font-size: 0.98rem; line-height: 1.7; color: var(--grey-500); max-width: 52ch; margin-bottom: 16px; }
.where-links { display: flex; flex-direction: column; gap: 12px; }
.tool-link { font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--black); padding-bottom: 2px; }
.tool-link:hover { opacity: 0.6; }

.field-gate { border: 2px solid var(--black); padding: 20px 22px; margin-bottom: 24px; }
.field-gate legend { padding: 0 8px; font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.gate-options { display: flex; gap: 28px; margin-top: 10px; }
.gate-options label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 500; color: var(--ink); cursor: pointer; }
.gate-options input { width: 18px; height: 18px; accent-color: var(--black); }

/* Marketing consent checkbox */
.field-check { margin-bottom: 20px; }
.field-check label { display: flex; align-items: flex-start; gap: 11px; cursor: pointer;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0; text-transform: none;
  line-height: 1.55; color: var(--grey-500); margin-bottom: 0; }
.field-check input[type="checkbox"] { flex: none; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--black); }

/* ---------- Pillar pages (breadcrumb, prose, use grid, placeholders) ---------- */
.crumbs { font-size: 0.72rem; letter-spacing: 0.03em; color: var(--grey-500); margin-bottom: 22px; }
.crumbs a { color: var(--grey-500); border-bottom: 1px solid transparent; transition: color 0.2s var(--ease); }
.crumbs a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.crumbs span { color: var(--ink); font-weight: 500; }

.rich { max-width: 720px; }
.rich > p { margin-bottom: 18px; font-size: 1.04rem; line-height: 1.78; color: var(--text); }
.rich > p:last-child { margin-bottom: 0; }
.rich a { font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--ink); }
.rich a:hover { opacity: 0.6; }
.rich h3 { font-size: 1.24rem; font-weight: 600; margin: 36px 0 12px; }
.rich-light > p { color: rgba(255,255,255,0.72); }
.rich-light > p strong { color: #fff; }
.rich-light a { color: #fff; border-bottom-color: #fff; }
.rich-note { margin-top: 24px; font-size: 0.9rem; font-weight: 500; color: var(--grey-500); }

/* Block-level pre-publish note (e.g. a caveat needing compliance sign-off) */
.tbc-note { display: block; background: #f0f0ec; border-left: 3px solid #b4b4af; padding: 14px 18px; margin: 20px 0; font-size: 0.95rem; line-height: 1.65; color: var(--text); border-radius: 2px; max-width: 720px; }

.point-list { list-style: none; margin: 30px 0 0; padding: 0; max-width: 760px; }
.point-list li { padding: 20px 0; border-top: 1px solid var(--line); font-size: 1.01rem; line-height: 1.7; color: var(--text); }
.point-list li:last-child { border-bottom: 1px solid var(--line); }
.point-list li strong { color: var(--ink); }
.point-list li a { font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--ink); white-space: nowrap; }
.point-list li a:hover { opacity: 0.6; }
.point-list-dark li { color: rgba(255,255,255,0.72); border-top-color: rgba(255,255,255,0.18); }
.point-list-dark li:last-child { border-bottom-color: rgba(255,255,255,0.18); }
.point-list-dark li strong { color: #fff; }

.use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 90px); }
.use { padding: 26px 0; border-top: 1px solid var(--line); }
.use h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.use p { font-size: 0.94rem; color: var(--grey-500); line-height: 1.65; margin-bottom: 14px; max-width: 42ch; }
.use .svc-link { margin-top: 0; font-size: 0.66rem; }

.inline-links { display: flex; flex-wrap: wrap; gap: 14px 32px; margin-top: 30px; }
.inline-links .svc-link { margin-top: 0; }

/* ---------- Card / feature icons ---------- */
.card-icon, .feature-icon { stroke-linecap: round; stroke-linejoin: round; }
.card-icon { display: block; width: 34px; height: 34px; margin-bottom: 22px; color: var(--ink); transition: color 0.4s var(--ease), transform 0.4s var(--ease); }
.card:hover .card-icon { color: #fff; transform: translateY(-3px); }

/* ---------- Feature grid (icon + text) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4px clamp(36px, 5vw, 72px); }
.feature { padding: 28px 0; border-top: 1px solid var(--line); }
.feature-icon { display: block; width: 30px; height: 30px; color: var(--ink); margin-bottom: 16px; }
.feature h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; }
.feature p { font-size: 0.93rem; color: var(--grey-500); line-height: 1.6; margin-bottom: 12px; max-width: 44ch; }
.feature .svc-link { margin-top: 0; font-size: 0.66rem; }

/* ---------- Editorial quote band (photo) ---------- */
.quote-band { position: relative; padding: clamp(84px, 13vw, 168px) 0; background: var(--black); overflow: hidden; }
.quote-band-bg { position: absolute; inset: 0; background-image: url('public/image/hunter-grey-hero.webp'); background-size: cover; background-position: center 30%; filter: grayscale(1) contrast(1.05); opacity: 0.36; }
.quote-band .container { position: relative; }
.quote-band blockquote { margin: 0; max-width: 20ch; color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.9rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.18; }
.quote-band cite { display: block; margin-top: 22px; font-style: normal; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ---------- Hero variants (per-page identity) ---------- */
/* Dark full-bleed hero — bridging hub */
.hero-dark { background: var(--black); }
.hero-dark-bg { position: absolute; inset: 0; background-image: url('public/image/hunter-grey-hero.webp'); background-size: cover; background-position: center 26%; filter: grayscale(1) contrast(1.05); opacity: 0.2; }
.hero-dark .hero-inner { position: relative; z-index: 1; }
.hero-dark .hero-title { color: #fff; }
.hero-ghost { position: absolute; z-index: 0; right: 2%; bottom: -5%; font-weight: 700; font-size: clamp(5rem, 19vw, 17rem); letter-spacing: -0.04em; line-height: 1; color: rgba(255,255,255,0.055); pointer-events: none; user-select: none; }
.hero-sub-light { color: rgba(255,255,255,0.7) !important; }
.crumbs-light a { color: rgba(255,255,255,0.55); }
.crumbs-light span { color: #fff; }
.hero-tel-light { color: #fff; border-bottom-color: #fff; }

/* Split two-tone hero — commercial */
.hero-split { display: grid; grid-template-columns: 1.4fr 1fr; min-height: clamp(440px, 58vh, 580px); }
.hero-split-main { display: flex; align-items: center; background: var(--white); padding-left: max(36px, calc((100vw - var(--container)) / 2 + 36px)); }
.hero-split-inner { width: 100%; max-width: 620px; padding: clamp(40px, 6vh, 76px) 40px; }
.hero-split-aside { background: var(--black); color: #fff; display: flex; align-items: flex-end; padding: clamp(40px, 6vh, 76px) clamp(28px, 3.5vw, 52px); }
.hero-split-tags { display: flex; flex-direction: column; gap: 16px; }
.hero-split-tags span { position: relative; padding-left: 30px; font-size: clamp(1.05rem, 1.5vw, 1.45rem); font-weight: 600; letter-spacing: -0.01em; }
.hero-split-tags span::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #fff; }

/* Light trust strip — pillar pages (separates from a dark hero) */
.trust-strip.trust-light { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip.trust-light span { color: var(--ink); }
.trust-strip.trust-light span::before { color: var(--grey-300); }

/* ---------- Author byline ---------- */
.byline { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 0.82rem; color: var(--grey-500); }
.byline a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--ink); }
.byline a:hover { opacity: 0.6; }

/* ---------- Residual-valuation formula box ---------- */
.formula { max-width: 620px; border: 1px solid var(--line); background: var(--off); padding: clamp(22px, 3vw, 32px); margin: 30px 0; }
.formula-line { display: flex; flex-direction: column; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 1rem; color: var(--ink); }
.formula-line:last-child { border-bottom: 0; }
.formula-line em { font-style: normal; font-size: 0.82rem; color: var(--grey-500); margin-top: 3px; }
.formula-op { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-500); padding: 6px 0; }
.formula-eq { font-weight: 700; border-top: 2px solid var(--black); margin-top: 6px; padding-top: 14px; }

/* ---------- Inline placeholder marker (unconfirmed figures — never ships as fact) ---------- */
.ph { display: inline; padding: 0 5px; background: var(--off); border-bottom: 1px dashed var(--grey-300); color: var(--grey-500); font-size: 0.92em; white-space: nowrap; }
.rich-light .ph { background: rgba(255,255,255,0.08); border-bottom-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); }
.rate-note { margin-top: 20px; font-size: 0.82rem; color: var(--grey-500); }
.rate-note strong { color: var(--ink); }

/* ---------- Floating actions: jump-to-enquiry + one-tap call ---------- */
.fab-stack { position: fixed; right: clamp(14px, 2.4vw, 26px); bottom: clamp(14px, 2.4vw, 26px);
  z-index: 55; display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.fab-stack.is-hidden, .fab-stack.is-scrolling { opacity: 0; transform: translateY(16px); pointer-events: none; }
.fab { display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 54px;
  padding: 0 20px; background: var(--black); color: #fff; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.01em; border: 1px solid var(--black); box-shadow: 0 14px 34px -12px rgba(0,0,0,0.55);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease); }
.fab svg { width: 20px; height: 20px; flex: none; }
.fab:hover { transform: translateY(-3px); background: #fff; color: var(--black); }
.fab-cta { padding-left: 22px; }
@media (max-width: 720px) {
  .fab-call-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .fab-call { width: 54px; padding: 0; }
}

/* Smooth anchor scrolling + offset targets clear of the sticky header */
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
section[id] { scroll-margin-top: clamp(70px, 8vw, 92px); }

/* ---------- Legal / policy pages ---------- */
.hero-legal .hero-inner { min-height: clamp(220px, 32vh, 320px); }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: -0.01em;
  margin: 40px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text); }
.legal-body .point-list { margin-top: 8px; }
.legal-body .point-list li { padding: 14px 0; }

/* ---------- Team (Huspy-inspired: soft, rounded, human) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(20px, 2.6vw, 30px); }
.team-card {
  margin: 0; background: var(--white); border-radius: 24px; padding: 16px 16px 26px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.32); }
.team-photo { position: relative; display: block; aspect-ratio: 3 / 3.3; background: var(--grey-100); border-radius: 16px; overflow: hidden; }
.team-photo::before { content: attr(data-initials); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.4rem; font-weight: 600; color: var(--grey-300); }
.team-photo img { position: relative; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.03); display: block; transition: transform 0.6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-card figcaption { display: flex; flex-direction: column; align-items: flex-start; padding: 22px 12px 0; }
.team-name { font-size: 1.3rem; font-weight: 600; color: var(--ink); letter-spacing: -0.015em; }
.team-role { margin-top: 12px; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-500); background: var(--off); padding: 7px 14px; border-radius: 999px; }

/* ---------- Deadline hero (auction finance) ---------- */
.hero-auction { background: var(--white); }
.hero-auction .hero-inner { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-auction .hero-copy { max-width: none; }
.hero-deadline-card { background: var(--black); color: #fff; padding: clamp(28px, 3vw, 44px); text-align: center; }
.hero-deadline-num { display: block; font-size: clamp(4rem, 9vw, 7rem); font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.hero-deadline-label { display: block; margin-top: 12px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ---------- Timeline table ---------- */
.timeline { width: 100%; border-collapse: collapse; max-width: 900px; }
.timeline td { padding: 16px 18px 16px 0; border-top: 1px solid var(--line); vertical-align: top; font-size: 0.97rem; line-height: 1.55; }
.timeline tr:last-child td { border-bottom: 1px solid var(--line); }
.timeline td:first-child { width: 36%; font-weight: 600; color: var(--ink); }
.timeline td:last-child { color: var(--grey-500); }
.timeline .tl-key td { background: var(--off); }
.timeline .tl-key td:first-child { color: var(--ink); }

/* ---------- Check list (requirements) ---------- */
.check-list { list-style: none; margin: 30px 0 0; padding: 0; max-width: 760px; }
.check-list li { position: relative; padding: 13px 0 13px 34px; border-top: 1px solid var(--line); font-size: 1rem; line-height: 1.6; color: var(--text); }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 13px; font-weight: 700; color: var(--ink); }
.check-list li strong { color: var(--ink); }

/* ---------- Calculator ---------- */
.calc-hero { background: var(--white); padding: clamp(40px, 6vh, 76px) 0 clamp(28px, 3vh, 40px); }
.calc-hero .hero-title { margin-bottom: 16px; }
.calc-hero .hero-sub { margin-bottom: 0; }

.calc-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(18px, 2.5vw, 34px); align-items: start; }
.calc-panel { border: 1px solid var(--line); background: var(--white); padding: clamp(24px, 3vw, 36px); }
.calc-results { background: var(--white); }

.mode-toggle { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--black); margin-bottom: 26px; }
.mode-btn { padding: 14px 10px; font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: var(--white); color: var(--ink); border: 0; cursor: pointer; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.mode-btn + .mode-btn { border-left: 1px solid var(--black); }
.mode-btn.active { background: var(--black); color: #fff; }

.calc-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-field { margin-bottom: 18px; }
.calc-field > label { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 8px; }
.calc-input { width: 100%; font-family: var(--sans); font-size: 1rem; padding: 13px 14px; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.calc-input:focus { outline: none; border-color: var(--black); }

.seg { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.seg-opt { text-align: center; padding: 12px 6px; font-size: 0.74rem; font-weight: 600; color: var(--ink); cursor: pointer; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.seg-opt + .seg-opt { border-left: 1px solid var(--line); }
.seg-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.seg-opt:has(input:checked) { background: var(--black); color: #fff; }

.calc-note { font-size: 0.78rem; color: var(--grey-500); margin-top: 6px; }

.calc-figures { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.figure { display: flex; flex-direction: column; }
.figure-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 8px; }
.figure-val { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }

.calc-flags { margin-bottom: 22px; }
.calc-flag { background: var(--off); border-left: 3px solid var(--black); padding: 12px 16px; font-size: 0.9rem; line-height: 1.55; margin-bottom: 10px; }
.calc-flag a { font-weight: 600; border-bottom: 1px solid var(--ink); }

.breakdown { width: 100%; border-collapse: collapse; margin-bottom: 26px; }
.breakdown td { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 0.93rem; color: var(--text); }
.breakdown td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; color: var(--ink); }
.breakdown .bd-strong td { font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--black); }
.bd-sub { font-size: 0.75rem; color: var(--grey-500); font-weight: 400; }

.compare-title { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 12px; }
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.compare-col { border: 1px solid var(--line); padding: 16px 12px; text-align: center; }
.compare-h { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 10px; }
.compare-total { display: block; font-size: 1.15rem; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.compare-gross { display: block; font-size: 0.7rem; color: var(--grey-500); margin-top: 4px; font-variant-numeric: tabular-nums; }

.schedule { border-top: 1px solid var(--line); margin-bottom: 22px; }
.schedule summary { padding: 16px 0; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.schedule summary::-webkit-details-marker { display: none; }
.schedule summary::after { content: "+"; font-size: 1.2rem; font-weight: 400; }
.schedule[open] summary::after { content: "\2013"; }
.schedule table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.schedule th, .schedule td { padding: 8px 0; text-align: left; font-size: 0.86rem; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.schedule th:not(:first-child), .schedule td:not(:first-child) { text-align: right; }
.schedule th { color: var(--grey-500); font-weight: 600; }

.calc-cta { margin-top: clamp(32px, 4vw, 48px); border-top: 2px solid var(--black); padding-top: 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; }
.calc-cta p { max-width: 46ch; font-size: 1rem; color: var(--ink); }
.calc-cta-actions { display: flex; align-items: center; gap: 24px; }

@media print {
  .site-header, .site-footer, .progress-bar, .calc-actions, .calc-cta, .crumbs, .nav-toggle { display: none !important; }
  .calc-hero { padding-top: 0; }
}

.cta-band .cta-inner { max-width: 720px; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.7; max-width: 52ch; margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cta-tel { font-size: 0.95rem; font-weight: 600; color: #fff; border-bottom: 2px solid #fff; padding-bottom: 3px; }
.cta-tel:hover { opacity: 0.7; }

/* ---------- Reading progress bar ---------- */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: #fff; z-index: 200; transition: width 0.1s linear; }

/* ---------- Interactive cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  padding: 32px 32px 28px; min-height: 220px; overflow: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { background: var(--black); color: #fff; border-color: var(--black); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-num { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em; color: var(--grey-500); margin-bottom: 24px; transition: color 0.4s var(--ease); }
.card:hover .card-num { color: rgba(255,255,255,0.55); }
.card h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; transition: color 0.4s var(--ease); }
.card:hover h3 { color: #fff; }
.card p { font-size: 0.92rem; line-height: 1.6; color: var(--grey-500); margin: 0 0 26px; transition: color 0.4s var(--ease); }
.card:hover p { color: rgba(255,255,255,0.75); }
.card-go { margin-top: auto; font-size: 1.4rem; line-height: 1; transition: transform 0.4s var(--ease); }
.card:hover .card-go { transform: translateX(8px); }

/* ---------- Regulated vs unregulated comparison ---------- */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: clamp(36px, 5vw, 56px); }
.vs-panel { border: 1px solid var(--line); padding: clamp(26px, 3vw, 38px); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.vs-panel:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vs-reg { background: var(--white); }
.vs-unreg { background: var(--black); color: #fff; border-color: var(--black); }
.vs-tag { display: inline-block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 11px; border: 1px solid currentColor; margin-bottom: 20px; }
.vs-reg .vs-tag { color: var(--grey-500); }
.vs-panel h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.vs-unreg h3 { color: #fff; }
.vs-sub { font-size: 0.86rem; color: var(--grey-500); margin-bottom: 20px; }
.vs-unreg .vs-sub { color: rgba(255,255,255,0.65); }
.vs-list { list-style: none; margin: 0; padding: 0; }
.vs-list li { position: relative; padding: 9px 0 9px 26px; font-size: 0.92rem; line-height: 1.5; border-top: 1px solid var(--line); }
.vs-reg .vs-list li { color: var(--grey-500); }
.vs-unreg .vs-list li { color: rgba(255,255,255,0.82); border-top-color: rgba(255,255,255,0.16); }
.vs-list li::before { position: absolute; left: 0; top: 9px; font-weight: 700; }
.vs-reg .vs-list li::before { content: "\00D7"; color: var(--grey-300); }
.vs-unreg .vs-list li::before { content: "\2713"; color: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .nav-list { gap: 16px; } .nav-list a { font-size: 0.62rem; }
  .tile-grid { grid-template-columns: 1fr; }
  .tile { min-height: 0; }
  .num-flow { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); background: var(--black); transform: translateX(100%); transition: transform 0.4s var(--ease); display: flex; align-items: center; z-index: 105; }
  .main-nav.open { transform: none; box-shadow: -30px 0 80px rgba(0,0,0,0.5); }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; padding: 0 36px; }
  .nav-list li { width: 100%; border-bottom: 1px solid var(--line-d); }
  .nav-list a { display: block; padding: 18px 0; font-size: 0.8rem; }
  .nav-list a::after { display: none; }
  .header-inner { height: 80px; }

  .hero-photo { position: static; width: 100%; height: 300px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 30%); }
  .hero-cut { width: 100%; height: 300px; background-position: center calc(100% + 26px);
    -webkit-mask-image: none; mask-image: none; margin-top: 22px; }
  .hero .hero-inner { min-height: 0; padding-top: 52px; padding-bottom: 20px; }
  .hero { display: flex; flex-direction: column-reverse; }
  .hero-copy { max-width: 100%; }
  .hero-title { font-size: clamp(1.85rem, 7.6vw, 2.7rem); margin-bottom: 18px; }
  .hero-sub { font-size: 0.98rem; }
  .byline { flex-wrap: wrap; }

  .flow-grid { grid-template-columns: 1fr; gap: 40px; }
  .flow-photo { margin-top: 0; aspect-ratio: 16 / 10; }
  .journey { grid-template-columns: 1fr; }
  .inv-flow { grid-template-columns: 1fr; gap: 30px; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .intro-cols { columns: 1; }
  .why-grid { grid-template-columns: 1fr; }
  .where-grid { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: 1fr; }
  .vs { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-main { padding-left: 0; }
  .hero-split-aside { padding-top: 26px; padding-bottom: 30px; }
  .hero-split-tags { flex-direction: row; flex-wrap: wrap; gap: 12px 26px; }
  .hero-ghost { font-size: clamp(4rem, 26vw, 10rem); }
  .calc-grid { grid-template-columns: 1fr; }
  .hero-auction .hero-inner { grid-template-columns: 1fr; }
  .timeline td:first-child { width: 42%; }
}
@media (max-width: 560px) {
  .compare { grid-template-columns: 1fr; }
  .calc-figures { grid-template-columns: 1fr; gap: 14px; }
  .calc-two { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .trust-inner { padding: 16px 20px; gap: 10px 26px; }
  .gate-options { gap: 20px; }
  .container { padding: 0 20px; }
  .num-flow { gap: 26px 30px; }
  .work-photo.w-right, .work-photo.w-left { width: 100%; }
  .sq-r { margin-left: 0; text-align: left; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Gateway (homepage service selection)
   ============================================================ */
.gate-body { background: var(--black); display: flex; flex-direction: column; min-height: 100vh; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.gate-head { display: flex; justify-content: center; align-items: center; height: 90px; padding: 0 20px; background: var(--black); }
.gate-head .brand-logo { height: 46px; }

.gate-router { width: 100%; margin: 0; padding: 0; }

/* Brand statement */
.gate-brand { text-align: center; max-width: 40ch; margin: 0 auto clamp(36px, 5vh, 56px); }
.gate-brand-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.gate-brand-sub { margin-top: 14px; font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* Full-viewport 50/50 split, edge to edge */
.gate-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 0; height: calc(100svh - 90px); }
.gate-panel {
  position: relative; display: flex; overflow: hidden; isolation: isolate; color: #fff; text-align: left;
  padding: clamp(30px, 4vw, 72px);
  transition: opacity 0.5s var(--ease);
}
.gate-panel + .gate-panel { border-left: 1px solid rgba(255,255,255,0.16); }
.gate-panel-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; margin-top: auto; width: 100%; }
.gate-panels:hover .gate-panel:not(:hover) { opacity: 0.55; }

/* Each half: a landscape photo, darkened, with a scrim */
.gate-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.05) brightness(0.62); transition: transform 0.9s var(--ease), filter 0.5s var(--ease); }
.gate-primary .gate-bg { background-image: url('public/image/hunter-grey-hero.webp'); background-position: center 34%; }
.gate-secondary .gate-bg { background-image: url('public/image/hunter-grey-hero-2.webp'); background-position: 62% center; }
.gate-shade { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.82) 100%); }
.gate-panel:hover .gate-bg { transform: scale(1.05); filter: grayscale(1) contrast(1.05) brightness(0.78); }

.gate-num { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 16px; }
.gate-h { font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; color: #fff; font-size: clamp(1.7rem, 2.7vw, 2.6rem); max-width: none; margin-bottom: 14px; }
.gate-p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.72); margin-bottom: 24px; max-width: 34ch; min-height: 3.05em; }
.gate-cta { display: inline-flex; align-items: center; gap: 12px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; padding-bottom: 6px; border-bottom: 2px solid #fff; }
.gate-panel:hover .btn-arrow { transform: translateX(6px); }

/* One line of substance */
.gate-substance { max-width: 62ch; margin: clamp(40px, 5vh, 60px) auto 0; text-align: center; font-size: 1.02rem; line-height: 1.7; color: rgba(255,255,255,0.72); }
.gate-substance strong { color: #fff; }

/* Small footer */
.gate-foot { background: var(--black); color: rgba(255,255,255,0.5); padding: 18px 0 22px; border-top: 1px solid var(--line-d); }
.gate-foot-inner { display: flex; flex-direction: column; gap: 9px; }
.gate-foot-disc { font-size: 0.7rem; line-height: 1.55; color: rgba(255,255,255,0.4); }
.gate-foot-disc strong { color: rgba(255,255,255,0.7); }
.gate-foot-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 26px; font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.gate-foot-meta a { color: rgba(255,255,255,0.6); }
.gate-foot-meta a:hover { color: #fff; }

@media (max-width: 820px) {
  .gate-panels { grid-template-columns: 1fr; height: auto; }
  .gate-panel { min-height: calc(50svh - 20px); }
  .gate-panel + .gate-panel { border-left: 0; border-top: 1px solid rgba(255,255,255,0.16); }
  .gate-head { height: 80px; }
  .gate-head .brand-logo { height: 42px; }
}
