/* ============================================================
   FLOWPRO ONE-PAGE WEBSITE
   ------------------------------------------------------------
   EASY COLOR CONTROL:
   Change these 6 values and the palette cascades site-wide.
   ============================================================ */
:root {
  --color-primary: #005299;   /* main dark blue */
  --color-secondary: #50abf9; /* teal / blue accent */
  --color-accent: #50abf9;    /* CTA yellow */
  --color-surface: #f3f7f9;   /* light section background */
  --color-text: #52616b;      /* body text */
  --color-white: #ffffff;     /* white */

  --header-height: 84px;
  --container: 1180px;
  --radius: 6px;
  --shadow: 0 18px 50px color-mix(in srgb, var(--color-primary) 14%, transparent);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-dark { color: var(--color-white); background: var(--color-primary); }

h1, h2, h3, h4 { color: var(--color-primary); line-height: 1.08; margin: 0 0 20px; letter-spacing: -0.035em; }
h1 { font-size: clamp(90px, 50px, 90px); font-weight: 800; }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.4rem); font-weight: 850; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 20px; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--color-white); }
.eyebrow { margin: 0 0 14px; color: var(--color-secondary); font-size: .78rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.section-dark .eyebrow { color: var(--color-accent); }
.section-intro { max-width: 650px; font-size: 1.06rem; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 25px;
  border: 0;
  border-radius: 25px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(.96); }
.btn-accent { color: var(--color-primary); background: var(--color-accent); }
.btn-primary { color: var(--color-white); background: var(--color-primary); }
.btn-small { min-height: 44px; padding-inline: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-white) 94%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--color-primary) 10%, transparent);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { width: 38px; height: 38px; color: var(--color-secondary); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { color: var(--color-primary); font-size: 1.28rem; font-weight: 950; letter-spacing: -.04em; }
.brand-text span { color: var(--color-secondary); }
.desktop-nav { display: flex; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; padding: 31px 0; font-size: 1.1rem; font-weight: 760; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 24px; width: 0; height: 2px; background: var(--color-accent); transition: width .2s ease; }
.desktop-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 850; white-space: nowrap; }
.phone-link svg { width: 18px; color: var(--color-secondary); }
.header-cta { min-height: 44px; padding-inline: 18px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--color-primary); transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu {
  position: absolute;
  z-index: 10;

  top: 100%;
  left: 0;
  right: 0;

  height: calc(100dvh - var(--header-height));

  background: color-mix(
    in srgb,
    var(--color-primary) 92%,
    transparent
  );

  color: var(--color-white);

  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}


.mobile-menu nav { width: min(calc(100% - 48px), 520px); margin: 0 auto; padding: 30px 0; display: grid; }
.mobile-menu nav > a:not(.btn) {
  display: block;

  padding: 17px 0;

  color: var(--color-white);

  border-bottom: 1px solid
    color-mix(in srgb, var(--color-white) 15%, transparent);

  font-size: 1.35rem;
  font-weight: 800;
}
.mobile-menu .btn {
  width: 100%;
  margin-top: 24px;
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 690px; overflow: hidden; isolation: isolate; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, color-mix(in srgb, var(--color-primary) 98%, transparent) 0 50%, color-mix(in srgb, var(--color-primary) 58%, transparent) 100%); }
.hero-bg, .stats-bg, .emergency-bg, .booking-bg { position: absolute; inset: -12%; z-index: -2; background-repeat: no-repeat; background-position: center; background-size: cover; will-change: transform; }
.hero-bg { background-image: url("assets/placeholder-landscape.svg"); opacity: .34; }
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 60px; }
.hero-copy { align-self: center; padding: 80px 0 140px; }
.hero h1 span { color: var(--color-accent); }
.hero-lead { max-width: 650px; color: color-mix(in srgb, var(--color-white) 82%, transparent); font-size: 1.14rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero-phone { display: grid; gap: 1px; }
.hero-phone small { color: color-mix(in srgb, var(--color-white) 68%, transparent); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-phone strong { font-size: 1.25rem; }
.hero-figure { align-self: end; max-width: 510px; justify-self: end; }
.hero-figure img { object-fit: cover; object-position: center top; opacity: .95; }

/* ---------- Overlap service cards ---------- */
.service-cards-wrap { position: relative; z-index: 4; margin-top: -86px; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); box-shadow: var(--shadow); }
.service-card { min-height: 255px; padding: 38px; background: var(--color-white); border-right: 1px solid color-mix(in srgb, var(--color-primary) 9%, transparent); }
.service-card:last-child { border-right: 0; }
.icon-badge { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 28px; color: var(--color-white); background: var(--color-secondary); font-weight: 900; }
.service-card p { font-size: .95rem; }
.service-card a { color: var(--color-primary); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.service-card a span { color: var(--color-secondary); }

/* ---------- Split sections ---------- */
.services-section { padding-top: 130px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 95px); align-items: center; }
.media-card { position: relative; }
.media-card img { min-height: 520px; object-fit: cover; background: var(--color-surface); }
.media-card-label { position: absolute; right: -28px; bottom: 28px; max-width: 260px; padding: 22px 25px; color: var(--color-primary); background: var(--color-accent); font-size: 1.05rem; font-weight: 900; line-height: 1.25; }
.section-copy h2 { max-width: 680px; }
.service-list { margin-top: 28px; border-top: 1px solid color-mix(in srgb, var(--color-primary) 12%, transparent); }
.service-list a { display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 12%, transparent); transition: color .2s ease, padding-left .2s ease; }
.service-list a:hover { color: var(--color-secondary); padding-left: 6px; }
.service-list strong, .service-list small { display: block; }
.service-list strong { color: var(--color-primary); font-size: 1.02rem; }
.service-list small { margin-top: 2px; font-size: .85rem; }
.service-list b { color: var(--color-secondary); font-size: 1.1rem; }
.service-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-accent); }

/* ---------- Stats / parallax ---------- */
.stats-band { position: relative; overflow: hidden; isolation: isolate; padding: 105px 0; }
.stats-band::after, .emergency-band::after, .booking-section::after { content: ""; position: absolute; inset: 0; z-index: -1; background: color-mix(in srgb, var(--color-primary) 88%, transparent); }
.stats-bg { background-image: url("assets/placeholder-landscape.svg"); filter: grayscale(1); opacity: .32; }
.stats-content { display: grid; grid-template-columns: 1fr 1.45fr; gap: 70px; align-items: end; }
.stats-heading h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat strong { display: block; margin-bottom: 12px; color: var(--color-accent); font-size: clamp(2.6rem, 4vw, 4.2rem); line-height: 1; letter-spacing: -.06em; }
.stat span { color: color-mix(in srgb, var(--color-white) 78%, transparent); font-size: .9rem; }

/* ---------- About ---------- */
.about-section { background: var(--color-surface); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 30px; }
.benefits-grid > div { display: grid; grid-template-columns: 34px 1fr; column-gap: 8px; }
.benefits-grid span { grid-row: 1 / span 2; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: var(--color-white); background: var(--color-secondary); font-size: .8rem; }
.benefits-grid strong { color: var(--color-primary); }
.benefits-grid p { margin: 4px 0 0; font-size: .87rem; }
.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 38px; padding-top: 28px; border-top: 1px solid color-mix(in srgb, var(--color-primary) 12%, transparent); }
.inline-cta small { display: block; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.inline-cta > div a { color: var(--color-primary); font-size: 1.5rem; font-weight: 900; }
.angled img { min-height: 580px; }
.experience-badge { position: absolute; left: -34px; bottom: 34px; display: flex; align-items: center; gap: 14px; padding: 22px 28px; color: var(--color-primary); background: var(--color-accent); box-shadow: var(--shadow); }
.experience-badge strong { font-size: 2.2rem; line-height: 1; }
.experience-badge span { font-size: .72rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; }

/* ---------- Emergency band ---------- */
.emergency-band { position: relative; overflow: hidden; isolation: isolate; padding: 85px 0; }
.emergency-bg { background-image: url("assets/placeholder-wide.svg"); opacity: .35; }
.emergency-inner { display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 60px; }
.emergency-inner h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); margin-bottom: 12px; }
.emergency-inner p { max-width: 680px; color: color-mix(in srgb, var(--color-white) 77%, transparent); }
.emergency-actions { display: grid; justify-items: start; gap: 16px; }
.emergency-number { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 900; letter-spacing: -.04em; }

/* ---------- Reviews ---------- */
.reviews-section { overflow: hidden; }
.section-heading.centered { max-width: 720px; margin: 0 auto 55px; text-align: center; }
.review-shell { position: relative; max-width: 900px; margin-inline: auto; }
.review-track { min-height: 350px; position: relative; }
.review { position: absolute; inset: 0; display: grid; align-content: center; justify-items: center; padding: 56px 80px; text-align: center; background: var(--color-surface); opacity: 0; pointer-events: none; transform: translateX(35px); transition: opacity .35s ease, transform .35s ease; }
.review.active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.stars { margin-bottom: 22px; color: var(--color-accent); letter-spacing: .15em; }
.review blockquote { max-width: 730px; margin: 0 0 26px; color: var(--color-primary); font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 700; line-height: 1.45; letter-spacing: -.02em; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: var(--color-white); background: var(--color-secondary); font-size: .8rem; font-weight: 900; }
.reviewer strong, .reviewer small { display: block; text-align: left; }
.reviewer strong { color: var(--color-primary); }
.reviewer small { font-size: .75rem; }
.review-arrow { position: absolute; z-index: 2; top: 50%; width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--color-white); background: var(--color-primary); transform: translateY(-50%); }
.review-arrow.prev { left: -22px; }
.review-arrow.next { right: -22px; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.review-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: color-mix(in srgb, var(--color-primary) 18%, transparent); }
.review-dot.active { background: var(--color-secondary); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--color-surface); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.faq-grid .section-heading { position: sticky; top: calc(var(--header-height) + 35px); }
.text-link { color: var(--color-secondary); font-weight: 800; }
.accordion { border-top: 1px solid color-mix(in srgb, var(--color-primary) 13%, transparent); }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 13%, transparent); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 25px 0; border: 0; color: var(--color-primary); background: transparent; text-align: left; font-size: 1.08rem; font-weight: 850; }
.faq-question b { display: grid; flex: 0 0 auto; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: var(--color-white); background: var(--color-primary); font-size: 1.2rem; transition: transform .25s ease, background .25s ease; }
.faq-item.open .faq-question b { background: var(--color-secondary); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > p { overflow: hidden; margin: 0; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 25px; }

/* ---------- Booking ---------- */
.booking-section { position: relative; overflow: hidden; isolation: isolate; padding: 110px 0; }
.booking-bg { background-image: url("assets/placeholder-landscape.svg"); opacity: .22; }
.booking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.booking-copy > p:not(.eyebrow) { color: color-mix(in srgb, var(--color-white) 75%, transparent); }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.contact-detail > span { display: grid; width: 44px; height: 44px; place-items: center; color: var(--color-primary); background: var(--color-accent); font-weight: 900; }
.contact-detail small, .contact-detail a, .contact-detail strong { display: block; }
.contact-detail small { color: color-mix(in srgb, var(--color-white) 62%, transparent); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-detail a, .contact-detail strong { color: var(--color-white); font-size: 1.05rem; }
.booking-form { padding: 42px; background: var(--color-white); color: var(--color-text); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-form label { display: grid; gap: 7px; margin-bottom: 18px; }
.booking-form label > span { color: var(--color-primary); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); border-radius: 0; outline: none; background: var(--color-surface); padding: 14px 15px; color: var(--color-primary); transition: border-color .2s ease, box-shadow .2s ease; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--color-secondary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-secondary) 15%, transparent); }
.form-status { margin: 14px 0 0; color: var(--color-secondary); font-size: .88rem; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { padding: 70px 0 24px; color: color-mix(in srgb, var(--color-white) 66%, transparent); background: color-mix(in srgb, var(--color-primary) 88%, black); }
.site-footer .brand-text, .site-footer h4 { color: var(--color-white); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .85fr 1fr; gap: 55px; }
.footer-grid h4 { margin-bottom: 18px; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-grid > div > a:not(.brand):not(.btn), .footer-grid > div > span { display: block; padding: 3px 0; }
.footer-grid p { font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid color-mix(in srgb, var(--color-white) 10%, transparent); font-size: .78rem; 
}

.text-accent {
  color: var(--color-accent);
}

/* =========================================================
   FULLSCREEN IMAGE GALLERY
========================================================= */

.fullscreen-gallery {
  position: relative;

  width: 100%;
  height: 100vh;
  min-height: 650px;

  overflow: hidden;

  background: var(--color-primary);
}


/* =========================================================
   SLIDER
========================================================= */

.fullscreen-slider {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
}


/* Individual image */

.fullscreen-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.03);

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    transform 1.2s ease;
}


.fullscreen-slide.active {
  opacity: 1;
  visibility: visible;

  transform: scale(1);
}


/* =========================================================
   OVERLAY
========================================================= */

.fullscreen-gallery-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(4, 28, 44, 0.72) 0%,
      rgba(4, 28, 44, 0.35) 45%,
      rgba(4, 28, 44, 0.05) 100%
    );

  pointer-events: none;
}


/* =========================================================
   TEXT
========================================================= */

.fullscreen-gallery-heading {
  position: absolute;

  z-index: 3;

  top: 50%;
  left: max(6vw, 50px);

  width: min(600px, 80vw);

  transform: translateY(-50%);
}


.fullscreen-gallery-heading .section-eyebrow {
  display: block;

  margin-bottom: 15px;

  color: var(--color-accent);

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;
}


.fullscreen-gallery-heading h2 {
  margin: 0 0 20px;

  color: var(--color-white);

  font-size: clamp(2.8rem, 5.5vw, 5.5rem);

  font-weight: 700;

  line-height: 0.98;

  letter-spacing: -0.03em;
}


.fullscreen-gallery-heading p {
  max-width: 500px;

  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.08rem;

  line-height: 1.7;
}


/* =========================================================
   ARROWS
========================================================= */

.gallery-arrow {
  position: absolute;

  top: 50%;

  z-index: 5;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.4);

  border-radius: 50%;

  background: rgba(8, 47, 73, 0.35);

  color: var(--color-white);

  font-size: 1.4rem;

  cursor: pointer;

  backdrop-filter: blur(8px);

  transform: translateY(-50%);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}


.gallery-arrow:hover {
  background: var(--color-accent);

  color: var(--color-primary);

  border-color: var(--color-accent);

  transform:
    translateY(-50%)
    scale(1.08);
}


.gallery-arrow-prev {
  left: 28px;
}


.gallery-arrow-next {
  right: 28px;
}


/* =========================================================
   COUNTER
========================================================= */

.gallery-slide-counter {
  position: absolute;

  z-index: 4;

  right: 40px;
  bottom: 35px;

  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--color-white);

  font-size: 0.88rem;

  font-weight: 700;

  letter-spacing: 0.12em;
}


.gallery-current {
  color: var(--color-accent);
}


.gallery-divider {
  display: block;

  width: 34px;
  height: 1px;

  background: rgba(255, 255, 255, 0.6);
}


/* =========================================================
   SWIPE HINT
========================================================= */

.gallery-swipe-hint {
  display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .fullscreen-gallery {
    height: 100svh;
    min-height: 600px;
  }


  /* More centered image crop */

  .fullscreen-slide {
    background-position: center center;
  }


  /* Darker gradient so text remains readable */

  .fullscreen-gallery-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(4, 28, 44, 0.82) 0%,
        rgba(4, 28, 44, 0.35) 50%,
        rgba(4, 28, 44, 0.12) 100%
      );
  }


  /* Move heading closer to bottom */

  .fullscreen-gallery-heading {
    top: auto;

    left: 24px;
    right: 24px;

    bottom: 110px;

    width: auto;

    transform: none;
  }


  .fullscreen-gallery-heading h2 {
    font-size: clamp(
      2.35rem,
      10vw,
      3.7rem
    );
  }


  .fullscreen-gallery-heading p {
    font-size: 0.96rem;

    line-height: 1.6;
  }


  /* Hide arrows on mobile */

  .gallery-arrow {
    display: none;
  }


  /* Counter */

  .gallery-slide-counter {
    right: 22px;
    bottom: 28px;
  }


  /* Swipe instruction */

  .gallery-swipe-hint {
    position: absolute;

    z-index: 4;

    left: 22px;
    bottom: 28px;

    display: block;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.78rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;
  }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE: DESKTOP / SMARTPHONE EMPHASIS
   Tablet receives a simplified in-between layout, but the two
   primary breakpoints below are desktop and smartphone.
   ============================================================ */
@media (max-width: 1040px) {
  .desktop-nav, .phone-link, .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr .7fr; }
  .stats-content, .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(3rem, 16vw, 4.9rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
  .brand-mark { width: 33px; height: 33px; }
  .brand-text { font-size: 1.12rem; }

  .hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
  }
  .hero::after { background: linear-gradient(180deg, color-mix(in srgb, var(--color-primary) 96%, transparent) 0 62%, color-mix(in srgb, var(--color-primary) 64%, transparent) 100%); }
  .hero-grid {
    position: relative;
    min-height: 760px;

    grid-template-columns: 1fr;

    gap: 0;
    align-items: start;
  }
  .hero-copy {
    position: relative;

    z-index: 3;

    padding: 28px 0 60px;
  }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-figure {
        position: absolute;
        z-index: 1;
        top: 0;
        right: -20%;
        bottom: 0;
        width: 100%;
        height: 100%;
        opacity: .55;
        overflow: hidden;
  }

.hero-figure img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: -8% 35%;
   transform: scale(1.10);
  }

  .service-cards-wrap { margin-top: 0; }
  .service-cards { width: 100%; grid-template-columns: 1fr; box-shadow: none; }
  .service-card { min-height: 0; border-right: 0; border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 9%, transparent); }
  .service-card:nth-child(even) { background: var(--color-surface); }

  .services-section { padding-top: 78px; }
  .split-grid, .faq-grid, .emergency-inner, .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .media-card img, .angled img { min-height: 390px; }
  .media-card-label { right: 16px; bottom: 16px; max-width: 235px; }
  .stats-band { padding: 80px 0; }
  .stats-content { grid-template-columns: 1fr; gap: 38px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { display: grid; grid-template-columns: 95px 1fr; align-items: center; gap: 18px; }
  .stat strong { margin: 0; font-size: 2.7rem; }

  .reverse-mobile .section-copy { order: 1; }
  .reverse-mobile .media-card { order: 2; }
  .benefits-grid { grid-template-columns: 1fr; }
  .inline-cta { align-items: flex-start; flex-direction: column; }
  .experience-badge { left: 15px; bottom: 15px; }

  .emergency-actions { justify-items: stretch; }
  .emergency-number { font-size: 2rem; }
  .review-track { min-height: 460px; }
  .review { padding: 48px 34px; }
  .review-arrow { top: auto; bottom: 16px; transform: none; }
  .review-arrow.prev { left: 16px; }
  .review-arrow.next { right: 16px; }
  .faq-grid .section-heading { position: static; }
  .booking-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}



@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .parallax { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}
