:root {
  --ink: #202925;
  --ink-soft: #53605a;
  --forest: #354b43;
  --forest-deep: #233730;
  --sage: #aebc7a;
  --sage-light: #dfe5bf;
  --sky: #c9dcde;
  --rose: #edc8c1;
  --sand: #eadfc8;
  --ivory: #f7f4ec;
  --paper: #fffdf8;
  --line: rgba(32, 41, 37, .13);
  --shadow: 0 24px 70px rgba(34, 50, 43, .12);
  --shadow-soft: 0 12px 34px rgba(34, 50, 43, .09);
  --radius: 18px;
  --radius-sm: 11px;
  --radius-lg: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 48px));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  overflow-wrap: break-word;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main, section, article, aside, nav, div, ul, ol, li { min-width: 0; }

h1, h2, h3 {
  overflow-wrap: break-word;
  hyphens: auto;
  word-break: normal;
}

.manual-break { overflow-wrap: normal; hyphens: manual; }

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button, input, textarea { font: inherit; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid #728340;
  outline-offset: 4px;
}

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

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

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

.section { padding: 118px 0; }

.section--compact { padding: 82px 0; }

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

.section--forest { background: var(--forest-deep); color: #f7f5ee; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #65743c;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section--forest .eyebrow { color: #cdd99b; }

.section-title {
  max-width: 810px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .99;
}

.section-title em,
.hero h1 em {
  color: #75854a;
  font-weight: 400;
}

.section--forest .section-title em { color: #d8e2aa; }

.section-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.7;
}

.section--forest .section-lead { color: rgba(247, 245, 238, .7); }

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 54px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after { content: "↗"; transition: transform .2s ease; }
.text-link:hover::after { transform: translate(3px, -3px); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button--primary { background: var(--forest-deep); color: white; }
.button--primary:hover { background: #15261f; }

.button--light { background: #f5f2e9; color: var(--forest-deep); }
.button--light:hover { background: white; }

.button--outline { border-color: rgba(32, 41, 37, .25); color: var(--forest-deep); }
.button--outline:hover { border-color: var(--forest-deep); background: rgba(255, 255, 255, .55); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(32, 41, 37, .08);
  background: rgba(247, 244, 236, .68);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
  backdrop-filter: blur(24px) saturate(1.12);
}

.header-inner {
  display: grid;
  min-height: 94px;
  align-items: center;
  grid-template-columns: 235px 1fr auto;
  gap: 34px;
}

.brand { display: inline-flex; width: 205px; align-items: center; text-decoration: none; }
.brand img { width: 205px; height: auto; aspect-ratio: 626 / 165; object-fit: contain; object-position: left center; filter: contrast(1.04); }

.main-nav { justify-self: center; }
.main-nav > ul { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); margin: 0; padding: 0; list-style: none; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a,
.nav-dropdown-trigger {
  position: relative;
  padding: 35px 0 32px;
  border: 0;
  background: transparent;
  color: #39453f;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.main-nav > ul > li > a::after,
.nav-dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--sage);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a[aria-current="page"]::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.is-current::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after { transform: scaleX(1); }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 8px; }
.nav-dropdown-trigger > span { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .25s ease; }
.nav-dropdown:is(:hover, :focus-within, .is-open) .nav-dropdown-trigger > span { transform: translateY(2px) rotate(225deg); }
.nav-dropdown-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% - 14px);
  left: 50%;
  display: grid;
  width: 286px;
  padding: 10px;
  border: 1px solid rgba(32, 41, 37, .11);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 20px 58px rgba(26, 42, 35, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
  backdrop-filter: blur(20px) saturate(1.12);
}
.nav-dropdown:is(:hover, :focus-within, .is-open) .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-dropdown-menu a { padding: 12px 14px; border-radius: var(--radius-sm); color: var(--ink); font-size: 14px; font-weight: 650; line-height: 1.3; text-decoration: none; transition: background-color .18s ease, color .18s ease, transform .18s ease; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { background: rgba(174, 188, 122, .18); color: var(--forest-deep); transform: translateX(3px); }

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--forest-deep);
  text-decoration: none;
}
.header-phone small { color: #748079; font-size: 11px; line-height: 1.2; }
.header-phone strong { font-size: 15px; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 94px 0 0;
  display: none;
  overflow-y: auto;
  padding: 28px 24px 100px;
  background: var(--ivory);
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: grid; }
.mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
  text-decoration: none;
}
.mobile-nav-group { border-bottom: 1px solid var(--line); }
.mobile-nav-group > button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 15px 0; border: 0; background: transparent; color: var(--ink); font-family: var(--serif); font-size: 25px; line-height: 1.2; text-align: left; cursor: pointer; }
.mobile-nav-group > button span { width: 10px; height: 10px; margin-right: 4px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-3px) rotate(45deg); transition: transform .25s ease; }
.mobile-nav-group > button[aria-expanded="true"] span { transform: translateY(3px) rotate(225deg); }
.mobile-nav-submenu { display: grid; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s cubic-bezier(.22, 1, .36, 1), opacity .25s ease, padding .25s ease; }
.mobile-nav-group.is-open .mobile-nav-submenu { max-height: 240px; padding: 4px 0 14px; opacity: 1; }
.mobile-nav-submenu a { padding: 11px 16px; border: 0; border-radius: var(--radius-sm); color: var(--ink-soft); font-family: var(--sans); font-size: 16px; }
.mobile-nav-submenu a:hover, .mobile-nav-submenu a:focus-visible { background: rgba(174, 188, 122, .16); color: var(--forest-deep); }
.mobile-menu .button { margin-top: 28px; font-family: var(--sans); font-size: 15px; }
.mobile-menu.is-open nav > * { animation: menu-item-in .46s cubic-bezier(.22, 1, .36, 1) both; }
.mobile-menu.is-open nav > *:nth-child(2) { animation-delay: 45ms; }
.mobile-menu.is-open nav > *:nth-child(3) { animation-delay: 90ms; }
.mobile-menu.is-open nav > *:nth-child(4) { animation-delay: 135ms; }
.mobile-menu.is-open nav > *:nth-child(5) { animation-delay: 180ms; }
.mobile-menu.is-open nav > *:nth-child(6) { animation-delay: 225ms; }
.mobile-menu.is-open nav > *:nth-child(7) { animation-delay: 270ms; }
.mobile-menu.is-open nav > *:nth-child(8) { animation-delay: 315ms; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(174, 188, 122, .13), transparent 38%),
    linear-gradient(180deg, #f7f4ec 0%, #f1ede3 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3%;
  width: 1px;
  background: rgba(53, 75, 67, .1);
  content: "";
  transform: skewX(-7deg);
  transform-origin: top;
}
.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 78%, rgba(117, 133, 74, .12) 78.1% 78.2%, transparent 78.3%),
    linear-gradient(0deg, transparent 0 66%, rgba(117, 133, 74, .09) 66.1% 66.2%, transparent 66.3%),
    linear-gradient(128deg, transparent 0 48%, rgba(117, 133, 74, .1) 48.1% 48.25%, transparent 48.35%);
  background-position: 0 0;
  background-size: 118% 118%;
  content: "";
  pointer-events: none;
  animation: hero-geometry-drift 18s ease-in-out infinite alternate;
}
.hero > .container, .hero .trust-bar { position: relative; z-index: 2; }

.hero-slider, .hero-slides { width: 100%; min-width: 0; }
.hero-slider-frame { position: relative; padding-top: 48px; }
.hero-slides { display: grid; }
.hero-slide {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease, visibility 0s linear .5s;
}
.hero-slide.is-active { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
.hero-slide-grid {
  display: grid;
  min-height: 720px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: clamp(38px, 5vw, 86px);
}
.hero-copy { position: relative; z-index: 3; padding: 58px 0 140px; }
.hero-title {
  max-width: 770px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(55px, 5.6vw, 84px);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: .94;
  overflow-wrap: normal;
  hyphens: none;
}
.hero-title em { color: #788744; }
.hero-title--compact { font-size: clamp(50px, 5.2vw, 78px); }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { display: flex; align-items: flex-start; gap: 12px; max-width: 590px; margin-top: 26px; color: #6f7974; font-size: 13px; }
.hero-note::before { width: 16px; height: 1px; margin-top: .7em; flex: 0 0 auto; background: var(--sage); content: ""; }

.hero-visual { position: relative; width: min(100%, 555px); margin-left: auto; aspect-ratio: 4 / 5; }
.hero-image-assembly {
  position: absolute;
  inset: 0;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  background: #d5ded8;
  box-shadow: 18px 22px 48px rgba(35, 51, 44, .13);
}
.hero-image-slice {
  min-width: 0;
  background-image: var(--slide-image);
  background-position: var(--slice-position) center;
  background-repeat: no-repeat;
  background-size: 300% 100%;
}
.hero-image-slice + .hero-image-slice { border-left: 1px solid rgba(255,255,255,.48); }
.hero-fact {
  position: absolute;
  z-index: 4;
  right: calc(100% - 78px);
  bottom: 62px;
  width: 175px;
  padding: 19px 21px;
  border-left: 3px solid var(--sage);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 18px 42px rgba(32, 41, 37, .12);
}
.hero-fact strong { display: block; font-family: var(--serif); font-size: 41px; font-weight: 400; line-height: .9; }
.hero-fact span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: 12px; line-height: 1.35; }

.hero-slider-nav {
  position: absolute;
  z-index: 12;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  transform: none;
}
.hero-tabs { display: grid; width: min(760px, 72%); grid-template-columns: repeat(4, 1fr); }
.hero-tab {
  min-width: 0;
  padding: 12px 12px 11px 0;
  border: 0;
  border-top: 1px solid rgba(32, 41, 37, .2);
  background: transparent;
  color: #6f7974;
  cursor: pointer;
  text-align: left;
}
.hero-tab + .hero-tab { padding-left: 16px; }
.hero-tab span { display: block; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.hero-tab strong { display: block; overflow: hidden; margin-top: 5px; font-size: 12px; font-weight: 680; text-overflow: ellipsis; white-space: nowrap; }
.hero-tab.is-active { border-color: var(--forest-deep); color: var(--forest-deep); }
.hero-slider-buttons { display: flex; align-items: center; gap: 8px; }
.hero-counter { margin-right: 8px; color: #7a847f; font-size: 12px; letter-spacing: .08em; }
.hero-counter b { color: var(--ink); font-weight: 800; }
.hero-slider-buttons button { width: 46px; height: 46px; border: 1px solid rgba(32,41,37,.25); background: rgba(255,253,248,.72); color: var(--ink); cursor: pointer; font-size: 19px; transition: background-color .2s ease, color .2s ease; }
.hero-slider-buttons button:hover { background: var(--forest-deep); color: white; }
.hero-progress { position: absolute; z-index: 13; right: 0; bottom: 0; left: 0; height: 2px; overflow: hidden; background: rgba(53,75,67,.12); }
.hero-progress span { display: block; width: 0; height: 100%; background: var(--sage); }
.hero-slider.is-running .hero-progress span { animation: hero-progress 8s linear both; }
.hero-slider.is-paused .hero-progress span { animation-play-state: paused; }

.hero-slider.is-enhanced .hero-slide.is-active .hero-piece { animation: hero-piece-in-forward .82s cubic-bezier(.22,1,.36,1) both; animation-delay: var(--piece-delay, 0ms); }
.hero-slider.is-enhanced.is-backward .hero-slide.is-active .hero-piece { animation-name: hero-piece-in-backward; }
.hero-slider.is-enhanced .hero-slide.is-active .hero-image-assembly { animation: hero-frame-in 1.05s cubic-bezier(.22,1,.36,1) both; }
.hero-slider.is-enhanced .hero-slide.is-active .hero-image-slice { animation: hero-slice-in-center 1.05s cubic-bezier(.22,1,.36,1) both; }
.hero-slider.is-enhanced .hero-slide.is-active .hero-image-slice:nth-child(1) { animation-name: hero-slice-in-left; }
.hero-slider.is-enhanced .hero-slide.is-active .hero-image-slice:nth-child(2) { animation-delay: 90ms; }
.hero-slider.is-enhanced .hero-slide.is-active .hero-image-slice:nth-child(3) { animation-name: hero-slice-in-right; animation-delay: 180ms; }
.hero-slider.is-enhanced .hero-slide.is-active .hero-fact { animation: hero-fact-in .82s .42s cubic-bezier(.22,1,.36,1) both; }
.hero-slider.is-enhanced .hero-slide.is-active .eyebrow::before { animation: hero-rule-in .7s .18s cubic-bezier(.22,1,.36,1) both; transform-origin: left; }
@keyframes hero-piece-in-forward { from { opacity: 0; transform: translate3d(26px, 28px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes hero-piece-in-backward { from { opacity: 0; transform: translate3d(-26px, 28px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes hero-frame-in { from { opacity: .55; transform: scale(.965); } to { opacity: 1; transform: scale(1); } }
@keyframes hero-slice-in-left { from { opacity: 0; transform: translate3d(-42px, 34px, 0) scale(1.045); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes hero-slice-in-center { from { opacity: 0; transform: translate3d(0, -44px, 0) scale(1.04); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes hero-slice-in-right { from { opacity: 0; transform: translate3d(42px, 34px, 0) scale(1.045); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@keyframes hero-fact-in { from { opacity: 0; transform: translate3d(-24px, 18px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes hero-rule-in { from { transform: scaleX(.1); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
@keyframes hero-geometry-drift { from { background-position: 0 0; opacity: .45; } to { background-position: -42px 28px; opacity: .85; } }
@keyframes hero-progress { from { width: 0; } to { width: 100%; } }

.trust-bar { border-top: 1px solid var(--line); background: rgba(255, 253, 248, .76); }
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 auto; padding: 0; list-style: none; }
.trust-list li { position: relative; padding: 24px 35px; color: var(--ink-soft); font-size: 13px; text-align: center; }
.trust-list li + li::before { position: absolute; top: 22px; bottom: 22px; left: 0; width: 1px; background: var(--line); content: ""; }
.trust-list strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 14px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; margin: -1px !important; padding: 0 !important; border: 0 !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }

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

.direction-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 34px 34px 0;
  border: 1px solid rgba(32, 41, 37, .08);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.direction-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.direction-card--rose { border-top: 3px solid #c9958b; }
.direction-card--blue { border-top: 3px solid #83a4a6; }
.direction-card--sand { border-top: 3px solid #ad996e; }
.direction-card .number { color: rgba(32, 41, 37, .52); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.direction-card h3 { max-width: 330px; margin: 26px 0 12px; font-family: var(--serif); font-size: clamp(31px, 3vw, 43px); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.direction-card p { position: relative; z-index: 2; max-width: 320px; margin: 0; color: #53605a; font-size: 14px; line-height: 1.55; }
.direction-card .card-arrow { position: absolute; z-index: 4; right: 22px; bottom: 22px; display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(32, 41, 37, .18); border-radius: 14px; background: rgba(255, 253, 248, .9); box-shadow: 0 8px 24px rgba(26, 42, 35, .13); font-size: 20px; transition: transform .2s ease; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.direction-card:hover .card-arrow { transform: rotate(45deg); }
.direction-card .card-art-media { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; display: block; width: 100%; height: 45%; overflow: hidden; border-top: 1px solid var(--line); background: #dde6df; transform: translateZ(0); }
.direction-card .card-art,
.direction-card .card-art-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: none; transition: opacity .42s ease, transform .7s cubic-bezier(.22, 1, .36, 1); }
.direction-card .card-art { z-index: 1; opacity: 1; }
.direction-card .card-art-video { z-index: 2; display: block; background: transparent; opacity: 0; }
.direction-card .card-art-media.is-video-ready .card-art-video { opacity: 1; }
.direction-card .card-art-media.is-video-ready .card-art { opacity: 0; }
.direction-card:hover .card-art,
.direction-card:hover .card-art-video { transform: scale(1.025); }
.direction-card--rose .card-art-media { right: 0; bottom: 0; width: 100%; height: 45%; }

.about-grid { display: grid; align-items: center; grid-template-columns: .86fr 1.14fr; gap: clamp(50px, 8vw, 112px); }
.about-photo-wrap { position: relative; }
.about-photo { overflow: hidden; aspect-ratio: 1 / 1; border: 0; border-radius: var(--radius-lg); background: var(--sky); box-shadow: 15px 20px 44px rgba(35, 51, 44, .11); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.about-stamp { position: absolute; right: -24px; bottom: 30px; display: grid; width: 166px; min-height: 112px; align-content: center; padding: 18px 20px; border-left: 3px solid var(--forest-deep); border-radius: var(--radius); background: rgba(174, 188, 122, .94); color: var(--forest-deep); box-shadow: var(--shadow-soft); font-size: 11px; font-weight: 800; letter-spacing: .1em; line-height: 1.4; text-align: left; text-transform: uppercase; transform: none; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.about-copy .section-title { max-width: 650px; }
.about-copy .section-lead { font-size: 18px; }
.credential-list { display: grid; margin: 38px 0 0; padding: 0; list-style: none; }
.credential-list li { display: grid; grid-template-columns: 35px 1fr; gap: 15px; padding: 16px 0; border-top: 1px solid var(--line); }
.credential-list li::before { color: #7f8f51; content: "✓"; font-weight: 900; }
.credential-list strong { display: block; font-size: 14px; }
.credential-list span { color: var(--ink-soft); font-size: 13px; }

.principles-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); }
.principles-intro { position: sticky; top: 140px; align-self: start; }
.principle-list { counter-reset: principle; }
.principle-item { position: relative; padding: 34px 0 34px 72px; border-top: 1px solid rgba(247, 245, 238, .18); counter-increment: principle; }
.principle-item:last-child { border-bottom: 1px solid rgba(247, 245, 238, .18); }
.principle-item::before { position: absolute; top: 38px; left: 0; color: #cdd99b; content: "0" counter(principle); font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.principle-item h3 { margin: 0; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.1; }
.principle-item p { margin: 12px 0 0; color: rgba(247, 245, 238, .67); font-size: 15px; }

/* Straight geometric motion for the principles section. */
.section--forest { position: relative; overflow: hidden; isolation: isolate; }
.section--forest > .container { position: relative; z-index: 2; }
.section--forest::before,
.section--forest::after { position: absolute; z-index: 1; pointer-events: none; content: ""; }
.section--forest::before {
  inset: -34% -16%;
  background:
    repeating-linear-gradient(90deg, transparent 0 168px, rgba(216, 226, 170, .055) 169px 170px),
    repeating-linear-gradient(0deg, transparent 0 168px, rgba(216, 226, 170, .04) 169px 170px),
    linear-gradient(124deg, transparent 0 42%, rgba(216, 226, 170, .06) 42.1% 42.35%, transparent 42.45% 100%);
  opacity: .42;
  filter: blur(1px);
  transform: rotate(-7deg) translate3d(-3%, 0, 0);
  animation: forest-grid-drift 38s cubic-bezier(.45, 0, .55, 1) infinite alternate;
}
.section--forest::after {
  top: 8%;
  right: -12%;
  width: 48%;
  height: 72%;
  border-top: 1px solid rgba(216, 226, 170, .13);
  border-left: 1px solid rgba(216, 226, 170, .11);
  background: linear-gradient(135deg, rgba(216, 226, 170, .035), transparent 62%);
  filter: blur(1.6px);
  transform: skewX(-12deg);
  animation: forest-plane-drift 28s cubic-bezier(.45, 0, .55, 1) infinite alternate;
}
@keyframes forest-grid-drift {
  from { transform: rotate(-7deg) translate3d(-2%, -.5%, 0); }
  to { transform: rotate(-7deg) translate3d(2%, 1.5%, 0); }
}
@keyframes forest-plane-drift {
  from { transform: skewX(-12deg) translate3d(0, -1%, 0); opacity: .36; }
  to { transform: skewX(-12deg) translate3d(-2%, 1.5%, 0); opacity: .62; }
}

.blog-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.article-card { position: relative; grid-column: span 4; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.article-card:nth-child(1), .article-card:nth-child(2) { grid-column: span 6; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(34, 50, 43, .11); }
.article-card-media { overflow: hidden; aspect-ratio: 16 / 10; background: #dce5df; }
.article-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.article-card:hover .article-card-media img { transform: scale(1.035); }
.article-card-media--portrait img { object-position: center 28%; }
.article-card-body { padding: 24px 25px 28px; }
.article-card time, .article-card .tag { color: #78837d; font-size: 11px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.article-card h3 { margin: 12px 0 0; font-family: var(--serif); font-size: 27px; font-weight: 400; letter-spacing: -.025em; line-height: 1.12; }
.article-card p { margin: 13px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.article-card .read-more { display: inline-block; margin-top: 20px; color: #68773f; font-size: 13px; font-weight: 800; }

.contact-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: white;
  box-shadow: var(--shadow);
}
.contact-copy { padding: clamp(44px, 6vw, 82px); }
.contact-copy .section-title { font-size: clamp(42px, 4.6vw, 67px); }
.contact-copy .section-title em { color: #d7e1a9; }
.contact-copy > p { margin: 24px 0 0; color: rgba(255,255,255,.68); }
.contact-links { display: grid; gap: 8px; margin-top: 32px; }
.contact-links a { font-family: var(--serif); font-size: clamp(25px, 2.5vw, 36px); line-height: 1.15; text-decoration: none; }
.contact-links a:hover { color: #d7e1a9; }
.contact-address { margin-top: 28px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-address strong { display: block; }
.contact-address span { color: rgba(255,255,255,.63); font-size: 14px; }
.contact-map { min-height: 580px; background: #cbd4ce; }
.contact-map iframe { width: 100%; height: 100%; min-height: 580px; border: 0; filter: saturate(.65) contrast(.94); }

.site-footer { padding: 62px 0 110px; background: #17251f; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 50px; }
.footer-brand img { width: 230px; height: auto; aspect-ratio: 626 / 165; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .88; }
.footer-brand p { max-width: 370px; margin: 22px 0 0; font-size: 13px; }
.footer-column h3 { margin: 4px 0 17px; color: white; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column nav, .footer-contacts { display: grid; gap: 9px; }
.footer-column a { color: rgba(255,255,255,.72); font-size: 14px; text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-legal { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }

.mobile-cta {
  position: fixed;
  z-index: 80;
  right: 14px;
  bottom: 14px;
  left: auto;
  display: none;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: var(--forest-deep);
  box-shadow: 0 10px 28px rgba(19, 37, 29, .3);
  color: white;
  text-decoration: none;
}
.mobile-cta svg { width: 27px; height: 27px; flex: 0 0 auto; }

.mobile-cta.is-visible { animation: mobile-cta-in .46s cubic-bezier(.22, 1, .36, 1) both; }

@keyframes menu-item-in {
  from { opacity: 0; translate: 0 12px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes mobile-cta-in {
  from { opacity: 0; translate: 0 14px; }
  to { opacity: 1; translate: 0 0; }
}

.legacy-anchor {
  position: relative;
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  scroll-margin-top: 110px;
}

/* Inner pages */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 31px;
  padding: 0;
  color: #748079;
  font-size: 12px;
  list-style: none;
}
.breadcrumbs li:not(:last-child)::after { margin-left: 8px; content: "·"; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 76px;
  background:
    linear-gradient(118deg, transparent 58%, rgba(201, 220, 222, .38)),
    linear-gradient(180deg, #f7f4ec, #f0ece2);
}
.inner-hero::after {
  position: absolute;
  width: 1px;
  height: 330px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(53, 75, 67, .14);
  content: "";
  right: 6%;
  bottom: -80px;
  transform: rotate(17deg);
}
.inner-hero-grid { display: grid; align-items: end; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 7vw, 110px); }
.inner-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .93;
}
.inner-hero h1 em { color: #75854a; font-weight: 400; }
.inner-hero-lead { max-width: 640px; margin: 28px 0 0; color: var(--ink-soft); font-size: 19px; line-height: 1.68; }
.inner-hero-aside {
  position: relative;
  z-index: 2;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .72);
  box-shadow: 0 18px 48px rgba(34, 50, 43, .09);
  backdrop-filter: blur(12px);
}
.inner-hero-aside strong { display: block; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.15; }
.inner-hero-aside p { margin: 13px 0 0; color: var(--ink-soft); font-size: 14px; }
.inner-hero-aside .button { width: 100%; margin-top: 20px; }

.content-grid { display: grid; align-items: start; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(42px, 7vw, 100px); }
.content-main > :first-child { margin-top: 0; }
.content-main h2 { margin: 70px 0 22px; font-family: var(--serif); font-size: clamp(37px, 4vw, 56px); font-weight: 400; letter-spacing: -.035em; line-height: 1.04; }
.content-main h3 { margin: 38px 0 13px; font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.15; }
.content-main p { margin: 0 0 20px; color: #46534d; font-size: 17px; line-height: 1.82; }
.content-main ul, .content-main ol { margin: 0 0 28px; padding-left: 23px; color: #46534d; }
.content-main li { margin: 10px 0; padding-left: 5px; }
.content-main strong { color: var(--ink); }

.sidebar { position: sticky; top: 126px; display: grid; gap: 16px; }
.sidebar-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.sidebar-card--accent { background: var(--forest-deep); color: white; }
.sidebar-card h2, .sidebar-card h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.15; }
.sidebar-card p { margin: 13px 0 0; color: var(--ink-soft); font-size: 14px; }
.sidebar-card--accent p { color: rgba(255,255,255,.68); }
.sidebar-card .button { width: 100%; margin-top: 20px; }
.sidebar-links { display: grid; margin-top: 16px; }
.sidebar-links a { padding: 11px 0; border-top: 1px solid var(--line); font-size: 14px; font-weight: 700; text-decoration: none; }
.sidebar-links a:hover { color: #6c7c43; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.feature-card { min-height: 245px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 9px 26px rgba(34, 50, 43, .065); }
.feature-card:nth-child(3n+1) { background: #f1ded8; }
.feature-card:nth-child(3n+2) { background: #dce8e8; }
.feature-card:nth-child(3n+3) { background: #eee5d3; }
.feature-card .number { color: #73807a; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.feature-card h3 { margin: 22px 0 11px; font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.1; }
.feature-card h3 a { color: inherit; text-decoration-color: rgba(35, 56, 48, .28); text-decoration-thickness: 1px; text-underline-offset: .16em; }
.feature-card h3 a:hover { text-decoration-color: currentColor; }
.feature-card p { margin: 0; color: #53605a; font-size: 14px; line-height: 1.58; }

.notice {
  margin: 34px 0;
  padding: 24px 27px;
  border-left: 4px solid var(--sage);
  border-radius: 14px;
  background: #eef1df;
}
.notice--medical { border-left-color: #c47d70; background: #f6e6e1; }
.notice--blue { border-left-color: #79989a; background: #e3eeee; }
.notice strong { display: block; margin-bottom: 7px; }
.notice p { margin: 0; font-size: 15px; line-height: 1.65; }

.steps { display: grid; margin: 35px 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { position: relative; min-height: 95px; margin: 0; padding: 25px 0 25px 82px; border-top: 1px solid var(--line); counter-increment: steps; }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before { position: absolute; top: 25px; left: 0; display: grid; width: 50px; height: 50px; place-items: center; border-radius: 14px; background: var(--forest-deep); color: white; box-shadow: 0 8px 22px rgba(35, 55, 48, .18); content: counter(steps, decimal-leading-zero); font-size: 11px; font-weight: 800; }
.steps strong { display: block; }
.steps span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 14px; }

.cta-band { padding: 0 0 110px; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 44px 50px; border-left: 3px solid var(--forest-deep); border-radius: var(--radius-lg); background: var(--sage-light); box-shadow: var(--shadow-soft); }
.cta-band-inner > * { min-width: 0; }
.cta-band h2 { max-width: 670px; margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 51px); font-weight: 400; letter-spacing: -.035em; line-height: 1.06; }
.cta-band p { max-width: 590px; margin: 13px 0 0; color: var(--ink-soft); }
.cta-band-actions { display: flex; flex: 0 0 auto; gap: 10px; }

.price-list { display: grid; margin-bottom: 22px; border-top: 1px solid var(--line); }
.price-row { display: grid; align-items: center; grid-template-columns: minmax(0, 1fr) auto; gap: 34px; padding: 32px 4px; border-bottom: 1px solid var(--line); }
.price-row .label { color: #708047; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.price-row h2 { max-width: 760px; margin: 10px 0 0; font-family: var(--serif); font-size: clamp(29px, 3.2vw, 45px); font-weight: 400; letter-spacing: -.03em; line-height: 1.08; }
.price-row h2 a { color: inherit; text-decoration-color: rgba(35, 56, 48, .28); text-decoration-thickness: 1px; text-underline-offset: .14em; }
.price-row h2 a:hover { text-decoration-color: currentColor; }
.price-row p { max-width: 660px; margin: 9px 0 0; color: var(--ink-soft); font-size: 13px; }
.price-row > strong { color: var(--forest-deep); font-family: var(--serif); font-size: clamp(31px, 3.5vw, 47px); font-weight: 400; white-space: nowrap; }
.price-row > strong small { display: block; margin-bottom: 5px; color: var(--ink-soft); font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-align: right; text-transform: uppercase; }
.price-row--accent { margin-top: -1px; padding-inline: 25px; border-left: 3px solid var(--sage); background: var(--sage-light); }
.price-panel { display: grid; align-items: center; grid-template-columns: 1fr auto; gap: 40px; padding: clamp(38px, 6vw, 72px); border-radius: var(--radius-lg); background: var(--forest-deep); color: white; box-shadow: var(--shadow); }
.price-panel h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 68px); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.price-panel p { max-width: 650px; margin: 20px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }
.price-panel-actions { display: grid; min-width: 260px; gap: 10px; }
.price-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.price-note { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.price-note strong { display: block; }
.price-note span { display: block; margin-top: 7px; color: var(--ink-soft); font-size: 13px; }

.document-grid { display: grid; min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.document-card { min-width: 0; max-width: 100%; overflow: hidden; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.document-card .label { color: #708047; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.document-card h2, .document-card h3 { margin: 18px 0 10px; font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.13; }
.document-card h2, .document-card h3 { overflow-wrap: anywhere; hyphens: auto; }
.document-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.review-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-card { display: flex; min-height: 255px; flex-direction: column; justify-content: space-between; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-card .platform { color: #708047; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.review-card h2, .review-card h3 { margin: 20px 0 10px; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.1; }
.review-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.review-card .arrow { align-self: flex-end; font-size: 25px; }

.blog-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-index-grid .article-card, .blog-index-grid .article-card:nth-child(1), .blog-index-grid .article-card:nth-child(2) { grid-column: auto; }
.blog-index-grid .article-card-media { aspect-ratio: 4 / 3; }

.seo-library { border-top: 1px solid var(--line); background: #edf0e5; }
.seo-library .section-heading-row { align-items: end; }
.seo-library .section-lead { max-width: 760px; }
.seo-library-count { padding: 10px 0; border-top: 1px solid var(--forest-deep); color: var(--forest-deep); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.seo-library-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.seo-library-card { display: grid; min-width: 0; overflow: hidden; border: 1px solid rgba(53,75,67,.16); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); color: inherit; text-decoration: none; transition: translate .28s ease, box-shadow .28s ease; }
.seo-library-card:hover { translate: 0 -5px; box-shadow: 0 24px 52px rgba(34,50,43,.1); }
.seo-library-media { overflow: hidden; aspect-ratio: 16 / 8.7; background: #d7dfd9; }
.seo-library-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.seo-library-card:hover .seo-library-media img { transform: scale(1.025); }
.seo-library-body { display: flex; min-height: 285px; flex-direction: column; padding: 26px 28px 29px; }
.seo-library-body > span { color: #708047; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.seo-library-body h3 { margin: 15px 0 0; font-family: var(--serif); font-size: clamp(26px, 2.2vw, 34px); font-weight: 400; letter-spacing: -.025em; line-height: 1.08; }
.seo-library-body p { margin: 15px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.seo-library-body > strong { margin-top: auto; padding-top: 23px; color: #68773f; font-size: 12px; }
.articles-index-page .inner-hero-aside { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.articles-index-page .seo-library-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.articles-index-page .seo-library-body { min-height: 270px; padding: 24px 24px 27px; }
.articles-index-page .seo-library-body h3 { font-size: clamp(23px, 1.8vw, 30px); }
.articles-index-page .articles-latest { background: linear-gradient(145deg, #edf0e5 0%, #f7f3ea 70%); }
.articles-index-page .articles-catalog { border-top: 1px solid var(--line); background: #f8f6ef; }

.article-page .inner-hero { padding-bottom: 50px; }
.article-header { max-width: 1020px; }
.article-header h1 { font-size: clamp(49px, 6.6vw, 86px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 27px; color: #6f7a74; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.article-cover { width: var(--container); max-height: 690px; margin: -1px auto 0; overflow: hidden; border-radius: var(--radius-lg); background: #d9e2dc; box-shadow: var(--shadow-soft); }
.article-cover img { width: 100%; max-height: 690px; object-fit: cover; }
.article-cover--portrait img { object-position: center 26%; }
.article-layout { display: grid; align-items: start; grid-template-columns: minmax(0, 760px) 285px; justify-content: center; gap: clamp(45px, 7vw, 95px); }
.article-body { color: #46534d; font-family: var(--serif); font-size: 20px; line-height: 1.85; }
.article-body > p:first-child { color: var(--ink); font-size: 25px; line-height: 1.62; }
.article-body h2 { margin: 58px 0 19px; color: var(--ink); font-size: 42px; font-weight: 400; letter-spacing: -.035em; line-height: 1.08; }
.article-body h3 { margin: 36px 0 14px; color: var(--ink); font-size: 29px; font-weight: 400; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin: 9px 0; padding-left: 4px; }
.article-body .notice p { font-family: var(--sans); font-size: 15px; line-height: 1.65; }
.article-takeaways { margin: 48px 0; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-takeaways .eyebrow { margin: 0 0 12px; font-family: var(--sans); font-size: 10px; }
.article-takeaways h2 { margin: 0; }
.article-takeaways ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 28px; margin: 26px 0 0; padding: 0; list-style: none; }
.article-takeaways li { position: relative; margin: 0; padding: 0 0 0 19px; font-family: var(--sans); font-size: 14px; line-height: 1.55; }
.article-takeaways li::before { position: absolute; top: .72em; left: 0; width: 10px; height: 1px; background: var(--sage); content: ""; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: grid; align-items: start; grid-template-columns: minmax(0, 1fr) 28px; gap: 20px; padding: 23px 0; color: var(--ink); cursor: pointer; font-family: var(--serif); font-size: 24px; line-height: 1.2; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { display: block; font-family: var(--sans); font-size: 21px; font-weight: 300; text-align: center; transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item > p { margin: -4px 48px 24px 0; color: var(--ink-soft); font-family: var(--sans); font-size: 15px; line-height: 1.7; }
.article-sources { margin-top: 52px; padding: 27px; border-left: 3px solid var(--sage); background: #eef1df; font-family: var(--sans); }
.article-sources > strong { color: var(--ink); }
.article-sources ul { margin: 16px 0 0; padding-left: 20px; }
.article-sources li { margin: 8px 0; }
.article-sources a { color: var(--forest-deep); font-size: 13px; font-weight: 750; }
.article-sources p { margin: 17px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.related-articles { display: grid; gap: 10px; }
.related-articles a { display: grid; gap: 7px; padding: 20px 0; border-top: 1px solid var(--line); color: inherit; text-decoration: none; }
.related-articles a:last-child { border-bottom: 1px solid var(--line); }
.related-articles span { color: #708047; font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.related-articles strong { font-size: 20px; font-weight: 400; line-height: 1.3; }
.seo-article-page .article-aside .button + .button { margin-top: 9px; }
.article-source { margin-top: 55px; padding-top: 24px; border-top: 1px solid var(--line); color: #768079; font-family: var(--sans); font-size: 12px; line-height: 1.65; }
.article-source a { color: var(--forest); font-weight: 700; }
.article-aside { position: sticky; top: 126px; }
.article-aside .sidebar-card { margin-bottom: 15px; }
.article-aside-share { display: grid; gap: 9px; margin-top: 14px; }
.article-aside-share a { color: var(--forest); font-size: 13px; font-weight: 750; text-decoration: none; }

.policy { max-width: 860px; }
.policy h2 { margin: 53px 0 18px; font-family: var(--serif); font-size: 38px; font-weight: 400; }
.policy p, .policy li { color: var(--ink-soft); }
.policy li { margin: 10px 0; }

.error-page { display: grid; min-height: 65vh; place-items: center; text-align: center; }
.error-code { color: var(--sage); font-family: var(--serif); font-size: clamp(100px, 20vw, 230px); line-height: .7; }
.error-page h1 { margin: 35px 0 0; font-family: var(--serif); font-size: 50px; font-weight: 400; }
.error-page p { max-width: 560px; margin: 18px auto 28px; color: var(--ink-soft); }

/* Subtle linear motion for large dark surfaces. */
.section--forest,
.price-panel,
.contact-shell,
.site-footer {
  background-color: var(--forest-deep);
  background-image: linear-gradient(112deg, transparent 0 34%, rgba(220,229,176,.045) 46%, rgba(255,255,255,.025) 54%, transparent 68% 100%);
  background-position: 100% 50%;
  background-size: 220% 100%;
  animation: dark-surface-breathe 24s ease-in-out infinite alternate;
}
.site-footer { background-color: #17251f; }
@keyframes dark-surface-breathe { from { background-position: 100% 50%; } to { background-position: 0 50%; } }

/* Calm editorial entrance system: content remains visible when JavaScript is absent. */
.reveal-ready [data-reveal] {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    translate .72s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

.reveal-ready [data-reveal="media"] { translate: 0 14px; }

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 205px 1fr auto; gap: 20px; }
  .main-nav > ul { gap: 17px; }
  .main-nav > ul > li > a, .nav-dropdown-trigger { font-size: 13px; }
  .header-phone { display: none; }
  .hero-slide-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); gap: 42px; }
  .hero-title { font-size: clamp(50px, 5.5vw, 70px); }
  .direction-card { min-height: 500px; padding: 30px; }
}

@media (max-width: 920px) {
  :root { --container: min(100% - 36px, 760px); }
  .section { padding: 92px 0; }
  .header-inner { min-height: 82px; grid-template-columns: 1fr auto; }
  .brand { width: 188px; }
  .brand img { width: 188px; }
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu { inset: 82px 0 0; }
  .hero-slider-frame { padding-top: 20px; }
  .hero-slide-grid { min-height: auto; grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 48px 0 40px; }
  .hero-title { max-width: 700px; font-size: clamp(52px, 9vw, 72px); }
  .hero-visual { width: min(540px, 88vw); margin: 0 auto; }
  .hero-slider-nav { position: relative; right: auto; bottom: auto; left: auto; margin-top: 28px; padding-bottom: 24px; }
  .hero-tabs { width: min(680px, 78%); }
  .hero-progress { bottom: 0; }
  .trust-list li { padding-inline: 18px; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-card { min-height: 560px; }
  .direction-card .card-art-media { width: 100%; height: 47%; }
  .direction-card--rose .card-art-media { width: 100%; height: 47%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 610px; margin-inline: auto; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-intro { position: static; }
  .article-card { grid-column: span 6; }
  .article-card:nth-child(1), .article-card:nth-child(2) { grid-column: span 6; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-map, .contact-map iframe { min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .inner-hero-aside { max-width: 620px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .cta-band-inner > * { width: 100%; }
  .price-panel { grid-template-columns: 1fr; }
  .price-panel-actions { min-width: 0; grid-template-columns: repeat(2, 1fr); }
  .blog-index-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-library-grid { grid-template-columns: 1fr; }
  .articles-index-page .seo-library-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 720px); }
  .article-aside { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

@media (max-width: 640px) {
  :root { --container: calc(100vw - 28px); --radius: 0; }
  body { font-size: 15px; }
  .section { padding: 76px 0; }
  .section--compact { padding: 60px 0; }
  .section-heading-row { display: block; margin-bottom: 35px; }
  .section-heading-row .text-link { margin-top: 24px; }
  .section-title { font-size: clamp(39px, 12vw, 54px); }
  .section-lead { margin-top: 22px; font-size: 17px; }
  .header-inner { min-height: 72px; }
  .brand, .brand img { width: 166px; }
  .mobile-menu { inset: 72px 0 0; }
  .hero-slider-frame { padding-top: 14px; }
  .hero-copy { padding: 38px 0 30px; }
  .hero-title { font-size: clamp(43px, 12.6vw, 58px); line-height: .96; }
  .hero-title--compact { font-size: clamp(38px, 11.3vw, 52px); }
  .hero-lead { margin-top: 23px; font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-note { align-items: flex-start; font-size: 12px; }
  .hero-visual { width: 100%; }
  .hero-image-assembly { box-shadow: 10px 14px 32px rgba(35, 51, 44, .12); }
  .hero-fact { right: auto; bottom: 18px; left: 0; width: 154px; padding: 16px 17px; }
  .hero-fact strong { font-size: 34px; }
  .hero-slider-nav { align-items: stretch; flex-direction: column; gap: 14px; margin-top: 22px; }
  .hero-tabs { width: 100%; }
  .hero-tab { padding-right: 5px; }
  .hero-tab + .hero-tab { padding-left: 8px; }
  .hero-tab strong { font-size: 10px; }
  .hero-slider-buttons { justify-content: flex-end; }
  .trust-list { grid-template-columns: 1fr; padding: 12px 0; }
  .trust-list li { padding: 13px 18px; }
  .trust-list li + li::before { top: 0; right: 50px; bottom: auto; left: 50px; width: auto; height: 1px; }
  .direction-card { min-height: 540px; padding: 27px 27px 0; }
  .direction-card h3 { max-width: 280px; font-size: 36px; }
  .direction-card p { max-width: 255px; }
  .direction-card .card-art-media { width: 100%; height: 46%; opacity: 1; }
  .direction-card--rose .card-art-media { width: 100%; height: 46%; }
  .about-grid { gap: 52px; }
  .about-stamp { right: 8px; bottom: 15px; width: 142px; min-height: 94px; padding: 14px 16px; font-size: 9px; }
  .credential-list li { grid-template-columns: 26px 1fr; gap: 8px; }
  .principle-item { padding: 28px 0 28px 50px; }
  .principle-item::before { top: 31px; }
  .principle-item h3 { font-size: 27px; }
  .blog-grid { display: grid; grid-template-columns: 1fr; }
  .article-card, .article-card:nth-child(1), .article-card:nth-child(2) { grid-column: auto; }
  .article-card h3 { font-size: 25px; }
  .contact-shell { border-radius: var(--radius-lg); }
  .contact-copy { padding: 39px 24px 43px; }
  .contact-map, .contact-map iframe { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .mobile-cta { display: flex; }
  .inner-hero { padding: 45px 0 58px; }
  .breadcrumbs { margin-bottom: 25px; }
  .inner-hero h1 { font-size: clamp(43px, 12vw, 58px); }
  .inner-hero h1 em { display: block; }
  .inner-hero-lead { font-size: 17px; }
  .inner-hero-aside { padding: 23px; }
  .content-main h2 { margin-top: 52px; font-size: 38px; }
  .content-main p { font-size: 16px; }
  .sidebar { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .steps li { padding-left: 66px; }
  .cta-band { padding-bottom: 76px; }
  .cta-band-inner { padding: 34px 25px; }
  .cta-band-actions { width: 100%; flex-direction: column; }
  .cta-band-actions .button { width: 100%; }
  .price-panel { padding: 36px 24px; border-radius: var(--radius); }
  .price-row { align-items: start; grid-template-columns: 1fr; gap: 16px; padding: 26px 0; }
  .price-row--accent { padding-inline: 20px; }
  .price-row > strong small { text-align: left; }
  .price-panel-actions { grid-template-columns: 1fr; }
  .price-notes { grid-template-columns: 1fr; }
  .document-grid, .review-links, .blog-index-grid { grid-template-columns: 1fr; }
  .seo-library-body { min-height: 0; }
  .articles-index-page .seo-library-grid { grid-template-columns: 1fr; }
  .articles-index-page .seo-library-body { min-height: 0; padding: 22px 21px 25px; }
  .article-takeaways ul { grid-template-columns: 1fr; }
  .article-header h1 { font-size: clamp(41px, 11.5vw, 56px); }
  .article-cover { width: 100%; border-radius: 0; box-shadow: none; }
  .article-cover, .article-cover img { max-height: 430px; }
  .article-body { font-size: 18px; line-height: 1.78; }
  .article-body > p:first-child { font-size: 21px; }
  .article-body h2 { margin-top: 48px; font-size: 35px; }
  .article-aside { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .inner-hero h1 { font-size: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal-ready [data-reveal] { opacity: 1 !important; translate: none !important; }
  .hero::after, .section--forest, .section--forest::before, .section--forest::after, .price-panel, .contact-shell, .site-footer { animation: none !important; background-position: 50% 50%; }
}

/* Consent-aware analytics and on-demand map */
.footer-legal-links { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 22px; }
.footer-legal-links button {
  appearance: none;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.contact-route { display: inline-flex; margin-top: 17px; color: #dce5b5; font-weight: 700; text-decoration: none; }
.contact-route:hover { color: #fff; }
.contact-map-placeholder {
  display: grid;
  place-content: center;
  justify-items: start;
  width: 100%;
  height: 100%;
  min-height: 580px;
  padding: clamp(34px, 7vw, 82px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(232,237,219,.78)),
    repeating-linear-gradient(36deg, transparent 0 44px, rgba(45,68,58,.06) 45px 46px);
}
.contact-map-placeholder > span { font: 400 clamp(72px, 8vw, 126px)/.9 var(--serif); color: var(--olive); }
.contact-map-placeholder h3 { margin: 23px 0 7px; font: 400 clamp(28px, 3vw, 42px)/1.05 var(--serif); }
.contact-map-placeholder p { margin: 0 0 25px; color: var(--muted); }
.contact-map-placeholder .button { color: var(--ink); border-color: rgba(32,41,37,.25); }

.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  width: min(760px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid rgba(70,82,67,.16);
  border-radius: 20px;
  background: rgba(250,249,243,.9);
  box-shadow: 0 24px 70px rgba(24,38,32,.2);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent__copy strong { display: block; font: 400 26px/1.05 var(--serif); }
.cookie-consent__copy p { max-width: 560px; margin: 9px 0 7px; color: var(--muted); font-size: 14px; line-height: 1.52; }
.cookie-consent__copy a { color: var(--forest); font-size: 12px; }
.cookie-consent__actions { display: grid; align-content: center; gap: 8px; min-width: 188px; }
.cookie-consent__actions .button { min-height: 45px; padding: 10px 17px; font-size: 11px; }

@media (max-width: 760px) {
  .footer-legal-links { align-items: flex-start; flex-direction: column; gap: 8px; }
  .contact-map-placeholder { min-height: 430px; }
  .cookie-consent {
    right: 12px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    gap: 16px;
    width: calc(100vw - 24px);
    padding: 20px;
    border-radius: 16px;
  }
  .cookie-consent__actions { grid-template-columns: 1fr 1fr; min-width: 0; }
}

@media (max-width: 390px) {
  .contact-map-placeholder { min-height: 380px; }
  .cookie-consent__actions { grid-template-columns: 1fr; }
  .cookie-consent__copy strong { font-size: 23px; }
}

/* Direction pages: animated advantage hero slideshows */
.direction-hero {
  --direction-accent: #8d6f67;
  --direction-accent-soft: rgba(141, 111, 103, .13);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 32px 0 25px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(118deg, rgba(255, 253, 248, .98) 0%, rgba(247, 244, 236, .94) 55%, rgba(235, 229, 214, .74) 100%);
}

.direction-hero--acupuncture {
  --direction-accent: #55777c;
  --direction-accent-soft: rgba(85, 119, 124, .14);
}

.direction-hero--biodecoding {
  --direction-accent: #7c744a;
  --direction-accent-soft: rgba(124, 116, 74, .14);
}

.direction-hero::before,
.direction-hero::after {
  position: absolute;
  z-index: -1;
  width: 44vw;
  height: 44vw;
  border: 1px solid color-mix(in srgb, var(--direction-accent) 20%, transparent);
  border-radius: 28px;
  background: linear-gradient(145deg, var(--direction-accent-soft), transparent 62%);
  content: "";
  pointer-events: none;
}

.direction-hero::before {
  top: -33vw;
  right: -12vw;
  transform: rotate(18deg);
  animation: directionGeometryOne 18s ease-in-out infinite alternate;
}

.direction-hero::after {
  bottom: -38vw;
  left: -17vw;
  transform: rotate(-14deg);
  animation: directionGeometryTwo 22s ease-in-out infinite alternate;
}

.direction-hero .breadcrumbs {
  margin: 0 0 24px;
}

.direction-hero-stage {
  position: relative;
  min-height: 442px;
}

.direction-hero-slide {
  display: grid;
  min-height: 442px;
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
}

.direction-hero-slide[hidden] { display: none; }

.direction-hero-copy {
  align-self: center;
  padding: 20px 0;
}

.direction-hero-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--direction-accent);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.direction-hero-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.direction-hero-kicker span::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.direction-hero-kicker strong {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
}

.direction-hero-copy h1,
.direction-hero-copy h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.35vw, 70px);
  font-weight: 400;
  hyphens: none;
  letter-spacing: -.045em;
  line-height: .98;
}

.direction-hero-copy h1 em,
.direction-hero-copy h2 em {
  color: var(--direction-accent);
  font-weight: 400;
}

.direction-hero-copy > p {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.66;
}

.direction-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.direction-hero-actions .button {
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(35, 55, 48, .08);
}

.direction-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(32, 41, 37, .12);
  border-radius: 24px;
  background: #d9d8d0;
  box-shadow: 0 28px 70px rgba(35, 55, 48, .18), 0 8px 24px rgba(35, 55, 48, .09);
}

.direction-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 17px;
  content: "";
  pointer-events: none;
}

.direction-hero-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(27, 38, 34, .22), transparent);
  content: "";
  pointer-events: none;
}

.direction-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s cubic-bezier(.18, .76, .2, 1);
}

.direction-hero-slide.is-active .direction-hero-media img {
  transform: scale(1.045);
}

.direction-hero-media-index {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 15px;
  background: rgba(247, 244, 236, .72);
  box-shadow: 0 12px 30px rgba(30, 45, 40, .18);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  backdrop-filter: blur(12px);
}

.direction-hero-navigation {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin-top: 18px;
}

.direction-hero-tabs {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(32, 41, 37, .12);
  border-radius: 18px;
  background: rgba(255, 253, 248, .72);
  box-shadow: 0 14px 36px rgba(35, 55, 48, .07);
  backdrop-filter: blur(16px);
}

.direction-hero-tabs button {
  position: relative;
  min-height: 72px;
  padding: 14px 16px 13px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(32, 41, 37, .1);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.direction-hero-tabs button:last-child { border-right: 0; }

.direction-hero-tabs button::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--direction-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.direction-hero-tabs button[aria-selected="true"] {
  background: var(--direction-accent-soft);
}

.direction-hero-tabs button[aria-selected="true"]::before {
  opacity: 1;
}

.direction-hero.is-running .direction-hero-tabs button[aria-selected="true"]::before {
  animation: directionProgress 7.2s linear forwards;
}

.direction-hero-tabs span {
  display: block;
  margin-bottom: 4px;
  color: var(--direction-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.direction-hero-tabs strong {
  display: block;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.3;
}

.direction-hero-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(32, 41, 37, .12);
  border-radius: 18px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 14px 36px rgba(35, 55, 48, .07);
  backdrop-filter: blur(16px);
}

.direction-hero-controls > span {
  min-width: 72px;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.direction-hero-controls > span strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.direction-hero-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(32, 41, 37, .16);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(35, 55, 48, .07);
  font-size: 20px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}

.direction-hero-controls button:hover {
  border-color: var(--direction-accent);
  background: var(--direction-accent);
  color: white;
  transform: translateY(-2px);
}

.direction-hero-note {
  max-width: 980px;
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.direction-hero-slide.is-active .direction-hero-kicker,
.direction-hero-slide.is-active .direction-hero-copy h1,
.direction-hero-slide.is-active .direction-hero-copy h2,
.direction-hero-slide.is-active .direction-hero-copy > p,
.direction-hero-slide.is-active .direction-hero-actions,
.direction-hero-slide.is-active .direction-hero-media {
  animation-duration: .78s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.2, .72, .22, 1);
}

.direction-hero-slide.is-active .direction-hero-kicker { animation-name: directionCopyIn; animation-delay: .03s; }
.direction-hero-slide.is-active .direction-hero-copy h1,
.direction-hero-slide.is-active .direction-hero-copy h2 { animation-name: directionCopyIn; animation-delay: .11s; }
.direction-hero-slide.is-active .direction-hero-copy > p { animation-name: directionCopyIn; animation-delay: .19s; }
.direction-hero-slide.is-active .direction-hero-actions { animation-name: directionCopyIn; animation-delay: .27s; }
.direction-hero-slide.is-active .direction-hero-media { animation-name: directionMediaIn; animation-delay: .08s; }

@keyframes directionCopyIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes directionMediaIn {
  from { opacity: 0; transform: translateX(38px) scale(.965); filter: blur(5px); }
  to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

@keyframes directionProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes directionGeometryOne {
  from { transform: translate3d(0, 0, 0) rotate(18deg); }
  to { transform: translate3d(-3vw, 4vw, 0) rotate(25deg); }
}

@keyframes directionGeometryTwo {
  from { transform: translate3d(0, 0, 0) rotate(-14deg); }
  to { transform: translate3d(4vw, -3vw, 0) rotate(-7deg); }
}

@media (max-width: 1000px) {
  .direction-hero-stage,
  .direction-hero-slide { min-height: 400px; }
  .direction-hero-slide { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 28px; }
  .direction-hero-copy h1,
  .direction-hero-copy h2 { font-size: clamp(40px, 5.6vw, 57px); }
  .direction-hero-copy > p { font-size: 15px; }
  .direction-hero-actions .button { min-height: 48px; padding-inline: 18px; font-size: 12px; }
  .direction-hero-tabs button { padding-inline: 12px; }
}

@media (max-width: 760px) {
  .direction-hero { padding: 22px 0 20px; }
  .direction-hero .breadcrumbs { margin-bottom: 19px; }
  .direction-hero-stage,
  .direction-hero-slide { min-height: 0; }
  .direction-hero-slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .direction-hero-media {
    order: -1;
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(35, 55, 48, .15);
  }
  .direction-hero-media::before { inset: 9px; border-radius: 14px; }
  .direction-hero-copy { padding: 2px 0 0; }
  .direction-hero-kicker { margin-bottom: 14px; }
  .direction-hero-copy h1,
  .direction-hero-copy h2 { font-size: clamp(38px, 10.8vw, 54px); line-height: 1; }
  .direction-hero-copy > p { margin-top: 18px; font-size: 16px; line-height: 1.58; }
  .direction-hero-actions { margin-top: 21px; }
  .direction-hero-actions .button { flex: 1 1 190px; }
  .direction-hero-navigation { grid-template-columns: 1fr; margin-top: 20px; }
  .direction-hero-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 16px;
  }
  .direction-hero-tabs button { min-height: 62px; border-bottom: 1px solid rgba(32, 41, 37, .1); }
  .direction-hero-tabs button:nth-child(2) { border-right: 0; }
  .direction-hero-tabs button:nth-child(n + 3) { border-bottom: 0; }
  .direction-hero-controls { justify-content: flex-end; border-radius: 16px; }
  .direction-hero-controls > span { margin-right: auto; }
}

@media (max-width: 390px) {
  .direction-hero-copy h1,
  .direction-hero-copy h2 { font-size: 38px; }
  .direction-hero-kicker span { max-width: 220px; }
  .direction-hero-actions { display: grid; }
  .direction-hero-actions .button { width: 100%; }
  .direction-hero-tabs strong { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .direction-hero::before,
  .direction-hero::after,
  .direction-hero-slide.is-active .direction-hero-kicker,
  .direction-hero-slide.is-active .direction-hero-copy h1,
  .direction-hero-slide.is-active .direction-hero-copy h2,
  .direction-hero-slide.is-active .direction-hero-copy > p,
  .direction-hero-slide.is-active .direction-hero-actions,
  .direction-hero-slide.is-active .direction-hero-media,
  .direction-hero.is-running .direction-hero-tabs button[aria-selected="true"]::before {
    animation: none !important;
  }
  .direction-hero-media img,
  .direction-hero-controls button { transition: none !important; }
  .direction-hero-slide.is-active .direction-hero-media img { transform: none; }
}
