:root {
  color-scheme: light;
  --navy: #425563;
  --paper: #d7d3cb;
  --paper-light: #f4f2ee;
  --sky: #abcae9;
  --lime: #e3e48d;
  --stone: #a3c7d2;
  --bg: #f4f2ee;
  --bg-elevated: #fbfaf7;
  --bg-muted: #d7d3cb;
  --ink: #425563;
  --ink-soft: #5a6b78;
  --muted: #6d7c88;
  --accent: #425563;
  --accent-deep: #33424d;
  --line: rgba(66, 85, 99, 0.16);
  --error: #8a3a36;
  --success: #3d5c48;
  --shadow: 0 18px 40px rgba(66, 85, 99, 0.1);
  --header-bg: color-mix(in srgb, var(--paper-light) 84%, transparent);
  --hero-overlay: linear-gradient(
    90deg,
    rgba(66, 85, 99, 0.84) 0%,
    rgba(66, 85, 99, 0.48) 48%,
    rgba(66, 85, 99, 0.14) 100%
  );
  --image-filter: none;
  --radius: 1.1rem;
  --wrap: 72rem;
  --header-h: 4.6rem;
  --font-display: Optima, Belleza, Candara, "Segoe UI", sans-serif;
  --font-body: "Anek Latin", sans-serif;
  --bg-image: url("../images/brand/website-main.jpg");
  --texture-sky: url("../images/brand/texture-sky.jpg");
  --texture-lime: url("../images/brand/texture-lime.jpg");
  --texture-stone: url("../images/brand/texture-stone.jpg");
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #425563;
  --bg-elevated: #4d6270;
  --bg-muted: #3a4c58;
  --ink: #f4f2ee;
  --ink-soft: #d7d3cb;
  --muted: #a3c7d2;
  --accent: #a3c7d2;
  --accent-deep: #c5dce3;
  --line: rgba(244, 242, 238, 0.14);
  --error: #e0a39e;
  --success: #c5d67a;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --header-bg: color-mix(in srgb, #425563 86%, transparent);
  --hero-overlay: linear-gradient(
    90deg,
    rgba(50, 66, 77, 0.88) 0%,
    rgba(50, 66, 77, 0.52) 50%,
    rgba(50, 66, 77, 0.18) 100%
  );
  --image-filter: brightness(0.9) saturate(0.92);
  --bg-image: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  .scroll-top,
  .site-nav .button,
  .booking-embed iframe {
    transition: none;
  }
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--bg);
}

body {
  min-height: 100vh;
  color: var(--ink);
  background: transparent;
  isolation: isolate;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      color-mix(in srgb, var(--paper-light) 28%, transparent),
      color-mix(in srgb, var(--paper-light) 28%, transparent)
    ),
    var(--bg-image) center / cover no-repeat;
  background-color: var(--bg);
}

[data-theme="dark"] body::before {
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: var(--image-filter);
}

.logo img,
.footer-brand img {
  filter: none;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

address a {
  display: inline-block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 80;
  background: var(--navy);
  color: var(--paper-light);
  padding: 0.5rem 0.8rem;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}

.logo:hover {
  color: inherit;
}

.logo img {
  height: 2.7rem;
  width: auto;
  max-width: min(18.5rem, 58vw);
  display: block;
}

.logo-on-dark img {
  filter: brightness(0) invert(1);
}

[data-theme="dark"] .site-header .logo img {
  filter: brightness(0) invert(1);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav > a,
.dropdown-trigger > a {
  position: relative;
  padding-block: 0.25rem;
}

.site-nav a:hover:not(.button):not(.is-active) {
  color: var(--ink);
}

.site-nav > a.is-active:not(.button),
.has-dropdown.is-current > .dropdown-trigger > a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
}

.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.dropdown-toggle {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 999px;
}

.dropdown-toggle:hover,
.has-dropdown.is-current .dropdown-toggle {
  color: var(--ink);
}

.dropdown-toggle svg {
  display: block;
  transition: transform 0.15s ease;
}

.has-dropdown.is-open .dropdown-toggle svg,
.has-dropdown:focus-within .dropdown-toggle svg {
  transform: rotate(180deg);
}

@media (hover: hover) {
  .has-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 0;
  min-width: 15rem;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 60;
}

.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  display: grid;
  gap: 0.12rem;
}

@media (hover: hover) {
  .has-dropdown:hover .dropdown-menu {
    display: grid;
    gap: 0.12rem;
  }
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.dropdown-menu a:hover,
.dropdown-menu a.is-active {
  background: var(--bg-muted);
  color: var(--ink);
}

.nav-toggle,
.theme-toggle,
.scroll-top,
.button {
  font: inherit;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
}

.theme-toggle:hover {
  border-color: var(--accent);
}

.theme-toggle:focus-visible,
.nav-toggle:focus-visible,
.dropdown-toggle:focus-visible,
.button:focus-visible,
.scroll-top:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

[data-theme="light"] .icon-moon,
[data-theme="dark"] .icon-sun {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--paper-light);
  text-decoration: none;
  border: 1px solid var(--navy);
  padding: 0.75rem 1.15rem;
  font-weight: 600;
  border-radius: 999px;
}

.button:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--paper-light);
}

.site-nav .button,
.site-nav .button:hover,
.site-nav .button:focus-visible,
.site-nav .button.is-active {
  color: var(--paper-light);
  font-weight: 600;
}

.site-nav .button {
  transition: box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.site-nav .button.is-active {
  box-shadow:
    0 0 0 2px var(--lime),
    0 0 0 5px rgba(227, 228, 141, 0.35);
}

.site-nav .button:hover,
.site-nav .button:focus-visible {
  border-color: var(--lime);
  box-shadow:
    0 0 0 1px var(--lime),
    0 0 0 5px rgba(227, 228, 141, 0.42),
    0 0 18px rgba(227, 228, 141, 0.8);
}

[data-theme="dark"] .site-nav .button.is-active {
  box-shadow:
    0 0 0 2px var(--paper-light),
    0 0 0 5px rgba(227, 228, 141, 0.4);
}

[data-theme="dark"] .site-nav .button:hover,
[data-theme="dark"] .site-nav .button:focus-visible {
  border-color: color-mix(in srgb, var(--lime) 40%, white);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--lime) 40%, white),
    0 0 0 5px rgba(227, 228, 141, 0.4),
    0 0 20px rgba(227, 228, 141, 0.75);
}

[data-theme="dark"] .button,
[data-theme="dark"] .site-nav .button,
[data-theme="dark"] .scroll-top {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--navy);
}

[data-theme="dark"] .button:hover,
[data-theme="dark"] .site-nav .button:hover,
[data-theme="dark"] .scroll-top:hover {
  background: color-mix(in srgb, var(--lime) 78%, white);
  border-color: color-mix(in srgb, var(--lime) 78%, white);
  color: var(--navy);
}

[data-theme="dark"] .button-ghost {
  background: transparent;
  color: var(--paper-light);
  border-color: rgba(244, 242, 238, 0.5);
}

[data-theme="dark"] .button-ghost:hover {
  background: rgba(244, 242, 238, 0.12);
  color: var(--paper-light);
}

.button-ghost {
  background: transparent;
  color: var(--paper-light);
  border-color: rgba(244, 242, 238, 0.5);
}

.button-ghost:hover {
  background: rgba(244, 242, 238, 0.12);
  color: var(--paper-light);
}

.button-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.1rem;
}

.text-link:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
}

.lede,
.section-lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero {
  position: relative;
  min-height: min(86vh, 46rem);
  display: grid;
  color: var(--paper-light);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-harbour {
  object-position: center 58%;
}

.hero-overlay {
  position: relative;
  display: flex;
  align-items: flex-end;
  background: var(--hero-overlay);
  padding: 7rem 0 4.5rem;
}

.hero-copy {
  max-width: 40rem;
  margin-left: max(1rem, calc((100% - var(--wrap)) / 2));
  margin-right: auto;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero h1,
.hero h2,
.hero .lede {
  color: var(--paper-light);
}

.hero h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.hero-copy .lede + .lede {
  margin-top: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero .text-link {
  color: var(--paper-light);
  border-bottom-color: rgba(244, 242, 238, 0.4);
}

.intro,
.page-hero,
.team-section,
.insights,
.expect-section,
.prose-section,
.values,
.pricing,
.faq,
.cta-band,
.related-section {
  padding: 4.5rem 0;
}

.intro-grid,
.contact-layout,
.booking-layout,
.service-block,
.profile {
  display: grid;
  gap: 1.75rem;
}

.intro-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 32rem;
  background: var(--bg-elevated);
}

.split.is-reversed .split-media {
  order: 2;
}

.split-media,
.split-media img,
.full-figure img,
.expect-figure img,
.aside-figure img,
.service-block figure img,
.team-card img,
.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media {
  min-height: 22rem;
  overflow: hidden;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.home-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 2.25rem 0 3rem;
}

.home-service,
.service-feature {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 26rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--ink);
  border: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 0.85rem);
}

.home-service-bg,
.service-feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: var(--image-filter) saturate(0.88);
  z-index: 0;
}

.home-service::after,
.service-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bg-elevated) 28%, transparent) 0%,
    color-mix(in srgb, var(--bg-elevated) 72%, transparent) 48%,
    color-mix(in srgb, var(--bg-elevated) 92%, var(--navy)) 100%
  );
}

.home-service-copy,
.service-feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.home-service-copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.home-service-copy .hero-actions,
.service-feature-copy .hero-actions {
  margin-top: auto;
  padding-top: 1.15rem;
}

.service-feature {
  min-height: 28rem;
  margin-bottom: 2rem;
}

.service-feature-copy .plain-list {
  margin-top: 0.85rem;
}

.page-hero {
  padding-bottom: 2.5rem;
  padding-inline: clamp(1.15rem, 3.5vw, 1.75rem);
}

.page-hero.is-compact {
  padding-bottom: 1.15rem;
}

.expect-section {
  background-color: var(--stone);
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--paper-light) 58%, transparent),
      color-mix(in srgb, var(--paper-light) 58%, transparent)
    ),
    var(--texture-stone);
  background-size: cover;
  background-position: center;
}

.quote-section {
  background: none;
}

.cta-band {
  background-color: var(--lime);
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--lime) 55%, transparent),
      color-mix(in srgb, var(--lime) 55%, transparent)
    ),
    var(--texture-lime);
  background-size: cover;
  background-position: center;
  color: var(--navy);
}

.cta-band .eyebrow,
.cta-band h2 {
  color: var(--navy);
}

.cta-band .button,
[data-theme="dark"] .cta-band .button {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper-light);
}

.cta-band .button:hover,
[data-theme="dark"] .cta-band .button:hover {
  background: #33424d;
  border-color: #33424d;
  color: var(--paper-light);
}

.cta-band .button-ghost,
[data-theme="dark"] .cta-band .button-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.cta-band .button-ghost:hover,
[data-theme="dark"] .cta-band .button-ghost:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper-light);
}

.step-grid,
.team-grid,
.quote-grid,
.insight-grid,
.value-grid,
.price-grid {
  display: grid;
  gap: 1rem;
}

.step-grid,
.quote-grid,
.insight-grid,
.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-grid {
  grid-template-columns: repeat(4, 1fr);
  margin: 2rem 0 2.5rem;
}

.step-card,
.quote-card,
.insight-card,
.value-card,
.price-card,
.team-card,
.contact-form,
.contact-aside article,
.flash {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
}

.step-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.expect-figure,
.full-figure {
  overflow: hidden;
  border-radius: var(--radius);
  max-height: 28rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 18rem));
}

.team-card {
  padding: 0;
  overflow: hidden;
}

.team-card img,
.profile img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.team-card .eyebrow,
.team-card h3,
.team-card p {
  padding-inline: 1rem;
}

.team-card .eyebrow {
  margin-top: 1rem;
}

.team-card h3,
.profile h3 {
  margin-bottom: 0.2rem;
}

.role,
.duration,
.form-note,
.optional,
.interests {
  color: var(--muted);
}

.team-card p:last-child {
  padding-bottom: 1.15rem;
}

.quote-section {
  padding: 2.75rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: color-mix(in srgb, #fff 28%, transparent);
}

.quote-feature {
  max-width: none;
  margin: 0;
  text-align: center;
}

.quote-feature p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.quote-feature footer {
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
}

.quote-card footer {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.92rem;
}

.first-visit {
  margin: 1.25rem 0 2rem;
}

.price-groups {
  display: grid;
  gap: 2.75rem;
  margin-top: 2rem;
}

.price-group > h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 0.35rem;
}

.price-group-note {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

.price-group .price-grid {
  margin-top: 0;
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-band-inner.is-stacked {
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
}

.cta-band-inner.is-stacked .eyebrow {
  margin-bottom: 0;
}

.cta-band-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.cta-band-row h2 {
  margin: 0;
  flex: 1 1 auto;
}

.full-figure {
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 0 auto;
  height: min(34rem, 58vw);
  max-height: 34rem;
}

.full-figure img {
  object-position: center 58%;
}

.prose-narrow {
  max-width: none;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.5rem;
}

.team-profiles {
  display: grid;
  gap: 2.5rem;
}

.profile {
  grid-template-columns: 16rem 1fr;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
}

.profile div {
  padding: 1.5rem 1.6rem;
}

.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-bottom: 2rem;
}

.jump-nav a {
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.jump-nav a:hover {
  border-color: var(--navy);
  background: var(--lime);
  color: var(--navy);
}

.service-block {
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.service-block figure {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 18rem;
}

.service-index {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 3rem;
}

.service-card {
  display: grid;
  grid-template-columns: 18rem 1fr;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card figure {
  min-height: 12rem;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.service-card div {
  padding: 1.4rem 1.55rem;
}

.service-card .hero-actions {
  margin-top: 1.1rem;
}

.service-hero-media {
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-hero-media img {
  width: 100%;
  height: min(32rem, 68vw);
  object-fit: cover;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.related-grid .text-link {
  margin-top: 0.85rem;
}

.plain-list {
  padding-left: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}

.service-note-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
}

.prose-section .point-grid + .service-note-cta,
.prose-section .plain-list + .service-note-cta {
  margin-top: 1.5rem;
}

.service-note-cta p {
  margin: 0;
  flex: 1 1 auto;
  color: var(--ink-soft);
}

.service-note-cta .button {
  flex: 0 0 auto;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.point-grid h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: 0.55rem;
}

.point-grid p {
  color: var(--ink-soft);
  margin: 0;
}

.price-grid {
  margin-top: 1.5rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0.2rem 0 0.15rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.page-hero + .faq .faq-list {
  margin-top: 0;
}

.page-hero + .faq {
  padding-top: 0.75rem;
}

.faq-list details {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.9rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 650;
}

.faq-list details p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
}

.faq-list details p + p {
  margin-top: 0.65rem;
}

.contact-layout,
.booking-layout {
  grid-template-columns: 1.1fr 0.9fr;
  padding: 0 0 4rem;
  align-items: start;
}

.contact-layout-single {
  grid-template-columns: 1fr;
}

.booking-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.7fr);
}

.sent-next {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
}

.sent-next h2 {
  margin-bottom: 1rem;
}

.page-hero .hero-actions {
  margin-top: 1.5rem;
}

.booking-panel {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.booking-embed {
  min-height: 700px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-embed iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
  background: #fff;
  scroll-margin-top: calc(var(--header-h) + 0.85rem);
  transition: height 0.3s ease;
}

.booking-embed-error[hidden] {
  display: none;
}

.booking-embed-error {
  display: none;
  min-height: 700px;
  padding: 2.5rem 1.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  background: var(--bg-elevated);
}

.booking-embed-error p {
  margin: 0;
  max-width: 28rem;
}

.booking-embed-error-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.booking-embed-error .button {
  margin-top: 0.5rem;
}

.booking-embed.is-failed {
  min-height: 0;
  background: var(--bg-elevated);
}

.booking-embed.is-failed iframe {
  display: none !important;
}

.booking-embed.is-failed .booking-embed-error {
  display: flex;
}

.booking-embed-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.booking-embed-note a {
  margin-left: 0.2rem;
}

.booking-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.booking-steps li p {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.contact-form,
.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-form {
  position: relative;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  margin: 0.1rem 0;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 0.75rem 0.8rem;
  font: inherit;
  color: var(--ink);
  border-radius: 0.7rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--lime) 80%, var(--navy));
  border-color: var(--navy);
}

.hours-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li,
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list a {
  overflow-wrap: anywhere;
  text-align: right;
}

.affiliation-bar {
  border-top: 1px solid var(--line);
  background: var(--bg-muted);
  padding: 1.5rem 0 1.5rem;
}

.affiliation-bar .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.affiliation-bar-intro {
  margin: 0 0 0.95rem;
  text-align: center;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
}

.affiliation-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem 0.85rem;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.affiliation-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  min-width: 8.5rem;
  height: 100%;
  padding: 0.7rem 0.85rem 0.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.25;
}

.affiliation-bar img {
  height: 3.35rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
}

.affiliation-bar img.is-portrait {
  height: 4.35rem;
}

.affiliation-bar a:hover,
.affiliation-bar a:focus-visible {
  border-color: var(--navy);
  color: var(--navy);
}

.site-footer {
  border-top: 3px solid var(--lime);
  padding: 3.5rem 0 2rem;
  background: var(--navy);
  color: var(--paper);
}

.site-footer a {
  color: var(--stone);
}

.site-footer a:hover {
  color: var(--lime);
}

.site-footer .button {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--navy);
}

.site-footer .button:hover {
  background: color-mix(in srgb, var(--lime) 80%, white);
  border-color: color-mix(in srgb, var(--lime) 80%, white);
  color: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr) minmax(0, 0.9fr) max-content;
  gap: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo img {
  height: 2.5rem;
  max-width: min(17rem, 80vw);
}

.footer-grid h2 {
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

.footer-links {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--paper);
  font-weight: 500;
}

.footer-note {
  margin-top: 2.5rem;
  color: color-mix(in srgb, var(--paper) 72%, var(--navy));
  font-size: 0.88rem;
}

.site-footer .hours-list li,
.site-footer .contact-list li {
  border-bottom-color: rgba(215, 211, 203, 0.2);
}

.site-footer .contact-list li {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.15rem;
}

.site-footer .contact-list a {
  overflow-wrap: normal;
  white-space: nowrap;
  text-align: left;
}

.flash-list {
  list-style: none;
  padding: 1rem 0 0;
  margin: 0;
}

.flash-success {
  border-left: 4px solid var(--success);
}

.flash-error {
  border-left: 4px solid var(--error);
}

.scroll-top[hidden] {
  display: none;
}

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: var(--paper-light);
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .intro-grid,
  .split,
  .home-services,
  .step-grid,
  .team-grid,
  .quote-grid,
  .insight-grid,
  .value-grid,
  .price-grid,
  .point-grid,
  .service-block,
  .service-card,
  .related-grid,
  .contact-layout,
  .booking-layout,
  .footer-grid,
  .profile {
    grid-template-columns: 1fr;
  }

  .split.is-reversed .split-media {
    order: 0;
  }

  .service-card img {
    max-height: 16rem;
  }

  .cta-band-inner,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-row,
  .service-note-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile img {
    max-height: 26rem;
  }
}

@media (max-width: 800px) {
  .affiliation-bar a {
    min-width: calc(50% - 1rem);
    flex: 1 1 8.5rem;
  }

  .affiliation-bar img {
    height: 2.85rem;
  }

  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .contact-list a {
    text-align: left;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
  }

  .header-inner {
    position: relative;
  }

  .site-nav.is-open {
    display: flex;
    z-index: 50;
  }

  .has-dropdown {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown-toggle {
    display: none;
  }

  .dropdown-menu {
    display: grid;
    position: static;
    min-width: 0;
    gap: 0.2rem;
    margin-top: 0.35rem;
    padding: 0.2rem 0 0.35rem 0.9rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown-menu a {
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--muted);
  }

  .logo img {
    height: 2.15rem;
  }

  .hero-overlay {
    padding: 5.5rem 0 3rem;
  }

  .hero-copy {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
