:root {
  --ink:#20231e;
  --dark:#171916;
  --paper:#f7f6f2;
  --white:#fff;
  --gold:#c4ab76;
  --muted:#767970;
  --line:#ddded6;
  --serif:Georgia,'Times New Roman',serif;
  --sans:'DM Sans',sans-serif;
  --display:'Manrope',sans-serif;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:15px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

button,input,select {
  font:inherit;
}

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

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

button {
  cursor:pointer;
}

button:disabled {
  cursor:default;
  opacity:.4;
}

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

button {
  color:inherit;
}

h1,h2,h3,p {
  margin:0;
}

h1,h2 {
  font-weight:400;
  line-height:1.08;
  letter-spacing:-1.9px;
}

h2 {
  font-size:46px;
}

em {
  font-family:var(--serif);
  font-weight:400;
}

p {
  color:var(--muted);
}

:focus-visible {
  outline:2px solid #a78338;
  outline-offset:5px;
}

[hidden] {
  display:none!important;
}

.wrap {
  max-width:1280px;
  width:calc(100% - 112px);
  margin-inline:auto;
}

.section-pad {
  padding-block:100px;
}

.eyebrow {
  display:block;
  font-size:10px;
  font-weight:600;
  letter-spacing:2.1px;
  line-height:1.6;
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  min-height:54px;
  padding:16px 25px;
  background:var(--gold);
  color:var(--dark);
  font-size:13px;
  font-weight:650;
  border:1px solid var(--gold);
  transition:background .2s,transform .2s;
}

.button:hover {
  background:#dcc593;
  border-color:#dcc593;
  transform:translateY(-2px);
}

.button span {
  font-size:22px;
  line-height:1;
}

.announcement {
  background:#c4ab76;
  min-height:31px;
  padding:6px 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:10px;
  letter-spacing:1.35px;
}

.announcement>span:last-child {
  letter-spacing:.25px;
  font-size:11px;
}

.announcement>span:last-child span {
  margin-left:12px;
}

.header {
  height:93px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 56px;
  background:var(--dark);
  color:#dedfd8;
  border-bottom:1px solid #ffffff16;
  gap:30px;
}

.brand img {
  width:103px;
  height:auto;
}

.header nav {
  display:flex;
  gap:34px;
  margin-left:auto;
  margin-right:36px;
  font-size:12px;
  color:#bec0b8;
}

.header nav a:hover {
  color:var(--gold);
}

.button-small {
  font-size:11px;
  min-height:41px;
  padding:10px 17px;
  gap:25px;
}

.button-small span {
  font-size:17px;
}

.hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  background:var(--dark);
  color:var(--paper);
  padding:30px 56px 48px;
  gap:65px;
}

.hero-photo {
  position:relative;
  overflow:hidden;
  min-height:640px;
  background:#aaa99e;
}

.hero-photo>img {
  width:100%;
  height:100%;
  position:absolute;
  object-fit:cover;
  object-position:center 49%;
}

.hero-photo:after {
  content:'';
  position:absolute;
  inset:60% 0 0;
  background:linear-gradient(transparent,#13151295);
}

.photo-tag {
  position:absolute;
  top:25px;
  left:26px;
  right:26px;
  display:flex;
  justify-content:space-between;
  font-size:9px;
  letter-spacing:1.6px;
  color:#3b3e32;
}

.photo-tag>span {
  font-size:8px;
  letter-spacing:1px;
}

.photo-caption {
  position:absolute;
  bottom:28px;
  left:30px;
  right:30px;
  z-index:1;
  display:flex;
  justify-content:space-between;
  align-items:end;
}

.photo-caption>span:first-child {
  font-family:var(--serif);
  font-style:italic;
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.5px;
}

.photo-caption>span:last-child {
  font-size:34px;
}

.hero-content {
  padding:29px 0 0;
  max-width:530px;
  align-self:center;
}

.hero-content>.eyebrow {
  color:var(--gold);
  display:flex;
  align-items:center;
  gap:12px;
  font-size:9px;
  flex-wrap:wrap;
}

.gold-line {
  width:26px;
  height:1px;
  background:var(--gold);
}

.collab {
  font-size:10px;
  letter-spacing:1px;
}

.collab:not([hidden]):before {
  content:'×';
  margin-right:12px;
}

h1 {
  font-size:clamp(46px,4.6vw,72px);
  margin-top:26px;
  line-height:1.035;
  letter-spacing:-2.4px;
}

h1 em {
  color:var(--gold);
}

.hero-description {
  font-size:13px;
  line-height:1.85;
  color:#a9ada3;
  margin-top:24px;
}

.hero-offer {
  display:flex;
  align-items:center;
  gap:29px;
  border-top:1px solid #ffffff21;
  border-bottom:1px solid #ffffff21;
  padding:21px 0;
  margin-top:27px;
}

.discount {
  display:flex;
  color:var(--gold);
  font-family:var(--display);
  align-items:center;
  gap:3px;
  line-height:1;
}

.discount>span {
  font-size:91px;
  letter-spacing:-7px;
  font-weight:500;
}

.discount>div {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding-top:7px;
}

.discount b {
  font-size:37px;
  font-weight:500;
}

.discount>div>span {
  font-size:15px;
  letter-spacing:2px;
}

.offer-description {
  font-size:13px;
  line-height:1.9;
}

.offer-description>span {
  font-size:11px;
  color:#aaaea3;
}

.offer-description>a {
  display:block;
  text-decoration:underline;
  text-underline-offset:3px;
  color:#a9ad9f;
  font-size:9px;
  margin-top:5px;
}

.hero-cta {
  margin-top:26px;
  width:100%;
  max-width:400px;
}

.subtle-link {
  display:flex;
  gap:9px;
  align-items:center;
  color:#b5b9ae;
  font-size:11px;
  margin:18px 0 0;
}

.subtle-link svg {
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.4;
}

.hero-footnote {
  display:flex;
  align-items:center;
  gap:15px;
  margin-top:35px;
  font-size:8px;
  letter-spacing:1.15px;
  color:#8c9283;
}

.hero-footnote i {
  width:3px;
  height:3px;
  background:var(--gold);
  border-radius:50%;
}

.countdown {
  font-size:11px;
  color:#c3c6bc;
  margin-top:12px;
  display:flex;
  gap:16px;
}

.countdown time {
  font-variant-numeric:tabular-nums;
  letter-spacing:1px;
  color:var(--gold);
}

.presence {
  padding-block:53px;
  display:grid;
  grid-template-columns:1.05fr 1fr 1fr;
  align-items:center;
  gap:35px;
}

.presence .eyebrow {
  font-size:8px;
  letter-spacing:1.5px;
  color:#747968;
}

.presence h2 {
  font-size:28px;
  letter-spacing:-.9px;
  margin-top:14px;
  line-height:1.2;
}

.presence>p {
  font-size:12px;
  line-height:1.9;
}

.presence-numbers {
  display:flex;
  gap:36px;
  border-left:1px solid var(--line);
  padding-left:35px;
}

.presence-numbers>div {
  display:flex;
  flex-direction:column;
  white-space:nowrap;
}

.presence-numbers strong {
  font-family:var(--serif);
  font-size:48px;
  font-weight:400;
  line-height:1.2;
  letter-spacing:-1px;
}

.presence-numbers strong>span {
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:0;
}

.presence-numbers>div>span {
  font-size:8px;
  letter-spacing:1.3px;
  color:#777d6d;
  margin-top:7px;
}

.collection {
  background:#eeeee7;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

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

.section-heading .eyebrow {
  color:#787d6c;
  margin-bottom:17px;
}

.section-heading h2 {
  font-size:41px;
}

.section-heading>p {
  font-size:12px;
  line-height:1.9;
}

.collection-row+.collection-row {
  margin-top:43px;
}

.row-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.row-heading h3 {
  font-size:17px;
  font-weight:500;
  letter-spacing:-.3px;
}

.row-heading h3>span {
  font-size:9px;
  color:#858779;
  letter-spacing:1px;
  margin-left:15px;
}

.carousel-controls {
  display:flex;
  gap:8px;
}

.icon-button {
  display:grid;
  place-items:center;
  width:35px;
  height:35px;
  border:1px solid #c9cbbf;
  background:transparent;
  border-radius:50%;
  font-size:17px;
  transition:background .2s;
}

.icon-button:hover:not(:disabled) {
  background:#dfe1d3;
}

.product-track {
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  overscroll-behavior-x:contain;
}

.product-track::-webkit-scrollbar {
  display:none;
}

.product-card {
  flex:0 0 calc((100% - 40px)/3);
  scroll-snap-align:start;
  min-width:0;
}

.product-image {
  position:relative;
  background:#fafbf7;
  aspect-ratio:1.47;
  overflow:hidden;
}

.product-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  mix-blend-mode:multiply;
  transition:transform .5s;
}

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

.product-index {
  position:absolute;
  top:17px;
  left:19px;
  font-size:9px;
  letter-spacing:1px;
  color:#8a8e80;
}

.product-meta {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 1px 0;
}

.product-meta h4 {
  font-size:12px;
  font-weight:500;
  margin:0;
}

.product-meta p {
  font-size:10px;
  margin-top:2px;
}

.product-meta>a {
  width:29px;
  height:29px;
  display:grid;
  place-items:center;
  border-bottom:1px solid #b5b9a9;
  font-size:18px;
}

.collection-note {
  display:flex;
  justify-content:space-between;
  font-size:10px;
  color:#888d7e;
  border-top:1px solid #d7dbcb;
  margin-top:36px;
  padding-top:19px;
}

.lenses {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
}

.lenses-intro>.eyebrow {
  color:#7a816b;
}

.lenses h2 {
  margin-top:20px;
  font-size:44px;
}

.lenses-intro>p {
  font-size:13px;
  max-width:365px;
  margin-top:22px;
}

.text-link {
  display:inline-flex;
  gap:32px;
  align-items:center;
  font-size:12px;
  font-weight:500;
  border:0;
  border-bottom:1px solid #a2a791;
  background:transparent;
  padding:0 0 8px;
}

.lenses .text-link {
  margin-top:24px;
}

.text-link span {
  font-size:21px;
}

.lens-art {
  height:145px;
  position:relative;
  margin-top:24px;
  width:270px;
}

.lens-art>div {
  width:113px;
  height:103px;
  border:1px solid #a5ad98;
  border-radius:48% 48% 43% 43%;
  transform:rotate(-17deg);
  position:absolute;
  top:10px;
  left:12px;
  background:linear-gradient(135deg,#eef1e8aa,transparent);
}

.lens-art>div:nth-child(2) {
  left:90px;
  top:10px;
  transform:rotate(14deg);
  border-color:#bca373;
  background:linear-gradient(150deg,#d8dcca44,#b7bfa622,transparent);
}

.lens-art>span {
  position:absolute;
  bottom:0;
  font-size:7px;
  letter-spacing:1.6px;
  color:#8a907f;
}

.lens-list {
  align-self:center;
}

.lens-list details {
  border-bottom:1px solid var(--line);
}

.lens-list details:first-child {
  border-top:1px solid var(--line);
}

.lens-list summary {
  list-style:none;
  display:flex;
  align-items:center;
  gap:25px;
  padding:26px 0;
  cursor:pointer;
}

.lens-list summary::-webkit-details-marker {
  display:none;
}

.lens-list summary>span {
  font-size:10px;
  color:#8b927e;
}

.lens-list h3 {
  font-size:18px;
  font-weight:400;
  letter-spacing:-.4px;
}

.lens-list summary b {
  font-size:23px;
  font-weight:300;
  color:#7c846c;
  margin-left:auto;
  transition:transform .2s;
}

.lens-list details[open] summary b {
  transform:rotate(45deg);
}

.lens-list details p {
  font-size:12px;
  max-width:375px;
  margin:0 25px 24px 40px;
}

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

.voucher-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:110px;
  align-items:center;
}

.voucher-intro>.eyebrow {
  color:var(--gold);
}

.voucher-intro h2 {
  font-size:61px;
  margin-top:24px;
}

.voucher-intro h2 em {
  color:var(--gold);
}

.voucher-intro>p {
  font-size:13px;
  color:#a3a99a;
  line-height:1.9;
  margin-top:20px;
}

.voucher-ticket {
  border:1px solid #7d7559;
  background:#22251f;
  margin-top:39px;
  padding:25px 28px 0;
  transform:rotate(-3deg);
  max-width:400px;
  position:relative;
}

.voucher-ticket:after,.voucher-ticket:before {
  content:'';
  position:absolute;
  bottom:40px;
  width:18px;
  height:18px;
  border:1px solid #7d7559;
  border-radius:50%;
  background:var(--dark);
}

.voucher-ticket:before {
  left:-10px;
  border-left-color:var(--dark);
}

.voucher-ticket:after {
  right:-10px;
  border-right-color:var(--dark);
}

.ticket-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.ticket-top img {
  width:75px;
  height:auto;
}

.ticket-top>span {
  font-size:8px;
  text-align:right;
  letter-spacing:2px;
  line-height:1.7;
  color:var(--gold);
}

.ticket-benefit {
  display:flex;
  gap:23px;
  align-items:center;
  padding:12px 0 20px;
  color:var(--gold);
}

.ticket-benefit strong {
  font-size:85px;
  font-family:var(--display);
  letter-spacing:-5px;
  font-weight:400;
  line-height:1.3;
}

.ticket-benefit sup {
  font-size:35px;
  vertical-align:super;
  margin-left:5px;
  letter-spacing:-1px;
}

.ticket-benefit>span {
  font-size:21px;
  line-height:1.3;
}

.ticket-benefit small {
  font-size:7px;
  letter-spacing:1.4px;
}

.ticket-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px dashed #7d7559;
  padding:13px 0;
  font-size:7px;
  letter-spacing:1.5px;
}

.ticket-bottom>span:last-child {
  font-size:21px;
  line-height:1;
}

.ticket-bottom [data-creator]:before {
  content:' / ';
}

.steps {
  display:flex;
  gap:22px;
  margin-top:40px;
  color:#a1a895;
  flex-wrap:wrap;
}

.steps>span {
  font-size:9px;
  display:flex;
  gap:6px;
}

.steps b {
  color:var(--gold);
  font-weight:400;
}

.form-card {
  background:#f8f7f3;
  color:var(--ink);
  padding:38px 38px 30px;
}

.form-card>.eyebrow {
  font-size:8px;
  color:#7e846f;
  letter-spacing:1.5px;
}

.form-card>h3 {
  font-family:var(--serif);
  font-weight:400;
  font-size:34px;
  letter-spacing:-1px;
  margin-top:9px;
}

.form-card>p {
  font-size:11px;
  margin-top:5px;
}

.form-card form {
  margin-top:25px;
}

.field {
  display:flex;
  flex-direction:column;
  margin-bottom:15px;
  gap:7px;
}

.field label {
  font-size:11px;
  font-weight:500;
}

.field label span {
  font-weight:400;
  color:#777e6e;
}

.field input,.field select {
  background:#fff;
  border:1px solid #d9dcd1;
  padding:12px 13px;
  border-radius:0;
  min-width:0;
  width:100%;
  height:45px;
  font-size:11px;
  color:var(--ink);
  outline-offset:2px;
}

.field input::placeholder {
  color:#8d9186;
}

.field input:focus,.field select:focus {
  border-color:#9d8c61;
}

.field input:user-invalid,.field select:user-invalid {
  border-color:#a34136;
}

.field-pair {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:14px;
}

.field-hint {
  font-size:9px;
  margin-top:-5px;
}

.checkbox {
  display:flex;
  align-items:start;
  gap:9px;
  font-size:10px;
  color:#6b725f;
  margin-top:20px;
  line-height:1.5;
  cursor:pointer;
}

.checkbox input {
  accent-color:#847047;
  width:14px;
  height:14px;
  flex-shrink:0;
  margin:1px 0 0;
}

.checkbox small {
  font-size:9px;
}

.form-submit {
  width:100%;
  margin-top:23px;
  font-size:12px;
}

.form-legal {
  font-size:9px;
  line-height:1.8;
  margin-top:15px;
  text-align:center;
  color:#7a806f;
}

.form-legal a {
  text-decoration:underline;
  text-underline-offset:2px;
}

#form-status:empty {
  display:none;
}

#form-status {
  font-size:12px;
  color:#994232;
  margin-top:12px;
}

.store-toolbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--line);
  padding-bottom:20px;
  margin-bottom:10px;
  gap:20px;
}

.store-filters {
  display:flex;
  gap:8px;
  overflow:auto;
}

.store-filters button {
  border:1px solid transparent;
  white-space:nowrap;
  padding:9px 19px;
  background:transparent;
  font-size:11px;
}

.store-filters button[aria-pressed=true] {
  background:var(--ink);
  color:var(--paper);
}

.store-filters button:not([aria-pressed=true]):hover {
  border-color:var(--line);
}

.store-filters button>span {
  font-size:8px;
  padding-left:7px;
  color:var(--gold);
}

#store-count {
  color:#828878;
  font-size:10px;
  white-space:nowrap;
}

.store-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:35px;
}

.store-card {
  padding:27px 0 26px;
  border-bottom:1px solid var(--line);
  display:flex;
  flex-direction:column;
  align-items:start;
}

.store-card .eyebrow {
  font-size:8px;
  letter-spacing:1.3px;
  color:#929882;
}

.store-card h3 {
  font-size:18px;
  letter-spacing:-.5px;
  font-weight:400;
  margin:8px 0 10px;
}

.store-card p {
  font-size:11px;
  max-width:300px;
}

.store-card .store-hours {
  font-size:9px;
  margin-top:9px;
  margin-bottom:20px;
}

.store-card a {
  font-size:10px;
  border-bottom:1px solid #a9af9b;
  padding-bottom:3px;
  margin-top:auto;
  display:flex;
  gap:35px;
}

.closing {
  background:#e7e8de;
  text-align:center;
  padding:68px 24px;
}

.closing .eyebrow {
  font-size:9px;
  color:#7e846e;
}

.closing h2 {
  font-size:46px;
  margin:20px 0 28px;
}

.closing .button {
  background:var(--ink);
  color:var(--paper);
  border-color:var(--ink);
  font-size:12px;
}

.closing .button:hover {
  background:#383f2e;
}

.footer-main {
  display:flex;
  align-items:center;
  gap:60px;
  padding:45px 0 35px;
}

.footer-main .brand img {
  width:86px;
}

.footer-main p {
  font-size:11px;
  line-height:1.7;
}

.footer-main>div {
  margin-left:auto;
  display:flex;
  gap:30px;
  font-size:10px;
  color:#737c63;
}

.footer-bottom {
  border-top:1px solid var(--line);
  padding:18px 0 22px;
  display:flex;
  justify-content:space-between;
  font-size:8px;
  color:#8c937f;
}

.footer-bottom>span:last-child {
  letter-spacing:1.4px;
}

dialog {
  border:1px solid #d2d6c8;
  background:var(--paper);
  color:var(--ink);
  width:min(480px,calc(100% - 32px));
  padding:42px;
  max-height:90dvh;
  overflow:auto;
}

dialog::backdrop {
  background:#0b100cdc;
  backdrop-filter:blur(5px);
}

.dialog-close {
  position:absolute;
  right:14px;
  top:14px;
}

dialog>.eyebrow {
  font-size:8px;
  color:#81896f;
}

dialog h2 {
  font-size:40px;
  margin-top:22px;
}

dialog>p {
  font-size:13px;
  margin-top:20px;
}

.result-code {
  border-block:1px dashed #bbc0ad;
  padding:20px 0;
  margin-top:25px;
  display:flex;
  flex-direction:column;
  align-items:start;
  gap:10px;
}

.result-code>span {
  font-size:9px;
  letter-spacing:1px;
}

.result-code>strong {
  font-family:var(--display);
  font-size:25px;
  font-weight:500;
}

.result-code .text-link {
  font-size:11px;
}

dialog>.button {
  width:100%;
  margin-top:25px;
  font-size:12px;
}

.skip-link {
  position:fixed;
  top:-70px;
  left:20px;
  background:var(--gold);
  padding:10px 20px;
  z-index:10;
}

.skip-link:focus {
  top:10px;
}

@media(min-width:1500px) {
  .header,.announcement {
    padding-inline:max(56px,calc((100vw - 1280px)/2));
  }
  .hero {
    padding-inline:max(56px,calc((100vw - 1280px)/2));
    gap:80px;
  }
  .hero-photo {
    min-height:710px;
  }
}

@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .header,.announcement {
    padding-inline:32px;
  }
  .header nav {
    gap:20px;
    margin-right:0;
  }
  .hero {
    padding-inline:32px;
    gap:35px;
  }
  .hero-photo {
    min-height:600px;
  }
  .hero-content {
    padding-top:10px;
  }
  .hero-offer {
    gap:20px;
  }
  .discount>span {
    font-size:78px;
  }
  .offer-description {
    font-size:11px;
  }
  .offer-description>span {
    font-size:10px;
  }
  .presence {
    grid-template-columns:1fr 1fr;
  }
  .presence>p {
    display:none;
  }
  .presence-numbers {
    justify-content:center;
  }
  .section-heading h2 {
    font-size:35px;
  }
  .section-heading>p {
    max-width:220px;
  }
  .lenses {
    gap:50px;
  }
  .lenses h2 {
    font-size:38px;
  }
  .voucher-layout {
    gap:55px;
  }
  .voucher-intro h2 {
    font-size:53px;
  }
  .form-card {
    padding:30px;
  }
  .steps {
    gap:10px;
  }
  .hero-footnote {
    gap:10px;
    font-size:7px;
  }
  .footer-main {
    gap:30px;
  }
}

@media(max-width:760px) {
  html {
    scroll-padding-top:20px;
  }
  .wrap {
    width:calc(100% - 40px);
  }
  .section-pad {
    padding-block:65px;
  }
  .announcement {
    justify-content:center;
    min-height:29px;
    padding:5px 15px;
  }
  .announcement>span:first-child {
    font-size:8px;
    letter-spacing:1.4px;
  }
  .announcement>span:last-child {
    display:none;
  }
  .header {
    height:76px;
    padding-inline:20px;
    gap:20px;
  }
  .brand img {
    width:85px;
  }
  .header nav {
    display:none;
  }
  .button-small {
    padding:9px 12px;
    font-size:9px;
    gap:20px;
    min-height:38px;
  }
  .hero {
    padding:0 20px 32px;
    gap:0;
    grid-template-columns:1fr;
  }
  .hero-photo {
    min-height:0;
    height:400px;
    order:1;
    margin-top:30px;
  }
  .hero-photo>img {
    object-position:50% 43%;
  }
  .hero-content {
    padding-top:29px;
    max-width:none;
    order:0;
  }
  .hero-content>.eyebrow {
    font-size:8px;
    letter-spacing:1.5px;
  }
  h1 {
    font-size:clamp(38px,11.8vw,52px);
    letter-spacing:-1.8px;
    margin-top:20px;
    line-height:1.05;
  }
  .hero-description {
    font-size:12px;
    margin-top:20px;
  }
  .hero-offer {
    margin-top:23px;
    padding:17px 0;
    gap:28px;
  }
  .discount>span {
    font-size:84px;
  }
  .discount b {
    font-size:33px;
  }
  .discount>div>span {
    font-size:12px;
  }
  .offer-description {
    font-size:12px;
  }
  .offer-description>span {
    font-size:10px;
  }
  .hero-cta {
    max-width:none;
    margin-top:22px;
    font-size:12px;
  }
  .subtle-link {
    justify-content:center;
    font-size:10px;
  }
  .hero-footnote {
    justify-content:center;
    margin-top:24px;
    font-size:7px;
    gap:14px;
  }
  .photo-tag {
    top:19px;
    left:19px;
    right:19px;
    font-size:8px;
  }
  .photo-tag>span {
    font-size:7px;
  }
  .photo-caption {
    bottom:22px;
    left:22px;
    right:22px;
  }
  .photo-caption>span:first-child {
    font-size:26px;
  }
  .presence {
    display:block;
    padding-block:36px;
  }
  .presence h2 {
    font-size:29px;
    margin-top:12px;
  }
  .presence-numbers {
    border-left:0;
    border-top:1px solid var(--line);
    padding:20px 0 0;
    margin-top:24px;
    justify-content:start;
    gap:60px;
  }
  .presence-numbers strong {
    font-size:44px;
  }
  .presence-numbers>div>span {
    font-size:8px;
  }
  .section-heading {
    display:block;
    margin-bottom:29px;
  }
  .section-heading .eyebrow {
    font-size:8px;
    letter-spacing:1.5px;
  }
  .section-heading h2 {
    font-size:36px;
    max-width:340px;
  }
  .section-heading>p {
    margin-top:18px;
    max-width:none;
    font-size:12px;
  }
  .collection-row+.collection-row {
    margin-top:30px;
  }
  .row-heading h3 {
    font-size:16px;
  }
  .row-heading h3>span {
    font-size:8px;
    margin-left:8px;
  }
  .icon-button {
    width:31px;
    height:31px;
    font-size:15px;
  }
  .product-track {
    gap:14px;
    margin-right:-20px;
    padding-right:20px;
  }
  .product-card {
    flex-basis:82%;
  }
  .product-image {
    aspect-ratio:1.38;
  }
  .product-meta {
    padding-top:13px;
  }
  .product-meta h4 {
    font-size:13px;
  }
  .product-meta p {
    font-size:11px;
  }
  .collection-note {
    display:block;
    font-size:9px;
    margin-top:27px;
  }
  .collection-note>span {
    display:block;
  }
  .collection-note>span+span {
    margin-top:5px;
  }
  .lenses {
    grid-template-columns:1fr;
    gap:30px;
  }
  .lenses h2 {
    font-size:40px;
  }
  .lenses-intro>.eyebrow {
    font-size:8px;
  }
  .lenses-intro>p {
    font-size:12px;
  }
  .lens-art {
    display:none;
  }
  .lens-list summary {
    padding:21px 0;
    gap:20px;
  }
  .lens-list h3 {
    font-size:17px;
  }
  .lens-list details p {
    margin-left:35px;
  }
  .voucher-layout {
    grid-template-columns:1fr;
    gap:38px;
  }
  .voucher-intro h2 {
    font-size:52px;
    margin-top:18px;
  }
  .voucher-intro>.eyebrow {
    font-size:8px;
  }
  .voucher-intro>p {
    font-size:12px;
  }
  .voucher-ticket {
    margin:30px 5px 0;
    max-width:400px;
  }
  .steps {
    margin-top:31px;
    gap:15px;
  }
  .steps>span {
    font-size:8px;
  }
  .form-card {
    padding:28px 22px;
  }
  .form-card>h3 {
    font-size:31px;
  }
  .form-card>p {
    font-size:10px;
  }
  .field input,.field select {
    font-size:16px;
    height:48px;
    padding:10px;
  }
  .field input::placeholder {
    font-size:12px;
  }
  .field-pair {
    grid-template-columns:1fr;
    gap:0;
  }
  .field label {
    font-size:12px;
  }
  .field-hint,.form-legal {
    font-size:10px;
  }
  .checkbox {
    font-size:11px;
  }
  .store-toolbar {
    display:block;
  }
  .store-filters {
    gap:3px;
    margin-right:-20px;
    padding-right:20px;
  }
  .store-filters button {
    padding:8px 13px;
    font-size:10px;
  }
  #store-count {
    display:block;
    margin-top:13px;
    font-size:9px;
  }
  .store-grid {
    grid-template-columns:1fr;
  }
  .store-card {
    padding:23px 0;
  }
  .store-card p {
    max-width:none;
    font-size:12px;
  }
  .store-card h3 {
    font-size:20px;
  }
  .store-card .store-hours {
    font-size:10px;
    margin-bottom:14px;
  }
  .store-card a {
    font-size:11px;
  }
  .closing {
    padding-block:55px;
  }
  .closing>.eyebrow {
    font-size:7px;
    letter-spacing:1.3px;
  }
  .closing h2 {
    font-size:36px;
    max-width:320px;
    margin-inline:auto;
  }
  .footer-main {
    display:grid;
    grid-template-columns:auto 1fr;
    gap:25px;
    padding:33px 0 28px;
  }
  .footer-main>div {
    grid-column:1/-1;
    margin:0;
    justify-content:space-between;
    gap:15px;
    font-size:9px;
  }
  .footer-bottom {
    flex-direction:column;
    gap:10px;
    font-size:8px;
  }
  .footer-bottom>span:last-child {
    font-size:7px;
  }
  dialog {
    padding:35px 25px;
  }
  dialog h2 {
    font-size:37px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}

