:root {
  --ink: #17202a;
  --ink-soft: #4e5358;
  --paper: #f7f4ee;
  --paper-deep: #efe9df;
  --white: #fff;
  --gold: #b58a3a;
  --gold-dark: #8d6724;
  --line: rgba(23, 32, 42, 0.16);
  --shadow: 0 24px 60px rgba(28, 31, 34, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 9999; background: #fff; padding: 12px 18px; }
.skip-link:focus { top: 16px; }

.topbar { background: #ece9e3; font-size: 12px; letter-spacing: .03em; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-left { display: flex; align-items: center; gap: 30px; }
.trade-link { font-weight: 600; }
.trade-link span { color: var(--gold); margin-left: 8px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(247, 244, 238, .94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,0,0,.06); }
.header-inner { min-height: 86px; display: grid; grid-template-columns: 190px 1fr auto; gap: 28px; align-items: center; }
.brand { width: max-content; display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.brand-main { font-family: var(--serif); font-weight: 600; letter-spacing: .25em; font-size: 26px; }
.brand-sub { margin-top: 7px; font-size: 10px; letter-spacing: .48em; color: var(--gold-dark); font-weight: 700; }
.brand-wave { margin-top: 7px; letter-spacing: -2px; color: var(--gold); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 34px; font-size: 13px; font-weight: 600; }
.main-nav a { position: relative; padding: 32px 0 27px; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 1px; background: var(--gold); transition: .3s; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.btn { border: 0; min-height: 48px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 700; transition: transform .25s, background .25s, color .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { border: 1px solid var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 9px; }
.menu-toggle span { display: block; height: 1px; margin: 6px 0; background: var(--ink); }

.hero { position: relative; min-height: 660px; overflow: hidden; background: #7c766c; }
.hero-slider, .hero-slide { min-height: 660px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); transition: transform 7s ease; }
.hero-slide.is-active > img { transform: scale(1.08); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,244,238,.98) 0%, rgba(247,244,238,.86) 35%, rgba(247,244,238,.18) 63%, rgba(13,17,22,.12) 100%); }
.hero-content { position: relative; z-index: 2; padding-top: 100px; max-width: 1180px; }
.hero-content .eyebrow { margin-bottom: 16px; }
.eyebrow { margin: 0 0 12px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 700; }
.hero h1, .hero h2 { margin: 0; max-width: 670px; font-family: var(--serif); font-weight: 500; font-size: clamp(56px, 6vw, 88px); line-height: .93; letter-spacing: -.035em; }
.hero-copy { max-width: 590px; margin: 24px 0 28px; color: #373d42; font-size: 15px; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link { border: 0; background: transparent; padding: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 14px; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.text-link span { color: var(--gold-dark); transition: transform .25s; }
.text-link:hover span { transform: translateX(5px); }
.text-link.dark { margin-top: 22px; color: var(--ink); }
.hero-proof { margin-top: 42px; display: flex; align-items: center; gap: 14px; max-width: 550px; font-size: 12px; }
.hero-proof strong { font-family: var(--serif); font-size: 19px; font-weight: 600; }
.hero-proof > span { height: 24px; width: 1px; background: rgba(0,0,0,.24); }
.hero-proof p { margin: 0; color: #4a4d50; }
.hero-controls { position: absolute; z-index: 5; bottom: 25px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; gap: 10px; pointer-events: none; }
.hero-controls button { pointer-events: auto; }
.slider-arrow { border: 1px solid rgba(255,255,255,.55); background: rgba(18,22,27,.28); color: #fff; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; }
.slider-dots { display: flex; gap: 9px; padding: 10px 14px; border-radius: 30px; background: rgba(18,22,27,.28); }
.dot { width: 7px; height: 7px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.dot.is-active { background: #fff; }

.trust-strip { background: #fff; border-bottom: 1px solid #e9e3d9; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { position: relative; text-align: center; padding: 32px 22px 29px; }
.trust-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 26%; height: 48%; width: 1px; background: #ddd6ca; }
.line-icon { display: block; margin-bottom: 10px; color: var(--gold); font-size: 28px; }
.trust-item h3 { margin: 0; font-size: 13px; }
.trust-item p { margin: 5px 0 0; color: #676b6f; font-size: 11px; line-height: 1.45; }

.section { padding: 94px 0; }
.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.story-copy h2, .section-heading h2, .partner-intro h2, .banner-content h2, .banner-content h1 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 4.7vw, 68px); line-height: .98; font-weight: 500; letter-spacing: -.025em; }
.story-copy > p:not(.eyebrow) { margin: 26px 0 0; color: var(--ink-soft); max-width: 500px; }
.story-image { position: relative; }
.story-image img { height: 510px; object-fit: cover; box-shadow: var(--shadow); }
.image-note { position: absolute; left: -42px; bottom: 34px; padding: 20px 25px; background: rgba(255,255,255,.94); box-shadow: 0 15px 30px rgba(0,0,0,.11); }
.image-note span, .image-note strong { display: block; }
.image-note span { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.image-note strong { margin-top: 5px; font-family: var(--serif); font-size: 22px; }

.journeys { background: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.journey-card { position: relative; min-height: 470px; overflow: hidden; background: #333; }
.journey-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .8s ease; }
.journey-card:hover img { transform: scale(1.06); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 26%, rgba(8,12,16,.86) 100%); }
.card-content { position: absolute; inset: auto 28px 26px; color: #fff; }
.card-content > span { display: inline-block; padding: 5px 8px; margin-bottom: 12px; background: rgba(255,255,255,.9); color: var(--ink); text-transform: uppercase; font-size: 9px; letter-spacing: .12em; font-weight: 700; }
.card-content h3 { margin: 0; font-family: var(--serif); font-size: 34px; line-height: 1; font-weight: 500; }
.card-content p { margin: 12px 0 17px; max-width: 310px; color: rgba(255,255,255,.84); font-size: 12px; line-height: 1.5; }
.card-link { padding: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.5); background: transparent; color: #fff; cursor: pointer; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.process { background: var(--paper); border-top: 1px solid #e8e0d4; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 26px; }
.process-step { display: grid; grid-template-columns: 92px 1fr; gap: 22px; padding: 30px 44px 20px 0; }
.process-step:not(:last-child) { border-right: 1px solid #d8cfc0; margin-right: 42px; }
.process-step > span { font-family: var(--serif); font-size: 58px; line-height: .8; color: #d4c4aa; }
.process-step h3 { margin: 0; font-family: var(--serif); font-size: 32px; font-weight: 500; }
.process-step p { margin: 7px 0 0; color: var(--ink-soft); font-size: 13px; }

.partners { background: #1c2227; color: #fff; }
.partners .container { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.partner-intro p:not(.eyebrow) { color: rgba(255,255,255,.7); max-width: 480px; }
.partners .btn-outline { color: #fff; border-color: rgba(255,255,255,.55); margin-top: 15px; }
.partners .btn-outline:hover { background: #fff; color: var(--ink); }
.testimonials { position: relative; min-height: 335px; padding: 46px; background: #f2ede5; color: var(--ink); }
.testimonial { display: none; }
.testimonial.is-active { display: block; animation: fade .45s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.testimonial blockquote { margin: 0; font-family: var(--serif); font-size: 34px; line-height: 1.1; font-weight: 500; }
.person { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.person > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 12px; font-weight: 700; }
.person strong, .person small { display: block; }
.person small { margin-top: 2px; color: #6f7275; }
.testimonial-nav { position: absolute; right: 32px; bottom: 24px; display: flex; align-items: center; gap: 13px; }
.testimonial-nav button { border: 0; background: transparent; cursor: pointer; font-size: 20px; }
.testimonial-count { color: #6d7073; font-size: 11px; }

.contact-banner { position: relative; min-height: 360px; display: grid; place-items: center; overflow: hidden; }
.contact-banner > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.banner-overlay { position: absolute; inset: 0; background: rgba(245,241,233,.73); }
.banner-content { position: relative; z-index: 2; text-align: center; }
.banner-content p { margin: 13px 0 25px; }
.page-banner { min-height: 420px; }
.page-banner .banner-content { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.page-banner .eyebrow { justify-content: center; }

.breadcrumb { padding: 22px 0; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { margin: 0 8px; color: #c9c0b1; }
.breadcrumb strong { color: var(--ink); font-weight: 700; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.gallery-grid img { height: 220px; object-fit: cover; box-shadow: var(--shadow); }

.highlights-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 16px; max-width: 560px; }
.highlights-list li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 15px; }
.highlights-list li::before { content: "⌁"; position: absolute; left: 0; top: -1px; color: var(--gold); font-size: 15px; }

.package-meta { display: flex; flex-wrap: wrap; gap: 28px; margin: 30px 0 0; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.package-meta div span { display: block; margin-bottom: 4px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 700; }
.package-meta div strong { font-family: var(--serif); font-size: 19px; font-weight: 500; }

.related-heading { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(30px, 3.2vw, 40px); font-weight: 500; }

.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.approach-card { padding: 36px 32px; background: #fff; box-shadow: var(--shadow); }
.approach-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.approach-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

.egypt-map { max-width: 620px; margin: 44px auto 0; }
.egypt-map svg { width: 100%; height: auto; display: block; }
.map-land { fill: var(--paper-deep); stroke: var(--line); stroke-width: 2; stroke-linejoin: round; }
.map-nile { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; opacity: .55; }
.map-pin { cursor: pointer; }
.map-pin-dot { fill: var(--gold); stroke: #fff; stroke-width: 2; transition: r .25s ease, fill .25s ease; }
.map-pin-label { font-family: var(--serif); font-size: 15px; font-weight: 500; fill: var(--ink); text-anchor: middle; text-transform: uppercase; letter-spacing: .04em; transition: fill .25s ease; }
.map-pin:hover .map-pin-dot { r: 9; fill: var(--gold-dark); }
.map-pin:hover .map-pin-label { fill: var(--gold-dark); }

.destination-thumb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 24px; margin-top: 34px; }
.destination-thumb { display: block; text-align: center; }
.destination-thumb-img { overflow: hidden; }
.destination-thumb-img img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .6s ease; }
.destination-thumb:hover .destination-thumb-img img { transform: scale(1.05); }
.destination-thumb .region { display: block; margin-top: 16px; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 700; }
.destination-thumb .name { display: block; margin-top: 4px; font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: .01em; color: var(--ink); }

.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.journal-card { display: flex; flex-direction: column; background: #fff; box-shadow: var(--shadow); }
.journal-card img { height: 210px; object-fit: cover; }
.journal-card-body { padding: 28px 26px 30px; }
.journal-card-body .eyebrow { margin-bottom: 10px; }
.journal-card-body h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 23px; font-weight: 500; line-height: 1.15; }
.journal-card-body p:not(.eyebrow) { margin: 0 0 18px; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-details h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.contact-details > div { margin-bottom: 30px; }
.contact-details p, .contact-details a { display: block; margin: 0 0 5px; color: var(--ink-soft); font-size: 14px; }
.contact-details a:hover { color: var(--gold-dark); }
.contact-panel { background: #fff; padding: 48px; box-shadow: var(--shadow); }
.page-form { display: grid; gap: 18px; margin-top: 0; }
.page-form label { display: grid; gap: 7px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.page-form input, .page-form textarea { width: 100%; border: 0; border-bottom: 1px solid #bfb6a9; background: transparent; padding: 12px 0; color: var(--ink); outline: none; text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 400; font-family: var(--sans); }
.page-form input:focus, .page-form textarea:focus { border-color: var(--gold); }
.page-form label.form-checkbox { display: flex; flex-direction: row; align-items: center; gap: 10px; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 13px; color: var(--ink-soft); }
.page-form label.form-checkbox input { width: 16px; height: 16px; flex: none; accent-color: var(--gold); }

.footer { background: #f1eee8; padding-top: 62px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .8fr 1fr; gap: 55px; padding-bottom: 46px; }
.footer-logo { margin-bottom: 18px; }
.footer-brand > p { max-width: 320px; color: #676a6d; font-size: 13px; }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid #bbb3a6; border-radius: 50%; font-size: 11px; }
.footer h3 { margin: 3px 0 18px; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a, .footer-grid p { margin: 0; color: #565a5e; font-size: 12px; }
.footer-grid a:hover { color: var(--gold-dark); }
.footer-bottom { min-height: 58px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #d9d2c7; color: #737577; font-size: 10px; }
.footer-bottom div { display: flex; gap: 25px; }

.modal { position: fixed; inset: 0; z-index: 3000; display: none; }
.modal.is-open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(12,17,21,.72); backdrop-filter: blur(5px); }
.modal-panel { position: absolute; right: 0; top: 0; width: min(560px, 100%); height: 100%; overflow-y: auto; padding: 64px 55px; background: var(--paper); box-shadow: -20px 0 50px rgba(0,0,0,.2); animation: slideIn .35s ease; }
@keyframes slideIn { from { transform: translateX(100%); } }
.modal-close { position: absolute; top: 22px; right: 28px; border: 0; background: transparent; font-size: 32px; cursor: pointer; }
.modal-panel h2 { margin: 0; font-family: var(--serif); font-size: 52px; line-height: 1; font-weight: 500; }
.modal-panel > p:not(.eyebrow) { color: #62666a; }
.modal form { display: grid; gap: 18px; margin-top: 30px; }
.modal label { display: grid; gap: 7px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.modal input, .modal textarea { width: 100%; border: 0; border-bottom: 1px solid #bfb6a9; background: transparent; padding: 12px 0; color: var(--ink); outline: none; text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 400; }
.modal input:focus, .modal textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-status { margin: 0; color: var(--gold-dark); font-size: 12px; }
/* A failed enquiry has to read as failed. Gold is the success colour here, so an error in
   gold would look like a confirmation -- the one place on the page where legibility has to
   win over the palette. */
.form-status.is-error { color: #9d2c2c; font-weight: 600; }

/* Honeypot. Positioned off-canvas rather than display:none, because some bots skip fields
   that are display:none yet still fill ones that are merely moved away. Kept out of the
   tab order by tabindex="-1" and out of screen readers by aria-hidden on the wrapper. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: 160px 1fr auto; }
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 11px; }
  .story-grid { gap: 45px; }
  .partners .container { gap: 50px; }
  .testimonial blockquote { font-size: 29px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 50px; }
  .contact-panel { padding: 36px; }
  .destination-thumb-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .container { width: min(100% - 32px, 720px); }
  .topbar-left span:first-child { display: none; }
  .site-header { top: 0; }
  .header-inner { min-height: 76px; grid-template-columns: 1fr auto; }
  .brand-main { font-size: 22px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .main-nav { position: fixed; left: 0; right: 0; top: 114px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 24px 28px; background: var(--paper); border-bottom: 1px solid #ddd5c8; box-shadow: 0 25px 50px rgba(0,0,0,.1); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid #e3ddd4; }
  .main-nav a::after { display: none; }
  .hero, .hero-slider, .hero-slide { min-height: 620px; }
  .hero-shade { background: linear-gradient(90deg, rgba(247,244,238,.95), rgba(247,244,238,.62) 62%, rgba(15,17,20,.2)); }
  .hero-content { padding-top: 85px; }
  .hero h1, .hero h2 { font-size: clamp(50px, 11vw, 72px); max-width: 620px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:last-child { grid-column: 1 / -1; }
  .trust-item:nth-child(2)::after, .trust-item:nth-child(4)::after { display: none; }
  .story-grid, .partners .container { grid-template-columns: 1fr; }
  .story-copy { order: 1; }
  .story-image { order: 2; }
  .story-image img { height: 430px; }
  .image-note { left: 20px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: 430px; }
  .approach-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .destination-thumb-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 24px 0; }
  .process-step:not(:last-child) { margin-right: 0; border-right: 0; border-bottom: 1px solid #d8cfc0; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .page-banner { min-height: 340px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 30px; }
}

@media (max-width: 620px) {
  .topbar-inner { min-height: 34px; }
  .topbar-left a { font-size: 10px; }
  .trade-link { font-size: 10px; }
  .main-nav { top: 110px; }
  .hero, .hero-slider, .hero-slide { min-height: 690px; }
  .hero-slide > img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(247,244,238,.95) 0%, rgba(247,244,238,.75) 55%, rgba(10,12,14,.25) 100%); }
  .hero-content { padding-top: 72px; }
  .hero h1, .hero h2 { font-size: 52px; line-height: .95; }
  .hero-copy { font-size: 13px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-proof { display: none; }
  .hero-controls { justify-content: flex-start; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 22px; display: grid; grid-template-columns: 48px 1fr; text-align: left; align-items: center; column-gap: 14px; }
  .trust-item .line-icon { grid-row: 1 / 3; margin: 0; }
  .trust-item:not(:last-child)::after { top: auto; left: 0; right: 0; bottom: 0; height: 1px; width: 100%; }
  .trust-item:last-child { grid-column: auto; }
  .section { padding: 72px 0; }
  .story-copy h2, .section-heading h2, .partner-intro h2, .banner-content h2, .banner-content h1 { font-size: 44px; }
  .story-image img { height: 380px; }
  .section-heading { align-items: flex-start; }
  .desktop-link { display: none; }
  .journey-card { min-height: 410px; }
  .process-step { grid-template-columns: 68px 1fr; }
  .process-step > span { font-size: 47px; }
  .partners .container { gap: 38px; }
  .testimonials { padding: 34px 26px 74px; }
  .testimonial blockquote { font-size: 28px; }
  .contact-banner { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { padding: 20px 0; flex-direction: column; gap: 10px; align-items: flex-start; }
  .modal-panel { padding: 58px 25px; }
  .modal-panel h2 { font-size: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .page-banner { min-height: 300px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 24px; }
  .package-meta { gap: 18px 26px; }
}
