:root {
  color-scheme: light;
  --ink: #1f2a2a;
  --muted: #5d6b6b;
  --line: #d7e4df;
  --surface: #ffffff;
  --soft: #f5faf8;
  --teal: #0f6670;
  --teal-deep: #0a434a;
  --mint: #d9efe8;
  --coral: #c85f4d;
  --amber: #f1aa5d;
  --focus: #184fd6;
  --shadow: 0 18px 55px rgba(16, 50, 54, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--teal-deep);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 228, 223, 0.86);
  backdrop-filter: blur(14px);
}

.compact-header {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
}

.brand-mark path,
.header-actions svg path,
.feature-card svg path,
.button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
}

.header-actions a {
  text-decoration: none;
}

.header-actions a:hover {
  color: var(--teal-deep);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: #fff !important;
  background: var(--teal-deep);
  border-radius: 6px;
  font-weight: 750;
  white-space: nowrap;
}

.phone-link svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 690px);
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(7, 34, 37, 0.9) 0%, rgba(7, 34, 37, 0.7) 38%, rgba(7, 34, 37, 0.16) 72%), url("assets/accessible-shower-hero.png");
  background-position: center right;
  background-size: cover;
}

.hero-inner {
  width: min(640px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding: 58px 0 72px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd09b;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-ctas,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary,
.button-submit {
  color: #fff;
  background: var(--coral);
}

.button-primary:hover,
.button-submit:hover {
  background: #aa493a;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button-submit {
  width: 100%;
  margin-top: 18px;
}

.button svg {
  width: 20px;
  height: 20px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  padding: 8px 11px;
  color: #f6fffc;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.consultation-band {
  padding: clamp(44px, 7vw, 82px) 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.consultation-copy {
  position: sticky;
  top: 98px;
}

.consultation-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.final-layout p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.lead-form {
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  color: #314342;
  font-size: 0.9rem;
  font-weight: 760;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfefd;
  border: 1px solid #b8cbc6;
  border-radius: 6px;
}

.lead-form input:focus,
.lead-form select:focus,
.cookie-notice button:focus,
.button:focus-visible,
.site-header a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(24, 79, 214, 0.33);
  outline-offset: 3px;
}

.lead-form .field-error {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(200, 95, 77, 0.13);
}

.consent-check {
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start;
  margin-top: 18px;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.consent-text {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent-text a,
.legal-content a,
.cookie-notice a {
  color: var(--teal-deep);
  font-weight: 800;
}

.form-message {
  margin-top: 16px;
  padding: 15px;
  color: #16453e;
  background: #e4f5ee;
  border: 1px solid #a8d7c8;
  border-radius: 7px;
  font-weight: 720;
}

.feature-band,
.faq-band {
  padding: clamp(54px, 8vw, 96px) 0;
  background: #fff;
}

.section-heading {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-card {
  min-height: 230px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--teal);
}

.feature-card p {
  margin: 11px 0 0;
  color: var(--muted);
}

.process-band {
  padding: clamp(54px, 8vw, 96px) 0;
  color: #fff;
  background: var(--teal-deep);
}

.process-layout,
.faq-layout,
.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.process-band .eyebrow {
  color: var(--amber);
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 5px 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.process-list span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal-deep);
  background: var(--amber);
  border-radius: 50%;
  font-weight: 900;
}

.process-list strong {
  font-size: 1.08rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

details {
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: clamp(46px, 7vw, 78px) 0;
  background: #fff4e5;
  border-top: 1px solid #f1d2a4;
}

.final-layout {
  align-items: center;
}

.final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.final-actions .button-secondary {
  color: var(--teal-deep);
  background: #fff;
  border-color: #f0c98d;
}

.site-footer {
  padding: 30px 0;
  color: #dfeeed;
  background: #102c30;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.site-footer p {
  margin: 6px 0 0;
  color: #a9c1bf;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer a {
  color: #fff;
  font-weight: 760;
  text-decoration: none;
}

.cookie-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  width: min(560px, calc(100% - 36px));
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-notice button {
  align-self: center;
  min-height: 40px;
  padding: 0 16px;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.legal-page {
  padding: clamp(44px, 7vw, 78px) 0;
  background: var(--soft);
}

.legal-content {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(22px, 5vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.legal-content h2 {
  margin-top: 30px;
  font-size: 1.42rem;
}

.legal-content p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .consultation-layout,
  .process-layout,
  .faq-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .consultation-copy {
    position: static;
  }

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

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-actions a:not(.phone-link) {
    display: none;
  }

  .phone-link {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
    background-image: linear-gradient(180deg, rgba(7, 34, 37, 0.26) 0%, rgba(7, 34, 37, 0.78) 44%, rgba(7, 34, 37, 0.95) 100%), url("assets/accessible-shower-hero.png");
    background-position: 62% center;
  }

  .hero-inner {
    width: min(100% - 36px, 640px);
    margin: 0 auto;
    padding-bottom: 40px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .form-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .footer-layout {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .button,
  .hero-ctas a,
  .final-actions a {
    width: 100%;
  }

  .trust-strip span {
    width: 100%;
  }
}
