:root {
  --ink: #1f1c18;
  --muted: #6f675c;
  --paper: #fbf7ef;
  --chalk: #f3eadc;
  --stone: #ded2c0;
  --olive: #384d37;
  --olive-2: #5d7353;
  --terracotta: #a55735;
  --cobalt: #245884;
  --citrus: #dca53a;
  --white: #ffffff;
  --line: rgba(31, 28, 24, 0.16);
  --shadow: 0 18px 50px rgba(31, 28, 24, 0.12);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.announcement {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-size: 0.78rem;
  padding: 9px 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 0 34px;
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 218px;
  max-width: 38vw;
  height: auto;
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
}

.brand small {
  display: block;
  max-width: 210px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.desktop-nav > a,
.nav-button {
  border: 0;
  background: transparent;
  padding: 26px 0;
}

.desktop-nav .active {
  color: var(--terracotta);
}

.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 28px;
  width: min(880px, 92vw);
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu a {
  display: block;
  padding: 7px 0;
  color: var(--ink);
  text-transform: none;
  font-size: 0.95rem;
}

.mega-kicker,
.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-feature img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.mega-feature p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
  text-transform: none;
}

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

.icon-button {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}

.cart-button {
  position: relative;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.68rem;
}

.menu-button {
  display: none;
}

.mobile-panel {
  position: fixed;
  inset: 111px 0 auto 0;
  z-index: 60;
  padding: 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 111px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero img,
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .media-fallback,
.page-hero.visual .media-fallback {
  display: none;
}

.hero-brand-bug {
  position: absolute;
  right: clamp(22px, 6vw, 86px);
  bottom: 34px;
  z-index: 2;
  width: 220px;
  opacity: 0.92;
}

.hero-brand-bug img {
  position: static;
  height: auto;
  object-fit: contain;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 28, 24, 0.78), rgba(31, 28, 24, 0.22) 54%, rgba(31, 28, 24, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: 72px clamp(22px, 7vw, 96px);
  color: var(--white);
}

.hero-copy .eyebrow {
  color: #f2d49b;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  line-height: 1.68;
}

.hero-copy p {
  max-width: 600px;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.quick-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.quick-add:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

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

.button.full {
  width: 100%;
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 74px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 50px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.intro-band p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.collection-tiles {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.collection-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.collection-tile.tall {
  grid-row: span 2;
}

.collection-tile img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 600ms ease, opacity 260ms ease;
}

.collection-tile:hover img {
  transform: scale(1.04);
  opacity: 0.68;
}

.collection-tile span,
.collection-tile strong {
  position: absolute;
  left: 24px;
  right: 24px;
  z-index: 1;
}

.collection-tile span {
  top: 24px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-tile strong {
  bottom: 24px;
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head a {
  color: var(--terracotta);
  font-weight: 700;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-image {
  position: relative;
  display: block;
  background: var(--chalk);
}

.product-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(251, 247, 239, 0.94);
  color: var(--ink);
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.image-logo-bug {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  border: 1px solid rgba(31, 28, 24, 0.14);
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.9);
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(31, 28, 24, 0.1);
}

.image-logo-bug img {
  position: static;
  width: 22px;
  height: 22px;
  object-fit: contain;
  aspect-ratio: auto;
}

.image-logo-bug span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.image-logo-bug-reverse {
  width: 226px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.96;
}

.image-logo-bug-reverse img {
  width: 100%;
  height: auto;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 18px;
}

.product-meta,
.product-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-meta {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.product-card h3 a:hover {
  color: var(--terracotta);
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.product-card-foot {
  margin-top: auto;
}

.quick-add {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.7rem;
}

.film-strip {
  width: min(1180px, calc(100% - 44px));
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: center;
  padding: 54px;
  background: #20352b;
  color: var(--white);
}

.film-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.slide.is-active {
  opacity: 1;
}

.slide img {
  height: 100%;
  object-fit: cover;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(31, 28, 24, 0.72);
  color: var(--white);
  padding: 8px 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.collection-hero,
.page-hero {
  display: grid;
  align-items: end;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.collection-hero img,
.collection-hero video,
.page-hero.visual > img,
.page-hero.visual > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
}

.collection-hero .media-fallback {
  display: none;
}

.collection-hero::after,
.page-hero.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 28, 24, 0.26);
}

.collection-hero > div,
.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  padding: 76px 0;
}

.collection-hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5.8rem);
}

.collection-hero p,
.page-hero p {
  max-width: 660px;
}

.page-hero.compact {
  display: block;
  min-height: 0;
  background: var(--chalk);
  color: var(--ink);
  padding: 78px max(22px, calc((100vw - 1180px) / 2)) 64px;
}

.page-hero.compact h1 {
  max-width: 930px;
}

.collection-toolbar {
  position: sticky;
  top: 79px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-buttons button,
.toolbar-fields input,
.toolbar-fields select,
.purchase-row select,
.contact-form input,
.contact-form select,
.contact-form textarea,
.checkout-form input,
.checkout-form textarea {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  padding: 0 12px;
}

.filter-buttons button {
  background: transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.filter-buttons button.active {
  background: var(--ink);
  color: var(--white);
}

.toolbar-fields {
  display: flex;
  gap: 10px;
}

.collection-results {
  padding-top: 46px;
}

.recipe-map {
  border-top: 1px solid var(--line);
}

.recipe-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.recipe-columns div,
.value-list div,
.strategy-grid div,
.contact-aside,
.checkout-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.recipe-columns p,
.value-list p,
.strategy-grid p,
.contact-aside p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 54px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 56px 0 20px;
}

.product-media {
  position: sticky;
  top: 112px;
  align-self: start;
}

.product-media .image-logo-bug {
  bottom: 64px;
}

.product-media > img,
.product-media > video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-media .media-fallback {
  display: none;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-badges span,
.product-quick-facts span {
  border: 1px solid var(--line);
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-info {
  padding-top: 22px;
}

.product-info h1 {
  font-size: clamp(2.4rem, 4.2vw, 5.2rem);
}

.lead {
  color: var(--muted);
  font-size: 1.14rem;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0;
}

.price-line strong {
  font-size: 1.5rem;
}

.price-line span {
  color: var(--muted);
  text-decoration: line-through;
}

.product-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.purchase-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 28px;
}

.accordions {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p,
details ul {
  color: var(--muted);
  margin-bottom: 0;
}

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

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card div {
  padding: 20px;
}

.blog-card p {
  color: var(--muted);
}

.article {
  width: min(880px, calc(100% - 44px));
  margin: 0 auto;
  padding: 70px 0 10px;
}

.article header {
  margin-bottom: 32px;
}

.article h1 {
  font-size: clamp(2.5rem, 5vw, 5.8rem);
}

.article-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-body {
  width: min(720px, 100%);
  margin: 34px auto 0;
  font-size: 1.05rem;
}

.lookbook-stage {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  margin: 70px auto;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: var(--ink);
}

.lookbook-slide img,
.lookbook-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-slide div {
  position: absolute;
  left: 34px;
  bottom: 34px;
  max-width: 560px;
  color: var(--white);
}

.lookbook-slide span {
  position: static;
  background: transparent;
  padding: 0;
}

.split-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list span {
  color: var(--terracotta);
  font-weight: 800;
}

.contact-layout,
.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.contact-form,
.checkout-form {
  display: grid;
  gap: 16px;
}

.contact-form label,
.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form textarea,
.checkout-form textarea {
  min-height: auto;
  padding: 12px;
  resize: vertical;
}

.form-status,
.checkout-status {
  margin: 0;
  color: var(--olive);
  font-weight: 700;
}

.faq-list {
  width: min(860px, calc(100% - 44px));
}

.checkout-page {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 70px 0;
}

.checkout-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkout-summary {
  position: sticky;
  top: 112px;
}

.checkout-line,
.cart-line,
.search-result {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-line img,
.cart-line img,
.search-result img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}

.checkout-line p,
.cart-line p,
.search-result p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0;
  font-size: 1.06rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(31, 28, 24, 0.42);
}

.cart-shell {
  margin-left: auto;
  width: min(430px, 100%);
  min-height: 100%;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.cart-head,
.cart-foot {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head h2 {
  font-size: 1.8rem;
}

.cart-items {
  padding: 0 20px;
  flex: 1;
  overflow: auto;
}

.cart-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-foot p,
.checkout-summary p {
  color: var(--muted);
  font-size: 0.86rem;
}

.remove-line {
  border: 0;
  background: transparent;
  color: var(--terracotta);
  padding: 0;
  font-size: 0.74rem;
  font-weight: 800;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(31, 28, 24, 0.58);
  padding: 26px;
}

.search-panel {
  width: min(720px, 100%);
  margin: 58px auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.panel-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.search-panel label {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.search-panel input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: var(--white);
}

.search-results {
  margin-top: 18px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.prose {
  width: min(860px, calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.prose h2,
.prose h3 {
  color: var(--ink);
}

.prose a {
  color: var(--cobalt);
  text-decoration: underline;
}

.site-footer {
  margin-top: 30px;
  background: #25221d;
  color: var(--paper);
  padding: 54px max(22px, calc((100vw - 1180px) / 2));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand .brand-mark {
  border-color: var(--paper);
  color: var(--paper);
}

.footer-brand .brand-logo {
  width: 240px;
  max-width: 100%;
}

.footer-brand small,
.site-footer p {
  color: rgba(251, 247, 239, 0.66);
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 800;
}

.site-footer a {
  display: block;
  color: rgba(251, 247, 239, 0.82);
  margin: 9px 0;
}

[hidden] {
  display: none !important;
}

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: 680px;
  }

  .intro-band,
  .film-strip,
  .product-detail,
  .split-text,
  .contact-layout,
  .checkout-page {
    grid-template-columns: 1fr;
  }

  .product-media,
  .checkout-summary {
    position: static;
  }

  .product-grid,
  .journal-grid,
  .journal-grid.large,
  .recipe-columns,
  .strategy-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-toolbar {
    position: static;
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-fields {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .announcement {
    font-size: 0.7rem;
  }

  .site-header {
    min-height: 70px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 140px;
    max-width: 42vw;
  }

  .hero-brand-bug,
  .collection-hero .image-logo-bug,
  .page-hero.visual .image-logo-bug {
    display: none;
  }

  .icon-button {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 0.7rem;
  }

  .mobile-panel {
    inset: 101px 0 auto 0;
  }

  .hero {
    min-height: 640px;
  }

  .hero-copy {
    padding: 46px 22px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 54px 0;
  }

  .collection-tiles,
  .product-grid,
  .journal-grid,
  .journal-grid.large,
  .recipe-columns,
  .strategy-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .collection-tile.tall {
    grid-row: auto;
  }

  .collection-tile strong {
    font-size: 1.7rem;
  }

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

  .film-strip {
    width: min(100% - 28px, 1180px);
    padding: 24px;
  }

  .collection-hero,
  .page-hero.visual {
    min-height: 440px;
  }

  .page-hero.compact {
    padding: 56px 18px 48px;
  }

  .product-detail,
  .checkout-page {
    width: min(100% - 28px, 1180px);
    gap: 26px;
  }

  .purchase-row {
    grid-template-columns: 1fr;
  }

  .lookbook-stage {
    width: min(100% - 28px, 1180px);
    aspect-ratio: 4 / 5;
  }

  .lookbook-slide div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
