:root {
  --color-black: #050505;
  --color-charcoal: #1f2420;
  --color-olive: #56603b;
  --color-olive-dark: #41492f;
  --color-white: #ffffff;
  --color-surface: #f5f5f3;
  --color-border: #deded8;
  --color-muted: #666a61;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Assistant, Arial, Helvetica, sans-serif;
  --page-padding: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--color-black);
  color: var(--color-white);
  padding: 10px 14px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  min-height: 32px;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  background: var(--color-black);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.announcement span {
  min-width: 0;
  overflow-wrap: break-word;
}

.announcement span + span::before {
  content: "|";
  margin-right: 18px;
  color: #aeb2a7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 0 var(--page-padding);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.brand {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

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

.site-nav a,
.text-link {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  padding: 29px 0 28px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: var(--color-black);
}

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

.icon-button {
  width: 38px;
  height: 38px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color-black);
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-link {
  gap: 3px;
  width: 46px;
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--color-black);
  padding: 9px;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-surface);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.56) 32%, rgba(255, 255, 255, 0.02) 64%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin-left: var(--page-padding);
  padding: 70px 0;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  font-size: 68px;
}

.hero-copy p {
  max-width: 440px;
  margin: 24px 0 0;
  color: #252823;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid transparent;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--color-black);
  color: var(--color-white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-charcoal);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--color-olive-dark);
}

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

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--color-white);
  color: var(--color-olive-dark);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.category-strip a {
  min-width: 0;
  min-height: 134px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.category-strip a:last-child {
  border-right: 0;
}

.category-strip svg {
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-strip strong {
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.category-strip span {
  color: var(--color-muted);
  font-size: 13px;
}

.category-strip a:hover,
.category-strip a:focus-visible {
  background: var(--color-surface);
}

.section {
  padding: 60px var(--page-padding);
}

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

.section-heading h2,
.newsletter h2,
.tailoring-band h2 {
  font-size: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-charcoal);
}

.text-link::after {
  content: "";
  width: 18px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(0 45%, 75% 45%, 55% 20%, 62% 12%, 100% 50%, 62% 88%, 55% 80%, 75% 55%, 0 55%);
}

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

.product-card a {
  min-width: 0;
  display: grid;
  min-height: 100%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.product-card img {
  min-width: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e5e5e2;
  border-bottom: 1px solid var(--color-border);
}

.product-name,
.product-price {
  display: block;
  padding: 0 12px;
}

.product-name {
  min-height: 44px;
  margin-top: 12px;
  color: var(--color-charcoal);
  font-size: 14px;
  line-height: 1.35;
}

.product-price {
  margin: 8px 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.product-card a:hover,
.product-card a:focus-visible {
  border-color: var(--color-black);
}

.tailoring-band {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 42px var(--page-padding);
  background: linear-gradient(90deg, var(--color-olive-dark), #656b48);
  color: var(--color-white);
}

.tailoring-band p {
  max-width: 660px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.tailoring-mark {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tailoring-mark svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.collection-section {
  background: var(--color-white);
}

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

.collection-card {
  position: relative;
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 28px;
  color: var(--color-white);
  background: var(--color-charcoal);
}

.collection-card img {
  min-width: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62));
}

.collection-card span,
.collection-card small {
  position: relative;
  z-index: 1;
}

.collection-card span {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
}

.collection-card small {
  max-width: 260px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.collection-card:hover img,
.collection-card:focus-visible img {
  transform: scale(1.04);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 720px);
  gap: 48px;
  align-items: center;
  padding: 44px var(--page-padding);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.newsletter p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
  align-items: start;
}

.newsletter-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid #b8bab2;
  background: var(--color-white);
  color: var(--color-black);
}

.newsletter-form input:focus {
  outline: 2px solid var(--color-black);
  outline-offset: 2px;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--color-olive-dark);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  background: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr 1.2fr;
  gap: 34px;
  padding: 44px var(--page-padding);
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 9px;
  color: var(--color-charcoal);
  font-size: 14px;
  line-height: 1.45;
}

.contact-block strong {
  font-size: 12px;
  text-transform: uppercase;
}

.footer-brand {
  text-align: right;
}

.footer-brand .brand {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--page-padding);
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  :root {
    --page-padding: 32px;
  }

  .site-header {
    grid-template-columns: 170px 1fr auto;
    gap: 16px;
  }

  .site-nav {
    gap: 16px;
  }

  h1 {
    font-size: 56px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .announcement {
    flex-direction: column;
    gap: 4px;
    min-height: 44px;
    padding: 7px 14px;
    font-size: 11px;
  }

  .announcement span + span::before {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
  }

  .brand {
    font-size: 27px;
  }

  .menu-toggle {
    display: block;
    order: -1;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px var(--page-padding);
    border-bottom: 1px solid var(--color-border);
  }

  .header-actions {
    gap: 2px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 610px;
    align-items: end;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.92) 70%);
  }

  .hero-copy {
    max-width: none;
    margin: 0;
    padding: 260px var(--page-padding) 42px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .category-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-strip a:nth-child(3n) {
    border-right: 0;
  }

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

  .section-heading h2,
  .newsletter h2,
  .tailoring-band h2 {
    font-size: 32px;
  }

  .tailoring-band {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .tailoring-mark {
    width: 54px;
    height: 54px;
  }

  .tailoring-mark svg {
    width: 52px;
    height: 52px;
  }

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

  .newsletter-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  :root {
    --page-padding: 20px;
  }

  body > *,
  .site-header,
  .hero,
  .category-strip,
  .section,
  .tailoring-band,
  .newsletter,
  .site-footer,
  .product-grid,
  .collection-grid,
  .footer-grid,
  .newsletter-form {
    max-width: 100vw;
    overflow-x: hidden;
  }

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

  .header-actions {
    display: none;
  }

  .brand {
    font-size: 24px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    padding-top: 220px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .category-strip a,
  .category-strip a:nth-child(3n) {
    border-right: 1px solid var(--color-border);
  }

  .category-strip a:nth-child(2n) {
    border-right: 0;
  }

  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .product-grid,
  .collection-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-grid {
    gap: 14px;
  }

  .collection-card {
    min-height: 250px;
  }

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

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