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

:root {
  --linen: #f4ede1;
  --linen-deep: #e9dfce;
  --warm-white: #faf7ef;
  --ink: #2c2416;
  --ink-soft: #4a3e2e;
  --charcoal: #1c1c1c;
  --mist: #d9d2c5;
  --sage: #809b87;
  --sage-pale: #dbe6dd;
  --teal-deep: #2d706d;
  --teal-ink: #245d5a;
  --copper: #9a6a42;
  --copper-pale: #ece1cf;
  --white: #fefbf5;
  --serif-display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --serif-head: 'Spectral', Georgia, 'Times New Roman', serif;
  --serif-body: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --nav-h: 88px;
  --page: min(1180px, calc(100vw - 120px));
  --shadow: 0 22px 60px rgba(37, 30, 21, .12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--charcoal);
  font-family: var(--serif-body);
  font-size: 20.5px;
  font-weight: 300;
  line-height: 1.76;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button, input, textarea {
  font: inherit;
}

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

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

.process-section :focus-visible,
.site-footer :focus-visible,
.care-start :focus-visible,
.mobile-whatsapp:focus-visible {
  outline-color: var(--sage-pale);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(244, 237, 225, .94);
  border-bottom: 1px solid rgba(44, 36, 22, .09);
  backdrop-filter: blur(14px);
}

.nav-inner {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  text-decoration: none;
  color: var(--ink);
  line-height: 1.15;
}

.nav-logo strong {
  display: block;
  font-family: var(--serif-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .22em;
}

.nav-logo span {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: .03em;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.lang-switch a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links a::after {
  content: '';
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--teal-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current='location']::after {
  transform: scaleX(1);
}

.nav-protection { position: relative; }

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  min-width: 152px;
  display: grid;
  padding: 10px 16px;
  background: rgba(250, 248, 244, .98);
  border: 1px solid rgba(154, 106, 66, .23);
  box-shadow: 0 16px 35px rgba(63, 42, 25, .10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-submenu::before {
  content: '';
  position: absolute;
  inset: -10px 0 auto;
  height: 12px;
}

.nav-protection:hover .nav-submenu,
.nav-protection:focus-within .nav-submenu { opacity: 1; pointer-events: auto; transform: none; }

.nav-submenu a { min-height: 36px; display: flex; align-items: center; font-size: 12px; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mist);
}

.lang-switch a {
  min-width: 32px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-switch a[aria-current='page'] {
  color: var(--teal-deep);
  font-weight: 600;
}

.nav-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 13px 26px;
  font-size: 13.5px;
  line-height: 1.25;
  letter-spacing: .15em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease;
}

.nav-cta,
.btn-primary {
  background: #6a5140;
  border-color: #6a5140;
  color: var(--white);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--teal-ink);
  border-color: var(--teal-ink);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
}

.btn-secondary:hover {
  color: var(--teal-deep);
  border-color: var(--teal-deep);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(44, 36, 22, .22);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

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

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

main {
  display: block;
}

section[id], article[id], footer[id] {
  scroll-margin-top: calc(var(--nav-h) + 22px);
}

.hero {
  max-width: 1440px;
  min-height: 720px;
  margin: var(--nav-h) auto 0;
  display: grid;
  grid-template-columns: 42% 58%;
  background: var(--linen);
}

.hero-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(to top, rgba(18, 15, 11, .76), rgba(18, 15, 11, .08) 68%, transparent);
  pointer-events: none;
}

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

.image-note {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  color: rgba(255, 253, 250, .9);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px clamp(44px, 6vw, 92px);
}

.eyebrow,
.section-label {
  display: block;
  margin-bottom: 22px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.object-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif-head);
  font-weight: 400;
  letter-spacing: -.02em;
}

/* Display titles set in Cinzel (lapidary Roman capitals) for authority */
.hero h1,
.section-title {
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: .03em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.2;
}

.hero h1 em,
.object-title em {
  color: var(--teal-deep);
  font-weight: 400;
}

.hero h1 em {
  font-style: normal;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 38px;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.authority-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--mist);
}

.authority-item {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: .04em;
  line-height: 1.45;
}

.authority-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.routes {
  background: var(--warm-white);
  padding: 6px 0;
  border-top: 1px solid rgba(44, 36, 22, .07);
  border-bottom: 1px solid rgba(44, 36, 22, .07);
}

.routes-inner {
  width: var(--page);
  margin: 0 auto;
  padding: 52px 0 60px;
}

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

.route-card {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 34px 32px 28px;
  background: var(--linen);
  border-top: 2px solid var(--copper);
  box-shadow: 0 1px 2px rgba(44, 36, 22, .05), 0 18px 40px -22px rgba(44, 36, 22, .28);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.route-card:hover {
  z-index: 1;
  transform: translateY(-6px);
  border-top-color: var(--teal-deep);
  box-shadow: 0 1px 2px rgba(44, 36, 22, .06), 0 28px 54px -22px rgba(44, 36, 22, .34);
}

.route-number {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--copper);
  font-family: var(--serif-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
}

.route-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-strong, var(--mist));
}

.route-card h2 {
  align-self: center;
  margin: 20px 0;
  font-family: var(--serif-head);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.28;
}

.route-card::after {
  content: '→';
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--copper);
  font-family: var(--serif-display);
  font-size: 15px;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity .25s ease, transform .25s ease;
}

.route-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.route-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.4;
}

.route-meta strong {
  color: var(--ink);
  font-weight: 600;
}

.section {
  padding: 118px 0;
}

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

#objets {
  position: relative;
  background: linear-gradient(180deg, #fbf7f1 0%, #f7efe6 100%);
  box-shadow: inset 0 1px 0 rgba(154, 106, 66, .22), inset 0 -1px 0 rgba(154, 106, 66, .16);
}

#objets .section-head {
  max-width: 900px;
  margin-bottom: 58px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(154, 106, 66, .28);
}

#objects-title { font-size: clamp(38px, 4.5vw, 64px); line-height: 1.06; }

#objects-title::before {
  content: '';
  width: 54px;
  height: 2px;
  display: block;
  margin: 0 0 20px;
  background: var(--copper);
}

.section-deep {
  background: var(--linen-deep);
}

.section-inner {
  width: var(--page);
  margin: 0 auto;
}

.breadcrumb-bar {
  width: var(--page);
  margin: 28px auto 0;
}

.breadcrumb-link {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb-link:hover { color: var(--teal-deep); }

.page-hero {
  padding: 24px 0 0;
}

.page-hero .section-title { margin-bottom: 14px; }

.return-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.secondary-ref {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--muted, var(--ink-soft));
}

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.22;
}

.section-intro {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.84;
}

.deep-dive {
  margin: 20px 0 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.deep-dive summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 -14px;
  padding: 0 14px;
  cursor: pointer;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  list-style: none;
  text-transform: uppercase;
  transition: background .2s ease;
}

.deep-dive summary:hover,
.deep-dive summary:focus-visible {
  background: var(--teal-soft, rgba(45, 112, 109, .08));
}

.deep-dive summary::-webkit-details-marker { display: none; }

.deep-dive summary::after {
  content: '+';
  font-family: var(--serif-head);
  font-size: 22px;
  font-weight: 400;
}

.deep-dive[open] summary::after { content: '−'; }

.deep-dive-body {
  padding: 2px 0 20px;
}

.deep-dive-body p {
  margin: 0 0 15px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.deep-dive-body p:last-child { margin-bottom: 0; }

.when-list .deep-dive {
  margin-top: 16px;
}

.when-list .deep-dive-body { padding-bottom: 4px; }

.care-start {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 31%) 1fr;
  gap: 54px;
  padding: 42px;
  background: linear-gradient(135deg, #554331 0%, #3d2f23 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.care-start::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--sage));
}

.care-step {
  color: var(--sage-pale);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.care-start h3 {
  margin: 20px 0 18px;
  color: var(--white);
  font-family: var(--serif-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.24;
}

.care-start p {
  margin: 0;
  color: rgba(255, 253, 250, .76);
  font-size: 16px;
  line-height: 1.8;
}

.care-start-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
}

.care-start-price {
  min-width: 150px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .18);
  text-align: right;
}

.care-start-price strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--serif-head);
  font-size: 34px;
  font-weight: 400;
}

.care-start .btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.care-start .btn:hover {
  border-color: var(--sage-pale);
  background: var(--sage-pale);
}

.care-start .care-mode {
  border-color: #3d7773;
  background: #3d7773;
  color: var(--white);
}

.care-bridge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 38px 0 30px;
  color: var(--ink-soft);
  font-size: 14.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.care-bridge::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--teal-deep);
}

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

.care-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 32px;
  background: linear-gradient(145deg, #fcf9f4 0%, #f6eee5 100%);
  border: 1px solid rgba(139, 99, 61, .18);
  border-top: 3px solid var(--copper);
  transition: box-shadow .25s ease, transform .25s ease;
}

.care-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.care-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.care-index,
.process-phase {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.process-phase {
  color: var(--sage);
}

.care-mode {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(45, 112, 109, .38);
  background: rgba(45, 112, 109, .10);
  color: var(--teal-ink);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.care-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
}

.care-card p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.78;
}

.care-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: auto 0 24px;
  padding: 18px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.care-fact {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.care-fact strong {
  display: block;
  margin-bottom: 3px;
  color: var(--copper);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.care-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.price {
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 26px;
  line-height: 1.1;
}

.price small {
  display: block;
  max-width: 220px;
  margin-top: 7px;
  color: var(--ink-soft);
  font-family: var(--serif-body);
  font-size: 13.5px;
  line-height: 1.45;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.provenance-link {
  margin-top: 28px;
  font-size: 13px;
}

.text-link:hover {
  color: var(--teal-deep);
}

.care-note,
.legal-note {
  max-width: 780px;
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--mist);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.78;
}

#soins .care-note { max-width: 900px; color: #4b3d30; font-size: 16px; line-height: 1.86; }

.legal-note {
  margin-top: 18px;
  padding-top: 0;
  border: 0;
  font-size: 15px;
  line-height: 1.65;
}

.manifesto {
  max-width: 900px;
  margin: 0 auto 92px;
  padding: 48px 52px;
  background: var(--linen);
  border: 1px solid var(--mist);
  border-left: 3px solid var(--sage);
}

.manifesto p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.9;
}

.manifesto p + p {
  margin-top: 20px;
}

.object-feature {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
  margin-bottom: 130px;
}

.object-feature:last-child {
  margin-bottom: 0;
}

.object-feature.reverse .object-gallery {
  order: 2;
  position: static;
}

.object-feature.reverse .object-copy {
  order: 1;
}

.object-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 30px);
  display: grid;
  gap: 18px;
}

.media-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(44, 36, 22, .1);
  box-shadow: 0 12px 40px rgba(37, 30, 21, .08);
}

.media-card picture,
.media-card .media-crop {
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.media-card img {
  width: 100%;
  height: auto;
  display: block;
}

.media-card.product img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.media-card.plate img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.82) contrast(1.13) brightness(1.12) sepia(.08);
}

.media-card.yagna img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.03);
  filter: saturate(.88) contrast(1.12) brightness(.86);
}

.media-card figcaption {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 11px 16px;
  background: #f8f1e8;
  color: #3f3023;
  border-top: 1px solid rgba(139, 99, 61, .15);
  font-size: 12.5px;
  line-height: 1.45;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.object-kicker {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.object-title {
  margin: 15px 0 26px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.18;
}

.object-lede {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.86;
}

.when-list {
  margin: 30px 0 34px;
  padding: 24px 26px 22px;
  background: rgba(193, 134, 75, .08);
  border: 1px solid rgba(155, 100, 50, .22);
  border-left: 3px solid var(--copper);
}

.when-list h4 {
  margin: 0 0 15px;
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.when-list ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.when-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.when-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--copper);
  border-radius: 50%;
}

.object-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 32px 0;
  background: var(--mist);
  border: 1px solid var(--mist);
}

.object-highlight {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  background: var(--warm-white);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.45;
}

.object-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 23px;
  font-weight: 400;
}

.spec-card {
  margin: 30px 0 36px;
  padding: 32px;
  background: var(--warm-white);
  border: 1px solid var(--mist);
}

.spec-group + .spec-group {
  margin-top: 28px;
}

.spec-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
  color: var(--copper);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.spec-kicker svg { flex: none; color: var(--copper); }

.spec-list {
  border-top: 1px solid var(--mist);
}

.spec-row {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 0;
  padding: 16px 10px;
  margin: 0 -10px;
  border-bottom: 1px solid var(--mist);
  border-left: 2px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}

.spec-row:hover {
  background: var(--linen);
  border-left-color: var(--copper);
}

.spec-row dt,
.spec-row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.spec-row dt {
  color: var(--ink-soft);
  font-weight: 500;
}

.spec-row dd {
  color: var(--ink);
}

.spec-epigraph {
  margin: 26px 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--copper);
}

.spec-epigraph .spec-kicker { color: var(--copper); }

.spec-epigraph p {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
}

.object-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.object-price {
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 33px;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 0;
  background: var(--ink);
  color: var(--white);
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-label {
  color: var(--sage-pale);
}

.process-section .section-intro {
  color: rgba(255, 253, 250, .7);
}

.process-topline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
}

.process-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 64px;
  color: var(--sage-pale);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: opacity .25s ease;
}

.process-hint.is-used {
  opacity: .34;
}

.process-hint svg {
  width: 42px;
  height: 18px;
  animation: hintSlide 1.8s ease-in-out infinite;
}

@keyframes hintSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-8px); }
}

.process-shell {
  position: relative;
}

.process-shell::after {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0 0 0 auto;
  width: 86px;
  background: linear-gradient(90deg, transparent, var(--ink));
  pointer-events: none;
}

.process-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px max(60px, calc((100vw - 1180px) / 2)) 44px;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--sage) rgba(255, 255, 255, .08);
  touch-action: pan-x pan-y;
  overscroll-behavior-inline: contain;
}

.process-scroll.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.process-track {
  position: relative;
  display: flex;
  width: max-content;
  margin: 0;
  padding: 34px 0 16px;
  list-style: none;
}

.process-track::before {
  content: '';
  position: absolute;
  left: 52px;
  right: 52px;
  top: 8px;
  height: 1px;
  background: rgba(220, 229, 223, .3);
}

.process-track::after {
  content: '';
  flex: 0 0 max(0px, calc(100vw - 390px - max(60px, calc((100vw - 1180px) / 2))));
}

.process-card {
  position: relative;
  width: 330px;
  min-height: 350px;
  flex: 0 0 auto;
  padding: 26px 34px 30px;
  scroll-snap-align: start;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.process-card::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 43px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--sage-pale);
  border-radius: 50%;
  background: var(--ink);
}

.process-number {
  margin-bottom: 25px;
  color: rgba(220, 229, 223, .42);
  font-family: var(--serif-head);
  font-size: 64px;
  line-height: 1;
}

.process-card h3 {
  margin: 9px 0 7px;
  color: var(--white);
  font-family: var(--serif-head);
  font-size: 20px;
  font-weight: 400;
}

.process-subtitle {
  display: block;
  margin-bottom: 15px;
  color: var(--sage-pale);
  font-size: 15px;
  font-style: italic;
}

.process-card p {
  margin: 0;
  color: rgba(255, 253, 250, .67);
  font-size: 16px;
  line-height: 1.72;
}

.process-controls {
  width: var(--page);
  margin: 0 auto 46px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.process-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .34);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.process-button:hover,
.process-button:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.process-count {
  min-width: 62px;
  color: var(--sage-pale);
  font-size: 12.5px;
  letter-spacing: .13em;
  text-align: center;
}

.process-progress {
  width: 150px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
}

.process-progress span {
  display: block;
  width: 16.66%;
  height: 100%;
  background: var(--sage);
  transform-origin: left;
  transition: width .25s ease;
}

.process-band {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.process-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 28, 28, .34), transparent 55%);
}

.process-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(.86) contrast(1.03);
}

.provenance-grid {
  display: grid;
  grid-template-columns: minmax(290px, .78fr) minmax(0, 1.22fr);
  gap: clamp(54px, 8vw, 100px);
  align-items: start;
}

.provenance-media {
  display: grid;
  gap: 20px;
}

.provenance-media .media-card:first-child img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 26%;
}

.provenance-media .media-card:last-child img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.object-gallery .media-card.ritual-portrait img {
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: center;
  background: #171411;
}

.provenance-media .media-card:only-child img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

.provenance-media .media-card.guru-archive img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.08);
}

.provenance-copy > p {
  margin: 0 0 19px;
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.86;
}

.provenance-copy > .section-title + p {
  margin-top: 30px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 42px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.timeline-item {
  min-height: 140px;
  padding: 21px 16px;
}

.timeline-item + .timeline-item {
  border-left: 1px solid var(--mist);
}

.timeline-year {
  color: var(--teal-deep);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .12em;
}

.timeline-event {
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 15px;
  line-height: 1.4;
}

.provenance-quote {
  margin: 36px 0;
  padding: 7px 0 7px 27px;
  border-left: 2px solid var(--sage);
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 19px;
  font-style: italic;
  line-height: 1.64;
}

.provenance-copy h3 {
  margin: 44px 0 16px;
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.provenance-copy h3:first-of-type { margin-top: 36px; }

.provenance-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-family: var(--serif-body);
  font-size: 12px;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.long-read {
  margin-top: 30px;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.long-read summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 -14px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  transition: background .2s ease;
}

.long-read summary:hover,
.long-read summary:focus-visible {
  background: var(--linen);
}

.long-read summary::-webkit-details-marker {
  display: none;
}

.long-read summary::after {
  content: '+';
  color: var(--teal-deep);
  font-family: var(--serif-head);
  font-size: 24px;
  font-weight: 400;
}

.long-read[open] summary::after {
  content: '−';
}

.long-read-body {
  padding: 6px 0 24px;
}

.long-read-body p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.84;
}

.faq-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.faq-group h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: 21px;
  font-weight: 400;
}

.faq-item {
  border-top: 1px solid var(--mist);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--mist);
}

.faq-item summary {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 0 -14px;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  transition: background .2s ease;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  background: var(--linen);
}

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

.faq-item summary::after {
  content: '+';
  color: var(--teal-deep);
  font-family: var(--serif-head);
  font-size: 22px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 28px 21px 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.contact-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--ink);
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.86) contrast(1.03);
}

.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 10, .74) 0%, rgba(20, 16, 10, .64) 45%, rgba(20, 16, 10, .8) 100%);
}

.contact-section .section-inner {
  position: relative;
  z-index: 1;
}

.contact-section .section-label {
  color: var(--sage-pale);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .contact-head p {
  color: rgba(255, 253, 250, .78);
}

.contact-section .legal-note {
  color: rgba(255, 253, 250, .68);
}

.contact-head {
  max-width: 620px;
  margin-bottom: 48px;
}

.contact-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.82;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
}

.contact-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: rgba(20, 16, 10, .18);
  backdrop-filter: blur(7px) saturate(1.15);
  -webkit-backdrop-filter: blur(7px) saturate(1.15);
}

.contact-card .care-index {
  color: var(--sage-pale);
}

.contact-card h3 {
  margin: 16px 0 13px;
  color: var(--white);
  font-family: var(--serif-head);
  font-size: 21px;
  font-weight: 400;
}

.contact-card p {
  margin: 0 0 23px;
  color: rgba(255, 253, 250, .76);
  font-size: 16px;
  line-height: 1.66;
}

.contact-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--sage-pale);
}

.contact-card .text-link:hover {
  color: var(--white);
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .7fr);
  gap: 46px;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .16em;
}

.footer-brand span {
  display: block;
  margin-top: 8px;
  color: #d4c1a0;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255, 253, 250, .64);
  font-size: 16px;
  line-height: 1.72;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: var(--sage-pale);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 253, 250, .7);
  font-size: 16px;
  text-decoration: none;
}

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

.footer-bottom {
  width: var(--page);
  margin: 50px auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 253, 250, .48);
  font-size: 13.5px;
  line-height: 1.55;
}

.footer-bottom span:last-child {
  max-width: 760px;
  text-align: right;
}

.mobile-whatsapp {
  display: none;
  position: fixed;
  z-index: 80;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  min-height: 48px;
  align-items: center;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: var(--teal-deep);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(21, 91, 93, .28);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.whatsapp-dialog {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(10, 10, 10, .34);
}

.whatsapp-dialog::backdrop {
  background: rgba(28, 28, 28, .7);
  backdrop-filter: blur(5px);
}

.whatsapp-dialog-card {
  padding: clamp(28px, 6vw, 48px);
  background: var(--warm-white);
  border-top: 4px solid var(--teal-deep);
}

.whatsapp-dialog h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif-head);
  font-size: clamp(25px, 5vw, 34px);
  font-weight: 400;
  line-height: 1.25;
}

.whatsapp-dialog p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dialog-actions button {
  cursor: pointer;
}

.process-button:disabled {
  opacity: .34;
  cursor: default;
}

.process-button:disabled:hover {
  background: transparent;
  color: var(--white);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 64px, 980px);
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 44% 56%;
  }

  .hero-content {
    padding-inline: 46px;
  }

  .authority-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .object-feature {
    gap: 48px;
  }

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

  .timeline-item:nth-child(4),
  .timeline-item:nth-child(7) {
    border-left: 0;
    border-top: 1px solid var(--mist);
  }

  .timeline-item:nth-child(5),
  .timeline-item:nth-child(6) {
    border-top: 1px solid var(--mist);
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 76px;
    --page: min(100% - 48px, 760px);
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    height: calc(100vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 30px 24px 110px;
    overflow-y: auto;
    background: var(--linen);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
  }

  .nav-links.is-open {
    transform: none;
    visibility: visible;
  }

  .nav-links li,
  .nav-links li:nth-child(4) {
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--mist);
  }

  .nav-links a {
    min-height: 62px;
    display: flex;
    align-items: center;
    font-family: var(--serif-head);
    font-size: 18px;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-submenu {
    position: static;
    display: grid;
    margin: -5px 0 14px;
    padding: 0 0 0 20px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a { min-height: 42px; font-size: 12px; }

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 330px;
    height: 44vh;
    max-height: 700px;
  }

  .hero-media img {
    object-position: 50% 32%;
  }

  .hero-content {
    padding: 58px var(--page-gutter, 24px) 64px;
  }

  .hero-content > * {
    width: var(--page);
    margin-left: auto;
    margin-right: auto;
  }

  .route-grid,
  .care-grid,
  .faq-groups,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 170px;
  }

  .care-start,
  .care-start-main {
    grid-template-columns: 1fr;
  }

  .care-start-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
    text-align: left;
  }

  .care-start-price strong {
    margin: 0;
  }

  .object-feature,
  .provenance-grid,
  .contact-head {
    grid-template-columns: 1fr;
  }

  .object-feature.reverse .object-gallery,
  .object-feature.reverse .object-copy {
    order: initial;
  }

  .object-gallery {
    position: static;
  }

  .when-list {
    padding: 22px 20px;
  }

  .process-topline {
    grid-template-columns: 1fr;
  }

  .process-hint {
    margin: -34px 0 42px;
  }

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

  .mobile-whatsapp {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 40px);
  }

  body {
    font-size: 19px;
  }

  .site-nav {
    background: rgba(244, 237, 225, .97);
  }

  .nav-actions {
    gap: 11px;
  }

  .nav-logo strong {
    font-size: 16px;
  }

  .hero-media {
    min-height: 340px;
    height: 48vh;
  }

  .hero-media img {
    object-position: 50% 32%;
  }

  .hero-content {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .hero h1,
  .section-title {
    letter-spacing: .01em;
  }

  .hero-lede {
    margin-block: 24px 30px;
    font-size: 18.5px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .authority-strip {
    margin-top: 36px;
  }

  .routes-inner {
    padding-block: 44px 50px;
  }

  .routes-intro {
    display: block;
  }

  .routes-intro p {
    margin-top: 10px;
  }

  .route-card {
    padding-inline: 22px;
  }

  .section,
  .contact-section {
    padding: 82px 0;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .section-intro {
    font-size: 18px;
  }

  #objects-title {
    max-width: 100%;
    font-size: clamp(34px, 9.2vw, 42px);
    overflow-wrap: anywhere;
  }

  .care-start {
    gap: 28px;
    padding: 28px 24px;
  }

  .care-start-price {
    display: block;
  }

  .care-start-price .btn {
    width: 100%;
    margin-top: 20px;
  }

  .care-card {
    min-height: auto;
    padding: 27px 23px;
  }

  .care-card-top {
    display: block;
  }

  .care-mode {
    margin-top: 12px;
  }

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

  .care-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .care-footer .text-link,
  .contact-card .text-link {
    width: 100%;
  }

  .manifesto {
    margin-bottom: 68px;
    padding: 30px 25px;
  }

  .manifesto p {
    font-size: 16px;
  }

  .object-feature {
    margin-bottom: 92px;
  }

  .object-highlights {
    grid-template-columns: 1fr;
  }

  .object-highlight {
    min-height: 84px;
  }

  .spec-card {
    padding: 22px 18px;
  }

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

  .spec-row dt {
    margin-bottom: 3px;
    color: var(--teal-deep);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .object-actions {
    align-items: stretch;
  }

  .object-actions .btn {
    width: 100%;
  }

  .process-section {
    padding-top: 82px;
  }

  .process-scroll {
    padding-left: 20px;
    padding-right: 20px;
  }

  .process-card {
    width: min(84vw, 310px);
    padding-inline: 24px;
  }

  .process-controls {
    justify-content: flex-start;
  }

  .process-progress {
    flex: 1;
  }

  .process-band {
    height: 230px;
  }

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

  .timeline-item,
  .timeline-item:nth-child(4),
  .timeline-item:nth-child(5) {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--mist);
  }

  .timeline-item:first-child {
    border-top: 0;
  }

  .faq-groups {
    gap: 48px;
  }

  .contact-head {
    gap: 22px;
  }

  .contact-card {
    min-height: 220px;
    padding: 25px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom span:last-child {
    margin-top: 14px;
    text-align: left;
  }

  .dialog-actions,
  .dialog-actions .btn {
    width: 100%;
  }
}

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

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

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