:root {
  --bg: #f5f1ea;
  --surface: #fbf8f3;
  --surface-muted: #efebe4;
  --text: #1d2b33;
  --muted: #7d7771;
  --line: rgba(29, 43, 51, 0.14);
  --sand: #d8b286;
  --sand-deep: #b98d60;
  --forest: #173137;
  --forest-deep: #0e2327;
  --button: #4f5054;
  --button-text: #f7f4ee;
  --shadow-soft: 0 30px 80px rgba(47, 36, 25, 0.08);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(180deg, #faf7f1 0%, #f3efe8 100%);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 12px 24px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
  will-change: transform, opacity;
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(241, 223, 198, 0.95), rgba(230, 202, 166, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;
  pointer-events: none;
}

body[data-page-exit="forward"].page-exit-active .site-shell {
  transform: translateX(-6vw);
  opacity: 0.18;
}

body[data-page-exit="forward"].page-exit-active .page-transition-overlay {
  transform: translateX(0);
}

body[data-page-exit="reverse"].page-exit-active .site-shell {
  transform: translateX(6vw);
  opacity: 0.18;
}

body[data-page-exit="reverse"].page-exit-active .page-transition-overlay {
  transform: translateX(0);
}

body[data-page-enter="forward"] .site-shell {
  transform: translateX(5vw);
  opacity: 0.06;
}

body[data-page-enter="reverse"] .site-shell {
  transform: translateX(-5vw);
  opacity: 0.06;
}

body.page-enter-active .site-shell {
  transform: translateX(0);
  opacity: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 10px 16px;
  border-bottom: 1px solid rgba(29, 43, 51, 0.08);
}

.brand {
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  font-style: italic;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 300px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav a,
.footer-links a,
.section-heading a {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.bag-button,
.subscribe button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
}

.icon-button,
.bag-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.icon-button span {
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: block;
  position: relative;
}

.icon-button span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(45deg);
  right: -4px;
  bottom: -2px;
  border-radius: 999px;
}

.bag-button {
  font-size: 0.72rem;
}

.hero,
.story,
.products,
.manifesto,
.footer {
  overflow: hidden;
}

.hero {
  min-height: 780px;
  margin-top: 14px;
  padding: 58px 54px;
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  align-items: end;
  gap: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 245, 230, 0.86), transparent 20%),
    linear-gradient(135deg, #bc8e58 0%, #cfaa7f 32%, #e1bd94 64%, #f0d1ae 100%);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
}

.eyebrow,
.section-kicker,
.footer-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero h1,
.story h2,
.products h2,
.manifesto h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.7rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.hero h1 em,
.story h2 em,
.manifesto h2 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(29, 43, 51, 0.88);
}

.hero-text,
.story-copy p,
.manifesto p,
.footer-brand p {
  max-width: 32rem;
  color: rgba(29, 43, 51, 0.7);
  font-size: 0.96rem;
  line-height: 1.8;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(79, 80, 84, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
}

.primary-link {
  margin-top: 12px;
  background: var(--button);
  color: var(--button-text);
}

.secondary-link {
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
}

.garment {
  position: relative;
  width: min(100%, 560px);
  height: 100%;
}

.garment-jacket {
  position: absolute;
  left: 50%;
  top: 2%;
  width: 240px;
  height: 380px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(231, 216, 196, 0.98)),
    linear-gradient(90deg, transparent 47%, rgba(161, 136, 112, 0.25) 50%, transparent 53%);
  clip-path: polygon(21% 7%, 36% 0%, 64% 0%, 79% 7%, 90% 31%, 82% 100%, 18% 100%, 10% 31%);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(140, 113, 84, 0.12), 0 32px 60px rgba(107, 75, 46, 0.14);
}

.garment-jacket::before,
.garment-jacket::after {
  content: "";
  position: absolute;
  top: 68px;
  width: 70px;
  height: 198px;
  background: linear-gradient(180deg, rgba(243, 232, 218, 0.95), rgba(224, 208, 186, 0.98));
  border-radius: 40px;
}

.garment-jacket::before {
  left: -36px;
  transform: rotate(7deg);
}

.garment-jacket::after {
  right: -36px;
  transform: rotate(-7deg);
}

.garment-trouser {
  position: absolute;
  left: 50%;
  bottom: -2%;
  width: 184px;
  height: 360px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(242, 229, 212, 0.95) 0 47%, rgba(199, 177, 152, 0.5) 49%, rgba(245, 235, 220, 0.96) 51% 100%);
  clip-path: polygon(12% 0, 46% 0, 49% 100%, 23% 100%, 18% 26%, 14% 17%, 12% 0, 54% 0, 88% 0, 86% 17%, 82% 26%, 77% 100%, 51% 100%);
  filter: drop-shadow(0 28px 40px rgba(115, 80, 47, 0.12));
}

.section-block {
  padding: 96px 0;
}

.story {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.15));
}

.story-copy {
  padding: 0 10px 0 0;
}

.story-copy h2 {
  font-size: clamp(2.9rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}

.story-notes {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
}

.story-notes li {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-notes span {
  color: var(--text);
}

.story-image {
  display: flex;
  justify-content: center;
}

.fabric-photo {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 0.78;
  background:
    radial-gradient(circle at 24% 20%, rgba(29, 86, 90, 0.32), transparent 24%),
    linear-gradient(135deg, #051518 0%, #0d2b30 32%, #10393f 58%, #0f2c30 100%);
  box-shadow: var(--shadow-soft);
}

.fabric-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 0 44%, rgba(255, 255, 255, 0.07) 45% 48%, transparent 49%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28% 100%);
}

.stitch {
  position: absolute;
  background:
    radial-gradient(circle, rgba(239, 240, 235, 0.96) 0 28%, transparent 31%) left center / 8px 8px repeat-x;
  height: 5px;
}

.stitch-one {
  width: 200px;
  left: 38%;
  top: 54%;
  transform: rotate(84deg);
}

.stitch-two {
  width: 260px;
  left: 34%;
  top: 61%;
  transform: rotate(13deg);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
}

.products h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
}

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

.product-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-content: start;
}

.product-meta h3,
.price {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta p {
  margin: 4px 0 0;
  font-size: 0.64rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-visual {
  grid-column: 1 / -1;
  margin-top: 14px;
  min-height: 420px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(239, 235, 229, 0.9));
  position: relative;
  overflow: hidden;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
}

.coat-visual::before {
  inset: 44px 80px 40px;
  background:
    linear-gradient(180deg, #86673d, #6d5534 48%, #5f472c 100%);
  clip-path: polygon(20% 8%, 36% 0, 64% 0, 80% 8%, 91% 28%, 81% 100%, 19% 100%, 9% 28%);
  border-radius: 32px;
}

.coat-visual::after {
  left: 50%;
  top: 118px;
  width: 26px;
  height: 180px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(36, 28, 19, 0.85) 0 22%, transparent 26%) center 12px / 12px 54px repeat-y;
}

.shirt-visual::before {
  inset: 54px 66px 30px;
  background:
    linear-gradient(180deg, #f5ead4, #efe2cb 42%, #eadbc2 100%);
  clip-path: polygon(21% 9%, 38% 0, 62% 0, 79% 9%, 91% 28%, 76% 55%, 70% 100%, 30% 100%, 24% 55%, 9% 28%);
  border-radius: 36px;
}

.shirt-visual::after {
  left: 50%;
  top: 70px;
  width: 70px;
  height: 120px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(231, 210, 182, 0.9), transparent);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.trouser-visual::before {
  inset: 40px 86px 10px;
  background:
    linear-gradient(90deg, #7d7d79 0 46%, #a3a39f 49%, #797975 52% 100%);
  clip-path: polygon(16% 0, 45% 0, 49% 100%, 26% 100%, 21% 26%, 16% 0, 55% 0, 84% 0, 79% 26%, 74% 100%, 51% 100%);
}

.manifesto {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  margin-top: 18px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, rgba(245, 241, 234, 0.96) 42%, rgba(237, 232, 224, 0.95) 100%);
}

.manifesto-mark {
  position: absolute;
  width: min(38vw, 360px);
  aspect-ratio: 0.9;
  background:
    linear-gradient(180deg, rgba(31, 45, 54, 0.1), transparent 78%);
  clip-path: polygon(48% 0, 52% 0, 56% 34%, 74% 0, 78% 2%, 61% 38%, 88% 8%, 91% 11%, 65% 43%, 100% 23%, 100% 27%, 68% 47%, 88% 55%, 87% 58%, 63% 51%, 66% 100%, 61% 100%, 58% 52%, 44% 100%, 39% 100%, 42% 52%, 20% 58%, 18% 55%, 37% 47%, 0 27%, 0 23%, 34% 43%, 9% 11%, 11% 8%, 39% 38%, 22% 2%, 26% 0, 44% 34%);
  opacity: 0.42;
  transform: translateY(-8%);
}

.manifesto-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 20px;
}

.manifesto h2 {
  font-size: clamp(3rem, 5.8vw, 5rem);
}

.manifesto p {
  margin: 18px auto 22px;
  max-width: 40rem;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 56px 10px 28px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand-logo {
  height: 38px;
  max-width: 320px;
}

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

.footer-links div,
.subscribe {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-row {
  display: flex;
  gap: 10px;
}

.subscribe input {
  min-width: 0;
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.subscribe button {
  min-width: 86px;
  height: 44px;
  cursor: pointer;
}

.copyright {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-active {
  color: var(--text) !important;
  border-bottom: 1px solid rgba(29, 43, 51, 0.2);
  padding-bottom: 4px;
}

.catalog-page {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.96), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #f5f3ee 100%);
}

.catalog-main {
  padding: 8px 0 0;
}

.catalog-hero {
  padding: 42px 4px 56px;
  border-bottom: 1px solid rgba(29, 43, 51, 0.08);
}

.catalog-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.catalog-hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.catalog-hero p {
  max-width: 38rem;
  margin: 18px 0 0;
  color: rgba(29, 43, 51, 0.68);
  font-size: 0.95rem;
  line-height: 1.75;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 48px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.catalog-filters button,
.catalog-toolbar p,
.catalog-pagination a,
.catalog-pages a,
.catalog-badge,
.editorial-inner p {
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-filters button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.catalog-filters span {
  margin-left: 6px;
}

.catalog-toolbar p {
  margin: 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 28px;
  align-items: start;
}

.catalog-card,
.editorial-card {
  min-width: 0;
}

.catalog-image {
  position: relative;
  background: linear-gradient(180deg, #f7f6f1, #f2f0ea);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(41, 35, 29, 0.04);
}

.catalog-image::before,
.catalog-image::after {
  content: "";
  position: absolute;
}

.catalog-image-dress {
  aspect-ratio: 0.78;
}

.catalog-image-dress::before {
  left: 50%;
  top: 14%;
  width: 92px;
  height: 260px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #efe2cb, #e5d7bc 100%);
  clip-path: polygon(23% 0, 77% 0, 100% 21%, 86% 100%, 14% 100%, 0 21%);
  border-radius: 18px;
}

.catalog-image-dress::after {
  left: 50%;
  top: 9%;
  width: 128px;
  height: 300px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 25% 8%, #c7a98b 0 10px, transparent 11px),
    radial-gradient(circle at 75% 8%, #c7a98b 0 10px, transparent 11px),
    linear-gradient(180deg, transparent 0 18px, rgba(110, 74, 45, 0.12) 19px 24px, transparent 25px);
}

.catalog-image-knit {
  aspect-ratio: 0.76;
}

.catalog-image-knit::before {
  left: 50%;
  top: 20%;
  width: 72%;
  height: 62%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 0, transparent 16px, #be8b4a 17px 19px, transparent 20px),
    linear-gradient(180deg, transparent 0 22px, #ccb79b 23px 100%);
  clip-path: polygon(11% 18%, 31% 3%, 69% 3%, 89% 18%, 100% 39%, 90% 100%, 10% 100%, 0 39%);
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(94, 71, 40, 0.08);
}

.catalog-image-knit::after {
  inset: 24% 20% 18%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(180deg, rgba(118, 95, 63, 0.07) 0 2px, transparent 2px 7px);
}

.catalog-image-trouser {
  aspect-ratio: 0.78;
}

.catalog-image-trouser::before {
  inset: 10% 26% 6%;
  background: linear-gradient(90deg, #91863e 0 47%, #756d2c 49%, #999046 51% 100%);
  clip-path: polygon(18% 0, 44% 0, 49% 100%, 25% 100%, 20% 18%, 18% 0, 56% 0, 82% 0, 80% 18%, 75% 100%, 51% 100%);
}

.catalog-image-trouser::after {
  inset: 10% 26% auto;
  height: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
}

.catalog-image-tote {
  aspect-ratio: 0.78;
}

.catalog-image-tote::before {
  left: 50%;
  bottom: 14%;
  width: 56%;
  height: 48%;
  transform: translateX(-50%);
  background:
    repeating-linear-gradient(90deg, rgba(146, 113, 70, 0.06) 0 2px, transparent 2px 6px),
    repeating-linear-gradient(180deg, rgba(146, 113, 70, 0.06) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #ddc59f, #d2ba92);
  border-radius: 8px;
}

.catalog-image-tote::after {
  left: 50%;
  top: 22%;
  width: 26%;
  height: 24%;
  transform: translateX(-50%);
  border: 10px solid #d6bf99;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.catalog-image-shirt {
  aspect-ratio: 0.76;
  background: linear-gradient(180deg, #0f3b35, #183f39);
}

.catalog-image-shirt::before {
  left: 50%;
  top: 8%;
  width: 72%;
  height: 78%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(165, 138, 100, 0.65) 0 2px, transparent 3px) 52% 16% / 14px 36px repeat-y,
    linear-gradient(180deg, #f5f0e3, #ece3d1);
  clip-path: polygon(17% 6%, 33% 0, 67% 0, 83% 6%, 100% 21%, 83% 100%, 67% 100%, 66% 46%, 34% 46%, 33% 100%, 17% 100%, 0 21%);
  border-radius: 16px;
}

.catalog-image-shirt::after {
  left: 50%;
  top: 14%;
  width: 18%;
  height: 14%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ddd0bb, transparent);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.catalog-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.12em;
}

.catalog-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
}

.catalog-meta h2,
.editorial-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.catalog-meta h2 {
  font-size: 1.9rem;
}

.catalog-meta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-meta span {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.editorial-card {
  position: relative;
  min-height: 100%;
  aspect-ratio: 1.55;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #e7cfc0, #dec0b2 45%, #d5b6aa 100%);
  overflow: hidden;
}

.editorial-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 340px;
  height: 340px;
  margin: -170px 0 0 -170px;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.46em;
  display: grid;
  place-items: start center;
  padding-top: 20px;
  transform: rotate(-14deg);
}

.editorial-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  padding: 30px 28px;
  text-align: center;
  background: rgba(248, 238, 230, 0.92);
  box-shadow: 0 18px 44px rgba(88, 58, 42, 0.08);
}

.editorial-inner p {
  margin: 0 0 12px;
}

.editorial-inner h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.editorial-inner .primary-link {
  min-height: 40px;
}

.catalog-card-wide {
  grid-column: 1 / 2;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 78px 0 96px;
}

.catalog-pages {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-current {
  color: var(--text) !important;
  border-bottom: 1px solid rgba(29, 43, 51, 0.32);
  padding-bottom: 4px;
}

.subscribe-static {
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .hero,
  .story,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 44px 28px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    min-height: 540px;
    border-left: 0;
  }

  .story {
    gap: 40px;
  }

  .footer {
    padding-top: 42px;
  }

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

  .editorial-card {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .site-shell {
    padding: 0 10px 18px;
  }

  .topbar {
    flex-wrap: wrap;
    padding-inline: 2px;
  }

  .brand-logo {
    height: 28px;
    max-width: 240px;
  }

  .footer-brand-logo {
    height: 32px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding: 28px 20px;
  }

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

  .hero-photo {
    object-position: center top;
  }

  .garment-jacket {
    width: 180px;
    height: 300px;
  }

  .garment-jacket::before,
  .garment-jacket::after {
    width: 56px;
    height: 164px;
    top: 62px;
  }

  .garment-trouser {
    width: 136px;
    height: 280px;
  }

  .section-block {
    padding: 72px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 340px;
  }

  .section-heading,
  .subscribe-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .subscribe button {
    width: 100%;
  }

  .catalog-hero {
    padding: 28px 0 40px;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 34px;
  }

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

  .editorial-card,
  .catalog-card-wide {
    grid-column: auto;
  }

  .catalog-meta {
    flex-direction: column;
    gap: 10px;
  }

  .catalog-pagination {
    gap: 14px;
    flex-direction: column;
    padding: 56px 0 72px;
  }
}
