:root {
  --paper: #f6f1e7;
  --paper-deep: #eee5d5;
  --paper-light: #fffdf8;
  --ink: #191816;
  --ink-soft: #5f5a52;
  --gold: #9a6b20;
  --gold-bright: #c7a15a;
  --gold-pale: #dbc799;
  --line: rgba(113, 83, 35, 0.24);
  --white: #fffdf9;
  --shadow: 0 28px 80px rgba(44, 35, 23, 0.11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 6%, rgba(199, 161, 90, 0.08), transparent 25rem),
    radial-gradient(circle at 82% 32%, rgba(154, 107, 32, 0.05), transparent 30rem),
    var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

::selection {
  color: var(--paper-light);
  background: var(--gold);
}

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

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

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.25rem;
  transform: translateY(-160%);
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.top-note {
  position: relative;
  z-index: 40;
  color: var(--paper-light);
  background: var(--ink);
  border-bottom: 1px solid rgba(199, 161, 90, 0.4);
}

.top-note__inner {
  width: var(--shell);
  min-height: 2.55rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.77rem;
  letter-spacing: 0.06em;
}

.top-note a {
  color: var(--gold-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 241, 231, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(32, 27, 20, 0.06);
}

.site-header__inner {
  width: var(--shell);
  min-height: 5.2rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand__mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  background: var(--ink);
  border: 1px solid var(--gold-bright);
  border-radius: 0.3rem 0.3rem 1rem 0.3rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__text {
  display: grid;
  line-height: 1.2;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
}

.brand__text small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.15rem);
}

.main-nav > a:not(.button) {
  position: relative;
  font-size: 0.86rem;
  font-weight: 600;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 1px;
  margin: 0.25rem auto;
  display: block;
  background: currentColor;
  transition: transform 180ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-2px) rotate(-45deg);
}

.button {
  min-height: 3.45rem;
  padding: 0.9rem 1.2rem 0.9rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: var(--paper-light);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0.28rem;
  box-shadow: 0 12px 30px rgba(25, 24, 22, 0.13);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.button--small {
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  color: var(--gold-bright);
  border-color: var(--ink);
  box-shadow: none;
  font-size: 0.78rem;
}

.button__arrow {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.38);
  border-radius: 50%;
  font-size: 0.85rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 7.75rem);
  padding-block: clamp(3.8rem, 7vw, 7.25rem) clamp(5.5rem, 9vw, 8rem);
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.78fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 7.8rem);
}

.hero__content {
  max-width: 44rem;
}

.eyebrow,
.section-label {
  margin: 0 0 1.45rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
}

.eyebrow i {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.hero h1,
.section-heading h2,
.intro h2,
.journey h2,
.care h2,
.contact h2 {
  margin: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11.5ch;
  font-family: var(--sans);
  font-size: clamp(3.75rem, 7.35vw, 6.8rem);
  font-stretch: condensed;
  font-weight: 790;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 em {
  margin-top: 0.22em;
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.83em;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: none;
}

.hero__lead {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.65rem;
  flex-wrap: wrap;
}

.hero__facts {
  margin-top: clamp(2.5rem, 5vw, 4.2rem);
  padding-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  border-top: 1px solid var(--line);
}

.hero__facts > div {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.fact-icon {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  font-size: 0.59rem;
  font-weight: 800;
}

.hero__facts p {
  margin: 0;
  display: grid;
  line-height: 1.3;
}

.hero__facts strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.hero__facts small {
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-card {
  position: relative;
  width: min(100%, 29rem);
  aspect-ratio: 0.76;
  justify-self: end;
  padding: 0.7rem;
  background: var(--paper-light);
  border: 1px solid var(--gold-pale);
  border-radius: 0.7rem 0.7rem 5rem 0.7rem;
  box-shadow: var(--shadow);
  transform: rotate(1.1deg);
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(154, 107, 32, 0.35);
  border-radius: inherit;
}

.hero-card::before {
  inset: -0.8rem 0.65rem 0.65rem -0.8rem;
}

.hero-card::after {
  top: -2.5rem;
  right: -2.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}

.hero-card__frame {
  position: relative;
  height: 100%;
  padding: 1.55rem clamp(1.35rem, 3.8vw, 2.5rem) 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), transparent 36%),
    radial-gradient(circle at 100% 0, rgba(199, 161, 90, 0.2), transparent 34%),
    var(--paper-deep);
  border: 1px solid rgba(154, 107, 32, 0.55);
  border-radius: 0.38rem 0.38rem 4.35rem 0.38rem;
}

.hero-card__frame::before {
  position: absolute;
  top: 17%;
  right: -29%;
  width: 80%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(154, 107, 32, 0.3);
  border-radius: 50%;
}

.hero-card__frame::after {
  position: absolute;
  right: 16%;
  bottom: 18%;
  width: 1px;
  height: 37%;
  content: "";
  background: linear-gradient(transparent, var(--gold), transparent);
  transform: rotate(32deg);
}

.hero-card__topline,
.hero-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card__topline {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(154, 107, 32, 0.35);
}

.hero-card__monogram {
  position: absolute;
  top: 15%;
  right: -0.18em;
  color: rgba(154, 107, 32, 0.08);
  font-family: var(--serif);
  font-size: clamp(6.5rem, 16vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 1;
}

.hero-card__quote {
  position: relative;
  z-index: 2;
  margin: auto 0;
  font-family: var(--sans);
  font-size: clamp(3.1rem, 6.2vw, 5.3rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-card__quote em {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.92em;
  font-weight: 500;
  text-transform: none;
}

.hero-card__footer {
  align-items: flex-end;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.hero-card__footer span {
  max-width: 7ch;
}

.hero-card__seal {
  position: absolute;
  right: -1.6rem;
  bottom: 3.2rem;
  width: 4.6rem;
  height: 4.6rem;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  background: var(--ink);
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(25, 24, 22, 0.18);
  font-family: var(--serif);
  font-size: 1rem;
}

.hero-photo {
  position: relative;
  width: min(100%, 29rem);
  aspect-ratio: 0.76;
  justify-self: end;
  margin: 0;
  padding: 0.7rem;
  background: var(--paper-light);
  border: 1px solid var(--gold-pale);
  border-radius: 0.7rem 0.7rem 5rem 0.7rem;
  box-shadow: var(--shadow);
  transform: rotate(1.1deg);
}

.hero-photo::before,
.hero-photo::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(154, 107, 32, 0.35);
  border-radius: inherit;
}

.hero-photo::before {
  inset: -0.8rem 0.65rem 0.65rem -0.8rem;
}

.hero-photo::after {
  top: -2.5rem;
  right: -2.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}

.hero-photo__frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(154, 107, 32, 0.55);
  border-radius: 0.38rem 0.38rem 4.35rem 0.38rem;
}

.hero-photo__frame::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(25, 24, 22, 0.82));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 35%;
}

.hero-photo__caption {
  position: absolute;
  right: 2.1rem;
  bottom: 1.8rem;
  left: 1.5rem;
  z-index: 2;
  color: var(--paper-light);
}

.hero-photo__caption > span {
  color: var(--gold-bright);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-photo__caption p {
  margin: 0.35rem 0 0;
  display: grid;
  line-height: 1.25;
}

.hero-photo__caption strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
}

.hero-photo__caption small {
  margin-top: 0.3rem;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-photo__seal {
  position: absolute;
  right: -1.6rem;
  bottom: 3.2rem;
  z-index: 3;
  width: 4.6rem;
  height: 4.6rem;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  background: var(--ink);
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(25, 24, 22, 0.18);
  font-family: var(--serif);
  font-size: 1rem;
}

.hero__ornament {
  position: absolute;
  border: 1px solid rgba(154, 107, 32, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero__ornament--one {
  top: -22rem;
  right: -17rem;
  width: 45rem;
  height: 45rem;
}

.hero__ornament--two {
  bottom: -23rem;
  left: -19rem;
  width: 40rem;
  height: 40rem;
}

.intro {
  background: var(--paper-light);
  border-block: 1px solid var(--line);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.section-label::before {
  width: 2.35rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.intro h2,
.section-heading h2,
.journey h2,
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(2.55rem, 5vw, 4.85rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro__copy {
  padding-top: 2.1rem;
  color: var(--ink-soft);
}

.intro__copy p {
  max-width: 42rem;
  margin: 0 0 1.45rem;
  font-size: 1.05rem;
}

.intro__copy .intro__opening {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.1vw, 1.62rem);
  line-height: 1.55;
}

.intro__photo {
  width: min(100%, 34rem);
  aspect-ratio: 16 / 10;
  margin: 2.6rem 0 0;
  padding: 0.45rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--gold-pale);
  border-radius: 0.35rem 0.35rem 2.6rem 0.35rem;
  box-shadow: 0 18px 48px rgba(44, 35, 23, 0.1);
}

.intro__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 0.2rem 0.2rem 2.15rem 0.2rem;
}

.signature {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.signature__line {
  width: 4.5rem;
  height: 1px;
  background: var(--gold);
}

.signature p {
  margin: 0;
  display: grid;
  color: var(--ink);
  line-height: 1.25;
}

.signature strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.signature small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 3.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: 4rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading > p {
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 25rem;
  padding: clamp(2rem, 4vw, 3.35rem);
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, 0.32);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--paper-light);
  transform: translateY(-4px);
}

.service-card--dark,
.service-card--dark:hover {
  color: var(--paper-light);
  background: var(--ink);
}

.service-card__number {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 4rem;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
}

.service-card__icon svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  max-width: 17ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.service-card p {
  max-width: 34rem;
  margin: 1.15rem 0 2rem;
  color: var(--ink-soft);
}

.service-card--dark p {
  color: rgba(255, 253, 249, 0.68);
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 0.22rem;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 750;
}

.service-card--dark a {
  color: var(--gold-bright);
}

.journey {
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
}

.journey__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(4rem, 10vw, 9rem);
}

.journey__sticky {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.journey__sticky > p:not(.section-label) {
  max-width: 31rem;
  margin: 1.6rem 0 2rem;
  color: var(--ink-soft);
}

.journey__photo {
  width: min(100%, 28rem);
  aspect-ratio: 4 / 3;
  margin: 2.4rem 0 0;
  padding: 0.42rem;
  overflow: hidden;
  background: var(--paper-light);
  border: 1px solid var(--gold-pale);
  border-radius: 0.3rem 0.3rem 2.5rem 0.3rem;
  box-shadow: 0 16px 44px rgba(44, 35, 23, 0.1);
}

.journey__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 29%;
  border-radius: 0.18rem 0.18rem 2.1rem 0.18rem;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  padding: 0 0 3.2rem 3rem;
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1.5rem;
}

.timeline li::before {
  position: absolute;
  top: 0.58rem;
  bottom: 0;
  left: 0;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline li::after {
  position: absolute;
  top: 0.48rem;
  left: -0.28rem;
  width: 0.56rem;
  height: 0.56rem;
  content: "";
  background: var(--paper-deep);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li:last-child::before {
  display: none;
}

.timeline__year {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.timeline p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

.care {
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.care__panel {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  color: var(--paper-light);
  background: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 0.45rem 0.45rem 5rem 0.45rem;
}

.care__panel::before {
  position: absolute;
  top: -14rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  content: "";
  border: 1px solid rgba(199, 161, 90, 0.24);
  border-radius: 50%;
}

.section-label--light {
  color: var(--gold-bright);
}

.care__heading {
  max-width: 53rem;
  position: relative;
  z-index: 1;
}

.care h2 {
  font-family: var(--serif);
  font-size: clamp(2.55rem, 5.6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.care__steps {
  position: relative;
  z-index: 1;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(199, 161, 90, 0.4);
}

.care__steps article {
  padding: 2rem 2rem 0 0;
}

.care__steps article + article {
  padding-left: 2rem;
  border-left: 1px solid rgba(199, 161, 90, 0.4);
}

.care__steps span {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.care__steps h3 {
  margin: 1.15rem 0 0.65rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.care__steps p {
  margin: 0;
  color: rgba(255, 253, 249, 0.63);
  font-size: 0.93rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.78fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 9rem);
}

.contact__copy > p:not(.section-label) {
  max-width: 37rem;
  margin: 1.5rem 0 2.1rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.contact-card {
  position: relative;
  margin: 0;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--paper-light);
  border: 1px solid var(--gold-pale);
  border-radius: 0.4rem 0.4rem 3rem 0.4rem;
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card::before {
  position: absolute;
  inset: 0.55rem;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(154, 107, 32, 0.28);
  border-radius: 0.25rem 0.25rem 2.55rem 0.25rem;
}

.contact-card__header,
.contact-card__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.contact-card__header {
  padding-bottom: 1rem;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-card__body {
  position: relative;
  padding: 2.5rem 0;
}

.contact-card__body p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.contact-card__body .contact-card__place {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact-card__row {
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.contact-card__row span {
  color: var(--ink-soft);
}

.contact-card__row a,
.contact-card__row strong {
  font-weight: 750;
}

.contact-card__row a {
  color: var(--gold);
}

.site-footer {
  color: var(--paper-light);
  background: var(--ink);
  border-top: 1px solid var(--gold);
}

.site-footer__top {
  min-height: 9rem;
  padding-block: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand--footer .brand__mark {
  color: var(--ink);
  background: var(--gold-bright);
}

.brand--footer .brand__text small {
  color: rgba(255, 253, 249, 0.55);
}

.site-footer nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.8rem;
  font-weight: 650;
}

.site-footer nav a:hover {
  color: var(--gold-bright);
}

.site-footer__bottom {
  min-height: 4.6rem;
  padding-block: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255, 253, 249, 0.48);
  border-top: 1px solid rgba(199, 161, 90, 0.23);
  font-size: 0.7rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom p:last-child {
  max-width: 38rem;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 25;
  min-height: 3.2rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--paper-light);
  background: var(--ink);
  border: 1px solid var(--gold-bright);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(25, 24, 22, 0.23);
  font-size: 0.78rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.whatsapp-float:hover {
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js [data-reveal][data-delay="1"] {
  transition-delay: 90ms;
}

.js [data-reveal][data-delay="2"] {
  transition-delay: 180ms;
}

.js [data-reveal][data-delay="3"] {
  transition-delay: 270ms;
}

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

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .top-note__inner span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 1.5rem max(18px, calc((100vw - 760px) / 2));
    display: grid;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(246, 241, 231, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 35px rgba(32, 27, 20, 0.08);
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding-block: 0.85rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .hero__content {
    max-width: 46rem;
  }

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

  .hero-card,
  .hero-photo {
    width: min(88%, 30rem);
    justify-self: center;
  }

  .intro__grid,
  .journey__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .intro__copy {
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading > p {
    max-width: 42rem;
  }

  .journey__sticky {
    position: static;
  }

  .journey__sticky > p:not(.section-label) {
    max-width: 42rem;
  }

  .contact-card {
    max-width: 37rem;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  html {
    scroll-padding-top: 6.4rem;
  }

  .section {
    padding-block: 5rem;
  }

  .top-note__inner {
    min-height: 2.4rem;
    justify-content: center;
    font-size: 0.68rem;
  }

  .top-note__inner > span {
    display: none;
  }

  .site-header__inner {
    min-height: 4.7rem;
  }

  .brand__mark {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brand__text strong {
    font-size: 0.92rem;
  }

  .brand__text small {
    font-size: 0.61rem;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(3.2rem, 16.2vw, 5rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    width: fit-content;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-card,
  .hero-photo {
    width: calc(100% - 1rem);
  }

  .hero-card__quote {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-card__seal,
  .hero-photo__seal {
    right: -0.8rem;
    bottom: 2.5rem;
    width: 4rem;
    height: 4rem;
  }

  .intro h2,
  .section-heading h2,
  .journey h2,
  .contact h2 {
    font-size: clamp(2.45rem, 12.2vw, 3.75rem);
  }

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

  .service-card {
    min-height: 23rem;
  }

  .service-card__icon {
    margin-bottom: 3rem;
  }

  .timeline li {
    padding-left: 2rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .care__panel {
    padding: 2.5rem 1.5rem 3rem;
    border-radius: 0.35rem 0.35rem 3rem 0.35rem;
  }

  .care h2 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

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

  .care__steps article,
  .care__steps article + article {
    padding: 1.5rem 0;
    border-left: 0;
    border-bottom: 1px solid rgba(199, 161, 90, 0.3);
  }

  .care__steps article:last-child {
    border-bottom: 0;
  }

  .contact__copy .button {
    width: 100%;
  }

  .contact-card {
    padding: 1.7rem 1.5rem;
  }

  .contact-card__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top {
    padding-block: 2.5rem;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 2rem;
  }

  .site-footer__bottom {
    padding-block: 1.5rem 6rem;
    gap: 0.7rem;
  }

  .site-footer__bottom p:last-child {
    text-align: left;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}

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

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

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