@font-face {
  font-family: Cormorant;
  src: url("assets/fonts/cormorant-garamond-latin-400-normal.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url("assets/fonts/cormorant-garamond-latin-400-italic.woff2")
    format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("assets/fonts/montserrat-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("assets/fonts/montserrat-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("assets/fonts/montserrat-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
:root {
  --green: #3d5440;
  --deep: #263b2e;
  --gold: #977c51;
  --ivory: #f9f5f2;
  --paper: #fffdfa;
  --muted: #677066;
  --line: #dcded3;
  --serif: Cormorant, Georgia, serif;
  --sans: Montserrat, Arial, sans-serif;
  --gutter: clamp(24px, 5.5vw, 100px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--green);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}
em {
  font-weight: 400;
}
::selection {
  background: #d5c39e;
  color: var(--deep);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
.icon {
  height: 22px;
  width: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  padding: 12px 20px;
  z-index: 200;
  background: var(--deep);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.announcement {
  height: 36px;
  background: var(--green);
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--gutter);
  font-size: 12px;
  letter-spacing: 0.03em;
}
.announcement a {
  display: flex;
  gap: 9px;
  align-items: center;
}
.announcement .icon {
  height: 14px;
  width: 14px;
}
.site-header {
  height: 111px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #3d54401a;
}
.brand {
  width: 218px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: clamp(20px, 2.1vw, 36px);
  margin-left: auto;
  font-size: 13px;
}
.desktop-nav a {
  padding: 12px 0;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.2s;
}
.desktop-nav a:hover:after {
  width: 100%;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 17px 24px;
  background: var(--green);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  border: 1px solid var(--green);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #263b2e14;
}
.button-small {
  min-height: 44px;
  padding: 12px 17px;
  font-size: 12px;
}
.button-small .icon {
  width: 16px;
  height: 16px;
}
.header-cta {
  margin-left: 18px;
}
.menu-toggle {
  display: none;
}
.mobile-menu[hidden] {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}
.hero-copy {
  padding: 64px 38px 33px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 500;
  display: flex;
  gap: 13px;
  align-items: center;
  line-height: 1.5;
}
.small-line {
  height: 1px;
  width: 31px;
  background: var(--gold);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(64px, 6.5vw, 106px);
  letter-spacing: -0.045em;
  margin-top: 31px;
  margin-bottom: 27px;
  line-height: 0.99;
}
.hero h1 em {
  color: var(--gold);
}
.hero-description {
  font-size: 15px;
  line-height: 1.85;
  color: #697064;
  margin-bottom: 29px;
}
.hero-cta {
  min-width: 292px;
}
.end-icon {
  margin-left: 13px;
}
.cta-note {
  font-size: 11px;
  display: block;
  margin-top: 11px;
  color: var(--muted);
}
.hero-bottom {
  margin-top: auto;
  padding-top: 43px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 17px;
}
.hero-bottom-line {
  height: 45px;
  width: 1px;
  background: #b8bba9;
}
.hero-bottom p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.hero-bottom strong {
  font-weight: 500;
  color: var(--green);
}
.scroll-cue {
  margin-left: auto;
  margin-right: 23px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #3d544030;
  border-radius: 50%;
}
.scroll-cue .icon {
  width: 18px;
  transform: rotate(90deg);
}
.hero-visual {
  position: relative;
  min-height: 100%;
  background: #e8e4d9;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center 52%;
}
.hero-image.brand-fallback {
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 12%;
}
.visual-index {
  position: absolute;
  top: 26px;
  left: 30px;
  color: #f9f5f2ce;
  font-size: 10px;
  letter-spacing: 0.17em;
  writing-mode: vertical-rl;
}
.hero-image-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, #15291c90);
  color: var(--ivory);
  padding: 70px 36px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1.6;
}
.hero-image-note em {
  font: 28px var(--serif);
}
.visual-cross {
  font: 52px var(--serif);
  font-weight: 400;
  color: #c9b388;
}
.values-ribbon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px var(--gutter);
  background: #eeeae1;
  border-bottom: 1px solid #d6d8cd;
  font-size: 13px;
}
.ribbon-star {
  color: var(--gold);
  font-size: 22px;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 760px;
  }
  .hero-copy {
    padding-top: 90px;
  }
  .hero-description {
    font-size: 17px;
  }
}
@media (max-width: 1150px) {
  .desktop-nav {
    gap: 18px;
    font-size: 12px;
  }
  .brand {
    width: 188px;
  }
  .header-cta {
    margin-left: 0;
  }
  .site-header {
    gap: 22px;
    height: 96px;
  }
  .hero {
    min-height: 620px;
  }
  .hero-copy {
    padding-top: 58px;
  }
  .hero h1 {
    font-size: 75px;
  }
  .desktop-only {
    display: none;
  }
  .hero-description {
    max-width: 350px;
  }
  .values-ribbon {
    font-size: 12px;
    gap: 16px;
  }
}
@media (max-width: 950px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .site-header {
    height: 88px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #3d544030;
    background: transparent;
  }
  .menu-toggle span {
    height: 1px;
    width: 20px;
    background: var(--green);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 12px var(--gutter) 25px;
    box-shadow: 0 18px 25px #263b2e12;
  }
  .mobile-menu a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-copy {
    padding-right: 25px;
    padding-top: 46px;
  }
  .hero {
    min-height: 610px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-cta {
    min-width: 0;
    padding: 17px 18px;
    font-size: 12px;
  }
  .hero-cta .end-icon {
    margin-left: 0;
  }
  .values-ribbon {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 23px;
  }
  .values-ribbon .ribbon-star:last-of-type {
    display: none;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 85px;
  }
  .announcement {
    height: 31px;
    justify-content: center;
    font-size: 10px;
  }
  .announcement a {
    display: none;
  }
  .brand {
    width: 180px;
  }
  .site-header {
    height: 80px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    padding: 42px 24px 34px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .hero h1 {
    font-size: clamp(54px, 12vw, 76px);
    margin: 25px 0 24px;
    line-height: 1.02;
  }
  .hero-description {
    font-size: 14px;
    max-width: 365px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  .hero-cta {
    font-size: 13px;
    min-height: 56px;
    padding: 16px 20px;
  }
  .hero-cta .end-icon {
    margin-left: 6px;
  }
  .cta-note {
    font-size: 10px;
  }
  .hero-bottom {
    display: none;
  }
  .hero-visual {
    height: 430px;
    min-height: 0;
  }
  .hero-image {
    object-position: center 57%;
  }
  .visual-index {
    left: 20px;
    top: 20px;
  }
  .hero-image-note {
    padding: 70px 24px 25px;
  }
  .values-ribbon {
    padding: 21px 23px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 15px;
    font-size: 10px;
    text-align: center;
  }
  .ribbon-star {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
/* Editorial sections */
.section-wrap {
  padding: 100px var(--gutter);
}
h2 {
  font-size: clamp(47px, 4.6vw, 72px);
  letter-spacing: -0.035em;
}
h2 em {
  color: var(--gold);
}
.essence {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 7%;
  padding-top: 112px;
  padding-bottom: 112px;
}
.essence .section-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.essence-monogram {
  width: 160px;
  height: 160px;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-top: 55px;
  margin-left: 10px;
}
.essence-story {
  max-width: 780px;
}
.essence-description {
  max-width: 630px;
  margin: 30px 0 27px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}
.essence-description p + p {
  margin-top: 16px;
}
.text-link {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  line-height: 1.6;
  padding: 5px 0;
  border-bottom: 1px solid #977c5160;
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  transition:
    gap 0.2s,
    color 0.2s;
}
.text-link:hover {
  gap: 22px;
  color: var(--gold);
}
.text-link .icon {
  width: 20px;
  height: 20px;
}
.video-trigger {
  border: 0;
}
.play-small {
  display: grid;
  place-items: center;
  height: 44px;
  width: 44px;
  border: 1px solid #977c5175;
  border-radius: 50%;
  transition: background 0.2s;
}
.play-small .icon {
  height: 15px;
  width: 15px;
  margin-left: -2px;
}
.video-trigger:hover .play-small {
  background: #eee7da;
}
.video-duration {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.care {
  background: var(--green);
  color: var(--ivory);
  display: grid;
  grid-template-columns: 48% 52%;
  padding: 64px var(--gutter) 64px 0;
  align-items: stretch;
  gap: 0;
}
.care-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  margin: 0 20px 0 0;
}
.care-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.image-caption {
  position: absolute;
  bottom: 24px;
  left: var(--gutter);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--deep);
  background: #f9f5f2d9;
  padding: 9px 12px;
}
.care-copy {
  padding: 14px 0 10px 68px;
}
.care .eyebrow {
  color: #d6c8ad;
}
.care h2 {
  margin-top: 24px;
  font-size: clamp(48px, 4.4vw, 70px);
}
.care h2 em {
  color: #d8c59d;
}
.care-points {
  margin: 33px 0 25px;
}
.care-points article {
  display: flex;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid #f9f5f226;
}
.care-points article > span {
  font-size: 11px;
  color: #d8c59d;
  padding-top: 7px;
}
.care-points h3 {
  font-size: 29px;
  margin-bottom: 8px;
}
.care-points p {
  font-size: 14px;
  line-height: 1.8;
  color: #e1e4d8;
  max-width: 390px;
}
.light-link {
  color: #f5ebd6;
  border-color: #bba77d66;
  font-size: 13px;
}
.light-link:hover {
  color: #ead7b3;
}
.process .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
}
.section-heading h2 {
  margin-top: 22px;
}
.section-heading > p {
  font-size: 15px;
  color: var(--muted);
  padding-bottom: 3px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin-top: 59px;
}
.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #b9bdad;
  padding-top: 24px;
}
.step-number {
  font: 56px var(--serif);
  color: var(--gold);
  line-height: 1;
}
.step-top .icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.steps h3 {
  font-size: 31px;
  margin: 26px 0 15px;
  letter-spacing: -0.025em;
}
.steps p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 315px;
}
.process-cta {
  margin-top: 42px;
}
.manifesto {
  padding: 75px 24px 67px;
  text-align: center;
  background: #eaeade;
  border-top: 1px solid #d8d9ca;
  border-bottom: 1px solid #d8d9ca;
}
.manifesto .eyebrow {
  justify-content: center;
  font-size: 10px;
}
.manifesto > p {
  font: clamp(35px, 3.6vw, 58px)/1.15 var(--serif);
  letter-spacing: -0.022em;
  margin: 28px 0 24px;
}
.manifesto > p em {
  color: var(--gold);
}
.manifesto-signature {
  font-size: 10px;
  letter-spacing: 0.3em;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
  padding-top: 112px;
  padding-bottom: 116px;
}
.faq h2 {
  margin-top: 24px;
  font-size: clamp(43px, 4vw, 62px);
}
.faq-intro > p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
  font-size: 15px;
}
.faq-list {
  border-top: 1px solid #bfc4b6;
}
.faq-list details {
  border-bottom: 1px solid #bfc4b6;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 31px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.faq-answer .text-link {
  margin-top: 15px;
  color: var(--green);
}
.location {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--ivory);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10%;
  padding-top: 90px;
  padding-bottom: 90px;
}
.location:before {
  content: "";
  width: 620px;
  height: 620px;
  border: 1px solid #c6b08216;
  border-radius: 50%;
  position: absolute;
  left: -280px;
  bottom: -340px;
  pointer-events: none;
}
.location .eyebrow {
  color: #cebb95;
}
.location-intro h2 {
  font-size: clamp(62px, 6.6vw, 100px);
  margin-top: 25px;
  line-height: 1;
}
.location h2 em {
  color: #cfb785;
}
.location-intro > p:last-child {
  font-size: 15px;
  line-height: 1.85;
  color: #d3dbcf;
  margin-top: 27px;
}
.address-card {
  background: var(--ivory);
  padding: 35px 40px;
  color: var(--green);
  max-width: 485px;
  align-self: center;
  position: relative;
}
.address-card:before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid #977c5130;
  pointer-events: none;
}
.address-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.address-card .eyebrow {
  font-size: 10px;
  color: var(--gold);
}
.location-icon {
  display: grid;
  place-items: center;
  border: 1px solid #bba78175;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: var(--gold);
}
.location-icon .icon {
  height: 17px;
  width: 17px;
}
.address-city {
  font: 64px var(--serif);
  letter-spacing: -0.03em;
  margin-top: 6px;
}
.address-city span {
  font: 11px var(--sans);
  letter-spacing: 0.08em;
  margin-left: 12px;
  color: var(--gold);
}
.address-rule {
  height: 1px;
  background: #bfc4b6;
  margin: 14px 0 23px;
}
.address-card h3 {
  font-size: 29px;
  line-height: 1.1;
  margin-bottom: 17px;
}
.address-card address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.9;
  color: #64715f;
}
.address-note {
  font-size: 11px;
  color: var(--muted);
  margin: 15px 0 25px;
}
.outline-button {
  background: transparent;
  color: var(--green);
  width: 100%;
  min-height: 49px;
  font-size: 13px;
}
.outline-button:hover {
  color: var(--ivory);
}
.outline-button .icon {
  margin-left: auto;
  width: 17px;
}
.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 95px;
  padding-bottom: 85px;
}
.contact > .eyebrow {
  justify-content: center;
}
.contact h2 {
  font-size: clamp(67px, 6.4vw, 98px);
  margin: 25px 0 24px;
  position: relative;
  z-index: 1;
}
.contact > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.contact .button {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.contact-number {
  display: block;
  width: max-content;
  margin: 15px auto 0;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.contact-symbol {
  width: 500px;
  position: absolute;
  right: -150px;
  top: 20px;
  opacity: 0.19;
  mix-blend-mode: multiply;
  transform: rotate(-17deg);
  pointer-events: none;
}
.site-footer {
  padding: 36px var(--gutter) 22px;
  background: #f0eee7;
  border-top: 1px solid #d5d8cc;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d5d8cc;
}
.footer-brand {
  width: 210px;
}
.footer-main > p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.back-to-top {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 12px;
}
.back-to-top .icon {
  height: 17px;
  width: 17px;
}
.footer-bottom {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom > span:last-child {
  margin-left: auto;
}
.privacy-trigger {
  background: none;
  border: 0;
  padding: 0;
  text-decoration: underline;
  font-size: 11px;
}
.illustration-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
}
.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 40;
  background: var(--green);
  color: white;
  border: 1px solid #e7ddc670;
  box-shadow: 0 4px 20px #172f2325;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 50px;
  padding: 15px;
  transition: background 0.2s;
}
.floating-contact > .icon {
  height: 27px;
  width: 27px;
}
.floating-contact > span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition:
    max-width 0.25s,
    margin 0.25s;
  font-size: 12px;
}
.floating-contact:hover {
  background: var(--deep);
}
.floating-contact:hover > span,
.floating-contact:focus-visible > span {
  max-width: 180px;
  margin-left: 10px;
}
.floating-contact.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.video-dialog,
.privacy-dialog {
  border: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--green);
  box-shadow: 0 25px 100px #07150e45;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 40px);
}
dialog::backdrop {
  background: #17291fd9;
  backdrop-filter: blur(6px);
}
.dialog-top {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.dialog-top h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
}
.dialog-close {
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: none;
  flex-shrink: 0;
}
.dialog-close .icon {
  width: 18px;
  height: 18px;
}
.video-dialog {
  width: 405px;
}
.video-dialog video {
  width: 100%;
  max-height: calc(100dvh - 190px);
  display: block;
  background: var(--deep);
}
.video-caption {
  font-size: 10px;
  line-height: 1.8;
  padding: 14px 20px;
}
.video-caption a {
  text-decoration: underline;
}
.privacy-dialog {
  width: 650px;
}
.privacy-content {
  padding: 10px 28px 30px;
  font-size: 14px;
  line-height: 1.9;
}
.privacy-content p + p {
  margin-top: 18px;
}
.privacy-content a {
  text-decoration: underline;
}
body.dialog-open {
  overflow: hidden;
}
[data-reveal] {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].will-reveal {
  opacity: 0;
  transform: translateY(22px);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Responsive layout and type */
.hero-description {
  font-size: 16px;
}
.desktop-nav {
  font-size: 14px;
}
.cta-note {
  font-size: 12px;
}
.care-points p,
.steps p,
.section-heading > p,
.faq-intro > p:not(.eyebrow),
.faq-answer,
.location-intro > p:last-child,
.contact > p:not(.eyebrow) {
  font-size: 16px;
}
.address-card address {
  font-size: 14px;
}
.footer-bottom,
.illustration-note,
.footer-main > p,
.back-to-top,
.privacy-trigger,
.video-caption,
.address-note {
  font-size: 12px;
}
.faq-list summary {
  font-size: 16px;
}
@media (min-width: 1600px) {
  .section-wrap {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .care-copy {
    padding: 36px 0 30px 95px;
  }
}
@media (max-width: 1150px) {
  .desktop-nav {
    font-size: 12px;
  }
  .site-header {
    gap: 20px;
  }
  .section-wrap {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .care {
    grid-template-columns: 46% 54%;
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .care-copy {
    padding-left: 40px;
  }
  .care-image-wrap {
    min-height: 660px;
    margin-right: 0;
  }
  .care h2 {
    font-size: 54px;
  }
  .care-points p {
    font-size: 14px;
  }
  .care-points article {
    gap: 15px;
    padding: 18px 0;
  }
  .care-points h3 {
    font-size: 27px;
  }
  .steps {
    gap: 33px;
  }
  .steps h3 {
    font-size: 28px;
  }
  .faq {
    gap: 55px;
  }
  .address-card {
    padding: 29px;
  }
  .location {
    gap: 7%;
  }
  .footer-main {
    gap: 40px;
  }
}
@media (max-width: 850px) {
  .essence {
    grid-template-columns: 24% 1fr;
    gap: 7%;
  }
  .essence-monogram {
    width: 130px;
    height: 130px;
    margin: 40px 0;
  }
  .essence .eyebrow {
    font-size: 10px;
  }
  .care {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .care-image-wrap {
    height: 460px;
    min-height: 0;
  }
  .care-image-wrap img {
    object-position: 50% 55%;
  }
  .care-copy {
    padding: 55px var(--gutter) 65px;
  }
  .care-points {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 590px;
  }
  .care-points p {
    font-size: 16px;
    max-width: 500px;
  }
  .care h2 {
    font-size: 64px;
  }
  .steps {
    gap: 27px;
  }
  .steps h3 {
    font-size: 26px;
    line-height: 1.1;
  }
  .steps p {
    font-size: 14px;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-intro > p:not(.eyebrow) br {
    display: none;
  }
  .faq h2 {
    font-size: 55px;
  }
  .location {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .location-intro h2 {
    font-size: 64px;
  }
  .address-card {
    padding: 28px 23px;
  }
  .address-card address {
    font-size: 12px;
  }
  .address-note {
    font-size: 11px;
  }
  .contact-symbol {
    right: -250px;
  }
  .footer-main {
    gap: 28px;
  }
  .footer-brand {
    width: 180px;
  }
}
@media (max-width: 650px) {
  .section-wrap {
    padding: 65px 24px;
  }
  .essence {
    display: block;
  }
  .section-label {
    display: block !important;
  }
  .essence .eyebrow {
    font-size: 10px;
  }
  .essence-monogram {
    display: none;
  }
  .essence h2 {
    font-size: 51px;
    margin-top: 24px;
  }
  .essence-description {
    font-size: 16px;
    margin: 24px 0;
  }
  .video-duration {
    font-size: 9px;
    padding-left: 9px;
  }
  .video-trigger {
    gap: 11px;
    font-size: 13px;
  }
  .care-image-wrap {
    height: 330px;
  }
  .image-caption {
    left: 24px;
    font-size: 9px;
    bottom: 18px;
  }
  .care-copy {
    padding: 43px 24px 53px;
  }
  .care h2 {
    font-size: 55px;
    line-height: 1.03;
  }
  .care-points {
    margin-top: 30px;
  }
  .care-points p {
    font-size: 15px;
  }
  .care-points article {
    padding: 21px 0;
    gap: 18px;
  }
  .care-points h3 {
    font-size: 28px;
  }
  .light-link {
    font-size: 12px;
    gap: 11px;
  }
  .process .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 51px;
    margin-top: 21px;
  }
  .section-heading > p {
    font-size: 16px;
    margin-top: 24px;
  }
  .section-heading > p br {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }
  .step-top {
    padding-top: 23px;
  }
  .step-number {
    font-size: 48px;
  }
  .steps h3 {
    font-size: 31px;
    margin: 20px 0 13px;
  }
  .steps p {
    font-size: 16px;
    max-width: 100%;
  }
  .process-cta {
    margin-top: 32px;
    font-size: 12px;
    padding: 15px 17px;
    gap: 9px;
    width: 100%;
  }
  .process-cta .icon {
    height: 18px;
    width: 18px;
  }
  .manifesto {
    padding: 50px 19px;
  }
  .manifesto > p {
    font-size: clamp(27px, 7.6vw, 42px);
    line-height: 1.18;
  }
  .manifesto .eyebrow {
    font-size: 9px;
  }
  .faq {
    gap: 32px;
  }
  .faq h2 {
    font-size: 51px;
  }
  .faq-list summary {
    padding: 23px 0;
    font-size: 14px;
    line-height: 1.7;
  }
  .faq-answer {
    font-size: 15px;
    padding-right: 10px;
  }
  .location {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .location-intro h2 {
    font-size: 74px;
  }
  .location-intro > p:last-child {
    font-size: 16px;
  }
  .address-card {
    max-width: none;
    width: 100%;
    padding: 30px;
  }
  .address-card address {
    font-size: 14px;
  }
  .address-note {
    font-size: 12px;
  }
  .address-card h3 {
    font-size: 32px;
  }
  .contact h2 {
    font-size: 65px;
  }
  .contact .eyebrow {
    font-size: 9px;
  }
  .contact > p:not(.eyebrow) {
    max-width: 290px;
    margin: 0 auto;
    font-size: 15px;
  }
  .contact .button {
    font-size: 12px;
    padding: 17px 18px;
    gap: 10px;
  }
  .contact-symbol {
    width: 390px;
    right: -210px;
    top: 30px;
    opacity: 0.13;
  }
  .site-footer {
    padding: 33px 24px 90px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-brand {
    width: 185px;
  }
  .footer-main > p {
    font-size: 11px;
    margin-left: 0;
  }
  .back-to-top {
    font-size: 11px;
    margin-left: 0;
    width: 100%;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 24px;
    font-size: 10px;
  }
  .footer-bottom > span:first-child {
    width: 100%;
  }
  .footer-bottom > span:last-child {
    margin-left: auto;
  }
  .privacy-trigger,
  .illustration-note {
    font-size: 10px;
  }
  .floating-contact {
    bottom: 18px;
    right: 18px;
    padding: 13px;
  }
  .floating-contact > .icon {
    height: 25px;
    width: 25px;
  }
  .hero-description {
    font-size: 16px;
  }
  .cta-note {
    font-size: 11px;
  }
  .values-ribbon {
    font-size: 11px;
  }
  .privacy-content {
    font-size: 14px;
    padding: 5px 21px 24px;
  }
  .dialog-top h2 {
    font-size: 26px;
  }
  .video-caption {
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 51px;
  }
  .hero-cta {
    font-size: 12px;
    gap: 9px;
  }
  .hero-cta .end-icon {
    margin-left: 0;
  }
  .video-duration {
    display: none;
  }
  .contact h2 {
    font-size: 58px;
  }
  .address-card {
    padding: 25px;
  }
  .location-intro h2 {
    font-size: 65px;
  }
  .care h2 {
    font-size: 49px;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal].will-reveal {
    opacity: 1;
    transform: none;
  }
}
/* Preserve readable contrast and keyboard visibility. */
.floating-contact.is-hidden {
  visibility: hidden;
}
.address-card .eyebrow,
.address-city span {
  color: #80663e;
}
.text-link:hover {
  color: #80663e;
}
.light-link:hover {
  color: #ead7b3;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
  }
}

@media (min-width: 651px) and (max-width: 950px) {
  .hero h1 {
    font-size: clamp(48px, 6.2vw, 59px);
    line-height: 1.05;
  }
  .hero {
    min-height: 650px;
  }
  .values-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
    gap: 16px;
    font-size: 11px;
  }
  .values-ribbon .ribbon-star {
    display: none;
  }
}
