:root {
  --ink: #3d2430;
  --muted: #846473;
  --paper: #fde8ee;
  --milk: #fff8fa;
  --blush: #f8ccd8;
  --petal: #f4dce4;
  --rose: #cf7d98;
  --berry: #a83e63;
  --wine: #7d2948;
  --clay: #b75d78;
  --charcoal: #5c3345;
  --line: rgba(125, 41, 72, 0.18);
  --shadow: 0 24px 80px rgba(168, 62, 99, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 248, 250, 0.9), transparent 28%),
    linear-gradient(180deg, #fbdde7 0%, #fff7f9 42%, #f8e4ea 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(168, 62, 99, 0.16);
  background: rgba(255, 248, 250, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--berry);
  border-radius: 50%;
  box-shadow: inset 7px 0 0 rgba(248, 204, 216, 0.95);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  transition: color 180ms ease;
}

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

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.cart-toggle,
.button,
.add-button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 250, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(168, 62, 99, 0.08);
}

.cart-toggle span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--berry);
  color: var(--milk);
  font-size: 12px;
}

.contact-home {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 10px;
  align-items: stretch;
  min-height: calc(100vh - 78px);
  padding: clamp(28px, 5vw, 70px) clamp(18px, 5vw, 72px) 36px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  min-height: 520px;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(125, 41, 72, 0.22);
  border-radius: 34px 8px 34px 8px;
  background: linear-gradient(135deg, #ad3f67 0%, #bf5d7a 100%);
  color: white;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 96px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 68px);
  color: var(--berry);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-text {
  max-width: 560px;
  color: rgba(255, 248, 250, 0.84);
  font-size: 18px;
}

.hero .eyebrow {
  color: #ffd7e3;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 248, 250, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 250, 0.14);
  color: rgba(255, 248, 250, 0.9);
  font-size: 13px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  background: var(--wine);
  color: var(--milk);
  box-shadow: 0 14px 34px rgba(125, 41, 72, 0.22);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 248, 250, 0.75);
}

.hero .button.primary {
  background: var(--milk);
  color: var(--wine);
}

.hero .button.ghost {
  border-color: rgba(255, 248, 250, 0.4);
  background: rgba(255, 248, 250, 0.16);
  color: white;
}

.button.full {
  width: 100%;
}

.hero-image-wrap {
  position: relative;
  align-self: stretch;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(125, 41, 72, 0.18);
  border-radius: 8px 34px 8px 34px;
  background: var(--blush);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(255, 248, 250, 0.72);
}

.ticker span {
  padding: 18px;
  text-align: center;
  color: var(--berry);
  border-right: 1px solid var(--line);
  font-weight: 800;
}

.ticker span:last-child {
  border-right: 0;
}

.studio-strip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f6c5d2, #fff5f8);
}

.studio-strip .eyebrow,
.studio-strip p {
  margin: 0;
}

.studio-strip p:not(.eyebrow) {
  max-width: 920px;
  color: var(--muted);
  font-size: 17px;
}

.mood-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.75fr) minmax(220px, 0.75fr);
  gap: 14px;
  padding: clamp(18px, 4vw, 42px) clamp(18px, 5vw, 72px) 0;
}

.mood-card {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(125, 41, 72, 0.18);
  border-radius: 10px 32px 10px 32px;
  background: var(--blush);
  box-shadow: 0 18px 48px rgba(168, 62, 99, 0.12);
}

.mood-card.large {
  min-height: 420px;
  border-radius: 36px 10px 36px 10px;
}

.mood-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.mood-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 250, 0.88);
  color: var(--berry);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(56px, 7vw, 100px) clamp(18px, 5vw, 72px);
}

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

.section-note {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
}

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

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 250, 0.9);
  box-shadow: 0 16px 42px rgba(168, 62, 99, 0.1);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--blush);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 248, 250, 0.92);
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

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

.product-type {
  margin-bottom: -6px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 700;
}

.product-info p:not(.product-type) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-details {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.product-details li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-details li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--berry);
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.add-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--berry);
  color: white;
  font-weight: 700;
}

.process-section {
  padding-top: 0;
}

.process-grid,
.care-grid,
.reviews-grid {
  display: grid;
  gap: 18px;
}

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

.process-grid article,
.care-grid article,
.reviews-grid figure {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 250, 0.9);
  box-shadow: 0 12px 36px rgba(168, 62, 99, 0.08);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.process-grid p,
.care-grid p,
.reviews-grid blockquote {
  margin-bottom: 0;
  color: var(--muted);
}

.atelier {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 7vw, 110px);
  padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--wine), #b64f72);
  color: var(--milk);
}

.atelier .eyebrow {
  color: #ffd7e3;
}

.atelier-copy {
  align-self: end;
  color: rgba(255, 250, 242, 0.76);
  font-size: 18px;
}

.atelier-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.atelier-copy li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
}

.lookbook-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 7vw, 100px) clamp(18px, 5vw, 72px);
}

.lookbook-copy {
  max-width: 580px;
}

.lookbook-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.lookbook-images {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
}

.lookbook-images img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid rgba(125, 41, 72, 0.18);
  box-shadow: var(--shadow);
}

.lookbook-images img:first-child {
  height: 500px;
  border-radius: 36px 10px 36px 10px;
}

.lookbook-images img:last-child {
  border-radius: 10px 36px 10px 36px;
}

.care-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

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

.care-grid article {
  background: rgba(255, 248, 250, 0.62);
}

.reviews-section {
  padding-top: 0;
}

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

.reviews-grid blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
}

.reviews-grid figcaption {
  margin-top: 22px;
  color: var(--berry);
  font-weight: 800;
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 250, 0.94), rgba(248, 204, 216, 0.76));
  box-shadow: var(--shadow);
}

.order-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding: clamp(54px, 8vw, 116px) clamp(18px, 5vw, 72px) clamp(36px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.contact-hero h1 {
  max-width: 820px;
}

.contact-lead {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 18px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 20px;
  align-items: start;
}

.contact-card,
.contact-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 250, 0.9);
}

.contact-card {
  padding: clamp(22px, 4vw, 42px);
}

.legal-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.legal-list div:first-child {
  padding-top: 0;
}

.legal-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-list dt {
  color: var(--muted);
  font-size: 14px;
}

.legal-list dd {
  margin: 0;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.legal-list a {
  color: var(--berry);
}

.contact-note {
  position: sticky;
  top: 94px;
  padding: 24px;
}

.contact-note h2 {
  font-size: 34px;
  line-height: 1.05;
}

.contact-note p:not(.eyebrow) {
  color: var(--muted);
}

.policy-section {
  padding-top: clamp(36px, 5vw, 70px);
}

.policy-card {
  max-width: 980px;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 250, 0.9);
}

.policy-card p {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 21px);
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 248, 250, 0.82);
}

.site-footer span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 18px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--muted);
}

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

.cart-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100vw);
  background: var(--milk);
  box-shadow: -24px 0 70px rgba(168, 62, 99, 0.22);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-head,
.cart-footer {
  padding: 22px;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  font-size: 32px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--petal);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.cart-items {
  overflow: auto;
  padding: 14px 22px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row strong {
  display: block;
  margin-bottom: 4px;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.empty {
  color: var(--muted);
}

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

.total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 18px;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(39, 35, 31, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.scrim.open {
  opacity: 1;
  pointer-events: auto;
}

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

  .nav {
    display: none;
  }

  .hero,
  .atelier,
  .care-section,
  .lookbook-section,
  .order-panel,
  .contact-hero,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image-wrap {
    min-height: 360px;
  }

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

  .mood-board,
  .lookbook-images {
    grid-template-columns: 1fr;
  }

  .mood-card,
  .mood-card.large,
  .lookbook-images img,
  .lookbook-images img:first-child {
    min-height: 320px;
    height: 360px;
  }

  .process-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .order-panel {
    align-items: start;
  }

  .contact-note {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 17px;
  }

  .cart-toggle {
    min-height: 38px;
    padding-inline: 10px;
  }

  h1 {
    font-size: 48px;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero-image-wrap {
    min-height: 300px;
  }

  .ticker,
  .product-grid,
  .studio-strip {
    grid-template-columns: 1fr;
  }

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: block;
  }

  .section,
  .atelier,
  .contact-hero {
    padding-inline: 16px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

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

  .site-footer nav {
    justify-content: flex-start;
  }
}
