/* ============================================================
   BHATTI TRANSFERS LIMITED
   Private hire & chauffeur services — Hounslow / Heathrow
   Global Stylesheet
   ============================================================ */

:root {
  --ink:        #08111f;
  --midnight:   #0c1a2e;
  --navy:       #12263f;
  --steel:      #1d3a5c;
  --gold:       #c9a227;
  --gold-light: #e6c757;
  --gold-soft:  #f6efd8;
  --sky:        #2f7fd4;
  --body:       #4a5866;
  --muted:      #7f8b98;
  --line:       #e4e9ee;
  --line-dark:  rgba(255,255,255,0.12);
  --bg:         #ffffff;
  --bg-soft:    #f5f7fa;
  --bg-tint:    #eef3f8;
  --white:      #ffffff;
  --success:    #1f9d55;

  --grad-gold: linear-gradient(135deg, #b8901c 0%, #c9a227 45%, #e6c757 100%);
  --grad-dark: linear-gradient(140deg, #08111f 0%, #12263f 60%, #1d3a5c 100%);

  --shadow-sm: 0 2px 10px rgba(8, 17, 31, 0.06);
  --shadow-md: 0 14px 38px rgba(8, 17, 31, 0.10);
  --shadow-lg: 0 30px 74px rgba(8, 17, 31, 0.20);

  --radius:    14px;
  --radius-lg: 24px;
  --maxw:      1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --head: "Sora", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }
p + p { margin-top: 14px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: var(--bg-tint); }
.section-dark { background: var(--grad-dark); color: #b9c8d8; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lead { color: #c8d6e4; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--head); font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); display: block;
}
.lead { font-size: 1.12rem; color: var(--body); max-width: 62ch; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }
.section-head { margin-bottom: 52px; }
.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--head); font-weight: 600; font-size: 0.96rem;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease,
    background .18s ease, color .18s ease, border-color .18s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--grad-gold); color: #14203a; box-shadow: 0 10px 26px rgba(201,162,39,.34); }
.btn-gold:hover { box-shadow: 0 16px 34px rgba(201,162,39,.44); }
.btn-dark { background: var(--midnight); color: #fff; }
.btn-dark:hover { background: var(--navy); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-light { border-color: rgba(255,255,255,.32); color: #fff; }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.topbar {
  background: var(--midnight); color: #9fb2c6; font-size: 0.8rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap;
}
.topbar a:hover { color: var(--gold-light); }
.topbar-list { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-list li { display: flex; align-items: center; gap: 7px; }
.topbar strong { color: #fff; font-weight: 600; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; background: var(--grad-dark);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,162,39,.4);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--head); font-weight: 700; font-size: 1.02rem;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: block; padding: 10px 14px; border-radius: 10px;
  font-size: 0.94rem; font-weight: 500; color: var(--ink);
  transition: background .16s ease, color .16s ease;
}
.nav-links > li > a:hover { background: var(--bg-soft); color: var(--gold); }
.nav-links > li > a.active { color: var(--gold); font-weight: 600; }
.nav-cta { margin-left: 10px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 11px; background: #fff; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--grad-dark); color: #c2d1e0;
  padding: 104px 0 112px; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 420px at 82% 12%, rgba(201,162,39,.20), transparent 62%),
    radial-gradient(700px 380px at 10% 88%, rgba(47,127,212,.18), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .lead { color: #c8d6e4; font-size: 1.16rem; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px; font-size: 0.83rem; font-weight: 500;
  background: rgba(255,255,255,.07); border: 1px solid var(--line-dark); color: #dbe6f0;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--gold-light); }
.hero-note {
  margin-top: 26px; font-size: 0.86rem; color: #93a7bb;
  display: flex; align-items: center; gap: 9px;
}
.page-hero {
  background: var(--grad-dark); color: #c2d1e0;
  padding: 78px 0 82px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(760px 340px at 78% 6%, rgba(201,162,39,.18), transparent 62%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .lead { color: #c8d6e4; }
.breadcrumb {
  font-size: 0.82rem; color: #8fa4b9; margin-bottom: 18px;
  display: flex; gap: 9px; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Quote card ---------- */
.quote-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-lg); color: var(--body);
}
.quote-card h3 { margin-bottom: 6px; }
.quote-card .qc-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink);
  margin-bottom: 7px; font-family: var(--head); letter-spacing: .01em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 11px; font-family: var(--font); font-size: 0.95rem;
  color: var(--ink); background: #fff; transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,39,.14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-hint { font-size: 0.78rem; color: var(--muted); margin-top: 6px; }
.check-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.check-row input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--gold); }
.check-row label { font-size: 0.85rem; color: var(--body); font-weight: 400; font-family: var(--font); }
.form-success {
  display: none; margin-top: 16px; padding: 15px 18px; border-radius: 12px;
  background: #e9f7ef; border: 1px solid #b7e2c8; color: #1b6b3d;
  font-size: 0.9rem; font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--gold-soft); color: #8a6f14; margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-dark {
  background: rgba(255,255,255,.05); border-color: var(--line-dark); color: #b9c8d8;
}
.card-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(201,162,39,.4); }
.card-dark .card-icon { background: rgba(201,162,39,.16); color: var(--gold-light); }
.card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-family: var(--head); font-weight: 600; font-size: 0.88rem; color: var(--gold);
}
.card-link:hover { gap: 12px; }
.card-list { margin-top: 16px; }
.card-list li {
  position: relative; padding-left: 24px; font-size: 0.92rem; margin-bottom: 8px;
}
.card-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px;
  border-radius: 3px; background: var(--gold);
}

/* ---------- Feature split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.split-media {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--grad-dark);
  min-height: 380px; position: relative; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; padding: 40px;
}
.split-media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 30% 20%, rgba(201,162,39,.22), transparent 65%);
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 26px 18px; }
.stat-num {
  font-family: var(--head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--gold); line-height: 1; margin-bottom: 9px; letter-spacing: -0.03em;
}
.stat-label { font-size: 0.88rem; color: inherit; opacity: .85; }
.section-dark .stat-label { color: #a9bccf; }

/* ---------- Fleet ---------- */
.fleet-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fleet-visual {
  height: 168px; background: var(--grad-dark); display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.fleet-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 200px at 50% 120%, rgba(201,162,39,.28), transparent 70%);
}
.fleet-visual svg { width: 108px; height: 108px; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.fleet-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.fleet-body h3 { margin-bottom: 4px; }
.fleet-class {
  font-size: 0.72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; font-family: var(--head); margin-bottom: 12px;
}
.fleet-spec {
  display: flex; gap: 20px; padding: 14px 0; margin: 14px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.fleet-spec div { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; }
.fleet-spec svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.fleet-body .btn { margin-top: auto; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--head); font-weight: 700; font-size: 2.1rem;
  color: var(--gold); opacity: .32; line-height: 1; display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
thead th {
  background: var(--bg-soft); font-family: var(--head); font-size: 0.8rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  text-align: left; padding: 15px 20px; font-weight: 700; white-space: nowrap;
}
tbody td { padding: 15px 20px; border-top: 1px solid var(--line); font-size: 0.93rem; }
tbody tr:hover { background: var(--bg-soft); }
td strong { color: var(--ink); }

/* ---------- Accordion ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.accordion-item + .accordion-item { border-top: 1px solid var(--line); }
.accordion-head {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 24px; cursor: pointer; font-family: var(--head); font-weight: 600;
  color: var(--ink); font-size: 1.02rem; transition: background .16s ease;
}
.accordion-head:hover { background: var(--bg-soft); }
.accordion-head::after {
  content: "+"; font-size: 1.5rem; color: var(--gold); flex: none;
  transition: transform .22s ease; line-height: 1;
}
.accordion-item.open .accordion-head::after { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-body p { padding: 0 24px 22px; font-size: 0.95rem; }

/* ---------- Area / pill lists ---------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 9px 17px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: 0.88rem; color: var(--ink); transition: border-color .16s ease, color .16s ease;
}
.pill:hover { border-color: var(--gold); color: var(--gold); }
.section-dark .pill { background: rgba(255,255,255,.06); border-color: var(--line-dark); color: #dbe6f0; }

.tick-list li {
  position: relative; padding-left: 32px; margin-bottom: 13px; font-size: 0.97rem;
}
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 21px; height: 21px;
  border-radius: 50%; background: var(--gold-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6f14' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}
.section-dark .tick-list li::before {
  background-color: rgba(201,162,39,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6c757' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-gold); color: #14203a; padding: 68px 0; }
.cta-band h2 { color: #14203a; margin-bottom: 12px; }
.cta-band p { color: #3a3418; max-width: 58ch; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap;
}

/* ---------- Contact blocks ---------- */
.contact-block {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--gold-soft);
  color: #8a6f14; display: grid; place-items: center; flex: none;
}
.contact-icon svg { width: 21px; height: 21px; }
.contact-block h4 { margin-bottom: 3px; }
.contact-block p, .contact-block a { font-size: 0.94rem; }
.contact-block a:hover { color: var(--gold); }
.section-dark .contact-block { border-color: var(--line-dark); }
.section-dark .contact-icon { background: rgba(201,162,39,.16); color: var(--gold-light); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #8ea1b5; padding: 72px 0 0; font-size: 0.92rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 52px;
}
.site-footer h4 {
  color: #fff; font-size: 0.82rem; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 18px; font-weight: 700;
}
.site-footer a:hover { color: var(--gold-light); }
.footer-links li { margin-bottom: 10px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 16px; max-width: 34ch; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 24px 0 30px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 0.84rem; color: #708598;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .grid-4, .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split-media { min-height: 280px; order: -1; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 16px 20px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 13px 10px; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; }
  .site-header { position: relative; }
  .grid-3 { grid-template-columns: 1fr; }
  .topbar-list { gap: 14px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .grid-2, .grid-4, .stats, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 80px; }
  .topbar .container { justify-content: center; text-align: center; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   IMAGE-DRIVEN COMPONENTS
   ============================================================ */

/* ---------- Full-bleed photo hero ---------- */
.media-hero {
  position: relative; min-height: 640px; display: flex; align-items: center;
  padding: 96px 0; overflow: hidden; background: var(--ink);
}
.media-hero-bg { position: absolute; inset: 0; z-index: 0; }
.media-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.media-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,17,31,.94) 0%, rgba(8,17,31,.82) 38%, rgba(8,17,31,.42) 70%, rgba(8,17,31,.55) 100%),
    radial-gradient(800px 400px at 88% 15%, rgba(201,162,39,.22), transparent 62%);
}
.media-hero .container { position: relative; z-index: 2; }
.media-hero h1 { color: #fff; margin-bottom: 20px; }
.media-hero .lead { color: #d2deea; font-size: 1.16rem; }

/* Page hero with photo backdrop */
.page-hero.has-img { padding: 96px 0 100px; }
.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(8,17,31,.93) 0%, rgba(8,17,31,.78) 45%, rgba(8,17,31,.5) 100%);
}
.page-hero.has-img::before { z-index: 1; }
.page-hero.has-img .container { z-index: 2; }

/* ---------- Image cards ---------- */
.img-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.img-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.img-card figure { margin: 0; overflow: hidden; background: var(--bg-tint); position: relative; }
.img-card figure img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.img-card:hover figure img { transform: scale(1.07); }
.img-card figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,17,31,.42) 100%);
}
.img-card-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.img-card-body h3 { margin-bottom: 9px; }
.img-card-body p { font-size: .94rem; }
.img-card-body .card-link { margin-top: auto; padding-top: 16px; }
.img-card-tag {
  position: absolute; left: 16px; top: 16px; z-index: 2;
  background: rgba(8,17,31,.82); color: var(--gold-light);
  font-family: var(--head); font-weight: 600; font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(6px);
}

/* ---------- Split with real photo ---------- */
.split-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative; background: var(--bg-tint);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-photo.tall img { aspect-ratio: 3 / 4; }
.split-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px;
  background: linear-gradient(0deg, rgba(8,17,31,.88), transparent);
  color: #fff; font-size: .9rem; font-family: var(--head); font-weight: 600;
}

/* Stacked photo collage */
.photo-stack { position: relative; padding-bottom: 56px; padding-right: 48px; }
.photo-stack .p1 {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.photo-stack .p1 img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.photo-stack .p2 {
  position: absolute; right: 0; bottom: 0; width: 52%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 5px solid #fff;
}
.photo-stack .p2 img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.section-dark .photo-stack .p2 { border-color: var(--midnight); }

/* ---------- Photo band / parallax strip ---------- */
.photo-band {
  position: relative; padding: 108px 0; overflow: hidden;
  background: var(--ink); color: #d2deea;
}
.photo-band-bg { position: absolute; inset: 0; }
.photo-band-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.photo-band-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,17,31,.92), rgba(8,17,31,.62) 60%, rgba(8,17,31,.85));
}
.photo-band .container { position: relative; z-index: 2; }
.photo-band h2 { color: #fff; }
.photo-band .lead { color: #cfdcea; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure {
  margin: 0; border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--bg-tint); cursor: pointer;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.gallery figure:hover img { transform: scale(1.08); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px;
  background: linear-gradient(0deg, rgba(8,17,31,.9), transparent);
  color: #fff; font-size: .84rem; font-family: var(--head); font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease;
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }
.gallery .wide { grid-column: span 2; }
.gallery .tall { grid-row: span 2; }
.gallery .wide img, .gallery .tall img { aspect-ratio: auto; height: 100%; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(6,12,22,.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08);
  color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.18); }
.lightbox-cap {
  position: absolute; bottom: 28px; left: 0; right: 0; text-align: center;
  color: #cfdcea; font-size: .9rem;
}

/* ---------- Logo / trust strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 34px; padding: 26px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px; font-size: .88rem;
  font-family: var(--head); font-weight: 600; color: var(--ink);
}
.trust-item svg { width: 19px; height: 19px; color: var(--gold); flex: none; }
.section-dark .trust-item { color: #dbe6f0; }

/* ---------- Dropdown nav ---------- */
.has-drop { position: relative; }
.has-drop > a::after {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg); opacity: .55;
}
.drop {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 252px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 9px; z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop {
  opacity: 1; visibility: visible; transform: none;
}
.drop li a {
  display: block; padding: 10px 14px; border-radius: 9px;
  font-size: .9rem; color: var(--ink); white-space: nowrap;
}
.drop li a:hover { background: var(--bg-soft); color: var(--gold); }
.drop-col { columns: 2; column-gap: 4px; }
.drop-wide { min-width: 430px; }

/* ---------- Local area cards ---------- */
.area-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  display: block; min-height: 200px; background: var(--ink);
}
.area-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .62; transition: transform .6s cubic-bezier(.2,.7,.3,1), opacity .3s ease;
}
.area-card:hover img { transform: scale(1.08); opacity: .48; }
.area-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,17,31,.92) 8%, rgba(8,17,31,.25) 70%);
}
.area-card-body {
  position: absolute; inset: auto 0 0 0; padding: 22px; z-index: 2; color: #fff;
}
.area-card-body h3 { color: #fff; font-size: 1.15rem; margin-bottom: 3px; }
.area-card-body span { font-size: .84rem; color: var(--gold-light); font-weight: 600; }

/* ---------- Price table ---------- */
.price-note {
  background: var(--gold-soft); border: 1px solid #e6d9a8; border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 32px;
}
.price-note h4 { margin-bottom: 6px; color: #6f5910; }
.price-note p { font-size: .93rem; color: #6f5910; }

/* ---------- Responsive additions ---------- */
@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .media-hero { min-height: 520px; }
  .photo-stack { padding-right: 0; padding-bottom: 40px; }
  .photo-stack .p2 { width: 46%; }
}
@media (max-width: 860px) {
  .drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: 2px 0 8px 14px; padding: 0 0 0 8px; min-width: 0;
    display: none;
  }
  .has-drop.open .drop { display: block; }
  .has-drop:hover .drop { opacity: 1; visibility: visible; }
  .drop-col { columns: 1; }
  .drop-wide { min-width: 0; }
  .has-drop > a { display: flex; justify-content: space-between; align-items: center; }
}
@media (max-width: 620px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery .wide, .gallery .tall { grid-column: auto; grid-row: auto; }
  .gallery .wide img, .gallery .tall img { aspect-ratio: 1; }
  .media-hero { min-height: 480px; padding: 72px 0; }
  .photo-band { padding: 72px 0; }
  .photo-stack .p2 { position: static; width: 100%; margin-top: 14px; border-width: 0; }
  .photo-stack { padding-bottom: 0; }
}
