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

:root {
  /* Forest redesign palette */
  --ink: #0B1712;
  --ink-soft: #173126;
  --forest: #173126;
  --moss: #526451;
  --earth: #6F523D;
  --paper: #F4F0E7;
  --paper-2: #D8CCB8;
  --muted: #7E897F;
  --line: rgba(244,240,231,.16);
  --dark-line: rgba(11,23,18,.16);
  --orange: #B27A3D;
  --orange-bright: #C58B4A;
  --white: #F4F0E7;
  --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: 96px; 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: 82px; }
.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand-mark { width: 60px; height: 60px; }
.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('../images/hunting/hero-hunter-ibex.webp'); 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('../images/hunting/markhor-pair.webp') center 42%/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:64px; }
.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:82px; }
  .brand-mark { width:50px; height:50px; }
  .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; }
}

/* Forest atmosphere redesign */
body {
  background: var(--paper);
  color: var(--ink);
  background-image:
    radial-gradient(circle at 12% 14%, rgba(82,100,81,.07), transparent 28%),
    radial-gradient(circle at 88% 45%, rgba(111,82,61,.05), transparent 25%);
}

/* Bronze now works as a small highlight; greens carry the brand. */
.btn-primary,
.mobile-menu-cta,
.gallery-cta,
.story-badge {
  background: var(--earth);
}
.btn-primary:hover,
.header-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.btn-light { background: var(--paper-2); color: var(--ink); }
.btn-light:hover { background: var(--paper); }

.site-header.scrolled {
  background: rgba(11,23,18,.93);
  border-bottom-color: rgba(216,204,184,.12);
  box-shadow: 0 18px 48px rgba(2,12,8,.18);
}
.desktop-nav a::after,
.eyebrow::before { background: var(--orange); }

/* Main forest hero: pine tint + low mist, while preserving the photography. */
.hero { background: var(--ink); }
.hero-media::before {
  background-image: url('../images/hunting/hero-hunter-ibex.webp');
  background-position: center 48%;
  filter: saturate(.78) contrast(1.04);
}
.hero-media::after {
  background:
    radial-gradient(ellipse at 58% 73%, rgba(216,204,184,.15) 0%, rgba(216,204,184,.04) 26%, transparent 48%),
    linear-gradient(180deg, rgba(5,18,12,.34) 0%, rgba(5,22,14,.20) 35%, rgba(7,20,14,.94) 100%),
    linear-gradient(90deg, rgba(6,23,15,.70), rgba(15,47,34,.10) 55%, rgba(6,16,11,.24));
}
.hero::after {
  content:'';
  position:absolute;
  left:-8%; right:-8%; bottom:-65px;
  height:165px;
  z-index:1;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 12% 60%, rgba(244,240,231,.12), transparent 32%),
    radial-gradient(ellipse at 48% 55%, rgba(244,240,231,.08), transparent 34%),
    radial-gradient(ellipse at 85% 68%, rgba(244,240,231,.10), transparent 30%);
  filter: blur(18px);
  opacity:.55;
}
.hero-grid-lines span { border-color: rgba(216,204,184,.085); }
.hero-copy h1 em,
.hero-aside-number { color: var(--paper-2); }
.hero-aside { border-color: rgba(216,204,184,.25); }

/* Dark hunt gallery gets a richer pine finish. */
.home-hunts {
  background:
    radial-gradient(circle at 15% 0%, rgba(82,100,81,.20), transparent 28%),
    linear-gradient(180deg, #0B1712 0%, #10261B 100%);
}
.hunt-card { border-color: rgba(216,204,184,.12); }
.hunt-card img { filter: saturate(.62) contrast(1.03); }
.hunt-card-shade {
  background: linear-gradient(180deg, rgba(9,34,22,.10), rgba(6,20,13,.92));
}
.hunt-card:hover .hunt-card-shade {
  background: linear-gradient(180deg, rgba(9,34,22,0), rgba(8,30,19,.78));
}
.hunt-card-copy em { color: #D0A66E; }

/* Warm lodge-style story section with a very subtle forest wash. */
.home-story,
.hunt-opening,
.itinerary-section {
  background-color: var(--paper);
  background-image: linear-gradient(rgba(244,240,231,.97), rgba(244,240,231,.97));
}
.story-img-small { border-color: var(--paper); }
.story-copy .lead,
.about-copy .lead,
.detail-lead { color: #294033; }
.story-points span { background: rgba(244,240,231,.92); }

/* A dedicated deep-forest atmosphere for the planning section. */
.process {
  background-image: url('../images/hunting/markhor-pair.webp');
  background-color: var(--ink);
}
.process::before {
  background:
    radial-gradient(ellipse at 50% 84%, rgba(216,204,184,.10), transparent 34%),
    linear-gradient(90deg, rgba(4,19,12,.92), rgba(11,42,27,.70), rgba(4,17,11,.86));
}

.home-gallery { background: #EAE3D5; }
.gallery-cta {
  background: linear-gradient(110deg, var(--earth), #8A694C);
  box-shadow: inset 0 1px rgba(255,255,255,.10);
}

/* Inner-page heroes and species heroes inherit the forest grading. */
.page-hero::before {
  background:
    radial-gradient(ellipse at 55% 78%, rgba(216,204,184,.10), transparent 34%),
    linear-gradient(180deg, rgba(7,25,16,.30), rgba(7,24,16,.90));
}
.detail-overlay {
  background:
    radial-gradient(ellipse at 55% 78%, rgba(216,204,184,.11), transparent 33%),
    linear-gradient(180deg, rgba(6,24,15,.26), rgba(5,22,14,.92));
}
.species-hero::after {
  background: linear-gradient(90deg, rgba(5,25,15,.62), rgba(17,49,35,.04) 62%);
}
.species-hero-tag {
  background: rgba(11,23,18,.38);
  border-color: rgba(216,204,184,.28);
}

.quick-facts,
.team-strip,
.package-section,
.enquiry-panel,
.contact-form-card {
  background: var(--ink);
}
.team-strip,
.package-section {
  background-image: radial-gradient(circle at 12% 0%, rgba(82,100,81,.16), transparent 30%);
}
.service-index { background: rgba(11,23,18,.82); }
.service-image::after {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(12,49,31,.02), rgba(7,26,17,.17));
}

.detail-gallery,
.related-hunts { background: var(--paper-2); }
.hunt-story { background: #E8E0D2; }
.story-index { color: var(--earth); }
.package-list li::before,
.footer-links a:hover { color: #D0A66E; }

.enquiry-band {
  background:
    radial-gradient(circle at 85% 20%, rgba(82,100,81,.18), transparent 28%),
    linear-gradient(120deg, #0B1712, #173126);
}
.related-card::after {
  background: linear-gradient(180deg, rgba(10,47,29,.03) 25%, rgba(5,24,15,.91));
}
.related-card em { color:#D0A66E; }

.site-footer {
  background:
    radial-gradient(circle at 78% 0%, rgba(82,100,81,.13), transparent 28%),
    #07120D;
}

/* Forms receive a softer pine surface rather than flat black. */
.demo-form input,
.demo-form select,
.demo-form textarea {
  background: #12281D;
  border-color: rgba(216,204,184,.18);
}
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus { border-color: #B27A3D; }

/* Light surfaces use moss/earth text accents. */
.eyebrow.dark,
.service-copy small,
.contact-method span,
.itinerary-row > span,
.about-stats span { color: #667768; }
p { color: #58665B; }
.text-link span { color: var(--earth); }

/* Keep the forest mood on mobile without expensive fixed backgrounds. */
@media (max-width: 980px) {
  .mobile-menu {
    background:
      radial-gradient(circle at 85% 12%, rgba(82,100,81,.20), transparent 30%),
      #0B1712;
  }
}

@media (max-width: 640px) {
  .hero-media::before { background-image:url('../images/hunting/hero-hunter-ibex-mobile.webp'); background-position:50% 42%; }
  .hero::after { height:110px; bottom:-42px; }
}


/* Team photography + dedicated team page */
.brand-mark {
  object-fit: contain;
  border-radius: 50%;
  background: rgba(244,240,231,.96);
  box-shadow: 0 0 0 1px rgba(216,204,184,.25);
}
.footer-brand img {
  object-fit: contain;
  border-radius: 50%;
  background: rgba(244,240,231,.96);
}
.team-head-side { max-width: 430px; }
.team-head-side p { margin-bottom: 22px; color: rgba(255,255,255,.56); }
.light-link { color: var(--paper); }
.light-link span { color: #D0A66E; }

.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.team-photo-card {
  position: relative;
  min-width: 0;
  background: #10261B;
  border: 1px solid rgba(216,204,184,.12);
  overflow: hidden;
}
.team-photo {
  aspect-ratio: .82;
  overflow: hidden;
  background: #132B20;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(1.02);
  transition: transform .55s ease, filter .55s ease;
}
.team-photo-card:first-child .team-photo img { object-position: 50% 46%; }
.team-photo-card:last-child .team-photo img { object-position: 50% 35%; }
.team-photo-card:hover .team-photo img { transform: scale(1.035); filter: saturate(.92) contrast(1.02); }
.team-photo-copy { padding: 25px 24px 27px; position: relative; }
.team-photo-copy small {
  display: block;
  color: #D0A66E;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9px;
  min-height: 25px;
}
.team-photo-copy h3 { margin: 8px 0 5px; font-size: 34px; }
.team-photo-copy p { margin: 0; color: rgba(255,255,255,.52); font-size: 13px; }
.team-photo-copy > span {
  display: inline-block;
  margin-top: 19px;
  color: rgba(255,255,255,.76);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
}

.team-page-hero { background-position: center 38%; }
.team-page-hero::before {
  background:
    linear-gradient(90deg, rgba(6,23,15,.82) 0%, rgba(6,23,15,.28) 58%, rgba(6,23,15,.18) 100%),
    linear-gradient(180deg, rgba(7,25,16,.22), rgba(7,24,16,.91));
}
.team-page-hero .page-hero-inner p { max-width: 660px; }

.team-intro {
  background-color: var(--paper);
  background-image: linear-gradient(rgba(244,240,231,.97), rgba(244,240,231,.97));
}
.team-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.team-intro-grid h2 { margin: 14px 0 0; max-width: 560px; }
.team-intro-grid .lead { font-size: 22px; color: #294033; }
.team-intro-grid p { max-width: 700px; }

.team-profiles { background: #E8E0D2; }
.team-profile {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 720px;
  border-top: 1px solid var(--dark-line);
}
.team-profile:last-child { border-bottom: 1px solid var(--dark-line); }
.team-profile.reverse .team-profile-image { order: 2; }
.team-profile.reverse .team-profile-copy { order: 1; padding-left: 0; padding-right: 84px; }
.team-profile-image { min-height: 720px; overflow: hidden; position: relative; }
.team-profile-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11,49,31,.02), rgba(7,25,16,.12));
}
.team-profile-image img { width: 100%; height: 100%; object-fit: cover; }
#noor-hayat .team-profile-image img { object-position: 50% 48%; }
#amir-hayat .team-profile-image img { object-position: 50% 42%; }
#majid-khan .team-profile-image img { object-position: 50% 32%; }
.team-profile-copy {
  position: relative;
  padding: 92px 0 82px 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profile-number {
  position: absolute;
  top: 38px;
  right: 0;
  color: rgba(11,23,18,.22);
  font: 500 54px/1 'Oswald', sans-serif;
}
.team-profile-copy h2 { margin: 16px 0 24px; font-size: clamp(54px, 6vw, 88px); }
.team-profile-copy .lead { font-size: 18px; color: #294033; max-width: 610px; }
.team-profile-copy > p:not(.lead) { max-width: 620px; }
.profile-actions { display: flex; align-items: center; gap: 28px; margin-top: 28px; flex-wrap: wrap; }

.team-cta-section {
  background:
    radial-gradient(circle at 18% 30%, rgba(82,100,81,.22), transparent 32%),
    #0B1712;
}
.team-cta-card {
  min-height: 360px;
  padding: 64px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  color: var(--paper);
  border: 1px solid rgba(216,204,184,.15);
  background:
    linear-gradient(90deg, rgba(11,23,18,.93), rgba(23,49,38,.72)),
    url('../images/hunting/hero-hunter-ibex.webp') center 42%/cover;
}
.team-cta-card h2 { max-width: 760px; margin: 15px 0 15px; }
.team-cta-card p { max-width: 650px; margin: 0; color: rgba(244,240,231,.62); }
.team-cta-card .btn { flex: 0 0 auto; }

@media (max-width: 980px) {
  .team-photo-grid { grid-template-columns: 1fr 1fr; }
  .team-photo-card:last-child { grid-column: 1 / 3; }
  .team-photo-card:last-child .team-photo { aspect-ratio: 1.55; }
  .team-intro-grid { grid-template-columns: 1fr; gap: 42px; }
  .team-profile,
  .team-profile.reverse { grid-template-columns: 1fr; min-height: 0; }
  .team-profile.reverse .team-profile-image,
  .team-profile.reverse .team-profile-copy { order: initial; }
  .team-profile-image { min-height: 620px; }
  .team-profile-copy,
  .team-profile.reverse .team-profile-copy { padding: 72px 0; }
  .profile-number { top: 70px; }
  .team-cta-card { padding: 52px 44px; display: block; }
  .team-cta-card .btn { margin-top: 28px; }
}

@media (max-width: 640px) {
  .team-photo-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .team-photo-card:last-child { grid-column: auto; }
  .team-photo-card:last-child .team-photo,
  .team-photo { aspect-ratio: .84; }
  .team-photo-card:last-child .team-photo img { object-position: 50% 28%; }
  .team-page-hero { background-position: 52% center; }
  .team-page-hero::before {
    background: linear-gradient(180deg, rgba(6,23,15,.24), rgba(6,23,15,.92));
  }
  .team-profile { width: 100%; }
  .team-profile-image { min-height: 480px; }
  .team-profile-copy,
  .team-profile.reverse .team-profile-copy { width: var(--container); margin: 0 auto; padding: 58px 0 72px; }
  .profile-number { top: 26px; font-size: 42px; }
  .profile-actions { align-items: stretch; }
  .profile-actions .btn { width: 100%; }
  .team-cta-card { padding: 38px 24px; min-height: 0; }
  .team-cta-card h2 { font-size: 40px; }
}

/* Final hunting-photo update */
.hero-media::before {
  background-image: url('../images/hunting/hero-hunter-ibex.webp');
  background-position: center 45%;
  filter: saturate(.92) contrast(1.03);
}
.hero-media::after {
  background:
    linear-gradient(180deg, rgba(5,18,12,.16) 0%, rgba(5,18,12,.08) 36%, rgba(7,20,14,.92) 100%),
    linear-gradient(90deg, rgba(6,23,15,.64), rgba(6,23,15,.08) 58%, rgba(6,16,11,.16));
}

/* Hunting imagery on strong CTA areas */
.gallery-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11,23,18,.90), rgba(23,49,38,.70)),
    url('../images/team/noor-hayat.webp') center 42%/cover no-repeat;
}
.detail-cta {
  position: relative;
  background:
    linear-gradient(90deg, rgba(11,23,18,.91), rgba(23,49,38,.70)),
    url('../images/hunting/markhor.webp') center 38%/cover no-repeat;
}
.enquiry-band {
  background:
    linear-gradient(90deg, rgba(11,23,18,.96), rgba(23,49,38,.82)),
    url('../images/hunting/hero-hunter-ibex.webp') center 45%/cover no-repeat;
}
.team-cta-card {
  background:
    linear-gradient(90deg, rgba(11,23,18,.94), rgba(23,49,38,.72)),
    url('../images/hunting/hero-hunter-ibex.webp') center 42%/cover no-repeat;
}

/* Keep text readable on animal-led inner page heroes. */
.about-page-hero { background-position: center 44%; }
.hunts-page-hero { background-position: center 42%; }
.contact-page-hero { background-position: center 34%; }
.about-page-hero::before,
.hunts-page-hero::before,
.contact-page-hero::before {
  background:
    linear-gradient(90deg, rgba(5,22,14,.76), rgba(5,22,14,.20) 64%),
    linear-gradient(180deg, rgba(5,18,12,.12), rgba(5,18,12,.86));
}

/* Larger brand mark requested by client. */
.brand-mark { width: 60px; height: 60px; flex: 0 0 60px; }
.footer-brand img { width: 68px; height: 68px; }
.site-header.scrolled .brand-mark { width: 52px; height: 52px; flex-basis: 52px; }

/* Responsive polish across desktop, tablet and phone. */
@media (max-width: 1200px) {
  .desktop-nav { gap: 24px; }
  .site-header { padding-left: 22px; padding-right: 22px; }
  .brand-copy strong { font-size: 16px; }
}

@media (max-width: 980px) {
  .site-header { height: 86px; }
  .brand-mark,
  .site-header.scrolled .brand-mark { width: 54px; height: 54px; flex-basis: 54px; }
  .mobile-menu { padding-top: 112px; }
  .process { background-attachment: scroll; background-position: center 35%; }
  .gallery-cta,
  .detail-cta,
  .enquiry-band,
  .team-cta-card { background-position: center; }
}

@media (max-width: 640px) {
  .site-header,
  .site-header.scrolled { height: 80px; }
  .brand-mark,
  .site-header.scrolled .brand-mark { width: 50px; height: 50px; flex-basis: 50px; }
  .brand-copy strong { font-size: 15px; }
  .hero { min-height: 780px; }
  .hero-media::before {
    background-image: url('../images/hunting/hero-hunter-ibex-mobile.webp');
    background-position: center 35%;
  }
  .hero-inner { padding-bottom: 38px; }
  .hero-copy h1 { font-size: clamp(54px, 17vw, 82px); }
  .hero-copy p { max-width: 92%; }
  .page-hero { min-height: 600px; }
  .about-page-hero { background-position: 62% center; }
  .hunts-page-hero { background-position: center; }
  .contact-page-hero { background-position: 50% 38%; }
  .page-hero h1 { font-size: clamp(52px, 17vw, 80px); }
  .gallery-cta,
  .detail-cta,
  .team-cta-card { background-position: center 35%; }
  .enquiry-band { background-position: 56% center; }
  .footer-brand img { width: 62px; height: 62px; }
}

@media (max-width: 380px) {
  :root { --container: calc(100vw - 24px); }
  .site-header { padding-left: 12px; padding-right: 12px; }
  .brand-copy strong { font-size: 14px; }
  .brand-mark,
  .site-header.scrolled .brand-mark { width: 46px; height: 46px; flex-basis: 46px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* =========================================================
   FULL-IMAGE HERO UPDATE
   Client request: never crop the main hunting photography.
   Keep the complete photo visible and use the dark brand
   background to fill any extra screen space.
   ========================================================= */

/* Home hero — use the original full-resolution hunting photo. */
.hero-media {
  background: #0B1712;
}
.hero-media::before {
  background-image: url('../images/hunting/hero-hunter-ibex.webp');
  background-color: #0B1712;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  transform: none;
  filter: saturate(.94) contrast(1.02);
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(5,22,14,.96) 0%, rgba(5,22,14,.82) 26%, rgba(5,22,14,.34) 52%, rgba(5,22,14,.08) 78%, rgba(5,22,14,.05) 100%),
    linear-gradient(180deg, rgba(5,18,12,.08) 0%, rgba(5,18,12,.04) 48%, rgba(7,20,14,.80) 100%);
}

/* About, Team, Hunts and Contact heroes — show the complete image. */
.page-hero {
  background-color: #0B1712;
  background-size: contain !important;
  background-position: right center !important;
  background-repeat: no-repeat !important;
}
.page-hero::before {
  background:
    linear-gradient(90deg, rgba(5,22,14,.96) 0%, rgba(5,22,14,.86) 27%, rgba(5,22,14,.40) 55%, rgba(5,22,14,.10) 82%, rgba(5,22,14,.04) 100%),
    linear-gradient(180deg, rgba(5,18,12,.06), rgba(5,18,12,.76));
}

/* Individual species/deal pages — no cover crop. */
.detail-hero,
.species-hero {
  background-color: #0B1712 !important;
  background-size: contain !important;
  background-position: right center !important;
  background-repeat: no-repeat !important;
}
.detail-overlay {
  background:
    linear-gradient(90deg, rgba(5,22,14,.95) 0%, rgba(5,22,14,.78) 30%, rgba(5,22,14,.28) 60%, rgba(5,22,14,.05) 100%),
    linear-gradient(180deg, rgba(7,9,7,.04), rgba(7,20,14,.72));
}
.species-hero::after {
  background: linear-gradient(90deg, rgba(5,22,14,.72), rgba(5,22,14,.04) 68%);
}

/* Full hunting photos on the large visual CTA / process panels too. */
.process {
  background-color: #0B1712;
  background-size: contain !important;
  background-position: right center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}
.gallery-cta {
  background-color: #0B1712;
  background-image:
    linear-gradient(90deg, rgba(11,23,18,.96), rgba(23,49,38,.80) 48%, rgba(23,49,38,.22)),
    url('../images/team/noor-hayat.webp');
  background-size: cover, contain;
  background-position: center, right center;
  background-repeat: no-repeat, no-repeat;
}
.detail-cta {
  background-color: #0B1712;
  background-image:
    linear-gradient(90deg, rgba(11,23,18,.96), rgba(23,49,38,.82) 48%, rgba(23,49,38,.20)),
    url('../images/hunting/markhor.webp');
  background-size: cover, contain;
  background-position: center, right center;
  background-repeat: no-repeat, no-repeat;
}
.enquiry-band,
.team-cta-card {
  background-color: #0B1712;
  background-image:
    linear-gradient(90deg, rgba(11,23,18,.96), rgba(23,49,38,.82) 48%, rgba(23,49,38,.20)),
    url('../images/hunting/hero-hunter-ibex.webp');
  background-size: cover, contain;
  background-position: center, right center;
  background-repeat: no-repeat, no-repeat;
}

/* Tablet: preserve full photography while giving text enough room. */
@media (max-width: 980px) {
  .hero-media::before,
  .page-hero,
  .detail-hero,
  .species-hero {
    background-size: contain !important;
    background-position: center top !important;
  }
  .hero-media::after,
  .page-hero::before,
  .detail-overlay {
    background:
      linear-gradient(180deg, rgba(5,22,14,.04) 0%, rgba(5,22,14,.10) 36%, rgba(5,22,14,.90) 72%, rgba(5,22,14,.98) 100%);
  }
  .process,
  .gallery-cta,
  .detail-cta,
  .enquiry-band,
  .team-cta-card {
    background-position: center, center top !important;
  }
}

/* Phones: fit the whole photo to the screen width, with text below it. */
@media (max-width: 640px) {
  .hero {
    min-height: 800px;
    background: #0B1712;
  }
  .hero-media::before {
    background-image: url('../images/hunting/hero-hunter-ibex.webp') !important;
    background-size: 100% auto !important;
    background-position: center 80px !important;
    background-repeat: no-repeat !important;
  }
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5,22,14,.02) 0%, rgba(5,22,14,.04) 31%, rgba(5,22,14,.88) 58%, rgba(5,22,14,.99) 100%);
  }
  .page-hero {
    min-height: 690px;
    background-size: 100% auto !important;
    background-position: center 80px !important;
  }
  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(5,22,14,.02) 0%, rgba(5,22,14,.06) 38%, rgba(5,22,14,.88) 66%, rgba(5,22,14,.98) 100%);
  }
  .detail-hero,
  .species-hero {
    min-height: 760px;
    background-size: contain !important;
    background-position: center 82px !important;
  }
  .detail-overlay {
    background:
      linear-gradient(180deg, rgba(5,22,14,.02) 0%, rgba(5,22,14,.08) 38%, rgba(5,22,14,.90) 68%, rgba(5,22,14,.99) 100%);
  }
  .process {
    background-size: 100% auto !important;
    background-position: center top !important;
  }
  .gallery-cta,
  .detail-cta,
  .enquiry-band,
  .team-cta-card {
    background-size: cover, 100% auto !important;
    background-position: center, center top !important;
  }
}

/* =========================================================
   MULTI-PHOTO SHOWCASES
   Keep every main photo fully visible while filling the tile
   with a soft version of the same image behind it.
   ========================================================= */
.no-crop-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin: 0;
  background: #0B1712;
}
.no-crop-photo::before {
  content: '';
  position: absolute;
  inset: -14px;
  z-index: 0;
  background-image:
    linear-gradient(rgba(7,20,14,.34), rgba(7,20,14,.34)),
    var(--photo);
  background-size: cover;
  background-position: center;
  filter: blur(12px) saturate(.78);
  transform: scale(1.06);
  opacity: .8;
}
.no-crop-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(244,240,231,.08);
}
.no-crop-photo img {
  position: relative !important;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  filter: none !important;
}

/* Existing home field gallery now shows the full photographs. */
.gallery-collage .no-crop-photo img { object-fit: contain !important; }
.gallery-collage .no-crop-photo:hover img { transform: none !important; }

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 38px;
}
.showcase-heading h2 {
  margin: 12px 0 0;
  max-width: 720px;
}
.showcase-heading > p {
  max-width: 390px;
  margin: 0;
}

.page-photo-showcase { background: #E8E0D2; }
.page-photo-showcase-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(82,100,81,.14), transparent 28%),
    #0B1712;
  color: var(--paper);
}
.page-photo-showcase-dark .showcase-heading > p { color: rgba(244,240,231,.58); }
.page-photo-showcase-dark .showcase-heading h2 { color: var(--paper); }

.page-photo-mosaic,
.hunt-photo-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  grid-template-rows: 315px 315px;
  gap: 10px;
}
.page-photo-mosaic .photo-wide,
.hunt-photo-mosaic .showcase-main {
  grid-row: 1 / 3;
}
.page-photo-mosaic figure,
.hunt-photo-mosaic figure {
  min-width: 0;
  min-height: 0;
  border-radius: 2px;
}

.hunt-photo-showcase {
  background: var(--paper);
  padding-bottom: 112px;
}
.hunt-photo-showcase .showcase-heading { margin-bottom: 32px; }

/* Keep the old strip hidden because the new 3-photo mosaic replaces it. */
.species-gallery-strip { display: none !important; }

@media (max-width: 980px) {
  .showcase-heading { align-items: start; gap: 32px; }
  .page-photo-mosaic,
  .hunt-photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 280px;
  }
  .page-photo-mosaic .photo-wide,
  .hunt-photo-mosaic .showcase-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .showcase-heading { display: block; margin-bottom: 26px; }
  .showcase-heading > p { margin-top: 18px; }
  .page-photo-mosaic,
  .hunt-photo-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 340px 270px 270px;
    gap: 8px;
  }
  .page-photo-mosaic .photo-wide,
  .hunt-photo-mosaic .showcase-main {
    grid-column: 1;
    grid-row: 1;
  }
  .hunt-photo-showcase { padding-bottom: 82px; }
}

@media (max-width: 380px) {
  .page-photo-mosaic,
  .hunt-photo-mosaic {
    grid-template-rows: 290px 235px 235px;
  }
}

/* Home about + reviews additions */
.home-about { background:#ebe5da; }
.home-about-grid { display:grid; grid-template-columns:1.06fr .94fr; gap:90px; align-items:center; }
.home-about-photo { min-height:620px; border:1px solid rgba(11,23,18,.1); }
.home-about-photo img { width:100%; height:100%; object-fit:contain; }
.home-about-copy h2 { margin:16px 0 24px; }
.home-about-copy .lead { font-size:18px; color:#2f352f; }
.simple-checks { display:grid; grid-template-columns:1fr 1fr; margin:32px 0; border-top:1px solid var(--dark-line); border-left:1px solid var(--dark-line); }
.simple-checks span { padding:16px 18px; border-right:1px solid var(--dark-line); border-bottom:1px solid var(--dark-line); text-transform:uppercase; letter-spacing:.1em; font-size:10px; color:#4d554f; }

.home-reviews { background:var(--ink); color:white; }
.review-head { display:flex; justify-content:space-between; align-items:end; gap:60px; margin-bottom:48px; }
.review-head h2 { margin:14px 0 0; max-width:700px; }
.review-head p { color:rgba(255,255,255,.52); max-width:430px; margin:0; }
.success-strip { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin-bottom:44px; }
.success-strip div { padding:28px 28px 28px 0; display:flex; align-items:end; gap:16px; }
.success-strip div + div { padding-left:28px; border-left:1px solid var(--line); }
.success-strip strong { font-family:'Oswald'; font-size:52px; font-weight:500; color:var(--orange-bright); line-height:1; }
.success-strip span { font-size:10px; text-transform:uppercase; letter-spacing:.12em; color:rgba(255,255,255,.58); padding-bottom:6px; }
.review-video-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.review-video-card { background:#142018; border:1px solid rgba(255,255,255,.1); }
.review-video-poster { height:310px; background-size:cover; background-position:center; position:relative; overflow:hidden; }
.review-video-poster::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(5,10,7,.04),rgba(5,10,7,.42)); }
.review-play { position:absolute; z-index:2; left:24px; bottom:24px; width:58px; height:58px; border:1px solid rgba(255,255,255,.72); border-radius:50%; display:grid; place-items:center; color:white; font-size:15px; backdrop-filter:blur(8px); background:rgba(0,0,0,.18); }
.review-video-copy { padding:24px; }
.review-video-copy small { color:var(--orange-bright); text-transform:uppercase; letter-spacing:.13em; font-size:9px; }
.review-video-copy h3 { font-size:27px; margin:9px 0 10px; }
.review-video-copy p { color:rgba(255,255,255,.5); font-size:12px; margin:0; }

/* Hunts page extra description */
.hunt-page-intro { background:#e8e1d6; }
.hunt-page-intro-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; align-items:start; }
.hunt-page-intro-grid h2 { margin:16px 0 0; max-width:650px; }
.hunt-page-intro-copy .lead { font-size:18px; color:#313731; }
.hunt-help-cards { display:grid; grid-template-columns:repeat(3,1fr); margin-top:60px; border-top:1px solid var(--dark-line); border-bottom:1px solid var(--dark-line); }
.hunt-help-cards article { padding:30px 30px 30px 0; }
.hunt-help-cards article + article { padding-left:30px; border-left:1px solid var(--dark-line); }
.hunt-help-cards article > span { color:var(--orange); font-family:'Oswald'; font-size:18px; }
.hunt-help-cards h3 { font-size:27px; margin:12px 0 9px; }
.hunt-help-cards p { margin:0; font-size:13px; }

/* CEO section */
.ceo-section { background:#f1ece3; }
.ceo-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; }
.ceo-photo-wrap { position:relative; min-height:640px; }
.ceo-photo { position:absolute; inset:0 15% 0 0; }
.ceo-photo img { width:100%; height:100%; object-fit:contain; }
.ceo-mini-photo { position:absolute; right:0; bottom:7%; width:32%; aspect-ratio:1; border:10px solid #f1ece3; background:#ddd; overflow:hidden; }
.ceo-mini-photo img { width:100%; height:100%; object-fit:cover; }
.ceo-copy h2 { margin:16px 0 24px; }
.ceo-copy .lead { font-size:18px; color:#303630; }
.ceo-signature { display:flex; flex-direction:column; gap:4px; padding:22px 0; margin:28px 0 22px; border-top:1px solid var(--dark-line); border-bottom:1px solid var(--dark-line); }
.ceo-signature strong { font-family:'Oswald'; text-transform:uppercase; font-size:24px; }
.ceo-signature span { font-size:10px; text-transform:uppercase; letter-spacing:.12em; color:#777b74; }

/* Contact next-step section */
.contact-next { background:#ded7cc; }
.contact-next-grid { display:grid; grid-template-columns:.95fr 1.05fr; gap:85px; align-items:center; }
.contact-next-photo { min-height:560px; }
.contact-next-photo img { width:100%; height:100%; object-fit:contain; }
.contact-next-grid h2 { margin:16px 0 30px; }
.contact-next-steps { border-top:1px solid var(--dark-line); }
.contact-next-steps > div { display:grid; grid-template-columns:54px 1fr; column-gap:20px; padding:22px 0; border-bottom:1px solid var(--dark-line); }
.contact-next-steps > div > span { grid-row:1/3; color:var(--orange); font-family:'Oswald'; font-size:18px; padding-top:3px; }
.contact-next-steps h3 { font-size:24px; margin:0 0 6px; }
.contact-next-steps p { margin:0; font-size:13px; }

@media (max-width: 1000px) {
  .home-about-grid,.hunt-page-intro-grid,.ceo-grid,.contact-next-grid { grid-template-columns:1fr; gap:52px; }
  .home-about-photo,.contact-next-photo { min-height:500px; }
  .review-video-grid { grid-template-columns:1fr 1fr; }
  .review-video-card:last-child { grid-column:1/3; }
  .ceo-photo-wrap { min-height:560px; max-width:720px; }
}

@media (max-width: 700px) {
  .review-head { display:block; }
  .review-head p { margin-top:20px; }
  .success-strip,.review-video-grid,.hunt-help-cards { grid-template-columns:1fr; }
  .success-strip div,.success-strip div + div { padding:20px 0; border-left:0; border-bottom:1px solid var(--line); }
  .review-video-card:last-child { grid-column:auto; }
  .review-video-poster { height:260px; }
  .hunt-help-cards article,.hunt-help-cards article + article { padding:22px 0; border-left:0; border-bottom:1px solid var(--dark-line); }
  .simple-checks { grid-template-columns:1fr; }
  .home-about-photo,.contact-next-photo { min-height:360px; }
  .ceo-photo-wrap { min-height:450px; }
  .ceo-photo { inset:0 8% 0 0; }
  .ceo-mini-photo { width:34%; border-width:7px; }
}

/* =========================================================
   FINAL HUNTS / DETAIL IMAGE LAYOUT
   Scoped so the custom Home page stays completely unchanged.
   Goal: show each photo at its real aspect ratio, full-width in
   its grid cell, with no blurred side fill and no forced crop.
   ========================================================= */

/* Hunts listing: keep the complete species photo visible. */
body.hunts-page .service-image {
  aspect-ratio: auto;
  height: auto;
  overflow: hidden;
  background: #0B1712;
}
body.hunts-page .service-image img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: center;
  transform: none;
  filter: none;
}
body.hunts-page .service-card:hover .service-image img { transform: none; }
body.hunts-page .service-image::after { display: none; }

/* Remove the old blurred "side filler" only on Hunts / Hunt Details. */
body.hunts-page .no-crop-photo::before,
body.hunt-detail-page .no-crop-photo::before { display: none; }
body.hunts-page .no-crop-photo::after,
body.hunt-detail-page .no-crop-photo::after {
  box-shadow: inset 0 0 0 1px rgba(11,23,18,.10);
}
body.hunts-page .no-crop-photo,
body.hunt-detail-page .no-crop-photo {
  min-height: 0;
  height: auto;
  background: transparent;
}
body.hunts-page .no-crop-photo img,
body.hunt-detail-page .no-crop-photo img {
  position: static !important;
  display: block;
  width: 100% !important;
  height: auto !important;
  object-fit: initial !important;
  object-position: center !important;
  transform: none !important;
  filter: none !important;
}

/* One strong full-width photo, then two complete photos side-by-side. */
body.hunts-page .page-photo-mosaic,
body.hunt-detail-page .hunt-photo-mosaic {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  grid-template-rows: auto;
  gap: 12px;
  align-items: start;
}
body.hunts-page .page-photo-mosaic .photo-wide,
body.hunt-detail-page .hunt-photo-mosaic .showcase-main {
  grid-column: 1 / -1;
  grid-row: auto;
}
body.hunts-page .page-photo-mosaic figure,
body.hunt-detail-page .hunt-photo-mosaic figure {
  grid-row: auto;
  min-width: 0;
  min-height: 0;
  height: auto;
}

/* Related hunt photos: no forced crop. */
body.hunt-detail-page .related-card {
  height: auto;
  display: flex;
  flex-direction: column;
  background: #0B1712;
}
body.hunt-detail-page .related-card::after { display: none; }
body.hunt-detail-page .related-card img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  transform: none;
  filter: none;
}
body.hunt-detail-page .related-card:hover img { transform: none; }
body.hunt-detail-page .related-card > span {
  position: static;
  display: grid;
  gap: 7px;
  padding: 22px 24px 24px;
  background: #0B1712;
}

/* Tablet / mobile: keep full photos and remove fixed gallery heights. */
@media (max-width: 980px) {
  body.hunts-page .page-photo-mosaic,
  body.hunt-detail-page .hunt-photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 640px) {
  body.hunts-page .page-photo-mosaic,
  body.hunt-detail-page .hunt-photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  body.hunts-page .page-photo-mosaic .photo-wide,
  body.hunt-detail-page .hunt-photo-mosaic .showcase-main {
    grid-column: 1;
  }
}
