@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Oswald:wght@400;500;600&display=swap');

:root {
  --ink: #0c0e0c;
  --ink-soft: #151915;
  --forest: #202820;
  --paper: #f2eee6;
  --paper-2: #e7dfd2;
  --muted: #9d9d94;
  --line: rgba(255,255,255,.16);
  --dark-line: rgba(12,14,12,.14);
  --orange: #c9783a;
  --orange-bright: #e08a48;
  --white: #fffdf9;
  --container: min(1240px, calc(100vw - 64px));
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'Manrope', sans-serif; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin: 0 auto; }
.section-pad { padding: 120px 0; }
.section-pad-top { padding-top: 120px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.64); }
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--orange); }
.eyebrow.dark { color: #66685f; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: -.02em; }
h1 { font-size: clamp(64px, 9vw, 150px); line-height: .88; }
h2 { font-size: clamp(44px, 5vw, 78px); line-height: .98; }
h3 { font-size: 30px; line-height: 1.05; }
p { line-height: 1.75; color: #5c6059; }

.btn { min-height: 54px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 36px; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; border: 1px solid transparent; transition: .25s ease; }
.btn span { font-size: 16px; }
.btn-primary { color: var(--white); background: var(--orange); }
.btn-primary:hover { background: var(--orange-bright); transform: translateY(-2px); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(0,0,0,.12); backdrop-filter: blur(8px); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: white; transform: translateY(-2px); }
.text-link { display: inline-flex; gap: 14px; align-items: center; text-transform: uppercase; letter-spacing: .13em; font-size: 11px; font-weight: 800; }
.text-link span { color: var(--orange); font-size: 16px; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; height: 88px; padding: 0 32px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: white; border-bottom: 1px solid rgba(255,255,255,.14); transition: .3s ease; }
.site-header.scrolled { background: rgba(12,14,12,.9); backdrop-filter: blur(16px); height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand-mark { width: 44px; height: 44px; }
.brand-copy { line-height: 1; display: flex; flex-direction: column; gap: 5px; }
.brand-copy strong { font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 17px; letter-spacing: .05em; }
.brand-copy small { color: rgba(255,255,255,.5); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { position: relative; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.72); }
.desktop-nav a::after { content:''; position:absolute; height:1px; bottom:-10px; left:0; width:0; background: var(--orange); transition:.2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: white; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
.header-cta { justify-self: end; min-height: 42px; display: inline-flex; gap: 20px; align-items: center; padding: 0 16px; border: 1px solid rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800; }
.header-cta:hover { background: var(--orange); border-color: var(--orange); }
.menu-toggle { display:none; background:none; border:0; padding:10px; width:42px; height:42px; position:relative; z-index:52; }
.menu-toggle span { display:block; width:22px; height:1px; background:white; margin:6px auto; transition:.2s; }
.mobile-menu { display:none; }

.hero { min-height: 100vh; position: relative; color: white; overflow: hidden; display:flex; align-items:flex-end; background: #101310; }
.hero-media { position:absolute; inset:0; }
.hero-media::before { content:''; position:absolute; inset:0; background-image: url('https://unsplash.com/photos/Ey9jYru0aSs/download?force=true&w=2200'); background-size:cover; background-position:center; transform:scale(1.02); }
.hero-media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,12,10,.25) 0%, rgba(10,12,10,.12) 35%, rgba(10,12,10,.88) 100%), linear-gradient(90deg, rgba(10,12,10,.45), transparent 52%); }
.hero-grid-lines { position:absolute; inset:0; display:grid; grid-template-columns: repeat(4, 1fr); pointer-events:none; }
.hero-grid-lines span { border-left:1px solid rgba(255,255,255,.085); }
.hero-inner { position:relative; z-index:2; padding-bottom: 70px; display:grid; grid-template-columns: 1fr 340px; gap: 80px; align-items:end; }
.hero-copy h1 { margin: 18px 0 26px; max-width: 900px; }
.hero-copy h1 em { color: var(--orange); font-style: normal; }
.hero-copy p { color: rgba(255,255,255,.7); max-width: 620px; font-size: 16px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top: 32px; }
.hero-aside { border-left:1px solid rgba(255,255,255,.25); padding-left: 28px; margin-bottom: 8px; }
.hero-aside-number { font-family:'Oswald'; font-size: 48px; display:block; color: var(--orange); }
.hero-aside p { color: rgba(255,255,255,.68); font-size:13px; margin: 6px 0 0; }
.hero-bottom-label { position:absolute; right:26px; top:50%; writing-mode:vertical-rl; transform:translateY(-50%); z-index:3; text-transform:uppercase; letter-spacing:.22em; font-size:9px; color:rgba(255,255,255,.52); }

.home-hunts { background: var(--ink); color:white; padding: 112px 0 0; }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom: 48px; }
.section-head h2 { margin: 12px 0 0; max-width: 690px; }
.section-head p { max-width: 360px; color: rgba(255,255,255,.5); font-size:13px; }
.section-head.compact { margin-bottom: 42px; }
.hunt-grid { display:grid; grid-template-columns:repeat(4,1fr); min-height: 570px; }
.hunt-card { min-height: 570px; position:relative; overflow:hidden; border-left: 1px solid rgba(255,255,255,.12); }
.hunt-card:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.hunt-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.78); transform:scale(1.02); transition: .6s cubic-bezier(.2,.7,.2,1); }
.hunt-card-shade { position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,12,10,.05), rgba(10,12,10,.88)); transition:.3s; }
.hunt-card:hover img { transform:scale(1.07); filter:saturate(1); }
.hunt-card:hover .hunt-card-shade { background:linear-gradient(180deg, rgba(10,12,10,0), rgba(10,12,10,.72)); }
.hunt-number { position:absolute; top:24px; left:24px; font-size:10px; letter-spacing:.16em; color:rgba(255,255,255,.65); }
.hunt-card-copy { position:absolute; left:24px; right:24px; bottom:28px; display:flex; flex-direction:column; }
.hunt-card-copy small { color:rgba(255,255,255,.57); font-size:10px; letter-spacing:.12em; text-transform:uppercase; }
.hunt-card-copy strong { font-family:'Oswald'; font-size:34px; text-transform:uppercase; margin-top:6px; }
.hunt-card-copy em { font-style:normal; font-size:10px; letter-spacing:.12em; text-transform:uppercase; color: var(--orange-bright); margin-top:16px; }

.home-story { background: var(--paper); }
.story-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items:center; }
.story-images { min-height: 620px; position:relative; }
.story-img-main { position:absolute; left:0; top:0; width:75%; height:85%; object-fit:cover; }
.story-img-small { position:absolute; right:0; bottom:0; width:48%; height:50%; object-fit:cover; border:10px solid var(--paper); }
.story-badge { position:absolute; right:10%; top:8%; width:110px; height:110px; border-radius:50%; background:var(--orange); color:white; display:grid; place-items:center; text-align:center; font-size:10px; text-transform:uppercase; letter-spacing:.12em; line-height:1.5; transform:rotate(8deg); }
.story-copy h2 { margin: 14px 0 24px; }
.story-copy .lead { font-size:18px; color:#30352f; }
.story-points { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--dark-line); margin-top:36px; border:1px solid var(--dark-line); }
.story-points span { background:var(--paper); padding:18px; font-size:11px; text-transform:uppercase; letter-spacing:.1em; }

.process { min-height: 720px; position:relative; background: #131713 url('https://unsplash.com/photos/AjFiqo-PsfE/download?force=true&w=2200') center/cover no-repeat fixed; color:white; display:flex; align-items:center; }
.process::before { content:''; position:absolute; inset:0; background:rgba(9,11,9,.76); }
.process-inner { position:relative; z-index:1; }
.process-title { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:75px; }
.process-title h2 { margin:12px 0 0; max-width: 750px; }
.process-title p { color:rgba(255,255,255,.55); max-width:330px; }
.steps { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(255,255,255,.22); }
.step { padding:32px 36px 0 0; min-height:170px; border-right:1px solid rgba(255,255,255,.16); }
.step + .step { padding-left:36px; }
.step:last-child { border-right:0; }
.step small { color:var(--orange-bright); font-size:11px; letter-spacing:.16em; }
.step h3 { margin:16px 0 10px; }
.step p { color:rgba(255,255,255,.56); font-size:13px; max-width:320px; }

.home-gallery { background:var(--paper); padding-bottom:120px; }
.gallery-intro { display:flex; justify-content:space-between; gap:30px; align-items:flex-end; margin-bottom:40px; }
.gallery-intro h2 { margin:12px 0 0; max-width:730px; }
.gallery-collage { display:grid; grid-template-columns:1.15fr .7fr .95fr; grid-template-rows: 340px 300px; gap:10px; }
.gallery-collage figure { margin:0; overflow:hidden; position:relative; background:#ccc; }
.gallery-collage img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.gallery-collage figure:hover img { transform:scale(1.04); }
.gallery-collage figure:nth-child(1) { grid-row:1 / 3; }
.gallery-collage figure:nth-child(2) { grid-column:2; }
.gallery-collage figure:nth-child(3) { grid-column:3; }
.gallery-collage figure:nth-child(4) { grid-column:2 / 4; }
.gallery-cta { margin-top:10px; background:var(--orange); color:white; padding:54px 58px; display:flex; align-items:center; justify-content:space-between; gap:40px; }
.gallery-cta h3 { font-size:44px; margin:0; max-width:620px; }
.gallery-cta p { margin:8px 0 0; color:rgba(255,255,255,.7); }

.page-hero { min-height: 74vh; color:white; display:flex; align-items:flex-end; position:relative; background-size:cover; background-position:center; }
.page-hero::before { content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(9,11,9,.28), rgba(9,11,9,.85)); }
.page-hero-inner { position:relative; z-index:1; padding-bottom:72px; }
.page-hero h1 { margin:18px 0 18px; font-size:clamp(64px,8vw,125px); }
.page-hero p { color:rgba(255,255,255,.67); max-width:600px; }

.about-intro { display:grid; grid-template-columns:.82fr 1.18fr; gap:100px; align-items:start; }
.about-intro h2 { position:sticky; top:110px; }
.about-copy .lead { font-size:22px; color:#2b302b; }
.about-copy p { max-width:750px; }
.about-stats { display:grid; grid-template-columns:repeat(3,1fr); margin-top:55px; border-top:1px solid var(--dark-line); }
.about-stats div { padding:24px 16px 0 0; }
.about-stats strong { display:block; font-family:'Oswald'; font-size:40px; }
.about-stats span { font-size:10px; text-transform:uppercase; letter-spacing:.14em; color:#77796f; }
.team-strip { background:var(--ink); color:white; }
.team-grid { display:grid; grid-template-columns:1fr 1fr 1fr; border-top:1px solid var(--line); }
.team-member { padding:34px 30px 34px 0; border-right:1px solid var(--line); }
.team-member + .team-member { padding-left:30px; }
.team-member:last-child { border-right:0; }
.team-member small { color:var(--orange-bright); text-transform:uppercase; letter-spacing:.13em; font-size:10px; }
.team-member h3 { margin:12px 0 4px; }
.team-member p { color:rgba(255,255,255,.5); margin:0; font-size:13px; }

.services-intro { display:flex; align-items:flex-end; justify-content:space-between; gap:45px; margin-bottom:62px; }
.services-intro h2 { margin:12px 0 0; max-width:760px; }
.services-intro p { max-width:400px; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:48px 18px; }
.service-card { background:transparent; }
.service-image { display:block; aspect-ratio: .84; position:relative; overflow:hidden; background:#ddd; }
.service-image img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.service-card:hover .service-image img { transform:scale(1.045); }
.service-index { position:absolute; top:14px; right:14px; width:42px; height:42px; background:rgba(12,14,12,.75); color:white; display:grid; place-items:center; font-size:10px; letter-spacing:.1em; }
.service-copy { padding-top:20px; }
.service-copy small { text-transform:uppercase; letter-spacing:.13em; color:#797b72; font-size:9px; }
.service-copy h3 { margin:8px 0 10px; }
.service-copy p { font-size:13px; min-height:68px; }

.detail-hero { min-height: 86vh; position:relative; display:flex; align-items:flex-end; color:white; background: #111 var(--detail-bg) center/cover no-repeat; }
.detail-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(7,9,7,.25), rgba(7,9,7,.88)); }
.detail-hero-inner { position:relative; z-index:1; padding-bottom:65px; width:100%; }
.back-link { position:absolute; top:-46vh; left:0; text-transform:uppercase; letter-spacing:.12em; font-size:10px; color:rgba(255,255,255,.72); }
.detail-title-block h1 { font-size:clamp(70px,10vw,150px); margin:14px 0 8px; max-width:1000px; }
.detail-title-block p { color:rgba(255,255,255,.62); text-transform:uppercase; letter-spacing:.15em; font-size:10px; }
.round-arrow { width:72px; height:72px; border-radius:50%; display:grid; place-items:center; border:1px solid rgba(255,255,255,.35); position:absolute; right:0; bottom:68px; font-size:26px; }
.quick-facts { background:var(--ink); color:white; }
.fact-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.fact-grid div { padding:27px 28px 27px 0; border-right:1px solid var(--line); }
.fact-grid div + div { padding-left:28px; }
.fact-grid div:last-child { border-right:0; }
.fact-grid span { display:block; color:rgba(255,255,255,.42); text-transform:uppercase; letter-spacing:.13em; font-size:9px; }
.fact-grid strong { display:block; margin-top:8px; font-family:'Oswald'; text-transform:uppercase; font-size:19px; font-weight:500; }
.detail-layout { display:grid; grid-template-columns:1fr 420px; gap:100px; align-items:start; }
.detail-main h2 { margin:14px 0 28px; }
.detail-main p { max-width:700px; }
.detail-lead { font-size:21px; color:#2f342e; }
.mini-list { margin-top:36px; display:grid; grid-template-columns:1fr 1fr; border-top:1px solid var(--dark-line); border-left:1px solid var(--dark-line); }
.mini-list span { padding:17px 14px; border-right:1px solid var(--dark-line); border-bottom:1px solid var(--dark-line); text-transform:uppercase; letter-spacing:.11em; font-size:10px; }
.enquiry-panel { background:var(--ink); color:white; padding:34px; position:sticky; top:104px; }
.enquiry-panel h3 { margin:14px 0 28px; font-size:40px; }
.demo-form { display:grid; gap:16px; }
.demo-form label { display:grid; gap:7px; text-transform:uppercase; letter-spacing:.11em; font-size:9px; color:rgba(255,255,255,.57); }
.demo-form input, .demo-form select, .demo-form textarea { width:100%; border:1px solid rgba(255,255,255,.18); color:white; background:#161a16; min-height:48px; padding:0 13px; outline:none; }
.demo-form textarea { min-height:130px; padding-top:12px; resize:vertical; }
.demo-form input:focus, .demo-form select:focus, .demo-form textarea:focus { border-color:var(--orange); }
.demo-form .btn { width:100%; margin-top:5px; border:0; }
.form-note { color:rgba(255,255,255,.4); font-size:10px; text-align:center; margin:0; }
.detail-gallery { background:#dcd5ca; overflow:hidden; }
.detail-gallery-grid { display:grid; grid-template-columns:1.3fr .7fr; grid-template-rows:340px 340px; gap:8px; }
.detail-gallery-grid img { width:100%; height:100%; object-fit:cover; }
.detail-gallery-grid img:first-child { grid-row:1/3; }
.detail-cta { background:var(--orange); color:white; }
.detail-cta-inner { display:flex; justify-content:space-between; gap:50px; align-items:flex-end; }
.detail-cta h2 { margin:12px 0 0; max-width:750px; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:90px; }
.contact-copy h2 { margin:14px 0 28px; }
.contact-methods { margin-top:40px; border-top:1px solid var(--dark-line); }
.contact-method { display:grid; grid-template-columns:110px 1fr; gap:20px; padding:20px 0; border-bottom:1px solid var(--dark-line); }
.contact-method span { font-size:9px; text-transform:uppercase; letter-spacing:.14em; color:#777a71; }
.contact-method a { font-weight:600; }
.contact-form-card { background:var(--ink); padding:46px; color:white; }
.contact-form-card h3 { font-size:42px; margin:14px 0 26px; }
.contact-form-card .demo-form { grid-template-columns:1fr 1fr; gap:18px 14px; }
.contact-form-card .full { grid-column:1/3; }

.site-footer { background:#0a0c0a; color:white; padding:72px 0 24px; }
.footer-top { display:grid; grid-template-columns:1fr 1fr; gap:80px; padding-bottom:70px; }
.footer-brand { display:flex; align-items:center; gap:16px; text-transform:uppercase; font-family:'Oswald'; font-size:18px; line-height:1.1; }
.footer-brand img { width:50px; }
.footer-top > div > p { max-width:390px; color:rgba(255,255,255,.45); font-size:13px; margin-top:24px; }
.footer-links { display:grid; grid-template-columns:1fr 1.4fr; gap:40px; }
.footer-links > div { display:flex; flex-direction:column; gap:12px; }
.footer-links a { font-size:12px; color:rgba(255,255,255,.7); }
.footer-links a:hover { color:var(--orange-bright); }
.footer-label { color:rgba(255,255,255,.34); text-transform:uppercase; letter-spacing:.15em; font-size:9px; margin-bottom:10px; }
.footer-bottom { border-top:1px solid var(--line); padding-top:22px; display:flex; justify-content:space-between; color:rgba(255,255,255,.34); font-size:9px; text-transform:uppercase; letter-spacing:.13em; }

[data-reveal] { opacity:0; transform:translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].revealed { opacity:1; transform:none; }

@media (max-width: 980px) {
  :root { --container: min(100% - 40px, 760px); }
  .site-header { padding:0 20px; grid-template-columns:1fr auto; }
  .desktop-nav,.header-cta { display:none; }
  .menu-toggle { display:block; justify-self:end; }
  .mobile-menu { display:block; position:fixed; inset:0; background:#0b0d0b; z-index:51; opacity:0; visibility:hidden; transition:.25s; padding:120px 24px 36px; }
  .menu-open .mobile-menu { opacity:1; visibility:visible; }
  .menu-open .menu-toggle span:first-child { transform:translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform:translateY(-3.5px) rotate(-45deg); }
  .mobile-menu-inner { display:flex; flex-direction:column; }
  .mobile-menu-inner > a:not(.mobile-menu-cta) { font-family:'Oswald'; text-transform:uppercase; font-size:48px; border-bottom:1px solid rgba(255,255,255,.1); padding:15px 0; display:flex; align-items:center; gap:15px; }
  .mobile-menu-inner a span { font-family:'Manrope'; font-size:9px; color:var(--orange); }
  .mobile-menu-cta { margin-top:30px; background:var(--orange); padding:18px; text-transform:uppercase; letter-spacing:.14em; font-size:11px; }
  .hero-inner { grid-template-columns:1fr; gap:30px; }
  .hero-aside { display:none; }
  .hunt-grid { grid-template-columns:1fr 1fr; }
  .story-grid,.about-intro,.contact-grid { grid-template-columns:1fr; gap:50px; }
  .about-intro h2 { position:static; }
  .story-images { min-height:520px; }
  .process-title { display:block; }
  .steps { grid-template-columns:1fr; }
  .step,.step + .step { padding:26px 0; border-right:0; border-bottom:1px solid rgba(255,255,255,.15); }
  .gallery-collage { grid-template-columns:1fr 1fr; grid-template-rows:360px 260px 260px; }
  .gallery-collage figure:nth-child(1) { grid-row:1; grid-column:1/3; }
  .gallery-collage figure:nth-child(2){grid-column:1}.gallery-collage figure:nth-child(3){grid-column:2}.gallery-collage figure:nth-child(4){grid-column:1/3}
  .service-grid { grid-template-columns:1fr 1fr; }
  .detail-layout { grid-template-columns:1fr; gap:55px; }
  .enquiry-panel { position:static; }
  .detail-gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:440px 260px; }
  .detail-gallery-grid img:first-child { grid-column:1/3; grid-row:1; }
}

@media (max-width: 640px) {
  :root { --container: calc(100vw - 32px); }
  .section-pad { padding:82px 0; }
  .section-pad-top { padding-top:82px; }
  h1 { font-size: clamp(58px, 18vw, 96px); }
  h2 { font-size: 44px; }
  .site-header { height:74px; }
  .brand-mark { width:38px; height:38px; }
  .brand-copy small { display:none; }
  .hero { min-height: 860px; }
  .hero-inner { padding-bottom:45px; }
  .hero-copy p { font-size:14px; }
  .hero-actions .btn { flex:1; min-width: 150px; padding:0 14px; gap:15px; }
  .hero-bottom-label,.hero-grid-lines { display:none; }
  .section-head,.gallery-intro,.gallery-cta,.detail-cta-inner,.services-intro { display:block; }
  .section-head p,.services-intro p { margin-top:22px; }
  .hunt-grid { grid-template-columns:1fr; }
  .hunt-card { min-height:520px; border-bottom:1px solid rgba(255,255,255,.12); }
  .story-images { min-height:430px; }
  .story-img-main { width:86%; }
  .story-img-small { width:52%; height:44%; }
  .story-badge { width:84px; height:84px; right:2%; font-size:8px; }
  .story-points { grid-template-columns:1fr; }
  .process { background-attachment:scroll; }
  .gallery-collage { display:grid; grid-template-columns:1fr; grid-template-rows:360px 240px 240px 280px; }
  .gallery-collage figure:nth-child(n) { grid-column:1; grid-row:auto; }
  .gallery-cta { padding:34px 26px; }
  .gallery-cta h3 { font-size:36px; margin-bottom:25px; }
  .about-stats,.team-grid,.service-grid,.fact-grid { grid-template-columns:1fr; }
  .about-stats div { border-bottom:1px solid var(--dark-line); padding:20px 0; }
  .team-member,.team-member + .team-member { padding:26px 0; border-right:0; border-bottom:1px solid var(--line); }
  .service-copy p { min-height:0; }
  .page-hero { min-height:650px; }
  .detail-hero { min-height:760px; }
  .round-arrow { display:none; }
  .back-link { top:-360px; }
  .fact-grid div,.fact-grid div + div { padding:18px 0; border-right:0; border-bottom:1px solid var(--line); }
  .mini-list { grid-template-columns:1fr; }
  .detail-gallery-grid { display:grid; grid-template-columns:1fr; grid-template-rows:340px 240px 240px; }
  .detail-gallery-grid img:first-child { grid-column:1; grid-row:auto; }
  .enquiry-panel,.contact-form-card { padding:28px 20px; }
  .contact-form-card .demo-form { grid-template-columns:1fr; }
  .contact-form-card .full { grid-column:1; }
  .contact-method { grid-template-columns:1fr; gap:5px; }
  .footer-top { grid-template-columns:1fr; gap:44px; }
  .footer-links { grid-template-columns:1fr; }
  .footer-bottom { display:block; line-height:2; }
}

/* Expanded species detail pages */
.species-hero { min-height: 92vh; background-position: center; }
.species-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg, rgba(7,9,7,.42), transparent 55%); pointer-events:none; }
.species-hero-tag { position:absolute; z-index:2; top:130px; right:32px; padding:10px 14px; border:1px solid rgba(255,255,255,.32); color:rgba(255,255,255,.78); text-transform:uppercase; letter-spacing:.15em; font-size:9px; backdrop-filter:blur(10px); background:rgba(10,12,10,.18); }
.hunt-opening { background:var(--paper); }
.hunt-opening-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:100px; align-items:start; }
.hunt-opening-grid h2 { margin:18px 0 0; max-width:780px; }
.hunt-opening-grid .detail-lead { margin-top:2px; }
.hunt-opening-grid .text-link { margin-top:18px; }
.hunt-highlights { margin-top:72px; display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--dark-line); border-bottom:1px solid var(--dark-line); }
.hunt-highlight { padding:26px 26px 26px 0; border-right:1px solid var(--dark-line); }
.hunt-highlight + .hunt-highlight { padding-left:26px; }
.hunt-highlight:last-child { border-right:0; }
.hunt-highlight span { display:block; color:#85867e; text-transform:uppercase; letter-spacing:.14em; font-size:9px; }
.hunt-highlight strong { display:block; margin-top:7px; font-family:'Oswald'; font-size:24px; text-transform:uppercase; font-weight:500; }
.species-gallery-strip { display:grid; grid-template-columns:1.35fr .65fr .65fr; height:610px; background:#0d0f0d; gap:6px; padding:6px; }
.species-gallery-strip figure { margin:0; overflow:hidden; }
.species-gallery-strip img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease; }
.species-gallery-strip figure:hover img { transform:scale(1.035); }
.hunt-story { background:#e9e2d7; }
.hunt-story-grid { display:grid; grid-template-columns:.76fr 1.24fr; gap:110px; }
.story-heading { position:sticky; top:110px; align-self:start; }
.story-heading h2 { margin:16px 0 0; max-width:470px; }
.story-row { display:grid; grid-template-columns:70px 1fr; gap:28px; border-top:1px solid var(--dark-line); padding:30px 0 38px; }
.story-row:last-child { border-bottom:1px solid var(--dark-line); }
.story-index { color:var(--orange); font-family:'Oswald'; font-size:18px; }
.story-row h3 { margin:0 0 12px; font-size:34px; }
.story-row p { margin:0; max-width:680px; }
.package-section { background:var(--ink); color:white; }
.package-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:90px; }
.package-intro h2 { margin:16px 0 22px; }
.package-intro p { color:rgba(255,255,255,.5); max-width:420px; }
.package-list { display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid rgba(255,255,255,.15); }
.package-list > div { padding:34px; }
.package-list > div + div { border-left:1px solid rgba(255,255,255,.15); }
.package-list h3 { font-size:25px; margin:0 0 22px; }
.package-list ul { margin:0; padding:0; list-style:none; }
.package-list li { position:relative; padding:13px 0 13px 22px; color:rgba(255,255,255,.68); font-size:13px; border-top:1px solid rgba(255,255,255,.09); }
.package-list li::before { content:'↗'; position:absolute; left:0; color:var(--orange-bright); }
.itinerary-section { background:var(--paper); }
.itinerary-head { display:flex; align-items:end; justify-content:space-between; gap:60px; margin-bottom:55px; }
.itinerary-head h2 { margin:14px 0 0; }
.itinerary-head p { max-width:380px; margin:0; }
.itinerary-list { border-top:1px solid var(--dark-line); }
.itinerary-row { display:grid; grid-template-columns:140px 1fr 50px; gap:30px; align-items:center; padding:25px 0; border-bottom:1px solid var(--dark-line); }
.itinerary-row > span { text-transform:uppercase; letter-spacing:.13em; font-size:10px; color:#777a71; }
.itinerary-row strong { font-weight:500; color:#30342f; }
.itinerary-row em { font-style:normal; text-align:right; color:#aaa99f; font-family:'Oswald'; }
.enquiry-band { background:#111411; color:white; padding:110px 0; }
.enquiry-band-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:100px; align-items:start; }
.enquiry-band h2 { margin:17px 0 22px; }
.enquiry-band p { color:rgba(255,255,255,.5); max-width:460px; }
.source-link { display:inline-block; margin-top:20px; color:rgba(255,255,255,.68); border-bottom:1px solid rgba(255,255,255,.28); padding-bottom:5px; font-size:11px; text-transform:uppercase; letter-spacing:.1em; }
.enquiry-form-large { grid-template-columns:1fr 1fr; gap:18px 14px; }
.enquiry-form-large .full { grid-column:1/3; }
.related-hunts { background:#dcd5ca; }
.related-head { display:flex; justify-content:space-between; align-items:end; gap:40px; margin-bottom:42px; }
.related-head h2 { margin:12px 0 0; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.related-card { position:relative; height:480px; overflow:hidden; color:white; background:#222; }
.related-card::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 35%, rgba(7,9,7,.87)); }
.related-card img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.related-card:hover img { transform:scale(1.045); }
.related-card > span { position:absolute; z-index:2; left:24px; right:24px; bottom:24px; display:grid; gap:7px; }
.related-card small { text-transform:uppercase; letter-spacing:.13em; color:rgba(255,255,255,.55); font-size:9px; }
.related-card strong { font-family:'Oswald'; text-transform:uppercase; font-size:32px; }
.related-card em { font-style:normal; font-size:10px; text-transform:uppercase; letter-spacing:.12em; color:var(--orange-bright); }

@media (max-width: 900px) {
  .species-hero-tag { display:none; }
  .hunt-opening-grid, .hunt-story-grid, .package-grid, .enquiry-band-grid { grid-template-columns:1fr; gap:45px; }
  .story-heading { position:static; }
  .species-gallery-strip { grid-template-columns:1fr 1fr; height:auto; }
  .species-gallery-strip figure:first-child { grid-column:1/3; height:440px; }
  .species-gallery-strip figure:not(:first-child) { height:300px; }
  .related-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 640px) {
  .hunt-highlights { grid-template-columns:1fr; }
  .hunt-highlight, .hunt-highlight + .hunt-highlight { padding:20px 0; border-right:0; border-bottom:1px solid var(--dark-line); }
  .species-gallery-strip { grid-template-columns:1fr; }
  .species-gallery-strip figure:first-child { grid-column:auto; height:360px; }
  .species-gallery-strip figure:not(:first-child) { height:260px; }
  .package-list { grid-template-columns:1fr; }
  .package-list > div + div { border-left:0; border-top:1px solid rgba(255,255,255,.15); }
  .itinerary-head { display:block; }
  .itinerary-head p { margin-top:20px; }
  .itinerary-row { grid-template-columns:85px 1fr; gap:16px; }
  .itinerary-row em { display:none; }
  .enquiry-form-large { grid-template-columns:1fr; }
  .enquiry-form-large .full { grid-column:auto; }
  .related-grid { grid-template-columns:1fr; }
  .related-card { height:420px; }
}
