:root {
  --paper: #fbfcf9;
  --cream: #f2f4ed;
  --ink: #202c26;
  --muted: #60695f;
  --line: #dce1d7;
  --lime: #d9ef80;
  --green: #344e3d;
  --font: Inter, "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
}
h2 {
  font-size: clamp(34px, 3.8vw, 49px);
  letter-spacing: -2px;
  font-weight: 500;
}
h3 {
  font-weight: 500;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
a,
button {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid #577729;
  outline-offset: 5px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-offset: 2px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: 104px 0;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 1.7;
  margin-bottom: 19px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.button span {
  font-size: 19px;
  font-weight: 400;
}
.button--small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 12px;
  gap: 21px;
}
.button--outline {
  background: transparent;
  color: var(--ink);
  border-color: #b8c2af;
}
.button--outline:hover {
  background: #e5eccc;
}
.button--full {
  width: 100%;
  justify-content: space-between;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
  border: 0;
  padding: 8px 0;
  background: transparent;
}
.text-link:hover {
  color: #537023;
}
.text-link span {
  font-size: 18px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 15px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eaf0de;
  font-size: 11px;
  min-height: 34px;
  padding: 6px 20px;
  color: #3d5038;
}
.announcement a {
  margin-left: 15px;
  font-weight: 600;
}
.announcement a:hover {
  text-decoration: underline;
}
.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #60784b;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 252, 249, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav__inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
  white-space: nowrap;
}
.brand__mark {
  font-size: 24px;
  letter-spacing: -2px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--lime);
  padding-right: 2px;
  padding-bottom: 3px;
}
.brand__tech {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
}
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 500;
}
.nav__links a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 12px;
  width: 44px;
  height: 44px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
}
.nav__mobile {
  padding: 8px 24px 18px;
  border-top: 1px solid var(--line);
}
.nav__mobile a {
  display: block;
  padding: 12px 0;
}
.hero {
  padding: 56px 0 59px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 46px;
  align-items: center;
}
.hero__copy {
  padding: 22px 0;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
}
.small-line {
  width: 22px;
  height: 1px;
  background: var(--ink);
}
.hero h1 {
  font-size: clamp(59px, 6.5vw, 87px);
  font-weight: 500;
  letter-spacing: -5px;
  line-height: 1.02;
  position: relative;
}
.hero__period {
  color: #859c4c;
  font-size: 58px;
  margin-left: 8px;
  vertical-align: 7px;
}
.hero__lead {
  max-width: 380px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 26px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__foot {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  margin-top: 43px;
}
.location-icon {
  font-size: 21px;
  color: var(--green);
}
.hero__visual {
  min-height: 506px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #e8ebde;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 29px 30px;
}
.hero__visual-top,
.hero__visual-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__visual-top > span:first-child {
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 600;
  line-height: 1.5;
}
.orbit-icon {
  font-size: 49px;
  line-height: 1;
  color: #7a8c54;
}
.hero__ring {
  position: absolute;
  left: 11%;
  top: 21%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid #c4ccb5;
  border-radius: 50%;
  transform: rotate(-20deg) scaleY(0.83);
}
.hero__ring:after {
  content: "";
  position: absolute;
  inset: 28px -24px;
  border: 1px solid #cdd3c1;
  border-radius: 50%;
}
.hero__device {
  width: 110%;
  max-width: none;
  position: absolute;
  left: -8%;
  top: 0%;
  transform: rotate(-7deg);
  filter: drop-shadow(4px 24px 15px #435b3520);
}
.device-label {
  font-size: 11px;
  font-weight: 500;
}
.illustration-label {
  font-size: 9px;
  color: var(--muted);
}
.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  font-size: 12px;
  color: #515e4e;
}
.principles__inner > span {
  display: flex;
  align-items: center;
  gap: 13px;
}
.principles__inner > span > span {
  font-size: 25px;
  line-height: 1;
  color: #62754a;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 35px 0 23px;
  gap: 16px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  padding: 10px 19px;
  font-size: 11px;
  min-height: 40px;
  transition: background 0.15s;
}
.filter:hover {
  background: #edf1e3;
}
.filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.collection-count {
  font-size: 11px;
  color: var(--muted);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.product {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}
.product__art {
  height: 266px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #edf0e7;
}
.product__art--pro {
  background: #e9eaf0;
}
.product__art--max {
  background: #eeeae2;
}
.product__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  letter-spacing: 1px;
  font-size: 8px;
  font-weight: 600;
}
.product__art img {
  position: absolute;
  top: 0%;
  left: 3%;
  width: 94%;
  max-width: none;
  transition: transform 0.4s;
}
.product:hover .product__art img {
  transform: translateY(-5px);
}
.product__art--pro img {
  filter: hue-rotate(66deg) saturate(0.65);
}
.product__art--max img {
  filter: hue-rotate(282deg) saturate(0.6);
  width: 104%;
  left: -2%;
  top: -4%;
}
.product__art-note {
  position: absolute;
  bottom: 12px;
  right: 15px;
  font-size: 8px;
  color: var(--muted);
}
.product__body {
  padding: 23px 1px 21px;
}
.product__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.product h3 {
  font-size: 24px;
  letter-spacing: -0.6px;
}
.product__circle {
  font-size: 20px;
  color: #647b50;
}
.product__body > p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 9px;
}
.product__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.product__features span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 9px;
  color: #5d6858;
}
.product__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 23px;
  font-size: 12px;
  font-weight: 600;
  min-height: 32px;
}
.product__link:hover {
  color: #537023;
}
.product__link span {
  font-size: 18px;
}
.collection-note {
  color: var(--muted);
  font-size: 11px;
  margin-top: 24px;
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.fit-banner {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #edf2e3;
  border-radius: 7px;
  padding: 26px 30px;
  margin-top: 45px;
}
.fit-banner__icon {
  font-size: 43px;
  color: #768b4c;
  line-height: 1;
}
.fit-banner h3 {
  font-size: 19px;
  letter-spacing: -0.3px;
}
.fit-banner p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}
.fit-banner .button {
  margin-left: auto;
  flex-shrink: 0;
}
.approach {
  background: #25372d;
  color: #f5f7ef;
  position: relative;
  overflow: hidden;
}
.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.approach .eyebrow {
  color: #c4d6a4;
}
.approach h2 {
  font-size: clamp(33px, 3.6vw, 47px);
  line-height: 1.14;
}
.approach__intro > p:not(.eyebrow) {
  max-width: 390px;
  color: #b9c4b8;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 25px;
}
.approach .text-link {
  color: var(--lime);
  margin-top: 20px;
}
.approach__stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: absolute;
  width: 133px;
  height: 133px;
  bottom: -50px;
  left: 40%;
  border: 1px solid #81966c;
  border-radius: 50%;
  transform: rotate(-22deg);
  font-size: 48px;
  line-height: 1.1;
  color: #b6ca94;
  opacity: 1;
}
.approach__stamp span {
  font-size: 8px;
  letter-spacing: 2px;
}
.approach__items article {
  display: flex;
  align-items: start;
  gap: 24px;
  border-top: 1px solid #516052;
  padding: 27px 0;
}
.approach__items article:last-child {
  padding-bottom: 0;
}
.approach__number {
  color: #adbd9e;
  font-size: 10px;
  white-space: nowrap;
  padding-top: 4px;
}
.approach__items h3 {
  font-size: 20px;
  letter-spacing: -0.3px;
}
.approach__items p {
  color: #b9c4b8;
  font-size: 12px;
  line-height: 1.8;
  margin-top: 11px;
  max-width: 355px;
}
.approach__items article > span:last-child {
  font-size: 25px;
  margin-left: auto;
  color: #d9ef80;
  line-height: 1;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  padding: 0;
  margin: 50px 0 0;
}
.steps li {
  position: relative;
}
.step__number {
  font-size: 12px;
  border-top: 1px solid #c7d0bd;
  display: block;
  padding-top: 18px;
  color: #596d44;
  letter-spacing: 1px;
}
.steps h3 {
  font-size: 23px;
  letter-spacing: -0.5px;
  margin-top: 28px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  max-width: 310px;
  margin-top: 14px;
  line-height: 1.8;
}
.faq-section {
  background: var(--cream);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.faq-intro {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 23px;
}
.faq-layout .text-link {
  margin-top: 18px;
}
.faq-list {
  border-top: 1px solid #cdd5c5;
}
.faq-list details {
  border-bottom: 1px solid #cdd5c5;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  list-style: none;
  padding: 22px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: #607452;
  flex-shrink: 0;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 30px 23px 0;
}
.faq-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 95px;
}
.contact-copy h2 {
  font-size: clamp(52px, 5.6vw, 73px);
  letter-spacing: -3.5px;
  line-height: 1.03;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 26px;
}
.contact-email {
  display: inline-flex;
  font-size: 19px;
  letter-spacing: -0.4px;
  border-bottom: 1px solid #b6c3a7;
  padding-bottom: 8px;
  gap: 30px;
  margin-top: 31px;
}
.contact-email:hover {
  color: #537023;
}
.contact-location {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.contact-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 49px;
}
.contact-note > span {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  font-size: 23px;
}
.contact-note p {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: white;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field label {
  font-size: 11px;
  font-weight: 600;
}
.field label span {
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field select,
.field textarea,
.email-preview textarea {
  background: #fbfcf9;
  border: 1px solid #d6dece;
  border-radius: 4px;
  color: var(--ink);
  padding: 12px;
  font-size: 12px;
  max-width: 100%;
  width: 100%;
  min-width: 0;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #757d70;
}
.field textarea {
  resize: vertical;
  min-height: 113px;
}
.field select {
  height: 46px;
}
.field-note {
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
}
.form-privacy {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
}
.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}
.form-hint[data-state="error"] {
  color: #973d21;
}
.form-hint[data-state="success"] {
  color: #3b6029;
}
.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.email-preview {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.email-preview h3 {
  font-size: 20px;
}
.email-preview p {
  font-size: 12px;
  margin: 10px 0;
}
.email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}
.email-preview label {
  display: block;
  font-size: 11px;
  margin: 15px 0 6px;
}
.email-preview textarea {
  resize: vertical;
}
.no-js-contact {
  padding: 35px;
  background: var(--cream);
  border-radius: 8px;
  align-self: start;
}
.no-js-contact p {
  margin: 20px 0;
}
.footer {
  padding: 52px 0 27px;
  background: #eaf0df;
  border-top: 1px solid #d8dfcd;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.footer-top p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 13px 40px;
  align-content: start;
  font-size: 12px;
  padding-top: 8px;
  margin-left: auto;
}
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.back-top {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #b6c3a7;
  border-radius: 50%;
  font-size: 23px;
  flex-shrink: 0;
}
.back-top:hover {
  background: var(--lime);
}
.footer-bottom {
  border-top: 1px solid #cfd8c3;
  margin-top: 42px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #616d56;
  font-size: 9px;
  line-height: 1.8;
}
.footer-bottom > span {
  letter-spacing: 1px;
  font-size: 9px;
  white-space: nowrap;
}
.footer-bottom > span > span {
  margin-left: 20px;
}
.finder {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 40px;
  border-radius: 12px;
  max-width: 550px;
  width: calc(100% - 32px);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  color: var(--ink);
}
.finder::backdrop {
  background: #152018b3;
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  right: 17px;
  top: 15px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  font-size: 27px;
}
.dialog-close:hover {
  background: var(--cream);
}
.finder h2 {
  font-size: 36px;
  letter-spacing: -1.5px;
}
.finder-intro {
  font-size: 13px;
  color: var(--muted);
  margin: 18px 0 24px;
}
.finder fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}
.finder-option {
  display: flex;
  gap: 13px;
  padding: 18px 14px;
  margin-bottom: 10px;
  background: #f0f3e8;
  border: 1px solid #d9e0cf;
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
}
.finder-option:has(input:checked) {
  border-color: #6e864f;
  background: #e6edcf;
}
.finder-option input {
  accent-color: #405a30;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.finder-option strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.finder-option small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.finder-result h3 {
  font-size: 34px;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
.finder-result > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.finder-result .button {
  margin-top: 26px;
}
.finder-result .text-link {
  margin: 15px auto 0;
  display: block;
  text-decoration: underline;
}
.inventory-section {
  padding: 25px;
  border: 1px solid var(--line);
  margin-bottom: 35px;
  border-radius: 8px;
}
.inventory-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.inventory-heading h3 {
  font-size: 23px;
}
.inventory-heading p {
  font-size: 11px;
  color: var(--muted);
}
.inventory-photo {
  height: 240px;
  width: 100%;
  object-fit: contain;
  background: var(--cream);
  border-radius: 6px;
}
.inventory-price {
  font-size: 22px;
  margin: 20px 0 0;
}
.inventory-specs {
  font-size: 12px;
  color: var(--muted);
  padding-left: 18px;
  line-height: 1.8;
}
.legal-main {
  padding: 75px 0 100px;
}
.legal-wrap {
  max-width: 750px;
  margin: auto;
  width: calc(100% - 48px);
}
.legal-main h1 {
  font-size: clamp(41px, 6vw, 62px);
  font-weight: 500;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
}
.legal-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.legal-date {
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
}
.legal-content {
  border-top: 1px solid var(--line);
  margin-top: 35px;
}
.legal-content h2 {
  font-size: 25px;
  letter-spacing: -0.7px;
  margin: 35px 0 14px;
}
.legal-content p,
.legal-content li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.legal-content p + p {
  margin-top: 15px;
}
.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--green);
}
.legal-callout {
  padding: 23px;
  background: var(--cream);
  border-radius: 6px;
  margin: 28px 0;
}
.legal-main .button {
  margin-top: 25px;
}
.error-page {
  text-align: center;
  padding: 120px 24px;
}
.error-page h1 {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 500;
  letter-spacing: -3px;
}
.error-page p {
  margin: 23px auto 30px;
  max-width: 420px;
  color: var(--muted);
}
@media (min-width: 1450px) {
  .hero__visual {
    min-height: 540px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav__links {
    gap: 22px;
  }
  .hero__inner {
    gap: 25px;
  }
  .hero h1 {
    font-size: 66px;
    letter-spacing: -4px;
  }
  .hero__period {
    font-size: 43px;
  }
  .hero__visual {
    min-height: 440px;
    padding: 24px;
  }
  .hero__device {
    top: 7%;
  }
  .hero__cta {
    gap: 17px;
  }
  .hero__cta .button {
    padding: 12px 18px;
    gap: 14px;
  }
  .product__art {
    height: 230px;
  }
  .product h3 {
    font-size: 21px;
  }
  .contact-layout {
    gap: 45px;
  }
  .contact-form {
    padding: 25px;
  }
  .approach__inner {
    gap: 55px;
  }
  .product-grid {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .nav__inner {
    height: 72px;
  }
  .nav__links {
    display: none;
  }
  .nav__contact {
    margin-left: auto;
  }
  .nav__toggle {
    display: block;
  }
  .hero {
    padding: 35px 0;
  }
  .hero__inner {
    gap: 24px;
  }
  .hero h1 {
    font-size: 54px;
    letter-spacing: -3px;
  }
  .hero__period {
    display: none;
  }
  .hero__lead {
    font-size: 14px;
  }
  .hero__visual {
    min-height: 390px;
    padding: 20px;
  }
  .hero__visual-top > span:first-child {
    font-size: 8px;
  }
  .hero__device {
    top: 12%;
    width: 114%;
    left: -10%;
  }
  .hero__foot {
    margin-top: 25px;
    font-size: 9px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .hero__cta {
    gap: 12px;
    margin-top: 23px;
  }
  .hero__cta .text-link {
    font-size: 11px;
  }
  .hero__cta .button {
    font-size: 12px;
    min-height: 45px;
  }
  .hero__visual-bottom {
    align-items: start;
    gap: 10px;
    flex-direction: column;
  }
  .principles__inner {
    font-size: 10px;
    gap: 12px;
  }
  .principles__inner > span {
    gap: 7px;
  }
  .principles__inner > span > span {
    font-size: 21px;
  }
  .section {
    padding: 76px 0;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .product-grid {
    gap: 16px;
  }
  .product__art {
    height: 190px;
  }
  .product__tag {
    font-size: 7px;
    left: 12px;
    top: 14px;
    letter-spacing: 0.6px;
  }
  .product h3 {
    font-size: 19px;
  }
  .product__body > p {
    font-size: 11px;
    min-height: 35px;
  }
  .product__features {
    gap: 5px;
    margin-top: 12px;
  }
  .product__features span {
    font-size: 8px;
    padding: 4px 6px;
  }
  .product__link {
    font-size: 11px;
    gap: 8px;
  }
  .product__circle {
    display: none;
  }
  .fit-banner {
    padding: 24px;
    gap: 17px;
    flex-wrap: wrap;
  }
  .fit-banner .button {
    margin-left: 60px;
  }
  .fit-banner h3 {
    font-size: 18px;
  }
  .approach__inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .approach__intro > p:not(.eyebrow) {
    max-width: 600px;
  }
  .approach__stamp {
    left: auto;
    right: -30px;
    bottom: -20px;
  }
  .approach__items p {
    max-width: 500px;
  }
  .steps {
    gap: 25px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .steps p {
    font-size: 12px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 25px;
  }
  .contact-copy h2 {
    font-size: 55px;
  }
  .contact-email {
    font-size: 16px;
    gap: 14px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .contact-form {
    padding: 21px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    gap: 25px;
  }
  .footer-links {
    gap: 10px 20px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 620px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .announcement {
    font-size: 9px;
    min-height: 31px;
    gap: 6px;
  }
  .announcement a {
    display: none;
  }
  .nav__inner {
    height: 66px;
    gap: 10px;
  }
  .brand {
    font-size: 21px;
    gap: 8px;
  }
  .brand__mark {
    width: 29px;
    height: 29px;
    font-size: 22px;
    border-radius: 6px;
  }
  .brand__tech {
    font-size: 14px;
  }
  .nav__contact {
    font-size: 10px;
    gap: 10px;
    padding: 8px 11px;
    min-height: 37px;
  }
  .nav__contact span {
    font-size: 14px;
  }
  .nav__toggle {
    padding: 10px;
    width: 38px;
  }
  .hero {
    padding: 28px 0 32px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .hero__copy {
    padding: 4px 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(60px, 14vw, 81px);
    letter-spacing: -3.7px;
  }
  .hero__period {
    display: inline;
    font-size: 45px;
    vertical-align: 7px;
  }
  .hero__lead {
    font-size: 14px;
    max-width: 350px;
    margin-top: 22px;
  }
  .hero__cta {
    gap: 25px;
    margin-top: 25px;
  }
  .hero__cta .button {
    font-size: 12px;
    padding: 12px 18px;
    min-height: 48px;
  }
  .hero__cta .text-link {
    font-size: 12px;
    gap: 12px;
  }
  .hero__foot {
    margin-top: 25px;
    font-size: 10px;
  }
  .hero__visual {
    min-height: 350px;
    padding: 22px;
  }
  .hero__device {
    width: 108%;
    top: 2%;
    left: -4%;
  }
  .hero__visual-top > span:first-child {
    font-size: 9px;
  }
  .hero__visual-bottom {
    flex-direction: row;
    align-items: center;
  }
  .hero__ring {
    top: 16%;
    width: 72%;
    left: 14%;
  }
  .orbit-icon {
    font-size: 40px;
  }
  .principles__inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 17px 0;
    gap: 12px;
    font-size: 11px;
    width: max-content;
  }
  .principles__inner > span {
    gap: 12px;
  }
  .principles__inner > span > span {
    width: 23px;
    text-align: center;
  }
  .section {
    padding: 62px 0;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.8px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading > p {
    margin-top: 16px;
    font-size: 13px;
  }
  .section-heading .text-link {
    margin-top: 18px;
  }
  .collection-toolbar {
    margin: 26px 0 20px;
    gap: 12px;
    align-items: start;
    flex-wrap: wrap;
  }
  .filters {
    gap: 6px;
  }
  .filter {
    padding: 9px 14px;
    min-height: 39px;
    font-size: 10px;
  }
  .collection-count {
    font-size: 10px;
    width: 100%;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .product__art {
    height: auto;
    aspect-ratio: 1.34;
  }
  .product__tag {
    font-size: 9px;
    top: 21px;
    left: 22px;
    letter-spacing: 0.9px;
  }
  .product__art-note {
    font-size: 9px;
    bottom: 15px;
  }
  .product h3 {
    font-size: 26px;
  }
  .product__body {
    padding: 19px 0;
  }
  .product__body > p {
    font-size: 13px;
    min-height: 0;
    margin-top: 9px;
  }
  .product__circle {
    display: block;
  }
  .product__features {
    margin-top: 16px;
    gap: 7px;
  }
  .product__features span {
    font-size: 10px;
    padding: 4px 9px;
  }
  .product__link {
    font-size: 13px;
    min-height: 38px;
    margin-top: 19px;
  }
  .collection-note {
    font-size: 11px;
    line-height: 1.8;
    margin-top: 22px;
  }
  .fit-banner {
    margin-top: 32px;
    padding: 25px 21px;
    gap: 18px;
    display: grid;
    grid-template-columns: 31px 1fr;
  }
  .fit-banner__icon {
    font-size: 34px;
    align-self: start;
  }
  .fit-banner h3 {
    font-size: 19px;
    line-height: 1.3;
  }
  .fit-banner p {
    font-size: 12px;
    line-height: 1.7;
  }
  .fit-banner .button {
    margin-left: 0;
    grid-column: 1/-1;
    width: 100%;
    margin-top: 3px;
  }
  .approach__inner {
    gap: 30px;
  }
  .approach h2 {
    font-size: 35px;
  }
  .approach__intro > p:not(.eyebrow) {
    font-size: 13px;
  }
  .approach__items article {
    gap: 17px;
    padding: 24px 0;
  }
  .approach__items h3 {
    font-size: 20px;
  }
  .approach__items article > span:last-child {
    font-size: 21px;
  }
  .approach__number {
    font-size: 9px;
  }
  .approach__items p {
    font-size: 12px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 29px;
  }
  .steps li {
    padding-left: 49px;
    min-height: 110px;
  }
  .step__number {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 3px;
    border: 0;
    font-size: 13px;
  }
  .steps h3 {
    font-size: 23px;
    margin-top: 0;
  }
  .steps p {
    font-size: 13px;
    max-width: none;
    margin-top: 13px;
  }
  .faq-layout {
    gap: 26px;
  }
  .faq-intro {
    margin-top: 17px;
    font-size: 13px;
  }
  .faq-list summary {
    font-size: 13px;
    padding: 21px 0;
    gap: 18px;
  }
  .faq-list details p {
    font-size: 12px;
    padding-right: 16px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contact-copy h2 {
    font-size: 61px;
    letter-spacing: -3px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 20px;
  }
  .contact-email {
    font-size: 20px;
    margin-top: 24px;
  }
  .contact-note {
    display: none;
  }
  .contact-form {
    padding: 24px 20px;
    gap: 20px;
  }
  .field label {
    font-size: 12px;
  }
  .field label span {
    font-size: 10px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 12px 10px;
  }
  .field select {
    height: 50px;
  }
  .field-note,
  .form-privacy {
    font-size: 11px;
  }
  .form-hint {
    font-size: 11px;
  }
  .email-preview textarea {
    font-size: 14px;
  }
  .footer {
    padding: 36px 0 25px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 28px;
  }
  .footer-top > div:first-child {
    flex: 1;
  }
  .footer-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr 1fr;
    font-size: 12px;
    gap: 14px;
  }
  .back-top {
    height: 38px;
    width: 38px;
    font-size: 20px;
  }
  .footer-bottom {
    margin-top: 29px;
    padding-top: 20px;
    gap: 18px;
    display: flex;
    flex-direction: column;
    font-size: 10px;
  }
  .footer-bottom > span {
    display: none;
  }
  .finder {
    padding: 35px 23px 26px;
  }
  .finder h2 {
    font-size: 30px;
  }
  .finder .eyebrow {
    font-size: 8px;
    margin-right: 24px;
  }
  .finder-option {
    padding: 15px 12px;
  }
  .finder-option strong {
    font-size: 12px;
  }
  .finder-option small {
    font-size: 11px;
  }
  .finder-result h3 {
    font-size: 29px;
  }
  .inventory-section {
    padding: 18px;
  }
  .inventory-heading {
    display: block;
  }
  .inventory-heading p {
    margin-top: 12px;
  }
  .legal-main {
    padding: 48px 0 70px;
  }
  .legal-lead {
    font-size: 16px;
  }
  .legal-content h2 {
    font-size: 24px;
  }
  .legal-content p,
  .legal-content li {
    font-size: 13px;
  }
  .legal-main h1 {
    letter-spacing: -2px;
  }
  .error-page {
    padding: 90px 24px;
  }
}
@media (max-width: 360px) {
  .nav__contact {
    display: none;
  }
  .nav__toggle {
    margin-left: auto;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero__period {
    font-size: 36px;
  }
  .hero__cta {
    gap: 15px;
  }
  .hero__visual {
    min-height: 305px;
  }
  .device-label {
    font-size: 10px;
  }
  .hero__visual-bottom {
    gap: 10px;
  }
  .fit-banner {
    padding: 22px 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover,
  .product:hover .product__art img {
    transform: none;
  }
}
@media print {
  .nav,
  .announcement,
  .hero__visual,
  .contact-form,
  .finder,
  .back-top,
  .filters,
  .fit-banner {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .container {
    width: 100%;
  }
  .section {
    padding: 25px 0;
  }
  .approach {
    background: white;
    color: black;
  }
  .approach p {
    color: black !important;
  }
  .hero__inner,
  .contact-layout,
  .faq-layout {
    display: block;
  }
  .footer {
    background: white;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  a {
    text-decoration: underline;
  }
}
