:root {
  --ivory: #fff9f3;
  --cream: #f6eadf;
  --blush: #f0c6c2;
  --rose: #c8737d;
  --plum: #3a1826;
  --wine: #6b2639;
  --brown: #7a5b4e;
  --ink: #23151b;
  --muted: #76646b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(58, 24, 38, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 198, 194, 0.45), transparent 32rem),
    radial-gradient(circle at 90% 15%, rgba(200, 115, 125, 0.18), transparent 30rem),
    var(--ivory);
}

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

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

.announcement {
  padding: 10px 18px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(90deg, var(--plum), var(--wine), var(--rose));
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: var(--container);
  margin: 16px auto 0;
  padding: 14px;
  border: 1px solid rgba(58, 24, 38, 0.09);
  border-radius: 999px;
  background: rgba(255, 249, 243, 0.82);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 55px rgba(58, 24, 38, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 20%, #ffd8d3, transparent 26%),
    linear-gradient(145deg, var(--plum), var(--rose));
  font-family: Georgia, serif;
  font-size: 1.55rem;
  box-shadow: 0 12px 30px rgba(107, 38, 57, 0.25);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--plum);
}

.nav a {
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 10px 28px rgba(58, 24, 38, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--plum);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  width: var(--container);
  margin: 72px auto 50px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 52px;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--plum);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 8vw, 7.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.7vw, 4.6rem);
}

h3 {
  color: var(--plum);
  line-height: 1.1;
}

.hero-text,
.section-heading p,
.fit-card p,
.newsletter p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.button,
.price-row button,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover,
.price-row button:hover,
.newsletter button:hover {
  transform: translateY(-2px);
}

.button.primary,
.newsletter button,
.price-row button {
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--wine));
  box-shadow: 0 18px 36px rgba(58, 24, 38, 0.18);
}

.button.secondary {
  color: var(--plum);
  background: var(--white);
  border: 1px solid rgba(58, 24, 38, 0.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(200, 115, 125, 0.18);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.portrait-card {
  overflow: hidden;
  position: relative;
  height: 640px;
  border: 14px solid rgba(255, 255, 255, 0.72);
  border-radius: 52% 48% 34% 66% / 44% 48% 52% 56%;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(58, 24, 38, 0.42));
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--white);
  background: rgba(58, 24, 38, 0.72);
  backdrop-filter: blur(14px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 4px;
  opacity: 0.78;
  font-size: 0.92rem;
}

.mini-card {
  position: absolute;
  right: -10px;
  top: 80px;
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  color: var(--plum);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mini-card span {
  display: block;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 800;
}

.mini-card strong {
  display: block;
  margin-top: 4px;
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.logo-strip {
  width: var(--container);
  margin: 0 auto 48px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(58, 24, 38, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: center;
  color: var(--wine);
  font-weight: 800;
}

.section {
  width: var(--container);
  margin: 110px auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.collection-grid,
.product-grid,
.journal-grid,
.reviews {
  display: grid;
  gap: 22px;
}

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

.collection-card {
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(58, 24, 38, 0.09);
  border: 1px solid rgba(58, 24, 38, 0.06);
}

.collection-card img {
  height: 285px;
  width: 100%;
  object-fit: cover;
}

.collection-card div {
  padding: 24px;
}

.collection-card h3,
.product-card h3,
.journal-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.collection-card p,
.product-info p,
.journal-card p,
.review-card p,
.faq-list p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.collection-card a,
.journal-card a {
  color: var(--wine);
  font-weight: 900;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(58, 24, 38, 0.07);
  box-shadow: 0 18px 55px rgba(58, 24, 38, 0.08);
}

.wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 1.2rem;
}

.product-art {
  height: 260px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.92) 0 14%, transparent 15%),
    radial-gradient(circle at 35% 54%, rgba(255,255,255,0.76) 0 9%, transparent 10%),
    radial-gradient(circle at 65% 54%, rgba(255,255,255,0.76) 0 9%, transparent 10%),
    linear-gradient(140deg, var(--cream), var(--blush));
}

.art-two {
  background:
    radial-gradient(circle at 42% 34%, rgba(255,255,255,0.75) 0 15%, transparent 16%),
    linear-gradient(135deg, #f7d8cf, #b65d6f);
}

.art-three {
  background:
    radial-gradient(circle at 55% 26%, rgba(255,255,255,0.78) 0 13%, transparent 14%),
    linear-gradient(135deg, #fff5ef, #d89da4);
}

.art-four {
  background:
    radial-gradient(circle at 48% 30%, rgba(255,255,255,0.76) 0 15%, transparent 16%),
    linear-gradient(135deg, #ead3cc, #7b2d42);
}

.product-info {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--wine);
  background: rgba(240, 198, 194, 0.34);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.price-row strong {
  font-size: 1.25rem;
  color: var(--plum);
}

.price-row button {
  min-height: 42px;
  padding: 0 16px;
}

.fit-section {
  width: var(--container);
  margin: 110px auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.fit-card,
.fit-list,
.quote-banner,
.newsletter,
.faq-list,
.review-card,
.journal-card {
  border: 1px solid rgba(58, 24, 38, 0.07);
  box-shadow: 0 20px 60px rgba(58, 24, 38, 0.08);
}

.fit-card {
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(255,255,255,0.54)),
    radial-gradient(circle at 100% 0%, rgba(240, 198, 194, 0.55), transparent 26rem);
}

.fit-stats {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fit-stats div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
}

.fit-stats strong {
  display: block;
  color: var(--plum);
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.fit-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.fit-list {
  padding: 38px;
  border-radius: var(--radius-xl);
  background: var(--plum);
  color: var(--white);
}

.fit-list h3 {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.fit-list ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.fit-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.fit-list strong {
  color: var(--white);
}

.quote-banner {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-xl);
  text-align: center;
  background: linear-gradient(135deg, var(--rose), var(--wine), var(--plum));
}

.quote-banner p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.journal-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
}

.journal-card span {
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 900;
}

.reviews {
  width: var(--container);
  margin: 40px auto 110px;
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--white);
}

.stars {
  color: var(--rose);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.review-card span {
  color: var(--wine);
  font-weight: 900;
}

.faq-section {
  width: min(900px, calc(100% - 40px));
  margin: 110px auto;
}

.faq-section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
}

details {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(58, 24, 38, 0.08);
}

details:last-child {
  border-bottom: none;
}

summary {
  cursor: pointer;
  color: var(--plum);
  font-weight: 900;
  font-size: 1.08rem;
}

details p {
  margin: 14px 0 0;
}

.newsletter {
  width: var(--container);
  margin: 110px auto;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 198, 194, 0.7), transparent 18rem),
    radial-gradient(circle at 88% 20%, rgba(200, 115, 125, 0.24), transparent 20rem),
    rgba(255, 255, 255, 0.72);
}

.newsletter form {
  max-width: 560px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(58, 24, 38, 0.08);
}

.newsletter input {
  min-height: 52px;
  padding: 0 18px;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
}

.cart-panel {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: min(390px, 100%);
  height: 100vh;
  padding: 24px;
  background: var(--ivory);
  border-left: 1px solid rgba(58, 24, 38, 0.1);
  box-shadow: -30px 0 80px rgba(58, 24, 38, 0.16);
  transform: translateX(104%);
  transition: transform 0.28s ease;
}

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

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--plum);
  font-size: 1.25rem;
}

.close-cart {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  color: var(--white);
  background: var(--plum);
  font-size: 1.4rem;
  cursor: pointer;
}

.cart-items {
  margin: 30px 0;
}

.cart-line {
  padding: 16px 0;
  border-bottom: 1px solid rgba(58, 24, 38, 0.1);
  color: var(--plum);
  font-weight: 800;
}

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

.checkout {
  width: 100%;
}

.footer {
  width: var(--container);
  margin: 90px auto 28px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--plum);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 26px;
}

.footer .brand-mark {
  box-shadow: none;
}

.footer p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  margin: 18px 0 0;
}

.footer small,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer h4 {
  margin: 0 0 16px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px;
  }

  .hero,
  .fit-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .portrait-card {
    height: min(650px, 90vw);
  }

  .collection-grid,
  .journal-grid,
  .reviews,
  .footer {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .site-header {
    margin-top: 10px;
  }

  .brand small {
    display: none;
  }

  .hero {
    margin-top: 48px;
    gap: 34px;
  }

  h1 {
    font-size: 3.45rem;
  }

  .hero-actions,
  .newsletter form {
    display: flex;
    flex-direction: column;
  }

  .button,
  .newsletter button {
    width: 100%;
  }

  .mini-card {
    right: 10px;
    top: 20px;
    width: 118px;
    height: 118px;
  }

  .logo-strip,
  .product-grid,
  .fit-stats {
    grid-template-columns: 1fr;
  }

  .section,
  .fit-section,
  .faq-section,
  .newsletter {
    margin-top: 74px;
    margin-bottom: 74px;
  }

  .footer {
    padding: 26px;
  }
}
