:root {
  --ink: #12323d;
  --ink-soft: #536b70;
  --paper: #f8f1e5;
  --paper-deep: #ecdfce;
  --white: #fffaf1;
  --orange: #ee705a;
  --orange-dark: #c95340;
  --sage: #2f7c77;
  --sage-light: #bcd7cf;
  --yellow: #efc862;
  --sky: #a9d3d9;
  --navy: #12323d;
  --line: rgba(18, 50, 61, 0.16);
  --shadow: 0 24px 60px rgba(18, 50, 61, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 38px;
  --page: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.17)),
    var(--paper);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

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

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mode-banner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 24px;
  background: var(--navy);
  color: #f9f2e8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mode-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6ed96;
  box-shadow: 0 0 0 4px rgba(214, 237, 150, 0.14);
}

.mode-banner.demo .mode-dot {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(228, 185, 77, 0.16);
}

.site-header {
  width: var(--page);
  height: 98px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.brand-mark .brand-sun {
  fill: var(--orange);
  stroke: none;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-place {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.cart-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 160ms ease, color 160ms ease;
}

.cart-button:hover {
  background: var(--ink);
  color: var(--white);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-button {
  min-height: 43px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.account-button:hover { background: var(--paper-deep); }
.account-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

.cart-count {
  min-width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 11px;
}

.hero {
  width: var(--page);
  margin: 0 auto;
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(45px, 7vw, 112px);
  padding: 76px 0 100px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.approach-copy h2,
.dialog-header h2,
.success-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(62px, 6.5vw, 102px);
}

.hero h1 em {
  color: var(--sage);
  font-weight: 400;
}

.hero-lede {
  max-width: 490px;
  margin: 30px 0 34px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.button-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 10px 24px rgba(239, 91, 57, 0.18);
}

.button-primary:hover:not(:disabled) {
  background: var(--orange-dark);
}

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

.button-secondary:hover:not(:disabled) {
  background: var(--ink);
  color: var(--white);
}

.button-full {
  width: 100%;
}

.hero-note {
  max-width: 175px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  min-width: 0;
  min-height: 565px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0 0 38px 22px;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 52% 48% 32px 32px;
  background: var(--sky);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.015);
}

.hero-postcard {
  position: absolute;
  z-index: 2;
  left: -32px;
  bottom: 0;
  width: 220px;
  min-height: 164px;
  padding: 22px 23px 20px;
  display: flex;
  flex-direction: column;
  background: var(--yellow);
  border: 1px solid rgba(18, 50, 61, 0.2);
  box-shadow: 0 18px 40px rgba(18, 50, 61, 0.18);
  transform: rotate(-6deg);
}

.postcard-kicker,
.postcard-mark {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-postcard strong {
  margin: 10px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.87;
}

.postcard-mark {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(18, 50, 61, 0.32);
}

.hero-seal {
  position: absolute;
  z-index: 3;
  right: -18px;
  top: 22px;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  text-align: center;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.hero-seal svg {
  width: 45px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
}

.assurance-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
  background: rgba(255, 250, 241, 0.62);
}

.assurance-strip > div {
  position: relative;
  min-height: 112px;
  padding: 28px 5vw 25px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.assurance-strip > div:first-child {
  padding-left: 0;
}

.assurance-strip > div:last-child {
  border-right: 0;
}

.assurance-strip span {
  position: absolute;
  top: 28px;
  left: 8px;
  color: var(--orange-dark);
  font-family: Georgia, serif;
  font-size: 13px;
}

.assurance-strip > div:first-child span {
  left: 0;
  transform: translateX(-30px);
}

.assurance-strip strong {
  font-family: Georgia, serif;
  font-size: 18px;
}

.assurance-strip small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
}

.shop-section {
  width: var(--page);
  margin: 0 auto;
  padding: 118px 0 138px;
}

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

.section-heading h2,
.approach-copy h2 {
  font-size: clamp(44px, 5vw, 70px);
}

.section-subtitle {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 280ms ease;
}

.text-button.loading svg {
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.catalog-toolbar {
  margin: 46px 0 25px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.search-field {
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-field svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.search-field input {
  width: 100%;
  padding: 17px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.search-field input::placeholder {
  color: #7c857f;
}

.category-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-list::-webkit-scrollbar {
  display: none;
}

.category-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.catalog-status {
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 26px;
}

.product-card {
  min-width: 0;
}

.product-visual-link,
.product-name-link {
  color: inherit;
  text-decoration: none;
}

.product-visual-link {
  display: block;
}

.product-visual {
  --product-color: var(--sage);
  position: relative;
  aspect-ratio: 1 / 1.06;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 50, 61, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 21%, rgba(255, 250, 241, 0.9) 0 12%, transparent 12.4%),
    linear-gradient(142deg, rgba(255, 255, 255, 0.4), transparent 48%),
    color-mix(in srgb, var(--product-color) 43%, var(--paper-deep));
  isolation: isolate;
}

.product-visual::before {
  content: "";
  position: absolute;
  width: 145%;
  aspect-ratio: 1;
  left: -62%;
  bottom: -86%;
  z-index: -1;
  border: 1px solid rgba(255, 250, 241, 0.48);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(255, 250, 241, 0.08),
    0 0 0 70px rgba(255, 250, 241, 0.08),
    0 0 0 106px rgba(255, 250, 241, 0.08);
}

.product-shape {
  width: 56%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 50, 61, 0.14);
  border-radius: 50% 45% 48% 42%;
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 16px 18px 0 rgba(255, 250, 241, 0.42);
  transform: rotate(-5deg);
  color: var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-shape svg {
  width: 65%;
  height: 65%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-shape.has-photo {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-shape.has-photo {
  box-shadow: none;
  transform: none;
}

.product-card:hover .product-photo {
  transform: scale(1.035);
}

.product-card:nth-child(3n + 2) .product-shape {
  border-radius: 34% 50% 40% 48%;
  transform: rotate(6deg);
}

.product-card:nth-child(3n) .product-shape {
  border-radius: 50% 36% 50% 42%;
  transform: rotate(-2deg);
}

.product-card:hover .product-shape {
  box-shadow: 11px 14px 0 rgba(255, 250, 241, 0.55);
  transform: translateY(-5px) rotate(-2deg);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-badge.low {
  background: #ffe2d2;
  color: #9d321f;
}

.product-badge.sold {
  background: var(--ink);
  color: white;
}

.product-info {
  padding-top: 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: start;
}

.product-category {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-name {
  margin: 1px 0 0;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
}

.product-price {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 800;
}

.product-summary {
  grid-column: 1 / -1;
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.cart-item-art.has-photo {
  overflow: hidden;
  border-radius: 16px;
}

.cart-item-art.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.add-button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 43px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.add-button:hover:not(:disabled) {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.add-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.empty-results {
  padding: 70px 20px;
  text-align: center;
}

.empty-results > span {
  font-family: Georgia, serif;
  font-size: 54px;
  color: var(--orange);
}

.empty-results h3 {
  margin: 12px 0 5px;
  font-family: Georgia, serif;
  font-size: 28px;
}

.empty-results p {
  margin: 0 0 22px;
  color: var(--ink-soft);
}

.approach-section {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: #f4efe5;
}

.approach-art {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-right: 1px solid rgba(255,255,255,.14);
  background: #2f7c77;
}

.map-lines {
  position: absolute;
  inset: -16%;
  opacity: 0.46;
  background:
    radial-gradient(ellipse at 24% 43%, transparent 0 17%, #d8e9e0 17.2% 17.45%, transparent 17.7% 27%, #d8e9e0 27.2% 27.45%, transparent 27.7%),
    radial-gradient(ellipse at 82% 76%, transparent 0 13%, #d8e9e0 13.2% 13.5%, transparent 13.7% 25%, #d8e9e0 25.2% 25.5%, transparent 25.7%);
  transform: rotate(-11deg);
}

.map-pin {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 8px rgba(239,91,57,.16);
}

.pin-one { top: 32%; left: 36%; }
.pin-two { bottom: 29%; right: 24%; }

.story-postcard {
  position: absolute;
  z-index: 2;
  width: min(330px, 58%);
  min-height: 245px;
  top: 50%;
  left: 50%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 8px solid var(--white);
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 22px 60px rgba(18, 50, 61, 0.24);
  transform: translate(-50%, -50%) rotate(-7deg);
}

.story-postcard::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 58px;
  border: 2px dashed rgba(18, 50, 61, 0.48);
}

.story-postcard > span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-postcard > strong {
  max-width: 230px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.story-postcard-lines {
  width: 45%;
  height: 35px;
  border-top: 1px solid rgba(18, 50, 61, 0.4);
  border-bottom: 1px solid rgba(18, 50, 61, 0.4);
  background: linear-gradient(transparent 48%, rgba(18, 50, 61, 0.4) 49% 51%, transparent 52%);
}

.coordinates {
  position: absolute;
  left: 40px;
  bottom: 38px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.5;
}

.approach-copy {
  align-self: center;
  max-width: 620px;
  padding: 90px clamp(40px, 8vw, 130px);
}

.approach-copy .eyebrow {
  color: var(--yellow);
}

.approach-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0 36px;
  color: #c6d7d6;
  font-size: 17px;
  line-height: 1.75;
}

.approach-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.approach-stat > strong {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.approach-stat span {
  color: #c6d7d6;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.approach-stat b {
  color: white;
}

.site-footer {
  min-height: 220px;
  padding: 55px max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: #0d252d;
  color: #f4efe5;
  border-top: 1px solid rgba(255,255,255,.1);
}

.brand-footer {
  color: white;
}

.brand-footer .brand-place {
  color: #9fb6ba;
}

.site-footer p {
  margin: 12px 0 0;
  color: #9fa9a2;
  font-size: 12px;
}

.footer-meta {
  display: flex;
  gap: 25px;
  color: #b4beb7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dialog {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

dialog::backdrop {
  background: rgba(17, 26, 21, 0.58);
  backdrop-filter: blur(5px);
}

.drawer-dialog {
  width: min(510px, 100vw);
  height: 100dvh;
  margin: 0 0 0 auto;
}

.drawer-panel {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  box-shadow: -30px 0 80px rgba(0,0,0,.2);
}

.dialog-header {
  min-height: 112px;
  padding: 29px 32px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.dialog-header .eyebrow {
  margin-bottom: 7px;
}

.dialog-header h2 {
  font-size: 34px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.icon-button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.cart-body {
  overflow-y: auto;
  padding: 8px 32px 30px;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-art {
  --product-color: var(--sage);
  width: 86px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--product-color) 38%, var(--paper-deep));
  color: var(--ink);
}

.cart-item-art svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-item-copy h3 {
  margin: 4px 0 2px;
  font-family: Georgia, serif;
  font-size: 18px;
}

.cart-item-copy > span {
  color: var(--ink-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quantity-control {
  width: fit-content;
  margin-top: 13px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  min-width: 23px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.cart-item-end {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
}

.remove-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-empty {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-bag {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 42px;
}

.cart-empty h3 {
  max-width: 280px;
  margin: 20px 0 6px;
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.08;
}

.cart-empty p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 13px;
}

.cart-footer {
  padding: 25px 32px 30px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Georgia, serif;
  font-size: 23px;
}

.cart-footer p {
  margin: 6px 0 18px;
  color: var(--ink-soft);
  font-size: 11px;
}

.checkout-dialog {
  width: min(920px, calc(100vw - 34px));
  max-height: min(820px, calc(100dvh - 34px));
  margin: auto;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.checkout-panel {
  max-height: min(820px, calc(100dvh - 34px));
  overflow-y: auto;
}

.checkout-header {
  position: sticky;
  z-index: 2;
  top: 0;
  background: var(--white);
}

.checkout-loading {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--ink-soft);
}

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid var(--paper-deep);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.checkout-content {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  min-height: 510px;
}

.checkout-summary {
  padding: 35px 32px;
  background: var(--paper);
  border-right: 1px solid var(--line);
}

.summary-label {
  margin: 0 0 17px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.checkout-line span:first-child {
  color: var(--ink-soft);
}

.summary-totals {
  margin-top: 20px;
}

.summary-totals > div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.summary-totals .summary-total {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 22px;
}

.payment-form {
  padding: 30px 34px 34px;
}

.demo-payment {
  min-height: 250px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  border: 1px dashed rgba(63, 108, 96, .48);
  border-radius: var(--radius-md);
  background: #edf2e9;
}

.demo-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.demo-payment h3,
.payment-heading h3 {
  margin: 18px 0 5px;
  font-family: Georgia, serif;
  font-size: 27px;
}

.demo-payment p {
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

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

.payment-heading h3 {
  margin: 1px 0 0;
  font-size: 29px;
}

.payment-heading > span {
  padding: 7px 10px;
  border: 1px solid rgba(47, 124, 119, .2);
  border-radius: 999px;
  background: rgba(47, 124, 119, .07);
  color: var(--sage);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.payment-heading .payment-kicker {
  display: block;
  color: var(--orange-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.checkout-contact-block {
  margin-bottom: 22px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .42);
}

.checkout-block-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.checkout-block-heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.2;
}

.checkout-block-heading small {
  color: var(--ink-soft);
  font-size: 9px;
}

.checkout-card-heading {
  margin-bottom: 14px;
}

.clover-field-label {
  min-width: 0;
  display: block;
  margin-bottom: 8px;
}

.clover-field-label > span:first-child {
  display: block;
  margin: 0 0 6px 3px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.clover-field {
  width: 100%;
  height: 50px;
  min-height: 50px;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.clover-field:focus-within {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(63, 108, 96, .12);
}

.clover-field iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0 !important;
}

.customer-email-input {
  width: 100%;
  height: 48px;
  min-height: 48px;
  display: block;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: white;
  color: var(--ink);
  font-size: 14px;
}

.customer-email-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(63, 108, 96, .12);
}

.customer-email-input[readonly] {
  background: #fffdf8;
  color: var(--ink-soft);
}

.checkout-email-field {
  margin-bottom: 0;
}

.checkout-account-card {
  margin: 11px 0 0;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(47, 124, 119, .2);
  border-radius: 11px;
  background: #eaf3ef;
}

.checkout-account-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(47, 124, 119, .25);
  background: white;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
}

.checkout-account-card strong { display: block; font: 700 12px Georgia, serif; }
.checkout-account-card p { margin: 2px 0 0; overflow: hidden; color: var(--ink-soft); font-size: 9px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.checkout-account-card a {
  padding: 6px 8px;
  border: 1px solid rgba(18, 50, 61, .18);
  border-radius: 999px;
  color: var(--teal);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkout-account-card a:hover {
  border-color: var(--sage);
  background: white;
}

.payment-field-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.field-error {
  display: block;
  min-height: 15px;
  margin: 3px 3px 0;
  color: #a73520;
  font-size: 10px;
}

.billing-code-help {
  margin: -2px 2px 8px;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.45;
}

.payment-privacy {
  margin: 1px 0 15px;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.5;
}

.checkout-error {
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fee5dc;
  color: #8c2e1e;
  font-size: 12px;
}

.payment-button {
  margin-top: 20px;
  justify-content: space-between;
  padding-inline: 22px;
}

.success-dialog {
  width: min(470px, calc(100vw - 34px));
  margin: auto;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-panel {
  padding: 48px 42px 42px;
  text-align: center;
}

.success-mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  font-size: 35px;
}

.success-panel .eyebrow {
  margin-bottom: 10px;
}

.success-panel h2 {
  font-size: 42px;
}

.success-panel > p:not(.eyebrow) {
  margin: 18px auto;
  color: var(--ink-soft);
  font-size: 14px;
}

.confirmation-number {
  margin: 27px 0;
  padding: 17px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.confirmation-number span,
.confirmation-number strong {
  display: block;
}

.confirmation-number span {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.confirmation-number strong {
  font-family: Georgia, serif;
  font-size: 20px;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  max-width: min(380px, calc(100vw - 44px));
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 960px) {
  :root { --page: min(100% - 36px, 760px); }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav { display: none; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 72px 0 88px;
  }

  .hero-copy { max-width: 700px; }
  .hero-art { width: min(680px, calc(100% - 18px)); min-height: 560px; margin: 0 auto; }

  .assurance-strip {
    padding-inline: 18px;
  }

  .assurance-strip > div {
    padding-inline: 35px 18px;
  }

  .assurance-strip > div:first-child { padding-left: 26px; }
  .assurance-strip > div:first-child span { left: 8px; transform: none; }

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

  .approach-section { grid-template-columns: 1fr; }
  .approach-art { min-height: 450px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .approach-copy { max-width: none; }

  .checkout-content { grid-template-columns: 1fr; }
  .checkout-summary { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 660px) {
  :root { --page: calc(100vw - 28px); }

  .mode-banner { min-height: 40px; padding-inline: 12px; font-size: 9px; text-align: center; }
  .site-header { height: 80px; }
  .brand { gap: 8px; }
  .brand-name { max-width: 150px; font-size: 17px; line-height: 1; }
  .brand-place { display: none; }
  .brand-mark { width: 30px; height: 30px; }
  .cart-button { padding-left: 12px; font-size: 11px; }
  .cart-count { min-width: 24px; height: 24px; }
  .header-actions { gap: 2px; }
  .account-button { padding-inline: 8px; }
  .account-button span { display: none; }

  .hero { gap: 42px; padding: 55px 0 70px; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: start; flex-direction: column; gap: 15px; }
  .hero-note { max-width: none; }
  .hero-art { width: calc(100% - 4px); min-height: 370px; margin: 0 0 0 4px; }
  .hero-photo-wrap { inset: 0 0 30px 0; border-width: 7px; border-radius: 48% 48% 24px 24px; }
  .hero-photo { object-position: 45% center; }
  .hero-postcard { left: -5px; width: 155px; min-height: 118px; padding: 15px; }
  .hero-postcard strong { margin: 6px 0 8px; font-size: 25px; }
  .postcard-kicker, .postcard-mark { font-size: 6px; }
  .hero-seal { top: 8px; right: -6px; width: 78px; height: 78px; font-size: 6px; }
  .hero-seal svg { width: 33px; }

  .assurance-strip { grid-template-columns: 1fr; }
  .assurance-strip > div,
  .assurance-strip > div:first-child { min-height: 88px; padding: 18px 10px 18px 45px; border-right: 0; border-bottom: 1px solid var(--line); }
  .assurance-strip > div:last-child { border-bottom: 0; }
  .assurance-strip span,
  .assurance-strip > div:first-child span { top: 20px; left: 10px; }

  .shop-section { padding: 80px 0 90px; }
  .section-heading { align-items: start; flex-direction: column; }
  .section-heading h2, .approach-copy h2 { font-size: 45px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; padding: 11px 0; }
  .search-field { min-width: 0; }
  .category-list { width: 100%; }
  .product-grid { grid-template-columns: 1fr; row-gap: 40px; }
  .product-visual { aspect-ratio: 1 / .94; }

  .approach-art { min-height: 340px; }
  .story-postcard { width: 220px; min-height: 165px; padding: 18px; border-width: 6px; }
  .story-postcard::after { top: 16px; right: 16px; width: 35px; height: 42px; }
  .story-postcard > strong { font-size: 29px; }
  .coordinates { left: 20px; bottom: 18px; }
  .approach-copy { padding: 65px 24px 75px; }
  .approach-copy p:not(.eyebrow) { font-size: 15px; }

  .site-footer { align-items: start; flex-direction: column; padding-block: 45px; }
  .footer-meta { align-items: start; flex-direction: column; gap: 9px; }

  .drawer-dialog { width: 100vw; }
  .dialog-header { min-height: 96px; padding: 23px 20px; }
  .dialog-header h2 { font-size: 29px; }
  .cart-body, .cart-footer { padding-inline: 20px; }
  .cart-item { grid-template-columns: 70px 1fr auto; gap: 11px; }
  .cart-item-art { width: 70px; height: 82px; }
  .cart-item-copy h3 { font-size: 16px; }

  .checkout-dialog { width: 100vw; height: 100dvh; max-height: none; border-radius: 0; }
  .checkout-panel { max-height: 100dvh; }
  .checkout-summary, .payment-form { padding: 27px 20px; }
  .payment-heading { align-items: flex-start; }
  .payment-heading > span { white-space: normal; text-align: right; }
  .checkout-block-heading { align-items: flex-start; flex-direction: column; gap: 2px; }
  .checkout-account-card { grid-template-columns: auto minmax(0, 1fr); }
  .checkout-account-card a { grid-column: 2; justify-self: start; }
  .payment-field-row { grid-template-columns: 1fr 1fr; }
  .payment-field-row label:last-child { grid-column: 1 / -1; }
  .success-panel { padding-inline: 26px; }
}

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

.security-check {
  max-width: 100%;
  overflow: hidden;
}

.security-check:empty {
  display: none;
}

.security-check iframe {
  max-width: 100%;
}

.checkout-security-check {
  margin-top: 4px;
}
