:root {
  --black: #050505;
  --ink: #123f37;
  --emerald: #06483f;
  --emerald-dark: #032c27;
  --emerald-soft: #0d6356;
  --royal-green: #0a3f2e;
  --velvet-green: #021f1b;
  --green-black: #031613;
  --silk: #f7f8f7;
  --silk-shadow: #e4e7e5;
  --white: #ffffff;
  --silver: #7f8a85;
  --silk-white: #eef1ef;
  --muted: #6f7471;
  --line: rgba(11, 18, 15, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(3, 31, 27, 0.2);
  --shadow-soft: 0 18px 60px rgba(3, 31, 27, 0.1);
  --shadow-lift: 0 28px 90px rgba(3, 31, 27, 0.15);
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quiet: cubic-bezier(0.16, 1, 0.3, 1);
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
  --content: min(1120px, calc(100vw - clamp(72px, 10vw, 160px)));
  --wide: min(1360px, calc(100vw - clamp(64px, 8vw, 128px)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--silk);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

picture {
  display: contents;
}

.image-fallback {
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.68), rgba(238, 241, 239, 0.22) 46%, rgba(6, 72, 63, 0.08)),
    var(--silk-white);
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.18em;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--emerald);
}

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

:focus-visible {
  outline: 2px solid rgba(6, 72, 63, 0.78);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.58);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 36, 31, 0.72);
  backdrop-filter: blur(20px);
  transition: background 420ms var(--ease-quiet), border-color 420ms var(--ease-quiet), box-shadow 420ms var(--ease-quiet);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(3, 44, 39, 0.91);
  box-shadow: 0 18px 50px rgba(0, 20, 18, 0.2);
}

.site-header__inner {
  width: var(--wide);
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img,
.brand-wordmark {
  width: clamp(150px, 18vw, 245px);
  height: auto;
}

.brand-wordmark {
  display: grid;
  justify-items: center;
  color: currentColor;
  font-family: var(--serif);
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
}

.brand-wordmark__primary {
  display: block;
  font-size: 2.58rem;
  font-weight: 500;
}

.brand-wordmark__secondary {
  display: block;
  margin-top: 0.18em;
  font-size: 1.02rem;
  font-weight: 500;
}

.brand--mark img {
  width: 38px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 24px);
}

.nav a {
  position: relative;
  padding: 28px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 260ms var(--ease-luxury), opacity 260ms var(--ease-luxury);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--silver);
  transition: transform 360ms var(--ease-luxury);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--white);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: border-color 260ms var(--ease-luxury), background 260ms var(--ease-luxury), transform 260ms var(--ease-luxury);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle:active {
  transform: scale(0.98);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: relative;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  top: 1px;
  transform: rotate(45deg);
  background: var(--white);
}

.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--white);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 260ms var(--ease-luxury), border-color 260ms var(--ease-luxury), background 260ms var(--ease-luxury), color 260ms var(--ease-luxury), box-shadow 260ms var(--ease-luxury);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-quiet), opacity 260ms ease;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 16px 34px rgba(3, 31, 27, 0.13);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0) scale(0.992);
  box-shadow: 0 8px 22px rgba(3, 31, 27, 0.1);
}

.btn--primary {
  color: var(--white);
  background: var(--emerald);
  border-color: var(--emerald);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--emerald-soft);
  border-color: var(--emerald-soft);
}

.btn--silver {
  color: var(--emerald-dark);
  background: var(--silk-white);
  border-color: var(--silk-white);
}

.btn--silver:hover,
.btn--silver:focus-visible {
  color: var(--emerald-dark);
  background: var(--white);
  border-color: var(--white);
}

.btn--outline {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  color: var(--white);
  background: var(--emerald);
  border-color: var(--emerald);
}

.btn--light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
}

.btn--light:hover,
.btn--light:focus-visible {
  color: var(--emerald-dark);
  background: var(--white);
  border-color: var(--white);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.link-arrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  transition: width 260ms var(--ease-luxury), opacity 260ms var(--ease-luxury);
}

.link-arrow:hover::after,
.link-arrow:focus-visible::after {
  width: 48px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--green-black);
}

.hero--compact {
  min-height: 62svh;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 36, 31, 0.84), rgba(6, 72, 63, 0.45) 48%, rgba(3, 22, 19, 0.18)),
    linear-gradient(0deg, rgba(2, 31, 27, 0.76), rgba(6, 72, 63, 0.1) 45%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: var(--wide);
  margin: 0 auto;
  padding: 104px 0 46px;
}

.hero__wordmark {
  width: min(210px, 58vw);
  margin: 0 0 24px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--silk-white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
}

h2 {
  font-size: clamp(2.35rem, 5.2vw, 5.1rem);
}

h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

p {
  margin: 0;
}

.lede {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.section-lede {
  max-width: 700px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero__actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section--silk {
  background: var(--silk);
}

.section--white {
  background: var(--white);
}

.section--dark {
  color: var(--white);
  background: var(--emerald-dark);
}

.section--ink {
  color: var(--white);
  background: var(--royal-green);
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.wide-container {
  width: var(--wide);
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--emerald);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section--dark .section-kicker,
.section--ink .section-kicker {
  color: var(--silk-white);
}

.section--dark .section-lede,
.section--ink .section-lede {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.split__image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--emerald-dark);
  box-shadow: var(--shadow);
}

.split__image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.split__image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

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

.trust-item {
  min-height: 385px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 320ms ease, box-shadow 320ms ease, background 320ms ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 22px 58px rgba(3, 31, 27, 0.14);
}

.trust-item__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--emerald-dark);
}

.trust-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 44, 39, 0.44), rgba(3, 44, 39, 0.02) 56%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.trust-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.trust-item:hover .trust-item__media img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.trust-item__content {
  flex: 1;
  padding: 24px 26px 28px;
}

.trust-item span {
  display: block;
  margin-bottom: 14px;
  color: var(--silver);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.15;
}

.trust-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}

.process-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--silk);
  transition: transform 320ms ease, box-shadow 320ms ease, background 320ms ease;
}

.process-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 22px 58px rgba(3, 31, 27, 0.12);
}

.process-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--emerald-dark);
}

.process-card__media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.process-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.process-card:hover .process-card__media img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.process-card__content {
  flex: 1;
  padding: 24px 26px 30px;
}

.process-card__number {
  color: var(--silver);
  font-family: var(--serif);
  font-size: 2.3rem;
}

.process-card h3,
.article-card h3,
.faq-item h3,
.choice-card h3,
.detail-card h3 {
  margin-top: 18px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
}

.process-card p,
.article-card p,
.faq-item p,
.choice-card p,
.detail-card p {
  margin-top: 14px;
  color: var(--muted);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.choice-card {
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
}

.choice-card ul,
.clean-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.choice-card li,
.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.choice-card li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--silver);
  transform: rotate(45deg);
}

.story-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}

.story-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 241, 239, 0.88)),
    var(--white);
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.story-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 22px 58px rgba(3, 31, 27, 0.12);
}

.story-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--emerald-dark);
}

.story-card__media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.story-card:hover .story-card__media img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.story-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 36px);
}

.story-card h3 {
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.08;
}

.story-card p {
  margin-top: 14px;
  color: var(--muted);
}

.story-card .btn {
  margin-top: auto;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.monogram-panel {
  display: grid;
  place-items: center;
  min-height: clamp(320px, 42vw, 560px);
  padding: clamp(38px, 7vw, 86px);
  overflow: hidden;
  border: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.74), rgba(246, 249, 250, 0.3) 42%, rgba(224, 235, 239, 0.4)),
    var(--silk-white);
}

.monogram-panel img {
  width: min(58%, 300px);
  max-height: clamp(240px, 34vw, 430px);
  height: auto;
  object-fit: contain;
}

.brand-story-gallery {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.68fr);
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 12px;
}

.brand-story-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--emerald-dark);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.brand-story-card--large {
  grid-row: span 2;
}

.brand-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 36, 31, 0.64), rgba(3, 36, 31, 0.03) 58%),
    linear-gradient(90deg, rgba(3, 44, 39, 0.34), rgba(3, 44, 39, 0));
  pointer-events: none;
  z-index: 1;
}

.brand-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.brand-story-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.brand-story-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-story-gallery__mark {
  position: absolute;
  left: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 3;
  width: min(330px, calc(100% - 36px));
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 44, 39, 0.78);
  backdrop-filter: blur(16px);
}

.brand-story-gallery__mark .brand-wordmark {
  width: min(300px, 70vw);
  justify-items: start;
  color: var(--white);
  text-align: left;
}

.brand-story-gallery__mark .brand-wordmark__primary {
  font-size: 3.16rem;
}

.brand-story-gallery__mark .brand-wordmark__secondary {
  font-size: 1.24rem;
}

.brand-story-gallery__caption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
}

.faq-item,
.article-card,
.detail-card {
  padding: clamp(26px, 3vw, 38px);
  background: var(--white);
}

.faq-item h3 {
  margin-top: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--royal-green);
}

.cta-band__inner {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 118px) 0;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(6, 72, 63, 0.92), rgba(10, 63, 46, 0.9));
}

.cta-band__content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.page-intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.page-intro__aside {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  background: rgba(248, 250, 249, 0.76);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}

.detail-card {
  min-height: 250px;
}

.ring-type-grid {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  margin-top: 52px;
}

.ring-type-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  min-height: 430px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.ring-type-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
}

.ring-type-card:nth-child(even) .ring-type-card__image {
  order: 2;
}

.ring-type-card__image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--emerald-dark);
}

.ring-type-card__image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  pointer-events: none;
}

.ring-type-card__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.ring-type-card:hover .ring-type-card__image img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.ring-type-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(30px, 5vw, 70px);
}

.ring-type-card__content h3 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.ring-type-card__content p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.ring-type-card__content .btn {
  margin-top: 28px;
}

.steps-list {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}

.step-row {
  display: grid;
  grid-template-columns: 120px 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding: clamp(26px, 4vw, 42px);
  background: var(--silk);
}

.step-row span {
  color: var(--silver);
  font-family: var(--serif);
  font-size: 2.2rem;
}

.step-row h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

.step-row p {
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}

.article-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card__meta {
  color: var(--silver);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-card .link-arrow {
  margin-top: 28px;
}


.image-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
}

.image-story-card {
  margin: 0;
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--emerald-dark);
}

.image-story-card--tall {
  grid-row: span 2;
  min-height: 681px;
}

.image-story-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 600ms ease;
}

.image-story-card:hover img {
  transform: scale(1.045);
}

.image-story-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(3, 36, 31, 0.86), rgba(3, 36, 31, 0));
}

.image-story-card__caption span {
  display: block;
  color: var(--silk-white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-story-card__caption strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.form {
  display: grid;
  gap: 18px;
}

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

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(6, 72, 63, 0.11);
}

.form-status {
  min-height: 26px;
  color: var(--emerald);
  font-weight: 700;
}

.contact-card {
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--emerald-dark);
}

.contact-card h2 {
  font-size: clamp(2.1rem, 3.3vw, 3.4rem);
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.legal-copy {
  display: grid;
  gap: clamp(26px, 3vw, 42px);
}

.legal-copy article {
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--line-light);
}

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

.legal-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.legal-copy h3 {
  margin: 22px 0 10px;
  color: var(--emerald);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.legal-copy ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-black);
}

.site-footer__inner {
  width: var(--wide);
  margin: 0 auto;
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(28px, 5vw, 70px);
  padding-inline: clamp(10px, 1.8vw, 24px);
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  width: clamp(70px, 7vw, 104px);
  height: auto;
  aspect-ratio: 640 / 912;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--silk-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  font-size: 0.9rem;
}

/* Luxury refinement layer: shared polish without changing the site structure. */
.hero__media {
  transform: scale(1.012);
  filter: saturate(0.98) contrast(1.03);
}

.hero__content {
  text-wrap: balance;
}

.lede,
.section-lede {
  line-height: 1.72;
}

.section {
  position: relative;
  isolation: isolate;
}

.section + .section {
  margin-top: -1px;
}

.section--silk {
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 255, 255, 0.62), transparent 31rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(238, 241, 239, 0)),
    var(--silk);
}

.section--white {
  background:
    linear-gradient(180deg, rgba(246, 248, 247, 0.58), rgba(255, 255, 255, 0) 18rem),
    var(--white);
}

:where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .related-card, .location-card, .location-service-card, .ring-type-card, .image-story-card, .brand-story-card) {
  transition:
    transform 420ms var(--ease-luxury),
    box-shadow 420ms var(--ease-luxury),
    border-color 420ms var(--ease-luxury),
    background 420ms var(--ease-luxury),
    filter 420ms var(--ease-luxury);
}

:where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .related-card, .location-card, .location-service-card):hover {
  box-shadow: var(--shadow-lift);
}

:where(.trust-item__media, .process-card__media, .story-card__media, .ring-type-card__image, .image-story-card, .brand-story-card, .split__image) {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

:where(.trust-item__media img, .process-card__media img, .story-card__media img, .ring-type-card__image img, .image-story-card img, .brand-story-card img, .split__image img) {
  will-change: transform;
  backface-visibility: hidden;
}

.faq-item,
.article-card,
.detail-card,
.related-card,
.location-card,
.location-service-card {
  border: 1px solid rgba(11, 18, 15, 0.04);
}

.article-card .link-arrow,
.related-card .link-arrow,
.location-card .link-arrow {
  transition: color 260ms var(--ease-luxury), transform 260ms var(--ease-luxury);
}

.article-card:hover .link-arrow,
.related-card:hover .link-arrow,
.location-card:hover .link-arrow {
  transform: translateX(2px);
}

.field input,
.field select,
.field textarea,
.location-link-grid a {
  transition:
    border-color 260ms var(--ease-luxury),
    box-shadow 260ms var(--ease-luxury),
    background 260ms var(--ease-luxury),
    color 260ms var(--ease-luxury),
    transform 260ms var(--ease-luxury);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(6, 72, 63, 0.24);
  background: #fbfcfb;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(6, 72, 63, 0.1), 0 14px 34px rgba(3, 31, 27, 0.08);
}

.contact-card,
.category-rail,
.toc-card,
.editorial-note {
  box-shadow: var(--shadow-soft);
}

.footer-links a,
.contact-list a,
.category-list a,
.toc-list a,
.internal-link-list a,
.breadcrumbs a,
.location-link-grid a {
  transition: color 260ms var(--ease-luxury), border-color 260ms var(--ease-luxury), background 260ms var(--ease-luxury), transform 260ms var(--ease-luxury);
}

.location-link-grid a:hover,
.location-link-grid a:focus-visible {
  border-color: rgba(6, 72, 63, 0.28);
  background: var(--white);
  transform: translateY(-1px);
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 860ms var(--ease-quiet), transform 860ms var(--ease-quiet);
  will-change: opacity, transform;
}

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

[data-animate] > :where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .image-story-card, .related-card, .location-card, .location-service-card) {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms var(--ease-quiet), transform 760ms var(--ease-quiet), box-shadow 420ms var(--ease-luxury), background 420ms var(--ease-luxury);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}

[data-animate].is-visible > :where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .image-story-card, .related-card, .location-card, .location-service-card) {
  opacity: 1;
  transform: translateY(0);
}

[data-animate].is-visible > :where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .image-story-card, .related-card, .location-card, .location-service-card):nth-child(2) { --stagger: 1; }
[data-animate].is-visible > :where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .image-story-card, .related-card, .location-card, .location-service-card):nth-child(3) { --stagger: 2; }
[data-animate].is-visible > :where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .image-story-card, .related-card, .location-card, .location-service-card):nth-child(4) { --stagger: 3; }
[data-animate].is-visible > :where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .image-story-card, .related-card, .location-card, .location-service-card):nth-child(5) { --stagger: 4; }
[data-animate].is-visible > :where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .image-story-card, .related-card, .location-card, .location-service-card):nth-child(n+6) { --stagger: 5; }

@media (min-width: 1181px) and (max-width: 1420px) {
  .site-header__inner {
    gap: 16px;
  }

  .brand img,
  .brand-wordmark {
    width: clamp(168px, 14vw, 210px);
  }

  .brand .brand-wordmark__primary {
    font-size: 2.26rem;
  }

  .brand .brand-wordmark__secondary {
    font-size: 0.9rem;
  }

  .nav {
    gap: clamp(8px, 0.85vw, 14px);
  }

  .nav a,
  .header-actions .btn {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .header-actions .btn {
    padding-inline: 16px;
  }
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    height: calc(100svh - 76px);
    display: grid;
    place-content: start;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 30px 24px;
    background: rgba(2, 31, 27, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 360ms var(--ease-luxury), opacity 260ms var(--ease-luxury), visibility 0ms linear 360ms;
  }

  .nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0ms;
  }

  .nav a {
    width: calc(100vw - 48px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
  }

  .nav a::after {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid,
  .detail-grid,
  .article-grid,
  .faq-grid,
  .story-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --content: min(100vw - 36px, 720px);
    --wide: min(100vw - 36px, 760px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand img,
  .brand-wordmark {
    width: min(210px, 62vw);
  }

  .nav {
    top: 68px;
    height: calc(100svh - 68px);
  }

  .hero {
    min-height: 84svh;
  }

  .hero--compact {
    min-height: 56svh;
  }

  .hero__content {
    padding: 104px 0 46px;
  }

  .hero__wordmark {
    display: none;
  }

  .split,
  .split--reverse,
  .story-panel,
  .page-intro,
  .ring-type-card,
  .ring-type-card:nth-child(even),
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__image,
  .ring-type-card:nth-child(even) .ring-type-card__image {
    order: -1;
  }

  .split__image,
  .split__image img,
  .ring-type-card__image,
  .ring-type-card__image img,
  .brand-story-card,
  .brand-story-card img {
    min-height: 330px;
  }

  .brand-story-gallery {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .brand-story-card--large {
    grid-row: auto;
  }

  .brand-story-gallery__mark {
    position: static;
    width: 100%;
  }

  .trust-grid,
  .process-grid,
  .choice-grid,
  .detail-grid,
  .article-grid,
  .faq-grid,
  .image-story-grid,
  .story-card-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .process-card,
  .detail-card,
  .article-card,
  .story-card,
  .image-story-card,
  .image-story-card--tall {
    min-height: auto;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* SEO expansion templates */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: var(--wide);
  margin: 0 auto;
  padding: 24px clamp(10px, 1.8vw, 24px) 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--emerald);
}

.breadcrumbs span {
  color: var(--muted);
}

.hero--editorial {
  min-height: clamp(540px, 76vh, 760px);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--silk-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journal-index {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.category-rail,
.toc-card {
  position: sticky;
  top: 112px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 70px rgba(3, 31, 27, 0.08);
}

.category-rail h2,
.toc-card h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.category-list,
.toc-list,
.internal-link-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.category-list a,
.toc-list a,
.internal-link-list a {
  color: var(--ink);
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.editorial-content {
  max-width: 860px;
}

.editorial-content h2 {
  margin-top: clamp(42px, 7vw, 76px);
  font-size: clamp(2.1rem, 4vw, 4.35rem);
  line-height: 0.98;
}

.editorial-content h3 {
  margin-top: 30px;
  color: var(--emerald);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.editorial-content h4 {
  margin-top: 22px;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-content p,
.editorial-content li {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.78;
}

.editorial-content ul,
.editorial-content ol {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 22px;
}

.editorial-note {
  margin: 34px 0;
  padding: clamp(24px, 3vw, 34px);
  border-left: 2px solid var(--emerald);
  background: rgba(255, 255, 255, 0.68);
}

.related-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.related-card,
.location-card {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
}

.related-card h3,
.location-card h3 {
  margin-top: 10px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.location-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
}

.location-service-card {
  padding: clamp(26px, 3.5vw, 42px);
  background: var(--white);
}

.location-service-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.location-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.location-link-grid a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .journal-index,
  .journal-layout {
    grid-template-columns: 1fr;
  }

  .category-rail,
  .toc-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .breadcrumbs {
    padding-top: 18px;
  }

  .related-grid,
  .location-grid,
  .location-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .btn {
    width: 100%;
  }

  .hero__actions,
  .section-actions,
  .cta-actions {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.7rem);
  }
}

@media (max-width: 430px) {
  :root {
    --content: min(100vw - 30px, 720px);
    --wide: min(100vw - 30px, 760px);
  }

  body {
    font-size: 15.5px;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .brand img,
  .brand-wordmark {
    width: min(176px, 58vw);
  }

  .brand .brand-wordmark__primary {
    font-size: 2rem;
  }

  .brand .brand-wordmark__secondary {
    font-size: 0.8rem;
  }

  .nav {
    top: 66px;
    height: calc(100svh - 66px);
    padding: 24px 18px calc(24px + env(safe-area-inset-bottom));
  }

  .nav a {
    width: calc(100vw - 36px);
    min-height: 52px;
    display: flex;
    align-items: center;
  }

  .hero {
    min-height: 78svh;
  }

  .hero--compact {
    min-height: 52svh;
  }

  .hero__content {
    padding: 94px 0 38px;
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.35rem);
    line-height: 1.02;
  }

  h3 {
    line-height: 1.08;
  }

  .section {
    padding: 66px 0;
  }

  .section-lede,
  .lede {
    max-width: 34rem;
  }

  .hero__actions,
  .section-actions,
  .cta-actions {
    gap: 12px;
  }

  .btn {
    min-height: 54px;
    padding: 14px 18px;
  }

  .trust-item__content,
  .process-card__content,
  .story-card__content,
  .article-card,
  .faq-item,
  .detail-card,
  .choice-card,
  .related-card,
  .location-card,
  .location-service-card {
    padding: 24px 22px;
  }

  .split__image,
  .split__image img,
  .ring-type-card__image,
  .ring-type-card__image img,
  .brand-story-card,
  .brand-story-card img {
    min-height: 270px;
  }

  .trust-item__media,
  .process-card__media,
  .story-card__media {
    aspect-ratio: 5 / 4;
  }

  .image-story-card,
  .image-story-card--tall {
    min-height: 300px;
  }

  .form-grid {
    gap: 15px;
  }

  .field input,
  .field select {
    min-height: 54px;
  }

  .field textarea {
    min-height: 132px;
  }

  .footer-grid {
    padding-inline: 0;
  }

  .footer-logo {
    width: 78px;
  }
}

@media (max-width: 360px) {
  :root {
    --content: min(100vw - 24px, 720px);
    --wide: min(100vw - 24px, 760px);
  }

  .brand img,
  .brand-wordmark {
    width: min(158px, 56vw);
  }

  .brand .brand-wordmark__primary {
    font-size: 1.78rem;
  }

  .brand .brand-wordmark__secondary {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.28rem, 11vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.95rem, 11vw, 3rem);
  }

  .eyebrow,
  .section-kicker,
  .footer-title,
  .article-card__meta,
  .hero__meta {
    letter-spacing: 0.13em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  [data-animate] > :where(.trust-item, .process-card, .story-card, .article-card, .faq-item, .choice-card, .detail-card, .image-story-card, .related-card, .location-card, .location-service-card) {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
}
