/*
Theme Name: WestSide Taxi Brisbane
Theme URI: https://westsidetaxi.com.au/
Author: WestSide Taxi
Description: Accessible, responsive and locally SEO-focused theme for WestSide Taxi Brisbane.
Version: 2.2.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: westside-taxi
*/

:root {
  --ink: #10243a;
  --navy: #0b1f33;
  --navy-2: #123b5f;
  --blue: #0866c6;
  --blue-dark: #0755a5;
  --yellow: #ffc400;
  --yellow-soft: #fff4c7;
  --cream: #f5f7fa;
  --white: #ffffff;
  --muted: #56697c;
  --line: #d8e1ea;
  --green: #16764b;
  --shadow: 0 22px 60px rgba(11, 31, 51, 0.14);
  --radius: 22px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 840;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.35rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  border-radius: 8px;
  background: var(--white);
  padding: 12px 16px;
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 225, 234, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo-window {
  position: relative;
  display: block;
  width: 142px;
  height: 66px;
  overflow: hidden;
  border-radius: 5px;
  background-color: #000;
  background-image: url("assets/images/westside-taxi-logo.png");
  background-position: center 48%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.91rem;
  font-weight: 760;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--yellow);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-call {
  display: flex;
  min-width: 190px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  background: var(--yellow);
  padding: 10px 15px;
  color: var(--navy);
}

.nav-call svg {
  width: 1.3rem;
  height: 1.3rem;
}

.nav-call span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.nav-call small {
  margin-bottom: 4px;
  font-size: 0.68rem;
  font-weight: 760;
}

.nav-call strong {
  font-size: 0.99rem;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
}

.mobile-menu nav {
  position: absolute;
  top: 58px;
  right: 0;
  display: grid;
  width: min(300px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  font-weight: 750;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 68px;
  background:
    radial-gradient(circle at 5% 10%, rgba(8, 102, 198, 0.08), transparent 33%),
    linear-gradient(125deg, #edf6ff 0%, #ffffff 53%, #fff8dc 100%);
}

.hero::before {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 196, 0, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 880;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  content: "";
}

.highlight {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.highlight::after {
  position: absolute;
  right: 0;
  bottom: 0.09em;
  left: 0;
  z-index: -1;
  height: 0.18em;
  border-radius: 4px;
  background: var(--yellow);
  content: "";
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
}

.hero-actions,
.final-cta-actions,
.booking-panel-actions,
.page-cta-inner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  border-radius: 13px;
  padding: 0 21px;
  font-size: 0.96rem;
  font-weight: 820;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(255, 196, 0, 0.27);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd02d;
}

.button-secondary {
  border-color: #b5c7d9;
  background: rgba(255, 255, 255, 0.75);
  color: var(--navy);
}

.button-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-light,
.button-white {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--white);
}

.availability-note {
  margin: 13px 0 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li,
.check-list li {
  position: relative;
  padding-left: 25px;
  font-size: 0.88rem;
  font-weight: 730;
}

.trust-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.02em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e3f4eb;
  color: var(--green);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 950;
}

.hero-media {
  position: relative;
  min-height: 540px;
}

.hero-media > img {
  width: 100%;
  height: 540px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-contact-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  display: flex;
  min-width: 290px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(11, 31, 51, 0.95);
  padding: 19px 22px;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(11, 31, 51, 0.3);
  backdrop-filter: blur(8px);
}

.hero-contact-card span {
  color: #b9cee1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact-card strong {
  margin-block: 2px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.hero-contact-card small {
  color: #dce9f4;
}

.hero-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 12px 30px rgba(11, 31, 51, 0.18);
}

.hero-badge strong {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-badge span {
  max-width: 72px;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.15;
}

.booking-strip {
  border-block: 1px solid #e0e7ee;
  background: var(--navy);
  color: var(--white);
}

.booking-strip-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.91rem;
}

.booking-strip-inner strong {
  color: var(--yellow);
}

.booking-strip-inner a {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--cream);
}

.section-ink {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(8, 102, 198, 0.38), transparent 38%),
    var(--navy);
  color: var(--white);
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading > p:last-child,
.feature-copy > p,
.faq-intro > p,
.proof-copy > p,
.service-card > p:not(.card-kicker),
.step-card p {
  color: var(--muted);
}

.section-heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 80px;
  text-align: left;
}

.section-heading-split > div:last-child {
  padding-bottom: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 34px;
  box-shadow: 0 12px 34px rgba(11, 31, 51, 0.07);
}

.service-card-featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.service-card-featured h3,
.service-card-featured > p:not(.card-kicker) {
  color: var(--white);
}

.service-card-featured > p:not(.card-kicker) {
  color: #c9d8e6;
}

.service-number {
  margin-bottom: 45px;
  color: #c5d2de;
  font-size: 3.8rem;
  font-weight: 880;
  letter-spacing: -0.09em;
  line-height: 1;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.2);
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card-featured .card-kicker {
  color: var(--yellow);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 820;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.service-card-featured .text-link {
  color: var(--yellow);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.proof-copy h2 {
  color: var(--white);
}

.proof-copy > p {
  color: #c9d8e6;
}

.eyebrow-on-dark {
  color: #a8d4ff;
}

.proof-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.proof-item {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 30px;
}

.proof-item:nth-child(2n) {
  border-right: 0;
}

.proof-item:nth-child(n + 3) {
  border-bottom: 0;
}

.proof-item strong {
  color: var(--yellow);
  font-size: 2.5rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.proof-item span {
  margin-top: 10px;
  color: #d5e2ed;
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 68px;
}

.feature-image {
  position: relative;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.photo-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  max-width: 250px;
  flex-direction: column;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  padding: 12px 15px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.photo-label span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
}

.feature-copy .check-list {
  display: grid;
  margin: 26px 0 30px;
}

.feature-copy .check-list li {
  font-size: 0.98rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.area-card {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.05);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.area-card:hover,
.area-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--blue);
}

.area-card > span {
  color: var(--navy);
  font-size: 1.24rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.area-card small {
  color: var(--muted);
}

.area-card b {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--blue);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  border-top: 4px solid var(--yellow);
  border-radius: 0 0 18px 18px;
  background: var(--cream);
  padding: 30px;
}

.step-card > span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 850;
}

.booking-panel {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 22px;
  background: linear-gradient(130deg, var(--navy), var(--navy-2));
  padding: 34px 38px;
  color: var(--white);
}

.booking-panel h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.booking-panel p {
  max-width: 620px;
  margin-bottom: 0;
  color: #cfdeea;
}

.booking-panel-label {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: 132px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  padding: 0 22px;
}

.faq-list summary {
  display: flex;
  min-height: 68px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-soft);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 42px 22px 0;
  color: var(--muted);
}

.final-cta,
.page-cta {
  background: var(--yellow);
}

.final-cta-inner,
.page-cta-inner {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.final-cta h2,
.page-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.eyebrow-on-yellow {
  color: var(--navy);
}

.eyebrow-on-yellow::before {
  background: var(--navy);
}

.site-footer {
  padding: 72px 0 112px;
  background: #071827;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 70px;
}

.footer-grid > div:not(.footer-about) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid h2 {
  margin: 6px 0 10px;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span,
.footer-about p {
  color: #bdcedc;
  font-size: 0.89rem;
}

.footer-about > p {
  max-width: 470px;
  margin: 24px 0 8px;
}

.footer-about .footer-small {
  color: #8fa7ba;
  font-size: 0.76rem;
}

.footer-legal {
  display: flex;
  margin-top: 52px;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: #89a1b5;
  font-size: 0.74rem;
}

.action-bar {
  display: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--blue);
}

.page-hero {
  padding: 62px 0 72px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 196, 0, 0.26), transparent 32%),
    linear-gradient(120deg, #eef7ff, #fff 65%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(2.9rem, 5vw, 4.7rem);
}

.page-hero p.page-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.16rem;
}

.page-hero-card {
  border-radius: 24px;
  background: var(--navy);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.page-hero-card h2 {
  color: var(--white);
  font-size: 1.7rem;
}

.page-hero-card p {
  color: #c9d8e6;
}

.page-content {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  align-items: start;
  gap: 70px;
}

.content-stack {
  display: grid;
  gap: 48px;
}

.content-block {
  border-bottom: 1px solid var(--line);
  padding-bottom: 42px;
}

.content-block:last-child {
  border-bottom: 0;
}

.content-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.side-card {
  position: sticky;
  top: 126px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  padding: 28px;
}

.side-card h2 {
  font-size: 1.45rem;
}

.side-card dl {
  margin: 0 0 24px;
}

.side-card dt {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.side-card dd {
  margin: 2px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.areas-list a,
.areas-list span {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  padding: 15px 17px;
  font-weight: 760;
}

.areas-list a:hover,
.areas-list a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nearby-links span {
  border-radius: 999px;
  background: var(--yellow-soft);
  padding: 8px 13px;
  font-size: 0.84rem;
  font-weight: 750;
}

.page-cta-inner p {
  margin-bottom: 0;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-call {
    margin-left: auto;
  }

  .hero-grid,
  .proof-grid,
  .feature-split,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media > img {
    height: clamp(390px, 62vw, 590px);
  }

  .service-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-number {
    margin-bottom: 28px;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .page-content {
    grid-template-columns: 1fr;
  }

  .side-card,
  .faq-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .topbar-inner {
    min-height: 34px;
    justify-content: center;
    text-align: center;
  }

  .topbar-inner span:last-child {
    display: none;
  }

  .nav {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo-window {
    width: 116px;
    height: 54px;
  }

  .nav-call {
    display: none;
  }

  .hero {
    padding: 52px 0 42px;
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .hero-media > img {
    height: 400px;
    border-radius: 22px;
  }

  .hero-contact-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .hero-badge {
    top: -22px;
    left: -7px;
    width: 96px;
    height: 96px;
    border-width: 5px;
  }

  .booking-strip-inner {
    min-height: 88px;
    flex-wrap: wrap;
    gap: 3px 8px;
    padding-block: 15px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    padding: 28px;
  }

  .proof-grid {
    gap: 45px;
  }

  .proof-panel {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item {
    min-height: 145px;
    padding: 21px;
  }

  .proof-item strong {
    font-size: 2rem;
  }

  .feature-split {
    gap: 42px;
  }

  .feature-image {
    display: grid;
    gap: 12px;
  }

  .feature-image img {
    aspect-ratio: 3 / 2;
    border-radius: 22px;
    object-fit: contain;
    background: var(--cream);
  }

  .photo-label {
    position: static;
    max-width: none;
    background: var(--yellow-soft);
  }

  .area-grid,
  .areas-list {
    grid-template-columns: 1fr;
  }

  .area-card {
    min-height: 120px;
  }

  .booking-panel,
  .final-cta-inner,
  .page-cta-inner {
    display: grid;
    padding: 28px;
  }

  .booking-panel-actions .button,
  .final-cta-actions .button,
  .page-cta-inner > div:last-child .button {
    width: 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .final-cta-inner,
  .page-cta-inner {
    min-height: 0;
    padding-block: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }

  .action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-top: 1px solid var(--line);
    background: var(--white);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 30px rgba(11, 31, 51, 0.12);
  }

  .action-bar a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 11px;
    background: var(--navy);
    color: var(--white);
    font-weight: 820;
  }

  .action-bar a:first-child {
    background: var(--yellow);
    color: var(--navy);
  }

  .page-hero {
    padding: 42px 0 56px;
  }

  .page-hero-grid {
    gap: 34px;
  }
}

@media (max-width: 430px) {
  .brand-logo-window {
    width: 106px;
    height: 49px;
  }

  .hero-media > img {
    height: 340px;
  }

  .proof-panel {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2n),
  .proof-item:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
