:root {
  --paper: #fbfaf7;
  --ink: #202124;
  --muted: #68625d;
  --line: #ded8cf;
  --rose: #b46a70;
  --sage: #7f9274;
  --clay: #b77958;
  --navy: #26384b;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(42, 36, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(222, 216, 207, 0.78);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.82rem;
}

.nav {
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px) 34px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy p:not(.eyebrow),
.section p,
.steps span,
.site-footer {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 760;
  text-decoration: none;
}

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

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

.hero-visual {
  position: relative;
}

.shop-preview {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shop-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.preview-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(222, 216, 207, 0.82);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.preview-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.lookbook-card,
.product-card,
.policy-grid article,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lookbook-card {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 24px;
  box-shadow: var(--shadow);
}

.lookbook-card.large {
  min-height: 526px;
}

.lookbook-card span {
  align-self: end;
  color: var(--muted);
  font-size: 0.92rem;
}

.shirt {
  position: relative;
  width: min(70%, 240px);
  aspect-ratio: 0.9;
  margin: auto;
  border-radius: 26% 26% 12% 12%;
  clip-path: polygon(18% 7%, 32% 0, 68% 0, 82% 7%, 100% 23%, 88% 43%, 78% 36%, 78% 100%, 22% 100%, 22% 36%, 12% 43%, 0 23%);
}

.shirt::after {
  position: absolute;
  top: 3%;
  left: 38%;
  width: 24%;
  height: 17%;
  content: "";
  background: rgba(255, 255, 255, 0.46);
  border-radius: 0 0 999px 999px;
}

.shirt-rose {
  background: linear-gradient(145deg, #d99aa0, var(--rose));
}

.shirt-sage {
  background: linear-gradient(145deg, #b8c4a7, var(--sage));
}

.shirt-ink {
  background: linear-gradient(145deg, #536b82, var(--navy));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: 22px;
  background: #f4f0eb;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.shop-grid,
.policy-grid {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.shop-grid {
  grid-template-columns: repeat(auto-fill, 320px);
  justify-content: start;
}

.product-card {
  min-width: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.product-photo {
  display: block;
  overflow: hidden;
  background: #f5f2ed;
  border: 1px solid rgba(222, 216, 207, 0.74);
  border-radius: 8px;
  text-decoration: none;
}

.product-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-photo:hover img {
  transform: scale(1.025);
}

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

.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.product-title-row h3 {
  display: -webkit-box;
  min-height: 54px;
  margin: 0;
  overflow: hidden;
  color: #0b1628;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.15vw, 1.22rem);
  font-weight: 500;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.favorite {
  color: #596374;
  font-size: 0.9rem;
  white-space: nowrap;
}

.price {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 12px 0 10px;
}

.price span {
  color: #ff5357;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.price b {
  color: #ff5357;
}

.price del {
  color: #6d7481;
  font-size: 0.95rem;
  font-weight: 700;
}

.price em,
.shipping {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-style: normal;
  line-height: 1;
  font-size: 0.82rem;
}

.price em {
  color: #ff5357;
  background: #ffe0e5;
  font-weight: 800;
}

.shipping {
  margin: 0;
  color: #0b376f;
  background: #e6f0ff;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  background: #f4f0eb;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 20px 20px 20px 68px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: step;
}

.steps li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  content: counter(step);
  font-size: 0.84rem;
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

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

.policy-grid article {
  padding: 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.contact-panel p {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
}

.contact-panel p:last-child {
  margin-bottom: 0;
}

.contact-panel strong {
  color: var(--ink);
}

.contact-panel a {
  color: var(--navy);
  font-weight: 760;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 620px;
  }

  .shop-grid,
  .policy-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .product-title-row h3 {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.75rem;
  }

  .button {
    width: 100%;
  }
}
