:root {
  --ivory: #fbf7f2;
  --cream: #f3e8df;
  --blush: #e8c9bc;
  --rose: #c17b6f;
  --wine: #6b2d3c;
  --espresso: #1c120e;
  --ink: #2a1810;
  --muted: #7a6a62;
  --line: rgba(28, 18, 14, 0.12);
  --champagne: #c9b496;
  --white: #fffcfa;
  --header-h: 78px;
  --announce-h: 36px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 28px 60px rgba(28, 18, 14, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.drawer-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.4em;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--blush);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s var(--ease);
  background: none;
  color: inherit;
}

.btn-dark {
  background: var(--espresso);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--wine);
}

.btn-light {
  background: var(--ivory);
  color: var(--espresso);
}

.btn-light:hover {
  background: var(--cream);
}

.btn-ghost {
  color: var(--ivory);
  border-color: rgba(255, 252, 250, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 252, 250, 0.12);
}

.btn-line {
  border-color: var(--line);
  color: var(--ink);
}

.btn-line:hover {
  border-color: var(--espresso);
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.announce {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: var(--announce-h);
  padding: 0 20px;
  background: var(--wine);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announce a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 242, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--wine);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo-tag {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.primary-nav .nav-list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav a.is-active,
.primary-nav a:hover {
  color: var(--wine);
}

.nav-mobile-meta {
  display: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.icon-btn .count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--wine);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--espresso);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--ivory);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 18, 14, 0.55) 0%, rgba(28, 18, 14, 0.12) 58%, rgba(28, 18, 14, 0.28) 100%);
}

.hero-copy,
.hero-meta {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
  padding: clamp(48px, 10vh, 120px) 8vw 80px;
}

.hero-lead {
  max-width: 34em;
  font-size: 1.08rem;
  color: rgba(255, 252, 250, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  position: absolute;
  right: 8vw;
  bottom: 36px;
  display: flex;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  background: var(--espresso);
  color: var(--blush);
  border-top: 1px solid rgba(255, 252, 250, 0.08);
}

.ticker-track {
  display: flex;
  gap: 48px;
  padding: 16px 0;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ticker-track span::before {
  content: "·";
  margin-right: 48px;
  color: var(--rose);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}

.section-note {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.cat-card {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--cream);
  cursor: pointer;
  overflow: hidden;
  min-height: 360px;
  text-align: left;
  color: var(--ivory);
}

.cat-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  transition: 0.8s var(--ease);
  object-position: center 18%;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(28, 18, 14, 0.72));
}

.cat-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 1;
}

.cat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
}

.cat-card em {
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 252, 250, 0.78);
}

.product-rail,
.product-grid {
  display: grid;
  gap: 22px;
}

.product-rail {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  background: transparent;
}

.product-media {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--cream);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.45s var(--ease);
}

.product-media .img-b {
  opacity: 0;
}

.product-media:hover .img-b {
  opacity: 1;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  background: var(--wine);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card-copy {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 0 0;
}

.product-card-copy button {
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.card-cat {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card-copy h3 {
  margin: 4px 0 2px;
  font-size: 1.2rem;
}

.product-card-copy p {
  margin: 0;
  font-size: 14px;
}

.product-card-copy s {
  color: var(--muted);
  margin-left: 8px;
}

.wish-mini {
  font-size: 18px;
  color: var(--rose);
}

.wish-mini.is-on {
  color: var(--wine);
}

.season {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  color: var(--ivory);
  overflow: hidden;
}

.season-media {
  position: absolute;
  inset: 0;
}

.season-media img {
  width: 100%;
  height: 100%;
}

.season::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 14, 0.38);
}

.season-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 80px 24px;
  text-align: center;
}

.shop-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-row button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-row button.is-active,
.filter-row button:hover {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}

.filter-extra {
  display: flex;
  gap: 12px;
}

.filter-extra label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-extra select,
.contact-form select,
.checkout select,
.contact-form input,
.contact-form textarea,
.checkout input,
.news-form input,
#ts-search-input {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  padding: 12px;
  min-height: 140px;
  resize: vertical;
}

.product-card.is-hidden,
.shop-empty[hidden] {
  display: none;
}

.shop-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

.look-masonry {
  columns: 3;
  column-gap: 14px;
}

.look-item {
  break-inside: avoid;
  margin: 0 0 14px;
}

.look-trigger {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--cream);
  cursor: pointer;
  color: var(--ivory);
}

.look-trigger img {
  width: 100%;
}

.look-trigger figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(28, 18, 14, 0.72));
  text-align: left;
}

.look-trigger strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.look-trigger span {
  font-size: 13px;
  opacity: 0.85;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
}

.about-copy blockquote {
  margin: 28px 0;
  padding-left: 20px;
  border-left: 2px solid var(--blush);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--ink);
}

.about-frames {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.frame-tall { grid-row: span 2; }
.frame-wide { grid-column: 1 / -1; }

.about-frames img {
  width: 100%;
  height: 100%;
  min-height: 180px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  background: var(--espresso);
  color: var(--ivory);
  padding: clamp(36px, 5vw, 64px);
}

.contact-aside .eyebrow {
  color: var(--blush);
}

.contact-aside p {
  color: rgba(255, 252, 250, 0.72);
}

.contact-facts {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.contact-facts span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 4px;
}

.contact-form {
  background: var(--ivory);
  color: var(--ink);
  padding: 32px;
}

.contact-form label,
.checkout label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-status {
  min-height: 1.4em;
  font-size: 14px;
  color: var(--wine);
}

.site-footer {
  background: var(--cream);
  padding-bottom: 24px;
}

.footer-newsletter {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  margin-bottom: 48px;
}

.footer-news-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.news-form {
  display: flex;
  gap: 8px;
}

.news-form input {
  flex: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
}

.footer-brand p {
  color: var(--muted);
  max-width: 32em;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col h4 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.overlay[hidden],
.drawer[hidden],
.product-modal[hidden],
.checkout[hidden] {
  display: none !important;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 18, 14, 0.45);
  z-index: 60;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(420px, 100%);
  height: 100%;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h3 {
  margin: 0;
  font-size: 1.5rem;
}

.drawer-list {
  flex: 1;
  overflow: auto;
  padding: 16px 20px 24px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-item img {
  width: 72px;
  height: 90px;
}

.drawer-item h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.drawer-item p,
.empty-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
}

.cart-foot {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cart-note {
  color: var(--muted);
  font-size: 13px;
}

#ts-search-input {
  margin: 0 20px 8px;
  width: calc(100% - 40px);
}

.product-modal,
.checkout {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(28, 18, 14, 0.55);
  overflow: auto;
  padding: 24px;
}

.product-shell,
.checkout-card {
  width: min(1100px, 100%);
  margin: 24px auto;
  background: var(--ivory);
  position: relative;
}

.product-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.product-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  font-size: 32px;
  cursor: pointer;
}

.product-gallery {
  padding: 24px;
  background: var(--cream);
}

.gallery-main {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  background: var(--white);
}

.gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.zoom-lens {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 252, 250, 0.8);
  pointer-events: none;
  background-repeat: no-repeat;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.gallery-thumbs button {
  width: 72px;
  height: 90px;
  padding: 0;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
}

.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  border-color: var(--espresso);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
}

.zoom-hint {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  padding: 48px 40px 40px;
}

.price-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 8px 0 16px;
  font-size: 1.2rem;
}

.price-row s {
  color: var(--muted);
}

.option-block {
  margin: 18px 0;
}

.option-block span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.swatches,
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.swatch.is-on {
  outline: 2px solid var(--espresso);
  outline-offset: 3px;
}

.size-pills button {
  min-width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
}

.size-pills button.is-on {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}

.product-actions {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}

.product-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.product-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  font-size: 14px;
}

.product-meta dt {
  color: var(--muted);
  font-weight: 400;
}

.checkout-card {
  width: min(640px, 100%);
  padding: 48px 36px 36px;
}

.checkout-summary {
  background: var(--cream);
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 14px;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--espresso);
  color: var(--ivory);
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: 0.3s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}

.page-content {
  padding: 80px 0 120px;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

html.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .cat-grid,
  .product-rail,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .look-masonry {
    columns: 2;
  }

  .about-grid,
  .contact-shell,
  .footer-news-inner,
  .footer-grid,
  .product-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .announce p {
    display: none;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: calc(var(--announce-h) + var(--header-h)) 0 0 auto;
    width: min(320px, 86vw);
    background: var(--ivory);
    padding: 24px;
    transform: translateX(100%);
    transition: 0.35s var(--ease);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    transform: none;
  }

  .primary-nav .nav-list {
    flex-direction: column;
    gap: 16px;
  }

  .nav-mobile-meta {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 14px;
  }

  .hero,
  .season {
    min-height: 78vh;
  }

  .hero-copy {
    padding: 64px 24px 100px;
  }

  .hero-meta {
    left: 24px;
    right: auto;
    flex-direction: column;
    gap: 6px;
  }

  .cat-grid,
  .product-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head,
  .shop-tools,
  .form-row,
  .footer-bar,
  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .look-masonry {
    columns: 1;
  }

  .contact-shell,
  .contact-form,
  .product-info,
  .checkout-card {
    padding: 24px;
  }

  .zoom-hint {
    display: none;
  }
}

@media (max-width: 520px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.6rem;
  }
}
