:root {
  --red: #7c1634;
  --red-bright: #a91e49;
  --blue: #173d74;
  --cream: #fffaf4;
  --ink: #172033;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: ui-rounded, "Avenir Next", Avenir, system-ui, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(22px, 6vw, 84px);
  background: rgb(255 250 244 / 92%);
  border-bottom: 1px solid rgb(124 22 52 / 12%);
  backdrop-filter: blur(12px);
}
.logo { color: var(--red); font-size: 1.55rem; font-weight: 900; text-decoration: none; }
.logo span { color: var(--blue); }
nav { display: flex; gap: clamp(14px, 3vw, 34px); }
nav a { color: var(--blue); font-weight: 700; text-decoration: none; }
nav a:hover { color: var(--red-bright); }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(38px, 7vw, 110px);
  padding: clamp(45px, 7vw, 90px) clamp(22px, 7vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgb(169 30 73 / 10%) 0 8%, transparent 9%),
    radial-gradient(circle at 92% 80%, rgb(23 61 116 / 10%) 0 12%, transparent 13%),
    linear-gradient(135deg, #fffaf4, #fff2f6 48%, #eff5ff);
}
.eyebrow { margin: 0 0 12px; color: var(--red-bright); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 24px; color: var(--blue); font-family: Georgia, serif; font-size: clamp(3rem, 7vw, 6.8rem); line-height: .94; letter-spacing: -.05em; }
h1 em { color: var(--red); font-weight: 400; }
.intro { max-width: 570px; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.button { display: inline-block; padding: 15px 24px; border-radius: 999px; font-weight: 800; text-decoration: none; }
.button.primary { color: white; background: var(--red); box-shadow: 0 9px 24px rgb(124 22 52 / 25%); }
.price { color: var(--blue); }
.price strong { font-size: 1.8rem; }

.hero-photo { position: relative; width: min(100%, 480px); justify-self: center; }
.hero-photo img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; border: 9px solid white; border-radius: 48% 48% 28px 28px; box-shadow: 0 28px 60px rgb(23 61 116 / 24%); }
.photo-label { position: absolute; right: -20px; bottom: 24px; padding: 12px 18px; color: white; background: var(--blue); border: 4px solid white; border-radius: 999px; font-size: .84rem; font-weight: 800; transform: rotate(-3deg); }
.sparkle { position: absolute; z-index: 2; color: #ffe066; font-size: 3rem; text-shadow: 0 0 18px white; animation: twinkle 2s ease-in-out infinite; }
.sparkle-one { top: 8%; left: -8%; }
.sparkle-two { top: 32%; right: -7%; animation-delay: .7s; }
@keyframes twinkle { 50% { transform: scale(.65) rotate(20deg); opacity: .6; } }

.colors-section { padding: clamp(70px, 9vw, 120px) clamp(22px, 7vw, 100px); text-align: center; }
h2 { color: var(--blue); font-family: Georgia, serif; font-size: clamp(2.3rem, 5vw, 4.6rem); letter-spacing: -.04em; }
.section-intro { max-width: 570px; margin: -12px auto 42px; font-size: 1.1rem; }
.bag-grid { display: grid; grid-template-columns: repeat(5, minmax(150px, 1fr)); gap: 18px; max-width: 1250px; margin: 0 auto; }
.bag-card { padding: 24px 14px 18px; background: white; border: 1px solid rgb(23 61 116 / 10%); border-radius: 24px; box-shadow: 0 12px 30px rgb(23 61 116 / 8%); transition: transform .2s, box-shadow .2s; }
.bag-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgb(23 61 116 / 15%); }
.bag-card h3 { margin: 10px 0 3px; color: var(--blue); }
.bag-card p { margin-bottom: 12px; color: var(--red); font-weight: 900; }
.bag-card button { width: 100%; padding: 10px 8px; border: 0; border-radius: 999px; color: white; background: var(--blue); font: inherit; font-size: .82rem; font-weight: 800; cursor: pointer; }
.bag-card button:hover, .bag-card button:focus-visible { background: var(--red); }
.mini-bag { position: relative; width: 78px; height: 100px; margin: 10px auto 18px; border-radius: 20px 20px 13px 13px; background: repeating-linear-gradient(100deg, var(--bag-color) 0 7px, var(--bag-shadow) 8px 10px, var(--bag-color) 11px 17px); box-shadow: inset -8px -8px 15px rgb(0 0 0 / 10%), 0 10px 15px rgb(23 61 116 / 14%); }
.mini-bag::before { content: ""; position: absolute; width: 55px; height: 64px; left: 9px; top: -25px; border: 7px solid var(--bag-color); border-bottom: 0; border-radius: 40px 40px 0 0; }
.mini-bag span { position: absolute; inset: 8px; border: 2px dashed rgb(255 255 255 / 35%); border-radius: 14px; }
.light-bag .mini-bag { border: 1px solid #d8d5ca; }

.about { display: grid; grid-template-columns: minmax(260px, .75fr) 1.25fr; gap: clamp(38px, 7vw, 90px); align-items: center; padding: clamp(60px, 8vw, 105px) clamp(22px, 9vw, 130px); color: white; background: var(--blue); }
.about .eyebrow { color: #ffb5ca; }
.about h2 { margin-bottom: 0; color: white; }
.about-story > p:not(.eyebrow) { max-width: 680px; font-size: 1.12rem; line-height: 1.8; }
.about-photo-wrap { position: relative; max-width: 430px; margin: 0 auto; }
.about-photo { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 7px solid white; border-radius: 34px; box-shadow: 0 24px 50px rgb(0 0 0 / 24%); transform: rotate(-2deg); }
.about-photo-note { position: absolute; right: -14px; bottom: 24px; padding: 11px 16px; color: var(--red); background: white; border-radius: 999px; font-weight: 900; transform: rotate(3deg); box-shadow: 0 8px 20px rgb(0 0 0 / 18%); }
.order { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(55px, 7vw, 90px) clamp(22px, 9vw, 130px); background: linear-gradient(135deg, #fff7fa, #edf5ff); }
.order h2 { margin-bottom: 14px; }
.order p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; font-size: 1.1rem; line-height: 1.7; }
.order-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; flex: 0 0 auto; }
.phone-number { color: var(--blue); font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 900; text-decoration: none; white-space: nowrap; }
.phone-number:hover { color: var(--red); }
footer { padding: 30px; color: var(--red); text-align: center; font-weight: 800; }
footer p { margin-bottom: 8px; }
.domain { color: var(--blue); font-size: 1.15rem; font-weight: 900; text-decoration: none; }
.domain:hover { color: var(--red-bright); text-decoration: underline; }
.message { position: fixed; right: 22px; bottom: 22px; z-index: 20; max-width: calc(100% - 44px); padding: 15px 20px; color: white; background: var(--red); border-radius: 16px; box-shadow: 0 12px 30px rgb(0 0 0 / 20%); font-weight: 800; opacity: 0; pointer-events: none; transform: translateY(20px); transition: .25s; }
.message.show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .intro { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-photo { width: min(80%, 460px); }
  .bag-grid { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
  .about { grid-template-columns: 1fr; gap: 38px; text-align: center; }
  .about-story > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .order { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .site-header { align-items: flex-start; }
  nav { gap: 12px; font-size: .82rem; }
  .hero { min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-photo { width: 100%; }
  .photo-label { right: 4px; }
  .bag-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bag-card { padding: 20px 8px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
