:root {
  color-scheme: light;
  --forest: #263b31;
  --forest-deep: #192920;
  --sage: #9b9d78;
  --sage-soft: #dfe0cf;
  --mauve: #be73ab;
  --mauve-soft: #f1dfec;
  --clay: #bd6748;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --ink: #26312b;
  --muted: #6d746f;
  --line: rgba(38, 59, 49, 0.16);
  --shadow: 0 20px 60px rgba(31, 51, 41, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0 20%, rgba(190, 115, 171, 0.08), transparent 28rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.cart-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

a {
  color: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 8px 20px;
  background: var(--forest);
  color: #f8f4e9;
  text-align: center;
}

.announcement p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  width: min(1320px, calc(100% - 48px));
  min-height: 98px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 20;
}

.brand {
  justify-self: start;
}

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

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

.site-nav a,
.footer-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--mauve);
  transition: right 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  right: 0;
}

.cart-trigger {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 7px 8px 7px 16px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cart-trigger:hover {
  background: var(--forest);
  color: white;
  transform: translateY(-1px);
}

.cart-trigger svg,
.search svg,
.icon-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

main,
.site-footer {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: stretch;
  gap: 28px;
  padding: 24px 0 48px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px clamp(0px, 3vw, 46px) 48px 5%;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mauve);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.catalog-intro h2,
.native-story h2,
.contact-card h2,
.cart-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 680px;
  color: var(--forest-deep);
  font-size: clamp(4.2rem, 6.5vw, 7rem);
  line-height: 0.83;
}

.hero h1 em {
  color: var(--mauve);
  font-weight: 500;
}

.hero-lede {
  max-width: 570px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 12px 28px rgba(38, 59, 49, 0.2);
}

.btn-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 16px 34px rgba(38, 59, 49, 0.26);
}

.btn:disabled {
  opacity: 0.42;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-light {
  flex: 0 0 auto;
  background: var(--paper);
  color: var(--forest);
}

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

.text-link span {
  color: var(--mauve);
  font-size: 1rem;
}

.hero-visual {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 120px 4px;
  background: var(--sage-soft);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(25, 41, 32, 0.22));
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.95) brightness(1.06);
}

.hero-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(260px, calc(100% - 48px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 12px 34px rgba(24, 38, 30, 0.18);
  backdrop-filter: blur(12px);
}

.hero-note p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
}

.note-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mauve-soft);
  color: var(--mauve);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 130px;
  border-block: 1px solid var(--line);
}

.values article {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 8%;
  border-right: 1px solid var(--line);
}

.values article:last-child {
  border-right: 0;
}

.values article > span {
  color: var(--mauve);
  font-family: var(--serif);
  font-size: 2.6rem;
  font-style: italic;
}

.values strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.values p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.catalog {
  scroll-margin-top: 24px;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.catalog-intro h2,
.native-story h2,
.contact-card h2 {
  color: var(--forest-deep);
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  line-height: 0.94;
}

.catalog-copy {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  padding: 20px 0;
  border-block: 1px solid var(--line);
}

.search {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
}

.search input::placeholder {
  color: #959b96;
}

.sort {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 600;
}

.sort select {
  min-width: 190px;
  padding: 10px 34px 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.75rem;
}

.chip-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  padding: 22px 0 14px;
}

.chip {
  min-height: 37px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}

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

.catalog-status {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 0.7rem;
}

.catalog-status p {
  margin: 0;
}

.catalog-status p:first-child {
  color: var(--ink);
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 22px;
}

.product-card {
  min-width: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-media {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #eee7da;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--forest);
  box-shadow: 0 5px 20px rgba(38, 59, 49, 0.08);
  backdrop-filter: blur(8px);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info {
  padding: 18px 3px 0;
}

.product-category {
  margin: 0 0 7px;
  color: var(--mauve);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.product-name {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.3vw, 2.05rem);
  font-weight: 600;
  line-height: 1;
}

.product-price {
  flex: 0 0 auto;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
}

.scientific-name {
  margin: 6px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
}

.product-size {
  margin: 9px 0 0;
  color: #7d837e;
  font-size: 0.67rem;
  line-height: 1.45;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.68rem;
}

.stock::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6d9b74;
}

.stock.low::before {
  background: var(--clay);
}

.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0 8px 10px;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
}

.add-btn span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 1.05rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.add-btn:hover span {
  background: var(--mauve);
  transform: rotate(90deg);
}

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

.empty-state {
  margin: 40px 0 0;
  padding: 70px 24px;
  border: 1px dashed var(--line);
  text-align: center;
}

.empty-state > span {
  color: var(--mauve);
  font-family: var(--serif);
  font-size: 3rem;
}

.empty-state h3 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
}

.empty-state p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.native-story {
  min-height: 600px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 150px 0 32px;
  overflow: hidden;
  background: var(--sage-soft);
}

.story-art {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--mauve);
  color: white;
}

.story-art::before,
.story-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.story-art::before {
  width: 420px;
  height: 420px;
}

.story-art::after {
  width: 310px;
  height: 310px;
}

.story-art p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6rem);
  line-height: 0.78;
  text-align: center;
}

.story-art em {
  color: var(--forest-deep);
}

.sun {
  position: absolute;
  top: 11%;
  right: 12%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #f1c56e;
}

.leaf {
  position: absolute;
  z-index: 1;
  font-family: var(--serif);
  font-size: 13rem;
  line-height: 1;
  opacity: 0.35;
}

.leaf-one {
  left: -20px;
  bottom: -32px;
  transform: rotate(-20deg);
}

.leaf-two {
  top: 10px;
  right: -35px;
  transform: rotate(145deg);
}

.story-copy {
  align-self: center;
  padding: clamp(48px, 8vw, 110px);
}

.story-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0;
  color: #59655e;
  font-size: 0.93rem;
  line-height: 1.85;
}

.text-link.dark {
  color: var(--forest-deep);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin: 32px 0 110px;
  padding: clamp(42px, 7vw, 86px);
  border-radius: 4px 70px 4px 4px;
  background: var(--forest);
  color: white;
}

.contact-card h2 {
  max-width: 760px;
  color: white;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.contact-card > div > p:last-child {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 0 55px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 160px;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
  text-align: center;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 24px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(22, 35, 28, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(3px);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(470px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 28px;
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(22, 35, 28, 0.22);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.2, 0.75, 0.2, 1), visibility 0.32s;
}

.cart.open {
  transform: translateX(0);
  visibility: visible;
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-head .eyebrow {
  margin-bottom: 7px;
}

.cart-head h2 {
  font-size: 2.6rem;
  line-height: 1;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

.cart-subtitle {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.cart-items {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  margin: 20px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cart-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 280px;
  padding: 30px;
  color: var(--muted);
  text-align: center;
}

.cart-empty span {
  font-family: var(--serif);
  font-size: 3.2rem;
}

.cart-empty p {
  max-width: 240px;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 13px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 76px;
  height: 76px;
  border-radius: 3px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1;
}

.cart-item-price {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 28px 26px 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.qty-control button {
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

.qty-control button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-control strong {
  font-size: 0.7rem;
  text-align: center;
}

.cart-summary {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.8rem;
}

.summary-row strong {
  font-family: var(--serif);
  font-size: 1.8rem;
}

.cart-summary > p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.cart-summary .btn {
  width: 100%;
}

.text-button {
  display: block;
  margin: 14px auto 0;
  padding: 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 600;
}

.noscript {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--forest);
  color: white;
  font-size: 0.75rem;
}

:focus-visible {
  outline: 3px solid rgba(190, 115, 171, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 60px 4% 28px;
  }

  .hero h1 {
    max-width: 820px;
    font-size: clamp(4.4rem, 11vw, 7rem);
  }

  .hero-visual {
    min-height: 580px;
  }

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

  .native-story {
    grid-template-columns: 1fr;
  }

  .story-art {
    min-height: 470px;
  }
}

@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 30px, 1320px);
  }

  .site-header {
    min-height: 80px;
    gap: 12px;
  }

  .brand img {
    width: 140px;
  }

  .cart-trigger {
    min-height: 42px;
    padding-left: 12px;
  }

  .cart-trigger > span:not(.cart-count) {
    display: none;
  }

  .hero {
    gap: 8px;
    padding-top: 8px;
  }

  .hero-copy {
    padding: 45px 5% 30px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.5rem);
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 0.92rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    min-height: 420px;
    border-radius: 3px 3px 70px 3px;
  }

  .hero-visual > img {
    object-position: 54% center;
  }

  .values {
    grid-template-columns: 1fr;
    margin-bottom: 90px;
  }

  .values article {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values article:last-child {
    border-bottom: 0;
  }

  .catalog-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-intro h2,
  .native-story h2 {
    font-size: clamp(3.1rem, 14vw, 4.5rem);
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .sort {
    justify-content: space-between;
  }

  .catalog-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-name {
    font-size: 2rem;
  }

  .native-story {
    margin-top: 100px;
  }

  .story-art {
    min-height: 390px;
  }

  .story-art::before {
    width: 310px;
    height: 310px;
  }

  .story-art::after {
    width: 230px;
    height: 230px;
  }

  .story-copy {
    padding: 50px 28px 60px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 70px;
    padding: 46px 28px;
    border-radius: 3px 50px 3px 3px;
  }

  .contact-card h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-links {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .announcement p {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
  }

  .sort {
    align-items: flex-start;
    flex-direction: column;
  }

  .sort select {
    width: 100%;
  }

  .cart {
    padding: 22px 18px;
  }

  .cart-item {
    grid-template-columns: 66px 1fr;
  }

  .cart-item img {
    width: 66px;
    height: 66px;
  }

  .qty-control {
    grid-column: 2;
    justify-self: start;
  }
}

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