/* ============================================================
   FLORELINA — Luxury Floral Boutique
   Design system: ivory canvas, warm ink, restrained gold,
   soft blush. Cormorant display + Jost UI + Pinyon script mark.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&family=Pinyon+Script&display=swap');

:root {
  /* surfaces */
  --ivory: #FBF8F2;
  --ivory-deep: #F3ECE1;
  --paper: #FFFFFF;
  --ink: #181410;
  --ink-soft: #4A443B;
  --ink-faint: #8C857A;

  /* accents */
  --blush: #E9CFC8;
  --blush-soft: #F7EBE6;
  --blush-deep: #C99A92;
  --gold: #A9863F;
  --gold-bright: #C2A05A;
  --line: rgba(24, 20, 16, 0.12);
  --line-soft: rgba(24, 20, 16, 0.06);

  /* type */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --script: 'Pinyon Script', cursive;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;

  /* metrics */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow-soft: 0 18px 50px -28px rgba(24, 20, 16, 0.45);
  --shadow-card: 0 30px 70px -40px rgba(24, 20, 16, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

p { text-wrap: pretty; }
.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 54ch;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 128px); }
.center { text-align: center; }
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--gold { background: transparent; color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold); border-color: var(--gold); color: var(--ivory); }
.btn--wa { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--wa:hover { background: #128C7E; border-color: #128C7E; color: #fff; }
.btn--block { width: 100%; }
.btn--sm { padding: 12px 20px; font-size: 0.7rem; }
.btn svg { width: 16px; height: 16px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .4s, padding .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(14px);
  padding-block: 14px;
  border-color: var(--line-soft);
  box-shadow: 0 10px 30px -26px rgba(24,20,16,.5);
}
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand .mark { font-family: var(--script); font-size: 2.05rem; color: var(--ink); }
.brand .sub { font-family: var(--sans); font-size: 0.5rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding-block: 4px; transition: color .3s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .35s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; background: none; border: none; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; background: var(--ivory); transform: translateX(100%); transition: transform .5s cubic-bezier(.7,0,.2,1); display: flex; flex-direction: column; padding: 28px var(--gutter); }
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; }
.drawer-close { background: none; border: none; font-size: 1.6rem; color: var(--ink); }
.drawer nav { display: flex; flex-direction: column; gap: 8px; margin-top: 12vh; }
.drawer nav a { font-family: var(--serif); font-size: 2.2rem; color: var(--ink); padding-block: 8px; border-bottom: 1px solid var(--line-soft); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--ivory); padding-block: clamp(56px, 8vw, 92px); }
.site-footer a { color: var(--ivory); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.site-footer .mark { font-family: var(--script); font-size: 2.6rem; color: var(--ivory); }
.site-footer .ft-tag { color: rgba(251,248,242,.6); margin-top: 12px; max-width: 30ch; font-size: .92rem; }
.ft-col h4 { font-family: var(--sans); font-weight: 500; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; }
.ft-col a, .ft-col p { display: block; color: rgba(251,248,242,.72); font-size: .94rem; margin-bottom: 10px; transition: color .3s; }
.ft-col a:hover { color: var(--ivory); }
.footer-base { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(251,248,242,.14); font-size: .8rem; color: rgba(251,248,242,.5); flex-wrap: wrap; }
.footer-base-right { display: inline-flex; align-items: center; gap: 14px; }
.ft-admin { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,248,242,.45); padding: 5px 12px; border: 1px solid rgba(251,248,242,.18); border-radius: 999px; transition: color .3s, border-color .3s, background .3s; }
.ft-admin::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-bright); }
.ft-admin:hover { color: var(--ivory); border-color: var(--gold-bright); background: rgba(194,160,90,.12); }

/* ---------- product card ---------- */
.product-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .5s, border-color .4s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--line); }
.product-card .pc-media { position: relative; aspect-ratio: 4/5; background: var(--blush-soft); overflow: hidden; }
.product-card .pc-media .pc-img { width: 100%; height: 100%; object-fit: cover; }
.product-card .pc-badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(251,248,242,.92); color: var(--ink); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; padding: 7px 12px; border-radius: 2px; }
.product-card .pc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .pc-name { font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; }
.product-card .pc-desc { color: var(--ink-faint); font-size: .9rem; min-height: 2.4em; }
.product-card .pc-price { font-family: var(--serif); font-size: 1.45rem; color: var(--gold); margin-top: 4px; }
.product-card .pc-actions { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.pc-actions .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.product-placeholder,
.hero-art,
.insta-tile,
.co-media-art,
.pdp-art-frame,
.pdp-thumb-art {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.7), transparent 30%),
    linear-gradient(145deg, #f7ebe6 0%, #f2ddd4 42%, #ead4ca 100%);
}
.product-placeholder::after,
.hero-art::after,
.insta-tile::after,
.co-media-art::after,
.pdp-art-frame::after,
.pdp-thumb-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 72%, rgba(169,134,63,.18), transparent 32%),
    linear-gradient(180deg, transparent 0%, rgba(24,20,16,.08) 100%);
}
.product-placeholder .pp-wrap,
.hero-art .hero-paper {
  position: absolute;
  bottom: -6%;
  width: 56%;
  height: 58%;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,231,222,.92));
  box-shadow: 0 14px 30px rgba(24,20,16,.1);
}
.product-placeholder .pp-wrap--back,
.hero-art .hero-paper--back { left: 11%; transform: rotate(-12deg); }
.product-placeholder .pp-wrap--front,
.hero-art .hero-paper--front { right: 11%; transform: rotate(12deg); }
.product-placeholder .pp-roses,
.hero-art .hero-bloom {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f7c4c9 0%, #cf6679 45%, #8d233c 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.product-placeholder .pp-roses { inset: 0; }
.product-placeholder .pp-roses i {
  position: absolute;
  display: block;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f8d2d5 0%, #d86b7d 45%, #8d233c 100%);
}
.product-placeholder .pp-roses i:nth-child(1) { top: 18%; left: 18%; }
.product-placeholder .pp-roses i:nth-child(2) { top: 14%; left: 39%; }
.product-placeholder .pp-roses i:nth-child(3) { top: 20%; right: 17%; }
.product-placeholder .pp-roses i:nth-child(4) { top: 39%; left: 26%; }
.product-placeholder .pp-roses i:nth-child(5) { top: 41%; right: 24%; }
.product-placeholder .pp-crown,
.hero-art .hero-crown {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 24%;
  height: 10%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #d5b36a, #9f7c32);
  clip-path: polygon(0 100%, 10% 35%, 24% 64%, 38% 12%, 50% 58%, 62% 12%, 76% 64%, 90% 35%, 100% 100%);
}
.product-placeholder--detail .pp-wrap { height: 54%; }
.product-placeholder--detail .pp-roses i { width: 22%; }
.co-card-media img,
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- feature / steps ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.feature-cell { background: var(--ivory); padding: 40px 32px; display: flex; flex-direction: column; gap: 12px; transition: background .4s; }
.feature-cell:hover { background: var(--paper); }
.feature-cell .fc-num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.1rem; }
.feature-cell h3 { font-size: 1.5rem; }
.feature-cell p { color: var(--ink-faint); font-size: .95rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { display: flex; flex-direction: column; gap: 14px; }
.step .st-num { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; font-family: var(--serif); font-size: 1.35rem; color: var(--gold); }
.step h3 { font-size: 1.3rem; }
.step p { color: var(--ink-faint); font-size: .94rem; }

/* ---------- checkout ---------- */
.checkout { padding-top: clamp(120px, 16vh, 170px); padding-bottom: clamp(56px, 8vw, 100px); }
.co-head { max-width: 60ch; margin-bottom: 44px; }
.co-head .eyebrow { display: block; margin-bottom: 14px; }
.co-head h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.co-notice { margin: 0 0 28px; padding: 14px 16px; border: 1px solid rgba(169,134,63,.22); background: var(--blush-soft); color: var(--ink); border-radius: var(--radius); font-size: .92rem; }
.co-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.co-fs { border: none; margin-bottom: 34px; }
.co-fs legend { font-family: var(--sans); font-weight: 500; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink); padding-bottom: 18px; border-bottom: 1px solid var(--line); width: 100%; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: .78rem; letter-spacing: .08em; color: var(--ink-soft); font-weight: 400; }
.field .opt { color: var(--ink-faint); text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .98rem; font-weight: 300; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; transition: border-color .3s, box-shadow .3s; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(169,134,63,.12); }
.field .err { display: none; font-size: .76rem; color: #b3302a; }
.field.invalid input, .field.invalid select { border-color: #b3302a; }
.field.invalid .err { display: block; }
.field input:disabled { background: var(--ivory-deep); color: var(--ink-faint); cursor: not-allowed; }

.pay-placeholder { border: 1px dashed var(--line); border-radius: var(--radius); padding: 22px; background: var(--blush-soft); }
.pay-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.pay-ic { font-size: 1.3rem; }
.pay-row strong { display: block; font-family: var(--sans); font-weight: 500; font-size: .95rem; margin-bottom: 3px; }
.pay-row span { font-size: .85rem; color: var(--ink-soft); }
.pay-fields .field { margin-bottom: 14px; opacity: .6; }
.co-finenote { margin-top: 18px; font-size: .8rem; color: var(--ink-faint); font-style: italic; text-align: center; }

.co-summary { position: sticky; top: 100px; }
.co-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.co-card-media { aspect-ratio: 16/11; background: var(--blush-soft); }
.co-card-body { padding: 24px; }
.co-card-body .eyebrow { display: block; font-size: .6rem; margin-bottom: 8px; }
.co-card-body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.co-card-body > p { color: var(--ink-faint); font-size: .88rem; margin-bottom: 18px; }
.co-line { display: flex; justify-content: space-between; font-size: .92rem; padding: 11px 0; border-top: 1px solid var(--line-soft); color: var(--ink-soft); }
.co-total { border-top: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.co-total span:last-child { color: var(--gold); }
@media (max-width: 880px) { .co-grid { grid-template-columns: 1fr; } .co-summary { position: static; order: -1; } .field-row { grid-template-columns: 1fr; } }

/* confirmation overlay */
.co-confirm { position: fixed; inset: 0; z-index: 400; display: none; place-items: center; padding: 20px; background: rgba(24,20,16,.6); backdrop-filter: blur(6px); }
.co-confirm.open { display: grid; animation: dmFade .3s ease; }
.co-confirm-panel { background: var(--paper); border-radius: var(--radius); padding: clamp(34px, 6vw, 60px); max-width: 540px; text-align: center; box-shadow: var(--shadow-card); animation: dmPop .45s cubic-bezier(.2,.7,.3,1); }
.cc-seal { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: var(--ivory); display: grid; place-items: center; font-size: 1.7rem; margin: 0 auto 22px; }
.co-confirm-panel .eyebrow { display: block; margin-bottom: 12px; }
.co-confirm-panel h2 { margin-bottom: 16px; }
.cc-actions { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

/* ---------- product detail ---------- */
.pdp { padding-top: clamp(120px, 16vh, 170px); padding-bottom: clamp(48px, 7vw, 90px); }
.pdp-back { display: inline-block; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 30px; transition: color .3s; }
.pdp-back:hover { color: var(--ink); }
.pdp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.pdp-grid > * { min-width: 0; }
.pdp-info h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 14px; overflow-wrap: break-word; }
.pdp-main { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--blush-soft); box-shadow: var(--shadow-card); }
.pdp-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.pdp-thumb { padding: 0; border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: var(--paper); aspect-ratio: 1; transition: border-color .25s, transform .25s, box-shadow .25s; }
.pdp-thumb:hover { border-color: var(--gold); transform: translateY(-1px); }
.pdp-thumb.is-active { border-color: var(--gold); box-shadow: 0 10px 24px -18px rgba(24,20,16,.6); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb-art { aspect-ratio: 1; border-radius: var(--radius); }
.pdp-info .eyebrow { display: block; margin-bottom: 14px; }
.pdp-info h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.pdp-price { font-family: var(--serif); font-size: 2rem; color: var(--gold); margin-bottom: 22px; }
.pdp-desc { margin-bottom: 28px; }
.pdp-includes { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 24px; margin-bottom: 30px; }
.pdp-includes-h { display: block; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.pdp-includes ul { list-style: none; display: grid; gap: 10px; }
.pdp-includes li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .98rem; }
.pdp-includes li::before { content: ''; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.pdp-actions { display: flex; flex-direction: column; gap: 10px; }
.pdp-actions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pdp-vary { margin-top: 18px; font-size: .82rem; color: var(--ink-faint); font-style: italic; }
@media (max-width: 820px) { .pdp-grid { grid-template-columns: 1fr; } .pdp-main { max-width: 520px; } }

/* ---------- page hero (interior) ---------- */
.page-hero { padding-top: clamp(130px, 20vh, 190px); padding-bottom: clamp(36px, 6vw, 64px); text-align: center; }
.page-hero .eyebrow { display: block; margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); margin-bottom: 20px; }
.shop-note { text-align: center; margin-top: 44px; font-size: .85rem; color: var(--ink-faint); font-style: italic; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(120px, 18vh, 180px); padding-bottom: clamp(40px, 8vw, 90px); position: relative; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero-copy .eyebrow { display: block; margin-bottom: 22px; }
.hero h1 { margin-bottom: 26px; }
.hero-em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-media { position: relative; }
.hero-script { position: absolute; top: -42px; left: -18px; font-family: var(--script); font-size: clamp(3rem, 7vw, 5.5rem); color: var(--blush); opacity: .8; z-index: 0; pointer-events: none; user-select: none; }
.hero-frame { position: relative; z-index: 1; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; display: block; }
.hero-tag { position: absolute; z-index: 2; right: -10px; bottom: 28px; background: var(--paper); padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow-soft); text-align: center; }
.hero-tag .ht-line { display: block; font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--ink); }
.hero-tag .ht-sub { display: block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.hero-art .hero-paper { height: 64%; width: 58%; bottom: -8%; }
.hero-art .hero-bloom { width: 20%; aspect-ratio: 1; }
.hero-art .hero-bloom--a { top: 15%; left: 17%; }
.hero-art .hero-bloom--b { top: 9%; left: 38%; }
.hero-art .hero-bloom--c { top: 16%; right: 17%; }
.hero-art .hero-bloom--d { top: 35%; left: 27%; }
.hero-art .hero-bloom--e { top: 37%; right: 27%; }
.hero-art .hero-butterfly {
  position: absolute;
  width: 13%;
  aspect-ratio: 1.1;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(244,212,224,.9));
  clip-path: polygon(50% 0%, 69% 24%, 100% 18%, 82% 49%, 100% 82%, 66% 74%, 50% 100%, 34% 74%, 0% 82%, 18% 49%, 0% 18%, 31% 24%);
  box-shadow: 0 8px 18px rgba(24,20,16,.08);
}
.hero-art .hero-butterfly--a { top: 18%; right: 14%; transform: rotate(12deg); }
.hero-art .hero-butterfly--b { top: 46%; left: 11%; transform: rotate(-14deg); }

/* ---------- product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- special / how / visit ---------- */
.special { background: var(--ivory-deep); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.visit-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 14px; }
.visit-card .eyebrow { display: block; }
.visit-card h3 { margin-bottom: 2px; }
.visit-card p { color: var(--ink-soft); flex: 1; }
.visit-card .btn { margin-top: 12px; }
.visit-card--alt { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.visit-card--alt p { color: rgba(251,248,242,.72); }
.visit-card--alt .eyebrow { color: var(--gold-bright); }
@media (max-width: 720px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- instagram ---------- */
.insta-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.insta-head h2 { margin-block: 12px 8px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.insta-tile { aspect-ratio: 1; border-radius: var(--radius); }
.insta-tile--a { background: linear-gradient(145deg, #f3d6d1, #f7efe8); }
.insta-tile--b { background: linear-gradient(145deg, #efe5d7, #f6d4dd); }
.insta-tile--c { background: linear-gradient(145deg, #f8e3dc, #e8d5cf); }
.insta-tile--d { background: linear-gradient(145deg, #efd7d2, #f7ebe6); }
.insta-tile--e { background: linear-gradient(145deg, #f4e5da, #edd0c7); }
.insta-tile--f { background: linear-gradient(145deg, #f6d9e0, #f7ede4); }
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- final cta ---------- */
.final-cta { background: var(--ink); color: var(--ivory); text-align: center; padding-block: clamp(72px, 12vw, 140px); }
.final-cta .eyebrow { display: block; margin-bottom: 18px; }
.final-cta h2 { color: var(--ivory); }
.btn--ivory { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn--ivory:hover { background: transparent; color: var(--ivory); }
.btn--wa-light { background: transparent; color: var(--ivory); border-color: rgba(251,248,242,.5); }
.btn--wa-light:hover { background: #128C7E; border-color: #128C7E; color: #fff; }

/* ---------- reveal animation ---------- */
@media print { .reveal { opacity: 1 !important; transform: none !important; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s cubic-bezier(.2,.7,.3,1), transform 1s cubic-bezier(.2,.7,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-d="1"] { transition-delay: .08s; }
  .reveal[data-d="2"] { transition-delay: .16s; }
  .reveal[data-d="3"] { transition-delay: .24s; }
  .reveal[data-d="4"] { transition-delay: .32s; }
}

/* ---------- delivery modal ---------- */
.delivery-modal { position: fixed; inset: 0; z-index: 300; display: none; }
.delivery-modal.open { display: block; }
.dm-backdrop { position: absolute; inset: 0; background: rgba(24,20,16,.55); backdrop-filter: blur(4px); animation: dmFade .3s ease; }
.dm-panel { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(520px, calc(100vw - 36px)); background: var(--paper); border-radius: var(--radius); padding: clamp(28px, 5vw, 44px); box-shadow: var(--shadow-card); animation: dmPop .4s cubic-bezier(.2,.7,.3,1); max-height: 90vh; overflow: auto; }
.dm-panel .eyebrow { display: block; margin-bottom: 10px; }
.dm-x { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 1.7rem; line-height: 1; color: var(--ink-faint); transition: color .3s; }
.dm-x:hover { color: var(--ink); }
.dm-options { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.dm-opt { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .3s, background .3s, transform .3s; }
.dm-opt:hover { border-color: var(--gold); background: var(--blush-soft); transform: translateX(3px); }
.dm-opt strong { display: block; font-family: var(--sans); font-weight: 500; font-size: .98rem; }
.dm-opt span { display: block; font-size: .82rem; color: var(--ink-faint); }
.dm-opt svg { color: #128C7E; flex: none; }
.dm-ic { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--ivory); font-family: var(--serif); font-size: 1.1rem; }
.dm-note { margin-top: 20px; font-size: .82rem; color: var(--ink-faint); border-top: 1px solid var(--line-soft); padding-top: 16px; }
@keyframes dmFade { from { opacity: 0; } }
@keyframes dmPop { from { opacity: 0; transform: translate(-50%, -46%) scale(.97); } }

/* ---------- contact / custom orders ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-intro .eyebrow { display: block; margin-bottom: 18px; }
.contact-intro h2 { margin-bottom: 18px; }
.contact-points { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.contact-points li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .98rem; }
.contact-points li::before { content: ''; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.contact-form { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-soft); }
.contact-form .btn { margin-top: 8px; }
.lead-success { text-align: center; padding: 16px 0 8px; }
.lead-success .ls-seal { width: 60px; height: 60px; border-radius: 50%; background: var(--gold); color: var(--ivory); display: grid; place-items: center; font-size: 1.6rem; margin: 0 auto 18px; }
.lead-success h3 { margin-bottom: 8px; }
.lead-success p { color: var(--ink-faint); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- pdp colors ---------- */
.pdp-colors { border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 30px; }
.pdp-color-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pdp-chip { font-size: .82rem; letter-spacing: .03em; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; background: var(--paper); transition: border-color .25s, color .25s, background .25s; }
.pdp-chip:hover { border-color: var(--gold); color: var(--ink); }
.pdp-chip.is-active { border-color: var(--gold); background: var(--blush-soft); color: var(--ink); }

/* ---------- store-closed banner ---------- */
.store-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 150; background: var(--ink); color: var(--ivory); display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; padding: 9px 18px; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.store-banner a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
.store-banner a:hover { color: var(--ivory); }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-actions .btn { display: none; }
}
