@import url('https://fonts.googleapis.com/css2?family=Prata&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --sea: #0D5963;
  --sand: #F4E9D5;
  --clay: #D76545;
  --sun: #E8BE63;
  --ink: #17383C;
  --paper: #FFFDF8;
  --white: #FFFFFF;
  --line: rgba(13, 89, 99, .25);
  --serif: 'Prata', Georgia, serif;
  --sans: 'Sora', Verdana, sans-serif;
  --page: min(1180px, calc(100% - 32px));
  --shadow: 0 18px 50px rgba(23, 56, 60, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}
h1 { font-size: clamp(2.65rem, 10vw, 6rem); letter-spacing: 0; }
h2 { font-size: clamp(2rem, 6vw, 4.25rem); letter-spacing: 0; }
h3 { font-size: clamp(1.35rem, 3vw, 1.8rem); }
ul { padding-left: 1.25rem; }
svg { width: 1.4em; height: 1.4em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.hidden, .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: 10px;
  padding: 10px 16px;
  background: var(--sun);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 4px; }

.notice {
  background: var(--sea);
  color: var(--sand);
  padding: 8px 18px;
  font-size: .7rem;
  letter-spacing: .04em;
  text-align: center;
}
.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 233, 213, .96);
}
.header-inner {
  width: var(--page);
  min-height: 76px;
  margin: auto;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  color: var(--sea);
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0;
  text-decoration: none;
}
.brand span {
  margin-right: 4px;
  padding: 3px 5px;
  background: var(--clay);
  color: var(--sand);
  font-family: var(--sans);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  transform: rotate(-4deg);
}
.brand strong { font-weight: 400; }
.menu-toggle {
  width: 42px;
  height: 42px;
  padding: 10px 8px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; background: var(--ink); }
.menu-toggle > span:nth-child(2) { width: 70%; }
.main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  padding: 22px 24px 28px;
  background: var(--sand);
  border-bottom: 2px solid var(--sea);
  box-shadow: var(--shadow);
}
.main-nav.is-open { display: grid; }
.main-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  text-decoration: none;
}
.main-nav a[aria-current="page"] { color: var(--clay); }
.cart-link {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
}
.cart-link > span { display: none; }
.cart-link b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  font-size: .68rem;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--clay);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lead { font-size: clamp(1rem, 2vw, 1.28rem); line-height: 1.65; }
.btn {
  min-height: 48px;
  padding: 13px 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--sea);
  background: var(--sea);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { background: var(--clay); border-color: var(--clay); transform: translateY(-2px); }
.btn-light { background: var(--sand); color: var(--sea); border-color: var(--sand); }
.btn-large { width: 100%; min-height: 56px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sea);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(5px); }
.field {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 56, 60, .4);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}
textarea.field { min-height: 140px; resize: vertical; }
.form-feedback { margin: 14px 0 0; color: var(--sea); font-weight: 700; }
.form-feedback:empty { display: none; }
.toast {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 18px;
  background: var(--ink);
  color: var(--sand);
  border-left: 4px solid var(--sun);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.checkbox-line {
  display: flex;
  gap: 10px;
  font-size: .72rem;
  line-height: 1.5;
}
.checkbox-line input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--clay); }
.full { grid-column: 1 / -1; }

.hero {
  position: relative;
  min-height: 690px;
  padding: 56px max(16px, calc((100vw - 1180px) / 2));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--sea);
  color: var(--sand);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, transparent 44%, rgba(232, 190, 99, .34) 45%, rgba(232, 190, 99, .34) 55%, transparent 56%), linear-gradient(-45deg, transparent 44%, rgba(232, 190, 99, .22) 45%, rgba(232, 190, 99, .22) 55%, transparent 56%);
  background-size: 68px 68px;
  opacity: .55;
}
.hero-copy {
  position: relative;
  z-index: 3;
  padding: 24px 4px 0;
  align-self: end;
}
.hero-copy h1 { max-width: 8ch; margin-bottom: 22px; }
.hero-copy .eyebrow { color: var(--sun); }
.hero-copy .lead { max-width: 38rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-window {
  position: absolute;
  inset: 38px 16px auto auto;
  width: 73%;
  height: 55%;
  z-index: 2;
  overflow: hidden;
  border-radius: 48% 48% 4px 4px;
  border: 8px solid var(--sand);
  box-shadow: 18px 18px 0 var(--clay);
}
.hero-window::after {
  content: '';
  position: absolute;
  inset: auto -10% -32px;
  height: 94px;
  border-radius: 50% 50% 0 0;
  background: var(--sea);
  opacity: .78;
}
.hero-window img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-sun {
  position: absolute;
  z-index: 1;
  top: 32px;
  left: -36px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--sun);
}
.hero-index {
  position: absolute;
  z-index: 4;
  top: 28%;
  left: 20px;
  writing-mode: vertical-rl;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.category-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sun);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.category-band a {
  min-height: 96px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.category-band a:nth-child(3n) { background: var(--clay); color: var(--sand); }
.category-band a:hover { background: var(--sea); color: var(--sand); }

.section-shell { width: var(--page); margin: auto; padding: 78px 0; }
.section-heading { max-width: 750px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading-split { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.product-run { display: grid; grid-template-columns: 1fr; gap: 52px; }
.product-tile { position: relative; }
.product-image {
  position: relative;
  min-height: 390px;
  display: block;
  overflow: hidden;
  background: var(--sea);
}
.product-image::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--sea) 0 24px, var(--sun) 24px 48px, var(--clay) 48px 72px, var(--sand) 72px 96px);
}
.product-image img { width: 100%; height: 430px; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.product-image:hover img { transform: scale(1.035); }
.product-meta {
  padding: 18px 0 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 15px;
}
.product-meta p { grid-column: 1 / -1; margin-bottom: 4px; color: var(--clay); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-meta h3 { margin: 0; }
.product-meta h3 a { text-decoration: none; }
.product-meta strong { align-self: center; color: var(--sea); white-space: nowrap; }

.editorial-panel { position: relative; padding: 70px 16px 80px; overflow: hidden; background: var(--clay); color: var(--sand); }
.editorial-grid { width: var(--page); margin: auto; display: grid; gap: 34px; }
.editorial-image { position: relative; min-height: 510px; overflow: hidden; border-radius: 0 0 48% 48%; }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-image::before {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid var(--sun);
  border-radius: 0 0 48% 48%;
}
.editorial-copy { align-self: center; }
.editorial-copy .eyebrow { color: var(--sun); }
.editorial-copy h2 { max-width: 8ch; }
.editorial-copy p:not(.eyebrow) { max-width: 34rem; }
.editorial-number { display: block; margin-bottom: -18px; color: var(--sun); font-family: var(--serif); font-size: 7rem; line-height: 1; opacity: .65; }

.values-strip { width: var(--page); margin: 70px auto; display: grid; border-top: 1px solid var(--sea); }
.value { padding: 28px 0; border-bottom: 1px solid var(--sea); }
.value span { display: block; color: var(--clay); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.value h3 { margin: 8px 0; }
.value p { margin: 0; }

.page-hero {
  position: relative;
  padding: 74px 0 62px;
  overflow: hidden;
  background: var(--sea);
  color: var(--sand);
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  right: -70px;
  bottom: -145px;
  border: 25px solid var(--sun);
  border-radius: 50%;
}
.page-hero-inner { width: var(--page); margin: auto; position: relative; z-index: 1; }
.page-hero h1 { max-width: 10ch; margin-bottom: 18px; }
.page-hero p { max-width: 44rem; margin-bottom: 0; }
.page-hero .eyebrow { color: var(--sun); }
.breadcrumb { margin-bottom: 25px; display: flex; gap: 9px; font-size: .72rem; }
.breadcrumb a { color: var(--sun); }

.catalog-tools {
  width: var(--page);
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.catalog-tools label { font-size: .72rem; font-weight: 700; }
.catalog-tools .field { margin-top: 6px; }
.result-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.result-line p { margin: 0; font-size: .75rem; }
.link-button, .remove-button { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--clay); font-weight: 700; cursor: pointer; }
.catalog-grid { width: var(--page); margin: 0 auto; padding: 58px 0 100px; display: grid; grid-template-columns: 1fr; gap: 55px; }
.empty-state { grid-column: 1 / -1; padding: 80px 10px; border-top: 1px solid var(--sea); border-bottom: 1px solid var(--sea); }

.product-detail { width: var(--page); margin: 52px auto 100px; display: grid; gap: 44px; }
.product-detail-image { min-height: 520px; overflow: hidden; border-radius: 46% 46% 0 0; background: var(--sea); }
.product-detail-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.product-detail-copy h1 { margin-bottom: 10px; }
.product-price { color: var(--clay); font-family: var(--serif); font-size: 1.65rem; }
.product-detail-copy fieldset { padding: 0; margin: 32px 0 22px; border: 0; }
.product-detail-copy legend, .quantity-field label { display: block; margin-bottom: 10px; font-size: .75rem; font-weight: 700; }
.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-options label { position: relative; cursor: pointer; }
.size-options input { position: absolute; opacity: 0; }
.size-options span { min-width: 48px; min-height: 46px; padding: 10px; display: grid; place-items: center; border: 1px solid var(--sea); }
.size-options input:checked + span { background: var(--sea); color: var(--white); }
.size-options input:focus-visible + span { outline: 3px solid var(--sun); outline-offset: 3px; }
.quantity-field { max-width: 150px; margin-bottom: 20px; }
.product-notes { margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); }
.product-notes h2 { font-size: 1.55rem; }

.cart-layout, .checkout-layout { width: var(--page); margin: 54px auto 100px; display: grid; gap: 40px; }
.cart-lines > h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
.cart-item { padding: 24px 0; display: grid; grid-template-columns: 92px 1fr; gap: 18px; border-top: 1px solid var(--line); }
.cart-item img { width: 92px; height: 130px; object-fit: cover; }
.cart-item h2 { margin: 0 0 8px; font-size: 1.5rem; }
.cart-item h2 a { text-decoration: none; }
.cart-item p { margin-bottom: 7px; font-size: .75rem; }
.cart-quantity { grid-column: 2; display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 8px 14px; }
.quantity-label { grid-column: 1 / -1; font-size: .7rem; font-weight: 700; }
.cart-stepper { display: inline-grid; grid-template-columns: 34px 34px 34px; align-items: center; border: 1px solid var(--sea); }
.cart-stepper button { width: 34px; height: 34px; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.cart-stepper button:hover { background: var(--sea); color: var(--white); }
.cart-stepper svg { width: 15px; height: 15px; }
.cart-stepper output { min-width: 34px; text-align: center; font-size: .78rem; font-weight: 700; }
.cart-quantity > strong { justify-self: end; white-space: nowrap; }
.order-summary, .checkout-summary {
  align-self: start;
  padding: 30px;
  background: var(--sun);
  border-top: 8px solid var(--sea);
}
.order-summary h2, .checkout-summary h2 { font-size: 2rem; }
.order-summary dl, .checkout-summary dl { margin: 24px 0; }
.order-summary dl div, .checkout-summary dl div { padding: 9px 0; display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px solid rgba(23,56,60,.25); }
.order-summary dd, .checkout-summary dd { margin: 0; text-align: right; }
.summary-total { margin-top: 8px; font-weight: 700; }
.order-summary .btn { margin: 14px 0 20px; }
.empty-cart { padding: 90px 24px; text-align: left; }
.empty-cart h1 { max-width: 8ch; }
.tile-pattern {
  background-color: var(--sun);
  background-image: linear-gradient(45deg, transparent 44%, rgba(13,89,99,.2) 45%, rgba(13,89,99,.2) 55%, transparent 56%), linear-gradient(-45deg, transparent 44%, rgba(215,101,69,.25) 45%, rgba(215,101,69,.25) 55%, transparent 56%);
  background-size: 76px 76px;
}

.checkout-title { margin-bottom: 35px; }
.checkout-form { display: grid; grid-template-columns: 1fr; gap: 18px; }
.form-section { grid-column: 1 / -1; margin: 22px 0 0; padding: 0; border: 0; display: grid; grid-template-columns: 1fr; gap: 18px; }
.form-section legend { width: 100%; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.65rem; }
.form-field { display: block; }
.form-field > span { display: block; margin-bottom: 6px; font-size: .73rem; font-weight: 700; }
.form-field small { display: block; margin-top: 5px; font-size: .67rem; }
.payment-options { display: grid; gap: 10px; }
.payment-option { padding: 16px; display: grid; grid-template-columns: 22px 1fr; gap: 2px 10px; border: 1px solid var(--line); cursor: pointer; }
.payment-option input { grid-row: 1 / 3; margin-top: 4px; accent-color: var(--clay); }
.payment-option strong { font-size: .85rem; }
.payment-option span { font-size: .7rem; }
.checkout-summary { position: static; }
.checkout-items { margin: 20px 0; padding: 0; list-style: none; }
.checkout-items li { padding: 12px 0; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(23,56,60,.22); }
.checkout-items img { width: 54px; height: 68px; object-fit: cover; }
.checkout-items span { display: grid; }
.checkout-items small { font-size: .65rem; }
.checkout-items b { font-size: .7rem; }

.content-page { width: var(--page); margin: 60px auto 100px; display: grid; gap: 50px; }
.content-aside { padding: 26px; background: var(--sun); border-left: 7px solid var(--clay); align-self: start; }
.content-aside h2 { font-size: 1.7rem; }
.content-aside a { display: block; margin: 9px 0; font-weight: 600; }
.prose { max-width: 760px; }
.prose section { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); scroll-margin-top: 30px; }
.prose h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 16px; }
.prose h3 { font-family: var(--sans); font-size: .92rem; font-weight: 700; }
.prose a { color: var(--sea); font-weight: 600; }
.prose li { margin-bottom: 7px; }

.about-intro { width: var(--page); margin: 70px auto; display: grid; gap: 34px; }
.about-statement { align-self: center; }
.about-statement h2 { max-width: 11ch; }
.about-figure { position: relative; min-height: 580px; overflow: hidden; border-radius: 50% 50% 0 0; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-figure::after { content: ''; position: absolute; inset: 20px; border: 2px solid var(--sun); border-radius: 50% 50% 0 0; }
.about-principles { padding: 70px 0; background: var(--clay); color: var(--sand); }
.about-principles-inner { width: var(--page); margin: auto; display: grid; gap: 28px; }
.principle { padding: 22px 0; border-top: 1px solid var(--sun); }
.principle b { color: var(--sun); font-family: var(--serif); font-size: 2.2rem; }
.principle h3 { margin: 12px 0; }

.contact-layout { width: var(--page); margin: 60px auto 100px; display: grid; gap: 42px; }
.contact-info { position: relative; padding: 34px; background: var(--sea); color: var(--sand); overflow: hidden; }
.contact-info::after { content: ''; position: absolute; width: 170px; height: 170px; right: -80px; bottom: -80px; border-radius: 50%; background: var(--sun); }
.contact-info .eyebrow { color: var(--sun); }
.contact-info h2 { max-width: 8ch; }
.contact-info a { display: block; margin: 10px 0; color: var(--sun); font-weight: 600; }
.contact-form { display: grid; grid-template-columns: 1fr; gap: 18px; }

.site-footer { position: relative; padding-top: 62px; overflow: hidden; background: var(--sea); color: var(--sand); }
.footer-wave { position: absolute; left: -5%; right: -5%; top: -47px; height: 90px; border-radius: 50%; background: var(--sand); }
.footer-grid { width: var(--page); margin: auto; padding: 42px 0 58px; display: grid; gap: 42px; }
.site-footer .brand { color: var(--sun); }
.site-footer h2 { margin-bottom: 16px; color: var(--sun); font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a { display: block; margin: 8px 0; color: inherit; }
.footer-intro p { max-width: 290px; }
.footer-intro > a:not(.brand) { font-size: .76rem; }
.newsletter { padding-top: 28px; border-top: 1px solid rgba(244,233,213,.28); }
.newsletter > h2 { color: var(--sand); font-family: var(--serif); font-size: 2.15rem; letter-spacing: 0; text-transform: none; }
.newsletter .eyebrow { color: var(--sun); }
.newsletter form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.newsletter .field { background: transparent; border-color: rgba(244,233,213,.55); color: var(--sand); }
.newsletter .field::placeholder { color: rgba(244,233,213,.7); }
.newsletter .btn { background: var(--sun); border-color: var(--sun); color: var(--ink); }
.newsletter .checkbox-line { grid-column: 1 / -1; }
.footer-base { padding: 24px max(16px, calc((100vw - 1180px) / 2)); display: flex; flex-direction: column; border-top: 1px solid rgba(244,233,213,.22); font-size: .63rem; letter-spacing: .03em; }
.footer-base p { margin: 3px 0; }

@media (min-width: 620px) {
  :root { --page: min(1180px, calc(100% - 64px)); }
  .hero { min-height: 720px; }
  .hero-window { width: 54%; right: 8%; }
  .hero-copy { max-width: 65%; }
  .category-band { grid-template-columns: repeat(4, 1fr); }
  .category-band a { min-height: 130px; border-bottom: 0; }
  .product-run, .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px 28px; }
  .product-offset-1 { margin-top: 58px; }
  .product-offset-3 { margin-top: -28px; }
  .catalog-tools { grid-template-columns: 1.3fr 1fr; }
  .catalog-tools .result-line { grid-column: 1 / -1; }
  .form-section, .checkout-form, .contact-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter { grid-column: 1 / -1; }
  .footer-base { flex-direction: row; justify-content: space-between; }
  .cart-item { grid-template-columns: 118px 1fr auto; }
  .cart-item img { width: 118px; height: 158px; }
  .cart-quantity { grid-column: 3; min-width: 120px; align-self: center; }
}

@media (min-width: 900px) {
  .header-inner { min-height: 88px; grid-template-columns: 1fr auto 1fr; }
  .menu-toggle { display: none; }
  .main-nav { position: static; display: flex; gap: 32px; padding: 0; background: none; border: 0; box-shadow: none; }
  .main-nav a { padding: 8px 0; border: 0; font-size: .75rem; }
  .brand { font-size: 1.6rem; }
  .cart-link { justify-self: end; }
  .cart-link > span { display: inline; }
  .hero { min-height: 760px; padding-top: 80px; padding-bottom: 92px; grid-template-columns: 5fr 7fr; }
  .hero-copy { align-self: center; max-width: none; padding-left: 3vw; }
  .hero-window { inset: 58px 6vw auto auto; width: 46%; height: 79%; border-width: 12px; border-radius: 48% 48% 3px 3px; }
  .hero-sun { width: 260px; height: 260px; top: 60px; left: 47%; }
  .hero-index { left: 2vw; top: 45%; }
  .category-band { padding: 0 max(0px, calc((100vw - 1180px) / 2)); }
  .category-band a { min-height: 150px; padding: 26px; font-size: 1.45rem; }
  .section-shell { padding: 120px 0; }
  .section-heading-split { max-width: none; flex-direction: row; align-items: end; justify-content: space-between; }
  .section-heading-split h2 { max-width: 11ch; margin: 0; }
  .product-run { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; align-items: start; }
  .product-image { min-height: 370px; }
  .product-image img { height: 440px; }
  .product-offset-1 { margin-top: 80px; }
  .product-offset-2 { margin-top: 25px; }
  .product-offset-3 { margin-top: 120px; }
  .editorial-panel { padding: 110px 0; }
  .editorial-grid { grid-template-columns: 7fr 5fr; gap: 8vw; }
  .editorial-image { min-height: 720px; }
  .values-strip { grid-template-columns: repeat(3, 1fr); margin-top: 100px; margin-bottom: 100px; border-bottom: 1px solid var(--sea); }
  .value { padding: 34px 38px; border-right: 1px solid var(--sea); border-bottom: 0; }
  .value:first-child { padding-left: 0; }
  .value:last-child { border-right: 0; }
  .page-hero { padding: 95px 0 82px; }
  .catalog-tools { grid-template-columns: 2fr 1fr auto; align-items: end; }
  .catalog-tools .result-line { grid-column: auto; min-width: 230px; min-height: 48px; }
  .catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 78px 24px; padding: 80px 0 130px; }
  .catalog-grid .product-offset-1 { margin-top: 75px; }
  .catalog-grid .product-offset-2 { margin-top: 20px; }
  .catalog-grid .product-offset-3 { margin-top: 110px; }
  .product-detail { grid-template-columns: 7fr 5fr; gap: 7vw; margin-top: 80px; }
  .product-detail-image { min-height: 760px; }
  .product-detail-image img { min-height: 760px; }
  .product-detail-copy { padding-top: 60px; }
  .cart-layout { grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr); gap: 6vw; margin-top: 80px; }
  .order-summary, .checkout-summary { position: sticky; top: 30px; }
  .checkout-layout { grid-template-columns: minmax(0, 7fr) minmax(330px, 5fr); gap: 7vw; margin-top: 78px; }
  .content-page { grid-template-columns: minmax(0, 8fr) minmax(260px, 3fr); gap: 8vw; margin-top: 90px; }
  .content-aside { position: sticky; top: 30px; grid-column: 2; grid-row: 1; }
  .prose { grid-column: 1; grid-row: 1; }
  .about-intro { grid-template-columns: 5fr 7fr; gap: 8vw; margin-top: 100px; margin-bottom: 110px; }
  .about-figure { min-height: 740px; }
  .about-principles-inner { grid-template-columns: repeat(3, 1fr); gap: 45px; }
  .contact-layout { grid-template-columns: 4fr 7fr; gap: 8vw; margin-top: 85px; }
  .contact-info { min-height: 500px; }
  .footer-grid { grid-template-columns: 1.2fr .7fr .9fr 2fr; gap: 48px; padding-top: 60px; }
  .newsletter { grid-column: auto; padding-top: 0; padding-left: 40px; border-top: 0; border-left: 1px solid rgba(244,233,213,.28); }
}

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