:root {
  --ink: #120f0d;
  --soft-ink: #554d45;
  --ivory: #fffaf2;
  --cream: #f2e5d6;
  --stone: #dfd0bf;
  --champagne: #d8ae5d;
  --champagne-dark: #8d6826;
  --rose: #a06b68;
  --black: #080706;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(18, 15, 13, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.promo-bar {
  padding: 10px 18px;
  background: var(--black);
  color: var(--ivory);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(141, 104, 38, 0.22);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.99);
  box-shadow: 0 10px 34px rgba(18, 15, 13, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: clamp(260px, 24vw, 390px);
  height: 100px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--soft-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a,
.shop-actions a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after,
.shop-actions a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--champagne-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.shop-actions a:hover::after,
.shop-actions a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.shop-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  color: var(--soft-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-link,
.bag-link {
  display: inline-grid;
  justify-items: center;
  gap: 3px;
  min-width: 46px;
}

.account-link svg,
.bag-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--champagne-dark);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-link span,
.bag-link span {
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 15, 13, 0.18);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.shop-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  height: 570px;
  min-height: 570px;
  background:
    radial-gradient(circle at 80% 12%, rgba(216, 174, 93, 0.3), transparent 30%),
    linear-gradient(135deg, #fffaf2, #f4e4d4 56%, #ead7c6);
  border-bottom: 1px solid rgba(141, 104, 38, 0.28);
  overflow: hidden;
}

.shop-hero-media {
  position: relative;
  height: 570px;
  min-height: 0;
  overflow: hidden;
}

.shop-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.14), transparent 42%),
    linear-gradient(180deg, transparent 52%, rgba(8, 7, 6, 0.28));
  pointer-events: none;
}

.shop-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: contrast(1.05) saturate(1.06);
  transform: scale(1.02);
}

.shop-hero-copy {
  position: relative;
  display: grid;
  align-content: center;
  max-width: 800px;
  padding: 46px clamp(28px, 6vw, 82px);
  background:
    radial-gradient(circle at 70% 22%, rgba(216, 174, 93, 0.36), transparent 24%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.86), rgba(242, 229, 214, 0.98));
}

.shop-hero-copy::before {
  position: absolute;
  top: 42px;
  right: clamp(22px, 4vw, 58px);
  width: 96px;
  height: 1px;
  content: "";
  background: var(--champagne-dark);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 6.3rem;
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: 4.8rem;
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1;
}

.shop-hero-copy > p:not(.eyebrow),
.occasion-banner p,
.lookbook-copy p,
.contact-section p,
.product-info p,
  .site-footer p {
  color: var(--soft-ink);
  font-size: 1.08rem;
  line-height: 1.75;
}

.shop-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  display: inline-grid;
  width: fit-content;
  gap: 4px;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(141, 104, 38, 0.34);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 50px rgba(18, 15, 13, 0.08);
}

.hero-badge span,
.hero-badge strong {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-badge span {
  color: var(--champagne-dark);
}

.hero-badge strong {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

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

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

.button-light {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 22px clamp(18px, 5vw, 76px);
  background: var(--black);
  color: var(--ivory);
  border-top: 1px solid rgba(216, 174, 93, 0.22);
  border-bottom: 1px solid rgba(216, 174, 93, 0.22);
}

.benefits-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 14px clamp(14px, 2vw, 28px);
  border-right: 1px solid rgba(255, 250, 242, 0.14);
}

.benefits-strip article:last-child {
  border-right: 0;
}

.benefits-strip svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--champagne);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-strip h3 {
  margin: 0 0 4px;
  color: var(--ivory);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.benefits-strip p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.campaign-grid,
.product-section,
.occasion-banner,
.lookbook-section,
.contact-section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

.campaign-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 18px;
}

.campaign-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.campaign-large {
  min-height: 680px;
}

.campaign-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.campaign-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(8, 7, 6, 0.72));
}

.campaign-card > div {
  position: absolute;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(26px, 4vw, 52px);
  left: clamp(22px, 3vw, 42px);
  z-index: 1;
  display: grid;
  gap: 18px;
  align-content: end;
  max-width: 760px;
}

.campaign-card .eyebrow {
  color: var(--champagne);
}

.campaign-card h2 {
  max-width: 720px;
  font-size: 4.2rem;
  line-height: 0.96;
}

.campaign-card .button {
  width: fit-content;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr) auto;
  gap: clamp(20px, 4vw, 54px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

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

.product-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(141, 104, 38, 0.2);
}

.product-image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.product-image-hero {
  background-image: url("assets/hero-editorial.png");
  background-position: center 18%;
}

.product-image-evening {
  background-image: url("assets/evening-editorial.png");
}

.product-image-still {
  background-image: url("assets/collection-still-life.png");
  background-position: center;
}

.product-image-tailor {
  background-image: url("assets/collection-still-life.png");
  background-position: 82% 38%;
}

#blazers {
  scroll-margin-top: 140px;
}

.product-image-top {
  background-image: url("assets/evening-editorial.png");
  background-position: 48% 18%;
}

.product-image-trousers {
  background-image: url("assets/collection-still-life.png");
  background-position: 56% 34%;
}

.product-image-skirt {
  background-image: url("assets/hero-editorial.png");
  background-position: 50% 42%;
}

.product-image-accessory {
  background-image: url("assets/collection-still-life.png");
  background-position: 45% 58%;
}

.product-image-blouse {
  background-image: url("assets/hero-editorial.png");
  background-position: 45% 24%;
}

.product-image-coat {
  background-image: url("assets/collection-still-life.png");
  background-position: 74% 30%;
}

.product-info {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.product-info h3 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-info p,
.product-info span {
  margin: 0;
}

.product-info span {
  color: var(--ink);
  font-weight: 800;
}

.occasion-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 174, 93, 0.18), transparent 28%),
    linear-gradient(135deg, #050403, #0b0907 52%, #140f0b);
  color: var(--ivory);
  overflow: hidden;
}

.occasion-banner::before {
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  border: 1px solid rgba(216, 174, 93, 0.28);
  content: "";
  pointer-events: none;
}

.occasion-banner::after {
  position: absolute;
  right: clamp(28px, 7vw, 120px);
  bottom: -0.18em;
  content: "Luvani";
  color: rgba(216, 174, 93, 0.08);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.slogan-copy,
.slogan-note {
  position: relative;
  z-index: 1;
}

.occasion-banner p {
  color: rgba(255, 250, 242, 0.76);
}

.slogan-copy .eyebrow {
  color: var(--champagne);
}

.slogan-copy h2 {
  max-width: 900px;
  text-wrap: balance;
}

.slogan-note {
  display: grid;
  gap: 20px;
  align-items: start;
  max-width: 620px;
}

.slogan-note span {
  display: inline-flex;
  width: fit-content;
  padding: 12px 18px;
  border: 1px solid rgba(216, 174, 93, 0.48);
  color: var(--champagne);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.slogan-note p {
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(216, 174, 93, 0.36);
}

.lookbook-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(216, 174, 93, 0.18), transparent 24%),
    linear-gradient(135deg, #fffaf2, #eee0d0 58%, #e5d1bd);
  overflow: hidden;
}

.lookbook-section::before {
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  border: 1px solid rgba(141, 104, 38, 0.22);
  content: "";
  pointer-events: none;
}

.lookbook-section::after {
  position: absolute;
  top: clamp(28px, 5vw, 74px);
  right: clamp(28px, 8vw, 140px);
  width: 120px;
  height: 1px;
  content: "";
  background: var(--champagne-dark);
  opacity: 0.72;
}

.lookbook-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding-left: clamp(0px, 0.6vw, 10px);
}

.lookbook-copy .eyebrow {
  color: var(--champagne-dark);
}

.lookbook-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  text-wrap: balance;
}

.lookbook-copy p:not(.eyebrow) {
  max-width: 520px;
}

.lookbook-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
}

.lookbook-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14px;
  align-items: end;
  padding: 14px;
  background: rgba(255, 250, 242, 0.28);
  border: 1px solid rgba(141, 104, 38, 0.22);
  box-shadow: var(--shadow);
}

.lookbook-mosaic img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.lookbook-mosaic img:first-child {
  height: 360px;
  border: 1px solid rgba(255, 250, 242, 0.52);
}

.lookbook-mosaic img:last-child {
  border: 1px solid rgba(255, 250, 242, 0.52);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 520px);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background:
    radial-gradient(circle at 78% 12%, rgba(216, 174, 93, 0.14), transparent 28%),
    linear-gradient(135deg, #fffaf2, #f5ebdf);
}

.contact-section::before {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 34px;
  left: clamp(18px, 5vw, 76px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(141, 104, 38, 0.28), transparent);
}

.contact-section > div {
  max-width: 760px;
}

.contact-section h2 {
  max-width: 760px;
  margin-bottom: 18px;
  text-wrap: balance;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(26px, 3.4vw, 42px);
  border: 1px solid rgba(216, 174, 93, 0.5);
  background:
    radial-gradient(circle at 88% 0%, rgba(216, 174, 93, 0.16), transparent 34%),
    linear-gradient(145deg, #14100c, #070605 62%, #100b08);
  box-shadow: 0 30px 90px rgba(18, 15, 13, 0.22);
  color: var(--ivory);
  overflow: hidden;
}

.contact-form::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(216, 174, 93, 0.2);
  content: "";
  pointer-events: none;
}

.form-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 4px;
  color: #f4cf83;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-shadow: none;
  text-transform: uppercase;
}

.form-kicker::after {
  flex: 1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(216, 174, 93, 0.62), transparent);
}

.contact-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 242, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(216, 174, 93, 0.34);
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(18, 15, 13, 0.52);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(216, 174, 93, 0.18);
}

.contact-form .button-primary {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #fff4d8, #d8ae5d);
  color: var(--black);
  border-color: #d8ae5d;
}

.form-note {
  position: relative;
  z-index: 1;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  gap: 32px;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 5vw, 76px) 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 174, 93, 0.16), transparent 28%),
    linear-gradient(135deg, #080706, #130f0c);
  color: var(--ivory);
  border-top: 1px solid rgba(216, 174, 93, 0.34);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  max-width: 420px;
}

.footer-brand img {
  width: 300px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(216, 174, 93, 0.18));
}

.footer-brand-block p,
.footer-note p,
.footer-bottom,
.footer-links a {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  line-height: 1.7;
}

.footer-links,
.footer-note {
  display: grid;
  gap: 10px;
}

.footer-links h2,
.footer-note h2 {
  margin: 0 0 8px;
  color: var(--champagne);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ivory);
  transform: translateX(3px);
}

.footer-note {
  padding-left: 24px;
  border-left: 1px solid rgba(216, 174, 93, 0.28);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
  font-size: 0.84rem;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    position: sticky;
  }

  .brand {
    grid-column: 1;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 12px 18px 22px;
    background: rgba(255, 250, 242, 0.99);
    border-bottom: 1px solid rgba(141, 104, 38, 0.22);
    transform: translateY(-150%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
  }

  .shop-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .shop-hero,
  .campaign-grid,
  .occasion-banner,
  .lookbook-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .shop-hero {
    height: auto;
    min-height: 0;
  }

  .shop-hero-media {
    height: 480px;
    min-height: 0;
  }

  h1 {
    font-size: 6rem;
  }

  h2 {
    font-size: 4rem;
  }
}

@media (max-width: 720px) {
  .promo-bar {
    padding: 8px 14px;
    font-size: 0.66rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .site-header {
    gap: 10px 14px;
    padding: 8px 14px;
  }

  .brand img {
    width: 220px;
    height: 84px;
  }

  .shop-actions {
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .account-link svg,
  .bag-link svg {
    width: 22px;
    height: 22px;
  }

  .shop-hero {
    display: flex;
    flex-direction: column;
  }

  .shop-hero-media {
    height: 370px;
    min-height: 0;
    order: 2;
  }

  .shop-hero-copy {
    order: 1;
    padding: 30px 18px 26px;
  }

  .shop-hero-copy::before {
    top: 24px;
    right: 18px;
    width: 62px;
  }

  .hero-badge {
    margin-top: 24px;
    padding: 14px 16px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.6rem;
  }

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

  .benefits-strip {
    grid-template-columns: 1fr 1fr;
    padding: 12px 14px;
  }

  .benefits-strip article {
    min-height: 112px;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  }

  .benefits-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .benefits-strip svg {
    width: 30px;
    height: 30px;
  }

  .campaign-card,
  .campaign-large {
    min-height: 500px;
  }

  .product-image {
    min-height: 380px;
  }

  .lookbook-mosaic {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .lookbook-mosaic img,
  .lookbook-mosaic img:first-child {
    height: 340px;
  }

  .lookbook-actions {
    display: grid;
    gap: 14px;
  }

  .hero-actions,
  .button,
  .site-footer {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-note {
    padding-left: 0;
    border-left: 0;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .campaign-grid,
  .product-section,
  .occasion-banner,
  .lookbook-section,
  .contact-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .campaign-card,
  .campaign-large {
    min-height: 430px;
  }

  .campaign-card > div {
    right: 18px;
    bottom: 24px;
    left: 18px;
    gap: 14px;
  }

  .campaign-card h2 {
    font-size: 2.45rem;
  }

  .product-image {
    min-height: 320px;
  }

  .shop-hero-media {
    height: 330px;
    min-height: 0;
  }

  .contact-form {
    padding: 18px;
  }

  .benefits-strip {
    grid-template-columns: 1fr;
  }

  .benefits-strip article,
  .benefits-strip article:nth-last-child(-n + 2) {
    min-height: 88px;
    border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  }

  .benefits-strip article:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.45rem;
  }
}
