:root {
  --plum: #84355d;
  --plum-dark: #64233f;
  --plum-deep: #48182e;
  --plum-soft: #f4eaef;
  --sage: #919c70;
  --sage-dark: #59623c;
  --sage-soft: #edf0e5;
  --ink: #26151f;
  --muted: #6f646a;
  --canvas: #faf8f4;
  --warm-white: #fffdf9;
  --white: #ffffff;
  --border: #e4dadd;
  --border-dark: rgba(255, 255, 255, 0.18);
  --shadow-small: 0 12px 32px rgba(59, 30, 44, 0.08);
  --shadow-large: 0 30px 80px rgba(59, 30, 44, 0.15);
  --radius-small: 14px;
  --radius: 22px;
  --radius-large: 36px;
  --container: 1240px;
  --header-height: 84px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--plum-dark);
  outline-offset: 4px;
}

.trust-section :focus-visible,
.care-panel-business :focus-visible,
.gallery-section :focus-visible,
.contact-section :focus-visible,
.site-footer :focus-visible,
.hero-video-toggle:focus-visible {
  outline-color: var(--warm-white);
}

::selection {
  background: var(--plum);
  color: var(--white);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.45rem, 6.25vw, 6rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 4.5vw, 4.25rem);
  line-height: 0.98;
}

h3 {
  line-height: 1.1;
}

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

.section {
  position: relative;
  padding-block: clamp(82px, 9vw, 132px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e9d7df;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1;
  transition:
    color 250ms var(--ease),
    background-color 250ms var(--ease),
    border-color 250ms var(--ease),
    box-shadow 250ms var(--ease),
    transform 250ms var(--ease);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 250ms var(--ease);
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-solid {
  background: var(--plum);
  box-shadow: 0 10px 24px rgba(132, 53, 93, 0.22);
  color: var(--white);
}

.button-solid:hover {
  background: var(--plum-dark);
  box-shadow: 0 15px 32px rgba(132, 53, 93, 0.28);
}

.button-outline {
  border-color: rgba(38, 21, 31, 0.3);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--plum);
  background: var(--white);
  color: var(--plum);
}

/* Outline button for use on the dark contact background. */
.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

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

.button-text {
  padding-inline: 4px;
  color: var(--ink);
}

.button-text span {
  color: var(--plum);
  font-size: 1.2rem;
}

.button-text:hover {
  color: var(--plum);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.82rem;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(250, 248, 244, 0);
  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom-color: rgba(132, 53, 93, 0.1);
  background: rgba(250, 248, 244, 0.92);
  box-shadow: 0 8px 30px rgba(38, 21, 31, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 68px;
  max-width: none;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.primary-navigation > a:not(.button) {
  position: relative;
  padding-block: 14px;
  color: #51464b;
  font-size: 0.8rem;
  font-weight: 700;
}

.primary-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--plum);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.primary-navigation > a:not(.button):hover,
.primary-navigation > a:not(.button).is-active {
  color: var(--plum);
}

.primary-navigation > a:not(.button):hover::after,
.primary-navigation > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--warm-white);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
  display: flex;
  min-height: min(900px, 100svh);
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + clamp(72px, 7vw, 108px));
  padding-bottom: clamp(86px, 9vw, 128px);
  background:
    radial-gradient(circle at 4% 72%, rgba(145, 156, 112, 0.13), transparent 27%),
    var(--canvas);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(58px, 7vw, 104px);
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero h1 em {
  color: var(--plum);
  font-weight: 600;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 36px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #56484f;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-trust svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -30px;
  right: -48px;
  width: 72%;
  height: 82%;
  border: 1px solid rgba(132, 53, 93, 0.24);
  border-radius: 50% 50% 28% 50%;
  content: "";
}

.hero-image-wrap {
  position: relative;
  height: clamp(520px, 47vw, 655px);
  overflow: hidden;
  border-radius: 260px 260px 32px 32px;
  box-shadow: var(--shadow-large);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(38, 21, 31, 0.17));
  content: "";
  pointer-events: none;
}

.hero-image-wrap picture,
.hero-image-wrap img,
.hero-image-wrap video {
  width: 100%;
  height: 100%;
}

.hero-image-wrap img,
.hero-image-wrap video {
  display: block;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.hero-image-wrap img {
  object-position: 61% center;
}

.hero-image-wrap video {
  object-position: center 28%;
}

.hero-video-toggle {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 20px;
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(38, 21, 31, 0.78);
  color: var(--white);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(38, 21, 31, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background-color 180ms ease,
    transform 180ms var(--ease);
}

html.js .hero-video-toggle {
  display: inline-flex;
}

.hero-video-toggle:hover {
  background: rgba(38, 21, 31, 0.92);
  transform: translateY(-2px);
}

.hero-video-toggle-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  place-items: center;
}

.hero-video-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-video-toggle .video-icon-play {
  display: none;
  fill: currentColor;
  stroke: none;
}

.hero-video-toggle.is-paused .video-icon-pause {
  display: none;
}

.hero-video-toggle.is-paused .video-icon-play {
  display: block;
}

.hero-visual:hover .hero-image-wrap img,
.hero-visual:hover .hero-image-wrap video {
  transform: scale(1.025);
}

.hero-note {
  position: absolute;
  right: -16px;
  bottom: 62px;
  display: flex;
  min-width: 235px;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-small);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.hero-note-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 1.1rem;
  place-items: center;
}

.hero-note strong,
.hero-note small {
  display: block;
}

.hero-note strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.1;
}

.hero-note small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 18%;
  left: -140px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(145, 156, 112, 0.22);
}

.hero-orb-two {
  right: -100px;
  bottom: 5%;
  width: 220px;
  height: 220px;
  background: rgba(132, 53, 93, 0.035);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  min-width: 70px;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 28px;
  overflow: hidden;
  background: rgba(38, 21, 31, 0.22);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--plum);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  70%,
  100% {
    transform: translateY(200%);
  }
}

/* Trust */
.trust-section {
  overflow: hidden;
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.72);
}

.trust-section::before {
  position: absolute;
  top: -280px;
  right: -190px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.trust-section::after {
  position: absolute;
  right: 10%;
  bottom: -340px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(145, 156, 112, 0.08);
  content: "";
  filter: blur(2px);
}

.trust-section .container {
  position: relative;
  z-index: 1;
}

.trust-heading {
  display: grid;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
}

.trust-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.trust-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--white);
}

.trust-heading > p:last-child {
  max-width: 470px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.trust-grid {
  display: grid;
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
  grid-template-columns: repeat(4, 1fr);
}

.trust-card {
  position: relative;
  min-height: 320px;
  padding: 32px 26px 28px;
  overflow: hidden;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  transition:
    background-color 280ms ease,
    transform 280ms var(--ease);
}

.trust-card:hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.trust-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.trust-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 58px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  place-items: center;
}

.trust-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.trust-card h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.55rem;
}

.trust-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* Services */
.services-section {
  background: var(--canvas);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 40px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.services-heading {
  margin-bottom: 58px;
}

.services-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.services-heading > p {
  max-width: 430px;
  margin-bottom: 6px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 344px;
  flex-direction: column;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color 300ms var(--ease),
    box-shadow 300ms var(--ease),
    transform 300ms var(--ease);
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(132, 53, 93, 0.1);
  border-radius: 50%;
  content: "";
  transition: transform 600ms var(--ease);
}

.service-card:hover {
  border-color: rgba(132, 53, 93, 0.33);
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scale(1.35);
}

.service-card-featured {
  border-color: transparent;
  background: var(--sage-soft);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 46px;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--plum-soft);
  color: var(--plum);
  place-items: center;
}

.service-card-featured .service-icon {
  background: var(--plum);
  color: var(--white);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-index {
  color: #71636a;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.72rem;
}

.service-card p {
  max-width: 330px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-block: 5px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card > a span {
  font-size: 1rem;
  transition: transform 220ms var(--ease);
}

.service-card > a:hover span {
  transform: translate(3px, -3px);
}

/* Tailored care */
.care-section {
  overflow: hidden;
  background: var(--sage-soft);
}

.care-section::before {
  position: absolute;
  top: -300px;
  left: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(89, 98, 60, 0.13);
  border-radius: 50%;
  content: "";
}

.care-section::after {
  position: absolute;
  right: -180px;
  bottom: -360px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(145, 156, 112, 0.09);
  content: "";
}

.care-section .container {
  position: relative;
  z-index: 1;
}

.care-heading {
  display: grid;
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  margin-bottom: clamp(46px, 6vw, 74px);
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
}

.care-heading-title h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.care-heading-copy > p {
  max-width: 510px;
  margin-bottom: 0;
  color: #5d5c51;
  font-size: 0.96rem;
}

.care-note {
  display: flex;
  max-width: 510px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 15px 12px 12px;
  border: 1px solid rgba(89, 98, 60, 0.2);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.54);
  color: #4b4c40;
}

.care-note-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  place-items: center;
}

.care-note-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.care-note > span:last-child {
  display: grid;
  gap: 2px;
}

.care-note small {
  color: var(--plum);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.care-note strong {
  font-size: 0.7rem;
  line-height: 1.45;
}

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

.care-panel {
  position: relative;
  display: flex;
  min-height: 545px;
  flex-direction: column;
  padding: clamp(34px, 4vw, 50px);
  overflow: hidden;
  border-radius: var(--radius-large);
}

.care-panel::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.11;
  transition: transform 700ms var(--ease);
}

.care-panel::before {
  position: absolute;
  right: 38px;
  bottom: -28px;
  color: currentColor;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 9vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  opacity: 0.025;
}

.care-panel:hover::after {
  transform: scale(1.12);
}

.care-panel-home {
  border: 1px solid rgba(132, 53, 93, 0.11);
  background: var(--warm-white);
  box-shadow: 0 24px 60px rgba(59, 30, 44, 0.07);
  color: var(--ink);
}

.care-panel-home::before {
  content: "HOME";
}

.care-panel-business {
  background: linear-gradient(145deg, #8d3964 0%, var(--plum) 52%, #752b50 100%);
  box-shadow: 0 24px 60px rgba(99, 35, 69, 0.18);
  color: var(--white);
}

.care-panel-business::before {
  content: "WORK";
}

.care-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 62px);
}

.care-panel-icon {
  display: grid;
  width: 62px;
  height: 62px;
  border-radius: 19px;
  place-items: center;
}

.care-panel-home .care-panel-icon {
  background: var(--plum-soft);
  color: var(--plum);
}

.care-panel-business .care-panel-icon {
  background: var(--sage);
  color: var(--ink);
}

.care-panel-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.care-panel-number {
  align-self: flex-start;
  padding-top: 5px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.care-panel-home .care-panel-number {
  color: var(--plum);
}

.care-panel-business .care-panel-number {
  color: rgba(255, 255, 255, 0.84);
}

.care-panel-body {
  position: relative;
  z-index: 1;
}

.care-panel-kicker {
  margin-bottom: 13px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.care-panel-home .care-panel-kicker {
  color: var(--plum);
}

.care-panel-business .care-panel-kicker {
  color: rgba(255, 255, 255, 0.84);
}

.care-panel h3 {
  max-width: 500px;
  margin-bottom: 16px;
  color: inherit;
  font-size: clamp(2.15rem, 3.4vw, 3.1rem);
}

.care-panel-description {
  max-width: 480px;
  margin-bottom: 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.care-panel-home .care-panel-description {
  color: var(--muted);
}

.care-panel-business .care-panel-description {
  color: rgba(255, 255, 255, 0.82);
}

.care-panel-bottom {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(132, 53, 93, 0.14);
}

.care-panel-business .care-panel-bottom {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.care-panel ul {
  display: grid;
  gap: 11px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.care-panel li {
  position: relative;
  padding-left: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.5;
}

.care-panel li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
  transform: translateY(-50%);
}

.care-panel-business li {
  color: rgba(255, 255, 255, 0.86);
}

.care-panel-bottom > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  border-bottom: 1px solid currentColor;
  font-size: 0.79rem;
  font-weight: 800;
}

.care-panel-home .care-panel-bottom > a {
  color: var(--plum);
}

.care-panel-bottom > a span {
  transition: transform 220ms var(--ease);
}

.care-panel-bottom > a:hover span {
  transform: translateX(4px);
}

.care-signature {
  display: grid;
  min-height: 76px;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(89, 98, 60, 0.18);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.42);
  grid-template-columns: auto 1fr auto;
}

.care-signature > span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--white);
  place-items: center;
}

.care-signature p {
  margin-bottom: 0;
  color: #57574b;
  font-size: 0.75rem;
}

.care-signature p strong {
  color: var(--ink);
}

.care-signature a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  font-size: 0.74rem;
  font-weight: 800;
}

/* Process */
.process-section {
  background: var(--warm-white);
}

.process-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 68px;
}

.process-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.process-heading .button {
  flex: 0 0 auto;
  margin-bottom: 7px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.process-list li {
  position: relative;
  padding: 0 clamp(24px, 3vw, 45px);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 31px;
  right: -8%;
  width: 28%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--sage) 0 5px, transparent 5px 10px);
  content: "";
}

.process-number {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 36px;
  border: 1px solid rgba(132, 53, 93, 0.23);
  border-radius: 50%;
  background: var(--plum-soft);
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  place-items: center;
}

.process-content > span {
  display: block;
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-content h3 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
}

.process-content p {
  max-width: 335px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Client gallery */
.gallery-section {
  overflow: hidden;
  background: #21131b;
  color: rgba(255, 255, 255, 0.68);
}

.gallery-section::before {
  position: absolute;
  top: -300px;
  right: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.gallery-orb {
  position: absolute;
  bottom: -260px;
  left: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: rgba(132, 53, 93, 0.18);
  filter: blur(8px);
  pointer-events: none;
}

.gallery-section .container {
  position: relative;
  z-index: 1;
}

.gallery-heading {
  display: grid;
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  margin-bottom: clamp(46px, 6vw, 70px);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
}

.gallery-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--white);
}

.gallery-heading-side {
  display: grid;
  align-items: end;
  gap: 27px;
  grid-template-columns: 1fr auto;
}

.gallery-heading-side > p {
  max-width: 430px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.82rem;
  line-height: 1.7;
}

.gallery-controls {
  display: flex;
  gap: 9px;
}

.gallery-controls button {
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  place-items: center;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease),
    opacity 220ms ease;
}

.gallery-controls button:hover:not(:disabled) {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--ink);
  transform: translateY(-2px);
}

.gallery-controls button:disabled {
  cursor: default;
  opacity: 0.3;
}

.gallery-controls svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gallery-carousel {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 20px;
  padding: 2px 1px 6px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 1px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track:focus-visible {
  border-radius: var(--radius);
  outline-color: var(--sage);
}

.gallery-slide {
  min-width: 0;
  flex: 0 0 calc((100% - 40px) / 3);
  margin: 0;
  scroll-snap-align: start;
}

.gallery-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #35232d;
  aspect-ratio: 4 / 5;
}

.gallery-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  box-shadow: inset 0 -80px 80px -80px rgba(24, 10, 18, 0.45);
  content: "";
  pointer-events: none;
}

.gallery-media img,
.gallery-media picture {
  width: 100%;
  height: 100%;
}

.gallery-media img {
  display: block;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.gallery-slide:hover .gallery-media img {
  transform: scale(1.025);
}

.gallery-slot-number {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 25px;
  display: grid;
  min-width: 38px;
  height: 28px;
  padding-inline: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(33, 19, 27, 0.64);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
  place-items: center;
}

.gallery-slide figcaption {
  display: grid;
  gap: 6px;
  padding: 19px 5px 0;
}

.gallery-slide figcaption span {
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-slide figcaption strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 1.1;
}

.gallery-footer {
  display: grid;
  align-items: center;
  gap: 24px;
  margin-top: 37px;
  grid-template-columns: auto minmax(160px, 1fr) auto;
}

.gallery-count,
.gallery-hint {
  margin-bottom: 0;
}

.gallery-count {
  min-width: 92px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.gallery-count small {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.gallery-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.gallery-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 120ms linear;
}

.gallery-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gallery-hint span {
  color: var(--sage);
  font-size: 1rem;
}

/* Area */
.area-section {
  overflow: hidden;
  background: var(--canvas);
}

.area-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
}

.area-visual {
  position: relative;
  height: clamp(560px, 50vw, 690px);
  grid-column: 1;
  grid-row: 1;
}

.area-copy {
  grid-column: 2;
  grid-row: 1;
}

.area-visual::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: -30px;
  width: 65%;
  height: 60%;
  border-radius: 50% 50% 12px 50%;
  background: var(--sage-soft);
  content: "";
}

.area-visual picture {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 24px);
  height: 100%;
  overflow: hidden;
  border-radius: 230px 230px 30px 30px;
  box-shadow: var(--shadow-large);
}

.area-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% center;
}

.area-card {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 46px;
  min-width: 250px;
  padding: 25px;
  border-radius: var(--radius);
  background: var(--plum);
  box-shadow: var(--shadow-large);
  color: var(--white);
}

.area-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  place-items: center;
}

.area-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.area-card p {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-card strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.1;
}

.area-copy h2 {
  max-width: 570px;
}

.area-lead {
  max-width: 565px;
  color: var(--muted);
  font-size: 1rem;
}

.location-list {
  margin: 38px 0 30px;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.location-list li {
  display: grid;
  min-height: 74px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: auto 1fr auto;
}

.location-dot {
  width: 9px;
  height: 9px;
  border: 2px solid var(--canvas);
  border-radius: 50%;
  background: var(--sage-dark);
  box-shadow: 0 0 0 1px var(--sage-dark);
}

.location-list strong,
.location-list small {
  display: block;
}

.location-list strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
}

.location-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.location-list li > span:last-child {
  color: #71636a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.area-check {
  max-width: 520px;
  margin-bottom: 27px;
  color: #584a51;
  font-size: 0.78rem;
  font-weight: 600;
}

/* FAQ */
.faq-section {
  background: var(--plum-soft);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro h2 {
  max-width: 500px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
}

.faq-intro > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--plum);
  font-size: 0.79rem;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid rgba(132, 53, 93, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(132, 53, 93, 0.22);
}

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 2px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.2;
  list-style: none;
}

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

.faq-list summary i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(132, 53, 93, 0.3);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--plum);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease);
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  max-width: 680px;
  margin: -8px 52px 30px 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.91rem;
}

/* Contact */
.contact-section {
  overflow: hidden;
  padding-bottom: clamp(90px, 10vw, 145px);
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.72);
}

.contact-section::before {
  position: absolute;
  top: -320px;
  left: -320px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-glow {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(145, 156, 112, 0.1);
  filter: blur(10px);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  gap: clamp(58px, 8vw, 110px);
  grid-template-columns: minmax(300px, 0.82fr) minmax(500px, 1.18fr);
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  padding-top: 26px;
}

.contact-copy h2 {
  max-width: 560px;
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.contact-direct {
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-direct span,
.contact-direct .contact-email {
  display: block;
}

.contact-direct span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct .contact-email {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  text-decoration: underline;
  text-decoration-color: rgba(145, 156, 112, 0.65);
  text-underline-offset: 5px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* These icons identify the action, so they should not slide like the arrow buttons. */
.contact-actions .button:hover svg {
  transform: none;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.71rem;
  font-weight: 700;
}

.contact-points svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--sage);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.form-card {
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-large);
  background: var(--warm-white);
  box-shadow: 0 40px 100px rgba(25, 6, 16, 0.28);
  color: var(--ink);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.form-heading > div > span,
.form-step {
  display: block;
  margin-bottom: 6px;
  color: var(--plum);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.form-step {
  flex: 0 0 auto;
  margin-top: 8px;
  color: #71636a;
}

.quote-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #4a3d43;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.field label span {
  color: #6f6268;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.84rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 112px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #74676d;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(132, 53, 93, 0.1);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline-color: var(--plum-dark);
}

.field input.is-invalid,
.field select.is-invalid {
  border-color: #a12f44;
  box-shadow: 0 0 0 3px rgba(161, 47, 68, 0.08);
}

.field-error {
  display: none;
  color: #92243b;
  font-size: 0.67rem;
  font-weight: 700;
}

.field-error:not(:empty) {
  display: block;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
  color: #6f6268;
  font-size: 0.72rem;
  text-align: center;
}

.form-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.form-privacy {
  max-width: 520px;
  margin: -8px auto 0;
  color: #6f6268;
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

/* Spam trap: kept out of sight and out of the tab order for real visitors. */
.quote-form .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  padding: 12px 14px;
  border: 1px solid rgba(145, 156, 112, 0.4);
  border-radius: 12px;
  background: rgba(145, 156, 112, 0.12);
  color: var(--sage-dark);
}

.form-status.is-error {
  color: #a3243c;
}

/* Footer */
.site-footer {
  padding-top: 72px;
  background: #1e1018;
  color: rgba(255, 255, 255, 0.6);
}

.footer-main {
  display: grid;
  align-items: start;
  column-gap: 24px;
  row-gap: 45px;
  padding-bottom: 60px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.footer-brand {
  grid-column: 1 / 5;
}

.footer-nav {
  grid-column: 6 / 8;
}

.footer-contact {
  grid-column: 9 / 13;
}

.footer-brand img {
  width: 132px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address,
.footer-column span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-style: normal;
  transition: color 180ms ease;
}

.footer-column a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: grid;
  min-height: 70px;
  align-items: center;
  column-gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.footer-bottom > p:first-child {
  grid-column: 1 / 5;
}

.footer-bottom > p:nth-child(2) {
  grid-column: 6 / 10;
}

.footer-bottom > a {
  grid-column: 11 / 13;
  justify-self: end;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

/* Reveal motion */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1080px) {
  .primary-navigation {
    gap: 18px;
  }

  .primary-navigation > a:not(.button) {
    font-size: 0.74rem;
  }

  .hero-grid {
    gap: 50px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  }

  .hero h1 {
    font-size: clamp(3.45rem, 7vw, 5rem);
  }

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

  .trust-card {
    min-height: 285px;
  }

  .trust-icon {
    margin-bottom: 42px;
  }

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

  .contact-grid {
    gap: 58px;
    grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
  }

}

/* Mobile navigation breakpoint */
@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

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

  .brand-logo {
    height: 60px;
  }

  .section {
    padding-block: 88px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-navigation {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    height: calc(100svh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    align-content: start;
    gap: 0;
    padding: 20px;
    overflow-y: auto;
    border-bottom: 1px solid var(--border);
    background: rgba(250, 248, 244, 0.98);
    box-shadow: 0 24px 48px rgba(38, 21, 31, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 220ms ease,
      transform 280ms var(--ease),
      visibility 220ms;
    visibility: hidden;
  }

  .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-navigation > a:not(.button) {
    min-height: 52px;
    padding: 15px 5px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
  }

  .primary-navigation > a:not(.button)::after {
    display: none;
  }

  .primary-navigation .nav-cta {
    margin-top: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 82px);
  }

  .hero-grid {
    gap: clamp(44px, 7vw, 58px);
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .hero-visual {
    width: min(86%, 600px);
    justify-self: center;
  }

  .hero-image-wrap {
    height: min(68vw, 560px);
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 1rem;
  }

  .scroll-cue {
    display: none;
  }

  .trust-heading,
  .section-heading {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .trust-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .trust-heading > p:last-child,
  .services-heading > p {
    max-width: 620px;
  }

  .care-heading,
  .area-grid,
  .faq-grid,
  .contact-grid {
    gap: 64px;
    grid-template-columns: 1fr;
  }

  .faq-intro,
  .contact-copy {
    position: static;
  }

  .care-heading {
    gap: 26px;
  }

  .care-heading-copy > p {
    max-width: 660px;
  }

  .care-panels {
    grid-template-columns: 1fr 1fr;
  }

  .care-panel {
    min-height: 600px;
  }

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

  .gallery-heading {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .gallery-heading-side > p {
    max-width: 620px;
  }

  .gallery-slide {
    flex-basis: calc((100% - 20px) / 2);
  }

  .process-list li {
    padding-inline: 24px;
  }

  .process-list li:first-child {
    padding-left: 0;
  }

  .process-list li:last-child {
    padding-right: 0;
  }

  .area-visual {
    width: min(86%, 650px);
    order: 2;
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
  }

  .area-copy {
    order: 1;
    grid-column: 1;
    grid-row: auto;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-copy h2,
  .contact-copy > p:not(.eyebrow) {
    max-width: 690px;
  }

}

/* Small screens */
@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 74px;
  }

  h1 {
    margin-bottom: 22px;
  }

  h2 {
    margin-bottom: 20px;
  }

  .eyebrow {
    margin-bottom: 19px;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .brand-logo {
    height: 56px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 76px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 4.8rem);
    line-height: 0.89;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 28px;
    padding-top: 23px;
  }

  .hero-visual {
    width: calc(100% - 18px);
  }

  .hero-image-wrap {
    height: min(108vw, 540px);
    border-radius: 180px 180px 24px 24px;
  }

  .hero-image-wrap img {
    object-position: 61% center;
  }

  .hero-video-toggle {
    bottom: 20px;
    left: 12px;
    width: 44px;
    min-width: 44px;
    padding: 9px;
  }

  .hero-video-toggle-text {
    display: none;
  }

  .hero-note {
    right: -10px;
    bottom: 25px;
    min-width: 212px;
    padding: 13px;
  }

  .hero-note-icon {
    width: 36px;
    height: 36px;
  }

  .hero-note strong {
    font-size: 1.04rem;
  }

  .trust-heading,
  .services-heading {
    margin-bottom: 40px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 255px;
  }

  .trust-icon {
    margin-bottom: 34px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 320px;
    padding: 27px;
  }

  .care-panels {
    grid-template-columns: 1fr;
  }

  .care-panel {
    min-height: 535px;
    border-radius: 26px;
  }

  .care-panel-top {
    margin-bottom: 38px;
  }

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

  .care-signature {
    align-items: center;
    grid-template-columns: auto 1fr;
  }

  .care-signature a {
    grid-column: 2;
  }

  .gallery-heading-side {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .gallery-slide {
    flex-basis: 88%;
  }

  .gallery-footer {
    gap: 15px;
    grid-template-columns: auto 1fr;
  }

  .gallery-hint {
    grid-column: 1 / -1;
  }

  .process-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 48px;
  }

  .process-list {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    display: grid;
    gap: 20px;
    padding: 0 0 38px;
    border-bottom: 1px solid var(--border);
    grid-template-columns: auto 1fr;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list li::after {
    display: none;
  }

  .process-number {
    width: 50px;
    height: 50px;
    margin: 0;
    font-size: 1.35rem;
  }

  .process-content p {
    font-size: 0.82rem;
  }

  .area-visual {
    width: calc(100% - 18px);
    height: min(126vw, 610px);
  }

  .area-visual picture {
    width: 100%;
    border-radius: 180px 180px 24px 24px;
  }

  .area-card {
    right: -14px;
    bottom: 28px;
    min-width: 210px;
    padding: 19px;
  }

  .area-card > span {
    width: 39px;
    height: 39px;
    margin-bottom: 20px;
  }

  .area-card strong {
    font-size: 1.4rem;
  }

  .faq-grid {
    gap: 46px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 1.2rem;
  }

  .faq-answer p {
    margin-right: 0;
    font-size: 0.84rem;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact-direct a {
    font-size: 1.15rem;
    overflow-wrap: anywhere;
  }

  .form-card {
    padding: 25px 20px;
    border-radius: 24px;
  }

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

  .footer-main {
    gap: 38px 24px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-nav {
    grid-column: 1;
  }

  .footer-contact {
    grid-column: 2;
  }

  .footer-brand img {
    width: 108px;
  }

  .footer-bottom {
    align-items: start;
    justify-content: center;
    gap: 8px;
    padding-block: 21px;
    grid-template-columns: 1fr;
  }

  .footer-bottom > p:first-child,
  .footer-bottom > p:nth-child(2),
  .footer-bottom > a {
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-note {
    right: -7px;
    min-width: 195px;
  }

  .gallery-slide {
    flex-basis: 92%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-nav,
  .footer-contact {
    grid-column: auto;
  }
}

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

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

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
