*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --paper: #fbf7f3;
  --paper-2: #f3eae3;
  --surface: #ffffff;
  --ink: #33212c;
  --ink-2: #574652;
  --muted: #8c7a84;
  --faint: #b7a8af;
  --line: #ebe0d9;
  --line-2: #e0d2c9;
  --rose: #c45b78;
  --rose-deep: #a8425f;
  --rose-soft: #f8e8ed;
  --rose-glow: rgba(196, 91, 120, 0.25);
  --sage: #7e9a78;
  --sage-deep: #5f7b5a;
  --sage-soft: #e9f0e6;
  --gold: #c99a53;
  --fd: "Fraunces", serif;
  --fb: "Mulish", sans-serif;
  --nav-h: 74px;
  --eo: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --es: cubic-bezier(0.34, 1.56, 0.64, 1);
  --sh-s: 0 2px 8px rgba(51, 33, 44, 0.05);
  --sh-m: 0 16px 40px rgba(51, 33, 44, 0.1);
  --sh-l: 0 30px 70px rgba(51, 33, 44, 0.16);
  --r: 18px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--fb);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--rose-deep);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--rose);
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.section {
  padding: 118px 0;
}
/* image placeholder: soft floral gradient behind every photo so nothing looks broken */
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--rose-soft),
    var(--sage-soft) 70%,
    #fff
  );
}
.ph::after {
  content: "❀";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  color: rgba(196, 91, 120, 0.3);
}
.ph img {
  position: relative;
  z-index: 1;
  transition: opacity 0.6s var(--eo), transform 0.8s var(--eo);
}
.ph img.imgfail {
  opacity: 0;
}
.eyebrow {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--rose);
}
.center .eyebrow {
  justify-content: center;
}
.center .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--rose);
}
.s-title {
  font-family: var(--fd);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 18px 0 0;
}
.s-title em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}
.s-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin-top: 18px;
}
.center {
  text-align: center;
}
.center .s-lead {
  margin-left: auto;
  margin-right: auto;
}
/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 40px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s,
    border-color 0.2s, color 0.2s;
}
.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.btn-rose {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn-rose:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px var(--rose-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 34px;
  font-size: 0.92rem;
}
/* nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(251, 247, 243, 0.8);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.nav.scrolled {
  background: rgba(251, 247, 243, 0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 26px rgba(51, 33, 44, 0.05);
}
.nav-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.brand svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.brand .bn {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand .bn em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--eo);
}
.nav-links a:hover {
  color: var(--rose-deep);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: 0.2s;
}
.cart-btn:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
}
.cart-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  border-radius: 10px;
  background: var(--rose);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  padding: 0 5px;
  transform: scale(0);
  transition: transform 0.25s var(--es);
}
.cart-count.show {
  transform: scale(1);
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* hero */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -6%;
  width: 46%;
  height: 80%;
  background: radial-gradient(circle, var(--rose-soft), transparent 68%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -8%;
  left: -6%;
  width: 38%;
  height: 60%;
  background: radial-gradient(circle, var(--sage-soft), transparent 66%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--sage-deep);
}
.hero h1 {
  font-family: var(--fd);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}
.hero .lead {
  font-size: 1.14rem;
  color: var(--ink-2);
  margin: 24px 0 34px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-trust {
  display: flex;
  gap: 1.8rem;
  margin-top: 42px;
  flex-wrap: wrap;
}
.ht {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--ink-2);
}
.ht svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage-deep);
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
}
.hero-img-wrap {
  position: relative;
}
.hero-img {
  aspect-ratio: 4/5;
  border-radius: 140px 140px 18px 18px;
  box-shadow: var(--sh-l);
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -26px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--sh-m);
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 230px;
}
.hero-badge .hb-ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.hero-badge b {
  font-family: var(--fd);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.96rem;
  display: block;
}
.hero-badge span {
  font-size: 0.76rem;
  color: var(--muted);
}
.hero-deco {
  position: absolute;
  top: -18px;
  right: -14px;
  font-family: var(--fd);
  font-style: italic;
  color: var(--rose);
  font-size: 1.1rem;
  background: #fff;
  border: 1px solid var(--rose-soft);
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: var(--sh-s);
  transform: rotate(4deg);
}
/* marquee strip */
.strip {
  background: var(--rose);
  color: #fff;
  overflow: hidden;
  padding: 15px 0;
  position: relative;
}
.strip-track {
  display: flex;
  white-space: nowrap;
  animation: marq 30s linear infinite;
}
.strip-track span {
  font-family: var(--fd);
  font-style: italic;
  font-size: 1.1rem;
  padding: 0 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  opacity: 0.96;
}
.strip-track span::after {
  content: "✿";
  font-style: normal;
  font-size: 0.7rem;
  opacity: 0.7;
}
/* collection / shop */
.shop {
  background: var(--paper);
}
.shop-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2.6rem;
  justify-content: center;
}
.chip {
  font-family: var(--fb);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-2);
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: 30px;
  padding: 9px 20px;
  cursor: pointer;
  transition: 0.2s;
}
.chip:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
}
.chip.on {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.4rem;
}
.card {
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-s);
  transition: transform 0.35s var(--eo), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.card.hide {
  display: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-m);
}
.card-img {
  aspect-ratio: 4/5;
}
.card:hover .card-img img {
  transform: scale(1.05);
}
.card-body {
  padding: 1.5rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-cat {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.card-name {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--ink);
  margin: 7px 0 5px;
}
.card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
}
.price {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
}
.add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  border: none;
  padding: 10px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s;
}
.add:hover {
  background: var(--rose-deep);
}
.add svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}
/* promises */
.promises {
  background: var(--sage-soft);
}
.prom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 0;
}
.prom {
  text-align: center;
}
.prom-ic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: var(--sh-s);
}
.prom-ic svg {
  width: 28px;
  height: 28px;
  stroke: var(--sage-deep);
  stroke-width: 1.6;
  fill: none;
}
.prom h4 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.prom p {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.5;
}
/* about */
.about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}
.about-img {
  aspect-ratio: 1/1;
  border-radius: 18px 140px 18px 140px;
  box-shadow: var(--sh-l);
}
.about-text p {
  color: var(--ink-2);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}
.about-sign {
  font-family: var(--fd);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-deep);
  margin-top: 0.4rem;
}
.about-stats {
  display: flex;
  gap: 2.6rem;
  margin-top: 2rem;
}
.ast .n {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}
.ast .l {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-top: 4px;
}
/* occasions */
.occasions {
  background: var(--paper-2);
}
.occ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 3.2rem;
}
.occ {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: 0.25s;
  border: 1px solid transparent;
}
.occ:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-m);
  border-color: var(--rose-soft);
}
.occ-ic {
  font-size: 1.9rem;
  line-height: 1;
  flex-shrink: 0;
}
.occ h4 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
}
.occ p {
  font-size: 0.84rem;
  color: var(--muted);
}
.occ .arr {
  margin-left: auto;
  color: var(--rose);
  transition: transform 0.25s;
}
.occ:hover .arr {
  transform: translateX(4px);
}
/* subscription band */
.sub {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sub::before {
  content: "❀";
  position: absolute;
  font-size: 24rem;
  color: rgba(255, 255, 255, 0.04);
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.sub-in {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.sub .eyebrow {
  color: #e9a9b8;
}
.sub .eyebrow::before {
  background: #e9a9b8;
}
.sub h2 {
  font-family: var(--fd);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #fff;
  margin: 16px 0;
}
.sub p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
}
.sub-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sub-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 20px;
}
.tier b {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}
.tier span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}
.tier .tp {
  font-family: var(--fd);
  font-weight: 600;
  color: #e9a9b8;
  font-size: 1.15rem;
}
/* testimonials */
.testi {
  background: var(--paper);
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.4rem;
}
.quote {
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: var(--sh-s);
  display: flex;
  flex-direction: column;
}
.quote .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.quote p {
  font-family: var(--fd);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
}
.quote .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.quote .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-family: var(--fd);
  font-weight: 600;
}
.quote .who b {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-family: var(--fb);
  font-weight: 700;
}
.quote .who span {
  font-size: 0.78rem;
  color: var(--muted);
}
/* contact / visit */
.visit {
  background: var(--paper-2);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.visit-info p.s-lead {
  margin-bottom: 1.6rem;
}
.vrow {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.vrow:last-child {
  border-bottom: none;
}
.vrow .vi {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--rose-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--rose-deep);
}
.vrow .vi svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.vrow b {
  font-family: var(--fd);
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  display: block;
  margin-bottom: 2px;
}
.vrow span {
  font-size: 0.9rem;
  color: var(--ink-2);
  display: block;
}
.form {
  background: #fff;
  border-radius: 20px;
  padding: 2.4rem;
  box-shadow: var(--sh-m);
  position: relative;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 1.1rem;
}
.fg label {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.fg input,
.fg select,
.fg textarea {
  background: var(--paper);
  border: 1.5px solid var(--line-2);
  border-radius: 11px;
  color: var(--ink);
  font-family: var(--fb);
  font-size: 0.95rem;
  padding: 12px 14px;
  outline: none;
  transition: 0.2s;
  width: 100%;
  appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--faint);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px var(--rose-glow);
  background: #fff;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238C7A84' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.fg textarea {
  resize: vertical;
  min-height: 92px;
}
.form .btn {
  width: 100%;
  justify-content: center;
}
.form-ok {
  display: none;
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 2rem;
}
.form-ok.on {
  display: flex;
  animation: fade 0.5s var(--eo);
}
.form-ok .ic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rose);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 0 0 8px var(--rose-soft);
}
.form-ok h3 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
}
.form-ok p {
  color: var(--muted);
}
/* toast */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 120%);
  background: var(--ink);
  color: #fff;
  padding: 13px 22px;
  border-radius: 40px;
  font-size: 0.86rem;
  font-weight: 600;
  z-index: 2000;
  box-shadow: var(--sh-l);
  transition: transform 0.35s var(--es);
  display: flex;
  align-items: center;
  gap: 9px;
}
.toast.show {
  transform: translate(-50%, 0);
}
.toast .td {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}
/* footer */
.footer {
  background: #2a1a24;
  color: rgba(255, 255, 255, 0.62);
  padding: 74px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .brand {
  color: #fff;
  margin-bottom: 14px;
}
.footer .brand .bn em {
  color: #e9a9b8;
}
.foot-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.6;
}
.foot-soc {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}
.foot-soc a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  transition: 0.2s;
}
.foot-soc a:hover {
  border-color: #e9a9b8;
  color: #fff;
  background: rgba(233, 169, 184, 0.15);
}
.foot-col h5 {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 14px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-col a,
.foot-col li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.foot-col a:hover {
  color: #e9a9b8;
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
}
/* anim */
@keyframes marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s var(--eo), transform 0.7s var(--eo);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
  border-radius: 5px;
}
/* responsive */
@media (max-width: 1000px) {
  .hero-grid,
  .about-grid,
  .visit-grid,
  .sub-in {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-img {
    aspect-ratio: 16/12;
    border-radius: 80px 80px 18px 18px;
  }
  .about-img {
    aspect-ratio: 16/11;
    border-radius: 18px 80px 18px 80px;
  }
  .shop-grid,
  .occ-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }
}
@media (max-width: 680px) {
  .section {
    padding: 80px 0;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(251, 247, 243, 0.99);
    border-top: 1px solid var(--line);
    padding: 1.8rem 30px;
    gap: 1.5rem;
    box-shadow: var(--sh-m);
  }
  .shop-grid,
  .occ-grid {
    grid-template-columns: 1fr;
  }
  .prom-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-badge {
    left: 0;
  }
  .foot-bot {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 430px) {
  .wrap,
  .nav-in {
    padding: 0 20px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    gap: 1.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
}
