@font-face {
  font-family: Figtree;
  src: url('/fonts/figtree-latin.woff2') format('woff2');
  font-weight: 300 900;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url('/fonts/cormorant-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url('/fonts/cormorant-italic-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
:root {
  --compare-line: #fffefa;
  --ivory: #f7f6f0;
  --paper: #fffefa;
  --sand: #eae7dc;
  --stone: #dedbce;
  --ink: #193c3b;
  --teal: #265b55;
  --teal-hover: #17433f;
  --muted: #59665f;
  --line: #d5d9cd;
  --sea: #c0d4c6;
  --olive: #5c6748;
  --error: #9b332f;
  --display: Cormorant, Georgia, serif;
  --body: Figtree, 'Segoe UI', sans-serif;
  --wrap: 1320px;
  --gutter: clamp(22px, 4.6vw, 80px);
  --space: clamp(72px, 8.3vw, 130px);
  --h1: clamp(58px, 5.55vw, 89px);
  --h2: clamp(43px, 4vw, 64px);
  --h3: clamp(26px, 2.1vw, 34px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --radius: 3px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  scroll-padding-bottom: 90px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body,
button,
input,
select,
textarea {
  font-family: var(--body);
}
button,
input,
select,
textarea {
  font-size: 16px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
h1 {
  font-size: var(--h1);
}
h2 {
  font-size: var(--h2);
}
h3 {
  font-size: var(--h3);
}
h1 em,
h2 em {
  font-weight: 500;
}
p {
  color: var(--muted);
}
p + p {
  margin-top: 20px;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
picture {
  display: block;
}
svg {
  flex-shrink: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
button {
  border: 0;
}
::selection {
  background: var(--sea);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: calc(100% - var(--gutter) * 2);
  max-width: var(--wrap);
  margin-inline: auto;
}
.section {
  padding-block: var(--space);
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.lead {
  font-size: 18px;
  line-height: 1.75;
  max-width: 570px;
}
.small {
  font-size: 12px;
  line-height: 1.65;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 15px 23px;
  background: var(--teal);
  color: var(--paper);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.button:hover {
  background: var(--teal-hover);
  transform: translateY(-2px);
}
.button svg {
  width: 19px;
}
.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.button-outline:hover {
  color: var(--paper);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  min-height: 44px;
  padding-block: 8px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
}
.text-link:after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: calc(100% - 38px);
  height: 1px;
  background: currentColor;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.25s;
}
.text-link:hover:after {
  transform: scaleX(1);
}
.text-link svg {
  width: 18px;
  transition: transform 0.25s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 12px 20px;
  background: var(--paper);
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  background: var(--ivory);
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand strong {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.2;
  display: block;
}
.brand small {
  font-size: 8px;
  letter-spacing: 0.18em;
  display: block;
  line-height: 1.7;
  margin-top: 5px;
}
.brand-dot {
  color: var(--olive);
}
.brand-mark {
  width: 38px;
  height: 42px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font-size: 12px;
  font-weight: 500;
}
.primary-nav > a:not(.button) {
  padding-block: 18px;
  position: relative;
}
.primary-nav > a[aria-current]:after,
.primary-nav > a:not(.button):hover:after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
}
.primary-nav .button {
  margin-left: 15px;
  min-height: 45px;
  padding: 12px 18px;
  gap: 25px;
  font-size: 12px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 640px;
  max-width: 1800px;
  margin: auto;
}
.hero-copy {
  min-width: 0;
  padding: 80px 30px 0 max(var(--gutter), calc((100vw - var(--wrap)) / 2));
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow {
  font-size: 10px;
  letter-spacing: 0.15em;
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}
.hero-copy .eyebrow:before {
  content: '';
  width: 19px;
  height: 1px;
  background: var(--teal);
}
.hero h1 {
  font-size: clamp(55px, 5.35vw, 85px);
  line-height: 1.01;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.hero h1 em {
  color: var(--teal);
}
.hero-description {
  max-width: 380px;
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 31px;
}
.hero-actions .text-link {
  font-size: 12px;
}
.hero-note {
  margin-top: 28px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.hero-note svg {
  width: 15px;
}
.hero-bottom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 8px;
  letter-spacing: 0.13em;
  color: var(--muted);
  padding-block: 26px;
  margin-top: auto;
}
.hero-art {
  position: relative;
  min-width: 0;
  overflow: visible;
}
.hero-art > picture {
  height: 100%;
  overflow: hidden;
}
.hero-art img {
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}
.hero-image-label {
  position: absolute;
  bottom: 25px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-shadow: none;
}
.hero-seal {
  position: absolute;
  bottom: 55px;
  left: -50px;
  background: var(--ink);
  width: 155px;
  height: 177px;
  color: var(--ivory);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 10px 20px #193c3b12;
}
.hero-image-label span {
  color: var(--ink);
  background: var(--ivory);
  padding: 5px 8px;
}
.hero-seal svg {
  width: 21px;
  height: 21px;
  color: var(--sea);
}
.hero-seal span {
  font-size: 22px;
  font-family: var(--display);
  line-height: 1.08;
}
.hero-seal em {
  color: var(--sea);
}
.trust-strip {
  border-block: 1px solid var(--line);
}
.trust-strip > .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 98px;
  align-items: center;
}
.trust-strip > .wrap > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  border-right: 1px solid var(--line);
  padding: 8px;
}
.trust-strip > .wrap > div:first-child {
  justify-content: flex-start;
}
.trust-strip > .wrap > div:last-child {
  border: 0;
}
.trust-strip svg {
  width: 23px;
  color: var(--teal);
}
.section-heading {
  margin-bottom: 45px;
}
.section-heading > p {
  max-width: 430px;
  margin-top: 22px;
}
.section-heading.horizontal {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
}
.section-heading.horizontal > div:last-child > p {
  max-width: 380px;
  font-size: 14px;
  margin-bottom: 16px;
}
.section-heading.horizontal > div:last-child {
  justify-self: end;
}
.section-heading.horizontal > .text-link {
  justify-self: end;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.service-card {
  display: block;
}
.service-image {
  height: 330px;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.service-image picture,
.service-image img {
  height: 100%;
  object-fit: cover;
}
.service-image img {
  transition: transform 0.7s var(--ease);
}
.service-card:hover img {
  transform: scale(1.035);
}
.image-index {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  background: var(--ivory);
}
.service-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.service-card :is(h2, h3) {
  font-size: 33px;
  letter-spacing: -0.04em;
}
.round-arrow {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.service-card:hover .round-arrow {
  background: var(--sea);
}
.service-card > p {
  font-size: 13px;
  margin-top: 10px;
  max-width: 330px;
}
.service-cta {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 5px;
}
.services-extra {
  display: flex;
  align-items: center;
  gap: 36px;
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 22px;
}
.services-extra > span {
  font-family: var(--display);
  font-size: 23px;
  margin-right: auto;
}
.services-extra .text-link {
  font-size: 12px;
}
.care-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sand);
}
.care-story-image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}
.care-story-image picture,
.care-story-image img {
  height: 100%;
  object-fit: cover;
}
.image-caption {
  position: absolute;
  bottom: 25px;
  left: 30px;
  background: var(--ivory);
  padding: 12px 18px;
  font-size: 11px;
}
.care-story-copy {
  padding: clamp(45px, 6.5vw, 100px);
}
.care-story-copy > p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 25px;
  max-width: 410px;
}
.care-points {
  margin: 30px 0;
}
.care-points > div {
  display: flex;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid #c8cabb;
}
.care-points h3 {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 600;
}
.care-points p {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 5px;
}
.care-points svg {
  width: 21px;
  height: 23px;
  margin-top: 3px;
}
.process > .section-heading {
  text-align: center;
}
.process > .section-heading > p {
  margin: 22px auto 0;
  font-size: 14px;
}
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
  margin-top: 60px;
}
.process-grid li {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.step-number {
  font-size: 11px;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 22px;
}
.process-grid h3 {
  font-size: 28px;
}
.process-grid p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 14px;
}
.editorial-feature {
  display: grid;
  grid-template-columns: 1fr 1.17fr;
  align-items: center;
  gap: 70px;
  padding-bottom: var(--space);
}
.feature-copy > p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 25px;
  max-width: 400px;
}
.feature-copy > .text-link {
  margin-top: 20px;
}
.feature-image {
  position: relative;
}
.feature-image picture {
  height: 510px;
}
.feature-image img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.photo-footnote {
  display: block;
  font-size: 9px;
  color: var(--muted);
  padding-top: 10px;
  letter-spacing: 0.025em;
}
.honest-note {
  display: flex;
  gap: 10px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 350px;
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.honest-note svg {
  width: 17px;
}
.two-stories {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 80px;
}
.two-stories article {
  display: flex;
  flex-direction: column;
}
.story-picture {
  height: 360px;
  margin-bottom: 30px;
  overflow: hidden;
}
.story-picture picture,
.story-picture img {
  height: 100%;
  object-fit: cover;
}
.sleep-story .story-picture {
  height: 500px;
}
.two-stories .hospitality-story {
  padding-top: 110px;
}
.two-stories .eyebrow {
  font-size: 10px;
  margin-bottom: 17px;
}
.two-stories h2 {
  font-size: 50px;
}
.two-stories p:not(.eyebrow) {
  font-size: 14px;
  max-width: 390px;
  margin-top: 20px;
}
.two-stories .text-link {
  margin-top: 20px;
}
.marine-band {
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}
.marine-inner {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  min-height: 430px;
  padding-block: 55px;
}
.marine-image {
  height: 330px;
}
.marine-image picture,
.marine-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.marine-inner > div:nth-child(2) {
  position: relative;
  z-index: 1;
  max-width: 440px;
}
.marine-inner .eyebrow {
  color: var(--sea);
  font-size: 10px;
}
.marine-inner p:not(.eyebrow) {
  color: #d3ddd4;
  font-size: 14px;
  max-width: 370px;
  margin-top: 22px;
}
.marine-inner .text-link {
  margin-top: 20px;
}
.marine-decoration {
  position: absolute;
  right: -80px;
  bottom: -190px;
  font: 600px var(--display);
  line-height: 1;
  color: #c0d4c60b;
  pointer-events: none;
}
.areas-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.areas-section > div > p:not(.eyebrow) {
  font-size: 14px;
  max-width: 400px;
  margin-top: 25px;
}
.areas-section .text-link {
  margin-top: 20px;
}
.area-panel {
  border: 1px solid #c4cbba;
  padding: 30px;
  background: var(--sand);
  position: relative;
}
.area-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding-bottom: 22px;
  border-bottom: 1px solid #c4cbba;
}
.area-panel-title span {
  margin-left: auto;
  font-size: 8px;
}
.area-names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 25px;
  padding-block: 25px;
  font-family: var(--display);
  font-size: 25px;
}
.area-panel > p {
  font-size: 11px !important;
  line-height: 1.7;
  margin: 0 !important;
}
.area-panel > a {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid #c4cbba;
  font-size: 12px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  border-top: 1px solid var(--line);
}
.faq-section > div:first-child > .text-link {
  margin-top: 25px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 32px 24px 0;
  font-size: 13px;
  line-height: 1.8;
}
.final-cta {
  background: var(--sand);
  border-bottom: 1px solid #ccd0bf;
  position: relative;
  overflow: hidden;
}
.final-cta:before,
.final-cta:after {
  content: '';
  position: absolute;
  border: 1px solid #bec6b555;
  width: 480px;
  height: 480px;
  transform: rotate(45deg);
  right: -260px;
  top: -130px;
}
.final-cta:after {
  width: 370px;
  height: 370px;
  right: -205px;
  top: -75px;
}
.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-block: 75px;
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-size: clamp(46px, 4.2vw, 66px);
}
.final-cta p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 25px;
}
.final-cta .eyebrow {
  font-size: 10px;
}
.cta-note {
  display: block;
  font-size: 10px;
  margin-top: 16px;
  color: var(--muted);
  max-width: 210px;
}
.site-footer {
  background: var(--ivory);
  padding: 65px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1.05fr 1fr;
  gap: 45px;
}
.footer-grid h2 {
  font-family: var(--body);
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-grid ul {
  list-style: none;
}
.footer-grid li {
  font-size: 11px;
  line-height: 1.65;
  margin-bottom: 12px;
  color: var(--muted);
}
.footer-grid li a:hover {
  text-decoration: underline;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 22px;
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 25px;
}
.footer-location svg {
  width: 14px;
}
.footer-contact .button {
  font-size: 11px;
  gap: 20px;
  min-height: 43px;
  padding: 12px 17px;
}
.footer-contact > p {
  margin-top: 17px;
  font-size: 10px;
}
.footer-contact > a:not(.button) {
  display: block;
  font-size: 12px;
  margin-top: 14px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: var(--muted);
}
.preview-note {
  font-size: 9px;
  margin-top: 16px;
  color: var(--muted);
}
.mobile-contact {
  display: none;
}
/* Interior pages */
.breadcrumbs {
  padding-block: 27px;
  font-size: 10px;
  color: var(--muted);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.breadcrumbs li + li:before {
  content: '/';
  margin-right: 12px;
  color: var(--olive);
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding-block: 35px 60px;
}
.service-hero h1 {
  font-size: clamp(50px, 5vw, 76px);
}
.service-hero .lead {
  font-size: 16px;
  margin: 25px 0 30px;
}
.service-hero-image {
  align-self: stretch;
  min-height: 540px;
}
.service-hero-image picture {
  height: calc(100% - 26px);
  min-height: 510px;
}
.service-hero-image img {
  height: 100%;
  object-fit: cover;
}
.service-scope {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  font-size: 12px;
}
.service-scope > span {
  display: flex;
  gap: 9px;
  align-items: center;
}
.service-scope svg {
  width: 16px;
  height: 17px;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}
.service-detail p {
  font-size: 16px;
  line-height: 1.85;
}
.service-detail h2 {
  font-size: 53px;
}
.advice-box {
  padding: 30px;
  background: var(--sand);
  margin-top: 35px;
}
.advice-box h3 {
  font-size: 29px;
  margin-bottom: 18px;
}
.advice-box p {
  font-size: 14px;
}
.preparation {
  background: var(--sand);
}
.preparation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-block: 75px;
}
.preparation p {
  font-size: 14px;
  margin-top: 23px;
  max-width: 450px;
}
.preparation ol {
  list-style: none;
  display: grid;
  align-content: center;
}
.preparation li {
  padding: 19px 0;
  border-bottom: 1px solid #c7ccbd;
  display: flex;
  gap: 25px;
  font-size: 14px;
}
.preparation li span {
  font-size: 11px;
  padding-top: 2px;
}
.related {
  border-top: 1px solid var(--line);
}
.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.related-links .text-link {
  border-block: 1px solid var(--line);
  padding-block: 20px;
  justify-content: space-between;
}
.related-links .text-link:after {
  display: none;
}
.related .section-heading.horizontal {
  align-items: center;
}
.related h2 {
  font-size: 47px;
}
.page-intro {
  padding-block: 45px 65px;
}
.page-intro > .lead {
  margin-top: 30px;
  max-width: 650px;
}
.services-directory {
  padding-bottom: var(--space);
}
.all-services {
  row-gap: 65px;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
}
.location-grid article {
  border-top: 1px solid var(--line);
  padding-block: 30px 45px;
}
.location-number {
  font-size: 10px;
  letter-spacing: 0.13em;
}
.location-grid h2 {
  font-size: 40px;
  margin-top: 20px;
}
.location-grid p {
  font-size: 14px;
  margin-top: 23px;
}
.location-grid .location-towns {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.8;
}
.location-grid .text-link {
  margin-top: 15px;
}
.area-footnote {
  padding: 35px;
  margin-bottom: var(--space);
  background: var(--sand);
}
.area-footnote h2 {
  font-size: 35px;
  margin-bottom: 18px;
}
.area-footnote p {
  font-size: 14px;
  max-width: 850px;
}
.faq-page {
  max-width: 850px;
  padding-bottom: var(--space);
  margin-left: auto;
  margin-right: auto;
}
.faq-page summary {
  font-size: 17px;
}
.faq-page .faq-answer {
  font-size: 15px;
}
.prose-page {
  max-width: 850px;
  padding-bottom: 100px;
}
.prose-page h1 {
  font-size: 65px;
}
.prose-page h2 {
  font-size: 35px;
  margin-top: 38px;
  margin-bottom: 20px;
}
.not-found {
  padding-block: 100px 150px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 90px;
  padding-block: 35px 100px;
  align-items: start;
}
.contact-intro {
  position: sticky;
  top: 135px;
}
.contact-intro .lead {
  font-size: 16px;
  margin-top: 25px;
}
.contact-steps {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.contact-steps h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-steps p {
  font-size: 13px;
  display: flex;
  gap: 15px;
  margin-top: 14px;
}
.contact-steps span {
  font-size: 10px;
  margin-top: 2px;
}
.contact-help {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-block: 30px;
}
.contact-help svg {
  width: 20px;
}
.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 35px;
}
.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.form-heading .eyebrow {
  font-size: 10px;
}
.form-notice {
  background: var(--sand);
  font-size: 12px;
  line-height: 1.7;
  padding: 16px 18px;
  margin-bottom: 28px;
  color: var(--ink);
}
.form-notice strong {
  display: block;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 20px;
}
.field {
  min-width: 0;
}
.field-wide {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  background: var(--paper);
  border: 1px solid #a9b2a5;
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  line-height: 1.5;
  min-height: 49px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #72766d;
  font-size: 13px;
  opacity: 1;
}
.field textarea {
  resize: vertical;
  min-height: 95px;
}
.field input[aria-invalid='true'],
.field textarea[aria-invalid='true'],
.field select[aria-invalid='true'] {
  border-color: var(--error);
}
.field-error {
  font-size: 11px;
  line-height: 1.5;
  display: block;
  color: var(--error);
  margin-top: 5px;
}
.field-error:empty {
  margin: 0;
}
.photo-tip {
  display: flex;
  gap: 13px;
  padding-block: 23px;
  font-size: 12px;
  line-height: 1.7;
  border-bottom: 1px solid var(--line);
  margin-top: 10px;
}
.photo-tip svg {
  width: 21px;
}
.photo-tip strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
}
.form-privacy {
  font-size: 11px;
  margin-block: 20px;
}
.form-privacy a {
  text-decoration: underline;
}
.form-status {
  font-size: 12px;
  margin-top: 17px;
}
.enquiry-review {
  margin-top: 25px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.enquiry-review h2 {
  font-size: 32px;
}
.enquiry-review pre {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: var(--ivory);
  padding: 20px;
}
.enquiry-review p {
  font-size: 12px;
}
.review-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.text-button {
  background: transparent;
  text-decoration: underline;
  min-height: 44px;
  font-size: 12px;
}
.review-actions .button {
  min-height: 44px;
  font-size: 12px;
  padding: 12px;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
@keyframes arrive {
  from {
    transform: translateY(14px);
  }
  to {
    transform: translateY(0);
  }
}
.arrived {
  animation: arrive 0.65s var(--ease) both;
}
@media (min-width: 1800px) {
  .hero-copy {
    padding-left: 90px;
  }
}
@media (max-width: 1150px) {
  .primary-nav {
    gap: 20px;
  }
  .primary-nav .button {
    margin-left: 0;
  }
  .hero {
    min-height: 620px;
    grid-template-columns: 48% 52%;
  }
  .hero-copy {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding-inline: 18px;
    gap: 15px;
  }
  .hero-seal {
    left: -30px;
    width: 135px;
    height: 160px;
  }
  .hero-bottom {
    gap: 12px;
  }
  .service-image {
    height: 280px;
  }
  .care-story-copy {
    padding: 55px 45px;
  }
  .care-story-image {
    min-height: 650px;
  }
  .footer-grid {
    gap: 25px;
  }
  .service-hero,
  .contact-layout {
    gap: 45px;
  }
  .areas-section {
    gap: 55px;
  }
  .trust-strip > .wrap > div {
    font-size: 10px;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .header-inner {
    min-height: 82px;
    flex-wrap: wrap;
    padding-block: 15px;
  }
  .brand strong {
    font-size: 24px;
  }
  .nav-enhanced .menu-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    background: transparent;
    border: 1px solid var(--line);
    padding: 9px 12px;
    font-size: 12px;
    min-height: 44px;
  }
  .menu-toggle span {
    font-size: 17px;
  }
  .primary-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 25px;
  }
  .primary-nav .button {
    margin-left: auto;
  }
  .nav-enhanced .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    background: var(--ivory);
    padding: 20px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 15px #193c3b08;
  }
  .nav-enhanced .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-enhanced .primary-nav a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-enhanced .primary-nav .button {
    margin: 20px 0 0;
    align-self: flex-start;
  }
  .nav-enhanced .primary-nav > a[aria-current]:after {
    display: none;
  }
  .hero {
    min-height: 600px;
  }
  .hero-copy {
    padding-top: 60px;
  }
  .hero h1 {
    font-size: clamp(42px, 5.6vw, 56px);
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.09em;
  }
  .hero-copy .eyebrow:before {
    width: 10px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 300px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .hero-note {
    font-size: 10px;
    max-width: 250px;
  }
  .hero-seal {
    left: -25px;
    bottom: 65px;
    width: 115px;
    height: 148px;
    padding: 17px;
  }
  .hero-seal span {
    font-size: 20px;
  }
  .hero-image-label {
    left: 20px;
    right: 20px;
    gap: 20px;
  }
  .hero-image-label span:last-child {
    display: none;
  }
  .hero-bottom {
    font-size: 7px;
    gap: 10px;
  }
  .trust-strip > .wrap {
    grid-template-columns: 1fr 1fr;
    min-height: 120px;
  }
  .trust-strip > .wrap > div {
    font-size: 12px;
    justify-content: flex-start !important;
    padding: 10px 0;
  }
  .trust-strip > .wrap > div:nth-child(even) {
    padding-left: 25px;
    border: 0;
  }
  .section-heading.horizontal {
    gap: 40px;
  }
  .service-grid {
    gap: 20px;
  }
  .service-image {
    height: 230px;
  }
  .service-card :is(h2, h3) {
    font-size: 27px;
  }
  .service-card > p {
    font-size: 12px;
  }
  .service-cta {
    font-size: 9px;
  }
  .services-extra {
    gap: 20px;
    flex-wrap: wrap;
  }
  .services-extra > span {
    width: 100%;
  }
  .care-story-copy {
    padding: 45px 30px;
  }
  .care-story-image {
    min-height: 620px;
  }
  .care-story h2 {
    font-size: 46px;
  }
  .care-story-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .care-points p {
    font-size: 11px;
  }
  .process-grid {
    gap: 25px;
  }
  .process-grid h3 {
    font-size: 26px;
  }
  .editorial-feature {
    gap: 40px;
  }
  .feature-image picture {
    height: 450px;
  }
  .two-stories {
    gap: 45px;
  }
  .two-stories h2 {
    font-size: 46px;
  }
  .marine-inner {
    gap: 45px;
  }
  .areas-section {
    gap: 40px;
  }
  .area-panel {
    padding: 23px;
  }
  .area-panel-title span {
    font-size: 7px;
  }
  .area-names {
    font-size: 23px;
  }
  .faq-section {
    gap: 45px;
    grid-template-columns: 0.9fr 1.3fr;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }
  .final-cta-inner {
    gap: 40px;
  }
  .service-hero {
    gap: 35px;
  }
  .service-hero h1 {
    font-size: 53px;
  }
  .service-hero-image {
    min-height: 470px;
  }
  .service-hero-image picture {
    min-height: 440px;
  }
  .service-detail,
  .preparation-inner {
    gap: 45px;
  }
  .service-detail h2 {
    font-size: 45px;
  }
  .contact-layout {
    grid-template-columns: 0.85fr 1.2fr;
    gap: 30px;
  }
  .contact-intro h1 {
    font-size: 58px;
  }
  .form-panel {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-panel .field {
    grid-column: 1;
  }
  .form-panel .photo-tip {
    font-size: 11px;
  }
  .related h2 {
    font-size: 40px;
  }
}
@media (max-width: 700px) {
  :root {
    --h1: 62px;
    --h2: 47px;
    --space: 75px;
  }
  .header-inner {
    min-height: 78px;
    padding-block: 12px;
    gap: 16px;
  }
  .brand strong {
    font-size: 24px;
  }
  .brand small {
    font-size: 7px;
  }
  .brand-mark {
    width: 32px;
    height: 35px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    padding: 45px var(--gutter) 0;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
    white-space: normal;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(40px, 12.8vw, 70px);
  }
  .hero-description {
    font-size: 14px;
    max-width: 410px;
    margin-top: 22px;
    line-height: 1.8;
  }
  .hero-actions {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-top: 25px;
  }
  .hero-actions .button {
    min-height: 49px;
    font-size: 12px;
    padding: 14px 18px;
    gap: 22px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 13px;
  }
  .hero-note {
    font-size: 10px;
    max-width: none;
    margin-top: 23px;
  }
  .hero-bottom {
    padding: 24px 0 23px;
    font-size: 7px;
    gap: 20px;
  }
  .hero-art {
    height: 375px;
    margin-left: var(--gutter);
  }
  .hero-art img {
    object-position: 60% center;
  }
  .hero-seal {
    left: auto;
    right: 20px;
    bottom: 26px;
    width: 121px;
    height: 146px;
  }
  .hero-image-label {
    bottom: 23px;
    left: 20px;
    max-width: 150px;
    line-height: 1.7;
    font-size: 7px;
  }
  .trust-strip {
    margin-top: 0;
  }
  .trust-strip > .wrap {
    min-height: 130px;
    gap: 0;
  }
  .trust-strip > .wrap > div {
    font-size: 10px;
    gap: 9px;
    padding-block: 12px;
  }
  .trust-strip > .wrap > div:nth-child(even) {
    padding-left: 15px;
  }
  .trust-strip svg {
    width: 19px;
  }
  .section-heading.horizontal {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }
  .section-heading.horizontal > div:last-child {
    justify-self: start;
  }
  .section-heading.horizontal > div:last-child > p {
    font-size: 14px;
    max-width: 430px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-image {
    height: 340px;
  }
  .service-card-title {
    margin-top: 16px;
  }
  .service-card :is(h2, h3) {
    font-size: 35px;
  }
  .service-card > p {
    font-size: 14px;
    max-width: 430px;
  }
  .service-cta {
    font-size: 9px;
    margin-top: 12px;
  }
  .services-extra {
    gap: 6px 25px;
    margin-top: 32px;
    padding-top: 20px;
  }
  .services-extra > span {
    font-size: 23px;
  }
  .services-extra .text-link {
    font-size: 11px;
  }
  .care-story {
    grid-template-columns: 1fr;
  }
  .care-story-image {
    min-height: 0;
    height: 370px;
  }
  .image-caption {
    bottom: 20px;
    left: 22px;
    font-size: 10px;
    padding: 10px 15px;
  }
  .care-story-copy {
    padding: 45px var(--gutter);
  }
  .care-story h2 {
    font-size: 49px;
  }
  .care-story-copy > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 440px;
  }
  .care-points {
    margin-block: 25px;
  }
  .care-points h3 {
    font-size: 13px;
  }
  .care-points p {
    font-size: 12px;
  }
  .process > .section-heading {
    text-align: left;
  }
  .process > .section-heading > p {
    margin-left: 0;
    font-size: 14px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 35px;
  }
  .process-grid li {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 0 15px;
    padding-top: 22px;
  }
  .step-number {
    grid-row: 1/3;
    margin-top: 7px;
  }
  .process-grid h3 {
    font-size: 29px;
  }
  .process-grid p {
    grid-column: 2;
    font-size: 13px;
    margin-top: 12px;
  }
  .editorial-feature {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .feature-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .feature-image picture {
    height: 390px;
  }
  .feature-copy .honest-note {
    margin-top: 13px;
    padding-top: 20px;
  }
  .two-stories {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 55px;
  }
  .sleep-story .story-picture,
  .story-picture {
    height: 390px;
  }
  .two-stories .hospitality-story {
    padding-top: 0;
  }
  .two-stories h2 {
    font-size: 49px;
  }
  .two-stories article {
    display: grid;
    grid-template-columns: 1fr;
  }
  .story-picture {
    margin-bottom: 25px;
  }
  .two-stories .text-link {
    margin-top: 15px;
  }
  .marine-inner {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-block: 35px 50px;
  }
  .marine-image {
    height: 270px;
  }
  .marine-inner h2 {
    font-size: 52px;
  }
  .marine-inner p:not(.eyebrow) {
    max-width: 400px;
  }
  .marine-decoration {
    font-size: 400px;
    right: -100px;
    bottom: -125px;
  }
  .areas-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .areas-section > div > p:not(.eyebrow) {
    margin-top: 22px;
  }
  .area-panel {
    padding: 25px;
  }
  .area-names {
    font-size: 27px;
  }
  .area-panel-title span {
    font-size: 8px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section h2 {
    max-width: 350px;
  }
  .faq-section > div:first-child > .text-link {
    margin-top: 18px;
  }
  .faq-list summary {
    font-size: 14px;
    padding: 21px 0;
    gap: 18px;
  }
  .faq-answer {
    font-size: 13px;
  }
  .final-cta-inner {
    display: block;
    padding-block: 55px;
  }
  .final-cta h2 {
    font-size: 48px;
  }
  .final-cta p:not(.eyebrow) {
    font-size: 13px;
  }
  .final-cta-inner > div + div {
    margin-top: 27px;
  }
  .cta-note {
    max-width: none;
    font-size: 9px;
  }
  .site-footer {
    padding: 45px 0 100px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-grid h2 {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .footer-grid li {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .footer-brand p {
    font-size: 14px;
    margin-top: 15px;
  }
  .footer-location {
    font-size: 10px;
    margin-top: 16px;
  }
  .footer-contact > p {
    max-width: 280px;
    font-size: 11px;
  }
  .footer-bottom {
    margin-top: 35px;
    font-size: 8px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .preview-note {
    font-size: 9px;
    line-height: 1.6;
  }
  .mobile-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 25;
    background: var(--ivory);
    box-shadow: 0 -4px 20px #193c3b10;
    border-top: 1px solid var(--line);
    display: flex;
    padding: 9px 13px calc(9px + env(safe-area-inset-bottom));
    gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-contact > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    flex: 1;
    font-size: 11px;
  }
  .mobile-contact svg {
    width: 17px;
  }
  .mobile-contact .mobile-quote {
    background: var(--teal);
    color: var(--paper);
    border-radius: var(--radius);
    flex: 1.2;
  }
  .breadcrumbs {
    padding-block: 20px;
    font-size: 9px;
  }
  .service-hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 20px;
    padding-bottom: 45px;
  }
  .service-hero h1 {
    font-size: 58px;
    max-width: 550px;
  }
  .service-hero .lead {
    font-size: 15px;
    margin-block: 22px 26px;
  }
  .service-hero-image {
    min-height: 0;
  }
  .service-hero-image picture {
    min-height: 0;
    height: 380px;
  }
  .service-scope {
    font-size: 12px;
    margin-top: 25px;
    gap: 9px;
  }
  .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-detail h2 {
    font-size: 46px;
  }
  .service-detail p {
    font-size: 15px;
  }
  .advice-box {
    padding: 25px;
    margin-top: 28px;
  }
  .advice-box p {
    font-size: 13px;
  }
  .preparation-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 50px;
  }
  .preparation-inner h2 {
    font-size: 46px;
  }
  .preparation p {
    font-size: 14px;
  }
  .preparation li {
    font-size: 13px;
    gap: 20px;
  }
  .related-links {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .related-links .text-link {
    border-bottom: 0;
  }
  .related-links .text-link:last-child {
    border-bottom: 1px solid var(--line);
  }
  .related .section-heading.horizontal > .text-link {
    justify-self: start;
  }
  .page-intro {
    padding-block: 25px 45px;
  }
  .page-intro > .lead {
    font-size: 15px;
    margin-top: 25px;
  }
  .all-services {
    gap: 45px;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-grid article {
    padding-bottom: 40px;
  }
  .location-grid h2 {
    font-size: 39px;
  }
  .area-footnote {
    padding: 25px;
  }
  .area-footnote h2 {
    font-size: 33px;
  }
  .faq-page summary {
    font-size: 15px;
  }
  .faq-page .faq-answer {
    font-size: 14px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 20px 65px;
  }
  .contact-intro {
    position: static;
  }
  .contact-intro h1 {
    font-size: 66px;
  }
  .contact-intro .lead {
    font-size: 15px;
  }
  .contact-steps {
    margin-top: 28px;
    padding-top: 23px;
  }
  .contact-intro .text-link {
    margin-top: 0;
  }
  .contact-help {
    margin-block: 23px;
  }
  .form-panel {
    padding: 25px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-panel .button[type='submit'] {
    width: 100%;
  }
  .form-notice {
    font-size: 12px;
  }
  .prose-page h1 {
    font-size: 53px;
  }
  .prose-page p {
    font-size: 14px;
  }
  .prose-page h2 {
    font-size: 32px;
  }
  .not-found {
    padding-block: 60px 100px;
  }
}
@media (max-width: 370px) {
  .hero h1 {
    font-size: 12.8vw;
  }
  .hero-actions {
    gap: 13px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero-bottom {
    gap: 12px;
  }
  .hero-note {
    font-size: 9px;
  }
  .hero-art {
    height: 320px;
  }
  .trust-strip > .wrap > div {
    font-size: 9px;
  }
  .service-image {
    height: 290px;
  }
  .service-hero h1 {
    font-size: 49px;
  }
  .footer-grid {
    gap: 30px 18px;
  }
  .area-panel {
    padding: 20px;
  }
  .area-panel-title span {
    font-size: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
  .service-card:hover img {
    transform: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.comparison-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.compare-photo {
  position: relative;
  min-width: 0;
}
.compare-photo picture,
.compare-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-photo {
  aspect-ratio: 4 / 3;
}
.compare-label {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 16px;
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-after .compare-label {
  left: auto;
  right: 24px;
}
.compare-divider {
  display: none;
}
.comparison-enhanced:not(.comparison-paired) .comparison-images {
  width: 100%;
  touch-action: pan-y;
  cursor: ew-resize;
  display: block;
  aspect-ratio: 4 / 3;
  max-height: 720px;
  overflow: hidden;
}
.comparison-enhanced:not(.comparison-paired) .compare-photo {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}
.comparison-enhanced:not(.comparison-paired) .compare-after {
  clip-path: inset(0 0 0 calc(100% - var(--reveal, 50%)));
}
.comparison-enhanced:not(.comparison-paired) .compare-divider {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% - var(--reveal, 50%));
  width: 2px;
  background: var(--compare-line);
  pointer-events: none;
}
.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 25px;
  box-shadow: 0 2px 15px #193c3b30;
}
.comparison-controls {
  display: grid;
  grid-template-columns: 185px minmax(100px, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 22px 0 16px;
}
.comparison-controls[hidden] {
  display: none;
}
.comparison-controls label {
  font-weight: 600;
  font-size: 14px;
}
.comparison-controls label > span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.comparison-controls input {
  width: 100%;
  min-height: 44px;
  accent-color: var(--teal);
  cursor: ew-resize;
}
.comparison figcaption {
  font-size: 12px;
  color: var(--muted);
  max-width: 750px;
  margin-top: 12px;
}
.calculator-intro {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
  padding-top: 30px;
  padding-bottom: 48px;
}
.calculator-intro h1 {
  font-size: clamp(55px, 5.7vw, 86px);
}
.calculator-intro > div > p:not(.eyebrow) {
  max-width: 480px;
}
.calculator-intro .text-link {
  margin-top: 20px;
}
.calculator-disclosure {
  font-size: 13px;
  border-left: 2px solid var(--teal);
  padding-left: 15px;
}
.calculator-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  border-block: 1px solid var(--line);
  padding-block: 20px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.calculator-promise span::before {
  content: '✓';
  padding-right: 8px;
  color: var(--teal);
}
.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 355px;
  gap: 48px;
  padding-top: 64px;
  align-items: start;
}
.calculator-main {
  min-width: 0;
}
.calculator-step {
  display: flex;
  align-items: start;
  gap: 18px;
  margin-bottom: 28px;
}
.calculator-step > span {
  font-family: var(--display);
  font-size: 25px;
  border-top: 1px solid var(--ink);
  margin-top: 9px;
}
.calculator-step h2 {
  font-size: clamp(34px, 3vw, 46px);
}
.calculator-step p {
  font-size: 14px;
  margin-top: 12px;
  max-width: 480px;
}
.calculator-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.calculator-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}
.calculator-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.calculator-photo picture,
.calculator-photo img {
  height: 100%;
  object-fit: cover;
}
.calculator-photo img {
  transition: transform 0.5s var(--ease);
}
.calculator-card:hover .calculator-photo img {
  transform: scale(1.025);
}
.calculator-card[data-group='mattress'] .calculator-photo img {
  object-position: 50% 70%;
}
.catalog-price {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 5px 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.calculator-card-body {
  padding: 23px;
}
.calculator-card h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.calculator-card-body > p {
  font-size: 13px;
  min-height: 64px;
}
.item-picker {
  border: 0;
  padding: 0;
  margin: 20px 0 0;
  min-width: 0;
}
.item-picker label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  color: var(--muted);
}
.item-picker select,
.item-picker input {
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 46px;
  padding: 0 10px;
  width: 100%;
  min-width: 0;
}
.item-picker select {
  font-size: 13px;
}
.item-add-row {
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: end;
  gap: 14px;
  margin-top: 14px;
}
.item-add-row .button {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  justify-content: space-between;
}
.item-picker .field-error {
  font-size: 12px;
  margin-top: 7px;
  min-height: 20px;
}
.item-picker .field-error.is-success {
  color: var(--teal);
}
.bespoke-card {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}
.bespoke-card h3 {
  font-size: 39px;
}
.bespoke-card > p:not(.eyebrow) {
  font-size: 14px;
  margin-block: 20px;
}
.bespoke-card .text-link {
  font-size: 13px;
  align-self: start;
}
.calculator-upgrades,
.calculator-pairings {
  margin-top: 64px;
}
.upgrade-list {
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
}
.upgrade-option {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.upgrade-title {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 10px;
  align-items: center;
}
.upgrade-title input {
  width: 22px;
  height: 22px;
  accent-color: var(--teal);
  margin: 0;
  cursor: pointer;
}
.upgrade-title label {
  font-weight: 600;
  padding-block: 9px;
  cursor: pointer;
}
.upgrade-title > span {
  font-weight: 600;
  font-size: 14px;
}
.upgrade-option > p {
  margin: 7px 0 0 36px;
  font-size: 13px;
}
.upgrade-option .upgrade-scope {
  font-size: 12px;
  color: var(--teal);
}
.estimate {
  position: sticky;
  top: 110px;
  background: var(--sand);
  padding: 30px;
  border-top: 3px solid var(--teal);
  max-height: calc(100dvh - 135px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--sand);
}
.estimate h2 {
  font-size: 43px;
}
.estimate-heading {
  margin-bottom: 26px;
}
.estimate-empty {
  font-size: 14px;
  padding-block: 8px 26px;
}
.estimate-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.estimate-item-list li {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  font-size: 13px;
}
.estimate-item-list li > div {
  min-width: 0;
}
.estimate-item-list li > strong {
  white-space: nowrap;
}
.estimate-item-list li > div > span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.estimate-quantity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 9px;
}
.estimate-quantity button {
  border: 1px solid var(--line);
  background: var(--paper);
  width: 34px;
  height: 36px;
  font-size: 19px;
}
.estimate-quantity > span {
  min-width: 28px;
  text-align: center;
  font-size: 12px;
}
.estimate-quantity .estimate-remove {
  background: transparent;
  border: 0;
  font-size: 11px;
  width: auto;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
}
#estimate-breakdown dl {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 14px 0;
}
#estimate-breakdown dl > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-block: 8px;
  font-size: 12px;
}
#estimate-breakdown dd {
  margin: 0;
  white-space: nowrap;
}
.estimate-saving {
  color: var(--teal);
  font-weight: 600;
}
.estimate-total {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.estimate-total > span {
  font-size: 13px;
}
.estimate-total > strong {
  font-family: var(--display);
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.estimate-minimum,
.estimate-disclaimer {
  font-size: 11px;
}
.estimate-disclaimer {
  margin-top: 12px;
}
.estimate-continue {
  width: 100%;
  padding-inline: 16px;
  font-size: 13px;
  margin-top: 24px;
  text-align: left;
}
#estimate-reset {
  display: block;
  font-size: 12px;
  margin: 12px auto 0;
  min-height: 40px;
}
#calculator-status {
  font-size: 12px;
  margin-top: 10px;
}
.estimate-privacy {
  font-size: 10px;
  text-align: center;
  margin-top: 20px;
}
#pairing-options {
  display: grid;
  gap: 12px;
}
.pairing-button {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 20px 24px;
  background: var(--paper);
  text-align: left;
  transition: background 0.2s;
}
.pairing-button:hover {
  background: var(--sand);
}
.pairing-button small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.pairing-button > span:last-child {
  font-size: 25px;
}
@media (max-width: 1150px) {
  .calculator-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 25px;
  }
  .calculator-card-body {
    padding: 18px;
  }
  .estimate {
    padding: 23px;
  }
  .calculator-intro {
    gap: 40px;
  }
}
@media (max-width: 1050px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }
  .estimate {
    position: static;
    max-height: none;
    margin-top: 35px;
  }
  .estimate h2 br {
    display: none;
  }
  .estimate-continue {
    max-width: 390px;
  }
  .estimate-privacy {
    text-align: left;
  }
  #estimate-reset {
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  .calculator-intro {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .calculator-intro h1 {
    font-size: clamp(48px, 12vw, 68px);
  }
  .calculator-promise {
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr;
    padding-block: 18px;
  }
  .calculator-layout {
    padding-top: 40px;
  }
  .calculator-catalog {
    gap: 16px;
  }
  .comparison-controls {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-block: 14px 4px;
  }
  .comparison-controls label {
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }
  .comparison-controls .text-button {
    justify-self: start;
    min-height: 44px;
  }
  .compare-label {
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 5px 9px;
  }
  .compare-after .compare-label {
    right: 10px;
  }
  .compare-divider span {
    width: 40px;
    height: 40px;
  }
  .comparison-paired .comparison-images,
  .comparison:not(.comparison-enhanced) .comparison-images {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .item-picker select {
    font-size: 16px;
  }
  .calculator-card-body > p {
    font-size: 14px;
  }
  .calculator-catalog {
    grid-template-columns: 1fr;
  }
  .calculator-card-body {
    padding: 22px;
  }
  .calculator-card-body > p {
    min-height: 0;
  }
  .calculator-photo {
    aspect-ratio: 16 / 10;
  }
  .calculator-step {
    gap: 14px;
  }
  .calculator-step h2 {
    font-size: 35px;
  }
  .bespoke-card {
    padding: 30px;
  }
  .upgrade-title {
    grid-template-columns: 24px 1fr auto;
    gap: 8px;
  }
  .upgrade-title label {
    font-size: 14px;
  }
  .upgrade-title > span {
    font-size: 13px;
  }
  .upgrade-option > p {
    margin-left: 32px;
  }
  .estimate-quantity button {
    min-width: 40px;
    min-height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .calculator-photo img,
  .pairing-button {
    transition: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .mobile-contact,
  .button,
  .menu-toggle {
    display: none !important;
  }
  .wrap {
    width: 100%;
  }
  body {
    background: white;
    color: black;
  }
  .hero,
  .service-hero,
  .service-detail,
  .contact-layout {
    display: block;
  }
  .hero-art {
    height: 300px;
  }
  .section {
    padding-block: 30px;
  }
  details:not([open]) .faq-answer {
    display: block;
  }
  .contact-intro {
    position: static;
  }
}
