:root {
  --forest: #14281d;
  --moss: #1f3d2b;
  --cream: #f3eee6;
  --ivory: #faf7f2;
  --rust: #c24e1d;
  --rust-deep: #9a3b14;
  --ink: #101410;
  --sage: #8ba888;
  --muted: #6b7268;
  --line: rgba(16, 20, 16, 0.1);
  --line-light: rgba(250, 247, 242, 0.16);
  --white: #fffdf9;
  --header-h: 78px;
  --ticker-h: 36px;
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 22px;
  --shadow: 0 24px 50px rgba(20, 40, 29, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  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;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.eyebrow,
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rust);
  margin: 0 0 0.7em;
}

.eyebrow-light {
  color: #f0c3ad;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2,
.runway-head h2,
.hero-dock h1,
.manifesto h2,
.about-copy h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
}

.section-note {
  max-width: 280px;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.text-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--rust);
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-rust {
  background: var(--rust);
  color: var(--white);
}

.btn-rust:hover {
  background: var(--rust-deep);
}

.btn-dark {
  background: var(--forest);
  color: var(--ivory);
}

.btn-ghost,
.btn-line {
  background: transparent;
  border-color: currentColor;
}

.btn-ghost {
  color: var(--ivory);
}

.btn-block {
  width: 100%;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.icon-btn .count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--rust);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
}

.ticker {
  height: var(--ticker-h);
  background: var(--forest);
  color: #eadfd3;
  overflow: hidden;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 28s linear infinite;
  padding: 10px 0;
}

.ticker-track span::before {
  content: "●";
  color: var(--rust);
  margin-right: 16px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(243, 238, 230, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.96);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.nav-left,
.nav-right {
  display: none;
}

.nav-list {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-list a {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-list a.is-active,
.nav-list a:hover {
  color: var(--rust);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}

.logo-mark {
  width: 38px;
  height: 38px;
  color: var(--forest);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
}

.nav-mobile-meta {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 6px;
  align-content: center;
  justify-items: center;
  cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.primary-nav {
  display: none;
}

body.nav-open .primary-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: calc(var(--ticker-h) + var(--header-h)) 0 0;
  background: var(--forest);
  color: var(--ivory);
  padding: 36px 28px;
  z-index: 50;
  gap: 28px;
}

body.nav-open .primary-nav .nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.4rem;
}

body.nav-open .nav-mobile-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--sage);
}

.hero {
  padding: 18px 16px 0;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  min-height: min(78vh, 820px);
}

.hero-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #d9d2c6;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-a {
  min-height: 520px;
}

.hero-stack {
  display: grid;
  grid-template-rows: 1.2fr 0.8fr;
  gap: 12px;
}

.hero-outline {
  position: absolute;
  left: 4%;
  bottom: 6%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(250, 247, 242, 0.88);
  pointer-events: none;
}

.hero-dock {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 28px;
  align-items: end;
  padding: 28px 8px 8px;
}

.hero-dock h1 {
  margin: 0 0 10px;
}

.hero-lead {
  max-width: 460px;
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-actions .btn-ghost {
  color: var(--ink);
  border-color: var(--ink);
}

.hero-stats {
  display: flex;
  gap: 22px;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-stats span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee {
  margin: 28px 0 8px;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: var(--ivory);
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 22s linear infinite;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: " / ";
  color: var(--rust);
}

.runway {
  padding: 64px 0 20px;
}

.runway-head {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.runway-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 20px 28px;
  scrollbar-width: thin;
}

.runway-card {
  flex: 0 0 min(78vw, 280px);
  scroll-snap-align: start;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.runway-card img {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.runway-meta em,
.runway-meta small {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
}

.runway-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 4px 0;
}

.drops,
.shop,
.lookbook,
.about {
  padding: 72px 0;
}

.drop-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.drop-card,
.product-card {
  background: var(--ivory);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.drop-card.is-lead {
  grid-column: span 2;
  grid-row: span 2;
}

.product-media {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #ddd6ca;
  cursor: pointer;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}

.drop-card.is-lead .product-media img {
  height: 100%;
  min-height: 520px;
}

.product-media .img-b {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-media:hover .img-a {
  transform: scale(1.04);
}

.product-media:hover .img-b {
  opacity: 1;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--rust);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 99px;
}

.drop-copy,
.product-card-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  padding: 14px 16px 16px;
  align-items: start;
}

.drop-copy span,
.card-cat {
  grid-column: 1;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.drop-copy button,
.product-card-copy button:not(.wish-mini) {
  grid-column: 1;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.drop-copy h3,
.product-card-copy h3 {
  font-size: 1.05rem;
  margin: 0 0 4px;
}

.drop-copy p,
.product-card-copy p {
  margin: 0;
  font-weight: 700;
}

.product-card-copy s {
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}

.wish-mini {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
}

.wish-mini.is-on {
  color: var(--rust);
  border-color: var(--rust);
}

.manifesto {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
}

.manifesto-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
}

.manifesto h2 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  margin-bottom: 16px;
}

.manifesto p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: #efe6db;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: sticky;
  top: calc(var(--header-h) + 8px);
  z-index: 8;
  background: rgba(243, 238, 230, 0.94);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-row button {
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: 99px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
}

.filter-row button.is-active {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}

.filter-extra {
  display: flex;
  gap: 10px;
}

.filter-extra label {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-extra select,
.contact-form input,
.contact-form select,
.contact-form textarea,
.checkout input,
.checkout select,
.news-form input,
.drawer input {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  color: inherit;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card.is-hidden {
  display: none;
}

.shop-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.mosaic-wide {
  grid-column: span 2;
}

.mosaic-tall {
  grid-row: span 2;
}

.mosaic-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #d9d2c6;
}

.mosaic-cell img,
.look-trigger {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.mosaic-cell img {
  object-fit: cover;
}

.mosaic-cell figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(16, 20, 16, 0.78));
}

.mosaic-cell em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.mosaic-cell .text-link {
  color: #f0c3ad;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.about-copy p {
  color: #3d443d;
}

.about-copy blockquote {
  margin: 24px 0;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--rust);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
}

.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.about-stats span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-collage {
  position: relative;
  min-height: 560px;
}

.about-main,
.about-sub {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.about-main {
  width: 72%;
  margin-left: auto;
}

.about-main img {
  height: 520px;
  width: 100%;
}

.about-sub {
  position: absolute;
  width: 42%;
  border: 6px solid var(--cream);
}

.about-sub img {
  height: 220px;
  width: 100%;
}

.about-sub:not(.about-sub-b) {
  left: 0;
  top: 40px;
}

.about-sub-b {
  left: 8%;
  bottom: 0;
}

.contact {
  padding: 0 0 80px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  min-height: 620px;
}

.contact-panel {
  background: var(--forest);
  color: var(--ivory);
  padding: 48px 40px;
}

.contact-panel p {
  color: #d7e0d6;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}

.contact-form {
  background: var(--ivory);
  padding: 48px 40px;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label,
.checkout label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  min-height: 1.4em;
  color: var(--rust);
  font-weight: 600;
}

.site-footer {
  background: var(--ink);
  color: #d8ddd6;
  padding: 48px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 238, 230, 0.18);
  line-height: 0.85;
  margin-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  color: var(--ivory);
  justify-content: flex-start;
  margin-bottom: 12px;
}

.footer-logo .logo-mark {
  color: var(--ivory);
}

.footer-col h4 {
  color: var(--ivory);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--ivory);
}

.news-form {
  display: flex;
  gap: 8px;
  margin: 18px 0;
}

.news-form input {
  flex: 1;
  background: #1c221d;
  color: var(--ivory);
  border-color: #334138;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  font-size: 0.85rem;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 16, 0.46);
  z-index: 60;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--ivory);
  z-index: 70;
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.drawer-list {
  overflow: auto;
  flex: 1;
  display: grid;
  gap: 12px;
  align-content: start;
}

.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}

.drawer-item img {
  width: 72px;
  height: 90px;
  border-radius: 10px;
}

.drawer-item h4 {
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.cart-foot {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.cart-note,
.empty-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-modal,
.checkout {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-shell,
.checkout-card {
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--ivory);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.product-close {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ivory);
  cursor: pointer;
  font-size: 1.4rem;
}

.product-gallery {
  padding: 22px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd6ca;
  height: min(62vh, 620px);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-lens {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid #fff;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.gallery-thumbs button {
  width: 64px;
  height: 80px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}

.gallery-thumbs button.is-active {
  border-color: var(--rust);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
}

.zoom-hint {
  font-size: 0.78rem;
  color: var(--muted);
}

.product-info {
  padding: 36px 32px 32px 8px;
}

.price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.price-row s {
  color: var(--muted);
  font-size: 1rem;
}

.option-block {
  margin: 16px 0;
}

.option-block span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.swatches,
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
}

.swatch.is-on {
  box-shadow: 0 0 0 2px var(--forest);
}

.size-pills button {
  min-width: 42px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.size-pills button.is-on {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}

.product-actions {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.product-meta {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.product-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.product-meta dt {
  color: var(--muted);
}

.checkout-card {
  width: min(560px, 100%);
  padding: 36px 28px;
  position: relative;
}

.checkout-summary {
  background: var(--cream);
  border-radius: 14px;
  padding: 14px;
  margin: 8px 0 16px;
  display: grid;
  gap: 6px;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 45;
  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(--forest);
  color: var(--ivory);
  padding: 12px 18px;
  border-radius: 99px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s var(--ease);
  z-index: 90;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.error-page,
.page-content {
  min-height: 50vh;
  padding: 80px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible,
.has-js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 981px) {
  .nav-left,
  .nav-right {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .product-grid,
  .drop-board {
    grid-template-columns: repeat(3, 1fr);
  }

  .drop-card.is-lead {
    grid-column: span 3;
    grid-row: auto;
  }

  .drop-card.is-lead .product-media img {
    min-height: 380px;
    height: 420px;
  }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-stage,
  .hero-dock,
  .about-layout,
  .contact-split,
  .product-shell,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 0;
  }

  .hero-frame-a {
    min-height: 420px;
  }

  .hero-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px;
  }

  .hero-outline {
    font-size: 18vw;
    bottom: 12px;
  }

  .hero-dock {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-head,
  .runway-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-collage {
    min-height: 420px;
  }

  .about-main img {
    height: 360px;
  }

  .product-info {
    padding: 20px;
  }

  .gallery-main {
    height: 420px;
  }
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 28px);
  }

  .product-grid,
  .drop-board {
    grid-template-columns: 1fr 1fr;
  }

  .drop-card.is-lead {
    grid-column: span 2;
  }

  .drop-card.is-lead .product-media img,
  .product-media img {
    height: 240px;
    min-height: 0;
  }

  .mosaic,
  .mosaic-wide,
  .mosaic-tall {
    grid-column: span 1;
    grid-row: auto;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .filter-extra,
  .news-form,
  .product-actions,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-between;
  }

  .about-sub {
    width: 48%;
  }

  .contact-panel,
  .contact-form {
    padding: 28px 22px;
  }
}
