/* =============================================================
   THE FLOWER BOUTIQUE — Luxury Floral Design System
   Palette: cream · blush pink · lavender · sage green · gold
   Fonts:  Cormorant Garamond (display) · Jost (sans) · Great Vibes (script)
   ============================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Colours */
  --cream:        #FBF6EF;
  --cream-deep:   #F5E6EA;
  --cream-card:   #FFFBF6;
  --blush:        #E7B2B8;
  --blush-soft:   #F8E6E8;
  --blush-deep:   #CE8C93;
  --lavender:     #C6B4DA;
  --lavender-soft:#EDE6F5;
  --sage:         #8A9A7B;
  --sage-deep:    #6E7E60;
  --sage-soft:    #DFE6D6;
  --gold:         #BF9F5F;
  --gold-soft:    #E7D6AE;
  --ink:          #453B37;
  --ink-soft:     #7C6F69;
  --line:         rgba(69, 59, 55, .12);
  --white:        #ffffff;

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans:    "Jost", "Segoe UI", -apple-system, sans-serif;
  --font-script:  "Great Vibes", cursive;

  /* Rhythm */
  --container: 1240px;
  --radius: 4px;
  --radius-lg: 18px;
  --shadow-sm: 0 10px 30px -18px rgba(69,59,55,.35);
  --shadow-md: 0 26px 60px -30px rgba(69,59,55,.45);
  --shadow-lg: 0 40px 90px -40px rgba(69,59,55,.5);
  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 84px;
}

/* ---------- 2. Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1.02rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--blush); color: var(--white); }

/* ---------- 3. Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p  { color: var(--ink-soft); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--blush-deep);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: .72rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before,
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.eyebrow.center { justify-content: center; }

/* ---------- 4. Layout helpers ---------- */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.center { text-align: center; }
.lead { font-size: 1.15rem; max-width: 60ch; }
.section-head { max-width: 42rem; margin: 0 auto 3.4rem; }
.section-head.left { margin-inline: 0; }
.section-head h2 { margin: 1rem 0 1rem; }
.divider { width: 60px; height: 2px; background: var(--gold-soft); margin: 1.4rem auto; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .74rem;
  padding: 1.05rem 2.3rem;
  border-radius: 40px;
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--blush-deep); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-ghost { border: 1px solid currentColor; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-3px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.75); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn svg { width: 15px; height: 15px; }

/* ---------- 6. Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), height .5s var(--ease);
}
/* Blur lives on a decorative ::before, NOT on .nav itself — a blur/filter on .nav
   would make it a containing block for its fixed .nav-links child, trapping the
   mobile menu inside the ~80px header instead of the full viewport. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity .5s var(--ease);
}
.nav.scrolled::before,
.nav.solid::before { opacity: 1; }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: .03em;
  color: var(--white);
  transition: color .5s var(--ease);
}
.brand .brand-sub {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .5em;
  font-size: .56rem;
  color: rgba(255,255,255,.8);
  margin-top: .35rem;
  transition: color .5s var(--ease);
}
.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 400;
  color: rgba(255,255,255,.92);
  position: relative;
  padding: .3rem 0;
  transition: color .4s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-cta { margin-left: .4rem; }

/* scrolled state */
.nav.scrolled {
  background: rgba(251, 246, 239, .92);
  box-shadow: 0 10px 40px -28px rgba(69,59,55,.55);
  height: 72px;
}
.nav.scrolled .brand-name { color: var(--ink); }
.nav.scrolled .brand-sub { color: var(--gold); }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav.scrolled .nav-cta.btn-outline-light { border-color: var(--ink); color: var(--ink); }
.nav.scrolled .nav-cta.btn-outline-light:hover { background: var(--ink); color: var(--cream); }

/* inner pages: nav needs dark text from the start over light hero */
.nav.solid { background: rgba(251,246,239,.92); }
.nav.solid .brand-name { color: var(--ink); }
.nav.solid .brand-sub { color: var(--gold); }
.nav.solid .nav-links a { color: var(--ink); }
.nav.solid .nav-cta.btn-outline-light { border-color: var(--ink); color: var(--ink); }
.nav.solid .nav-cta.btn-outline-light:hover { background: var(--ink); color: var(--cream); }

/* Order Now CTA — bold blush pill button, premium luxury styling */
.nav-cta {
  background: var(--blush-deep) !important;
  border: 2px solid var(--blush-deep) !important;
  color: #fff !important;
  padding: 0.9rem 2rem !important;
  font-weight: 600 !important;
  box-shadow: 0 12px 32px -10px rgba(206,140,147,.85) !important;
  transition: all .4s var(--ease) !important;
}
.nav-cta:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--blush-deep) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px -8px rgba(206,140,147,.95) !important;
}
.nav.scrolled .nav-cta,
.nav.solid .nav-cta {
  background: var(--blush-deep) !important;
  border-color: var(--blush-deep) !important;
  color: #fff !important;
}
.nav.scrolled .nav-cta:hover,
.nav.solid .nav-cta:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: var(--cream) !important;
}

/* hamburger */
.nav-toggle { display: none; width: 34px; height: 26px; position: relative; z-index: 120; }
.nav-toggle span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: all .4s var(--ease);
}
.nav-toggle span:nth-child(1){ top: 2px; }
.nav-toggle span:nth-child(2){ top: 12px; }
.nav-toggle span:nth-child(3){ top: 22px; }
.nav.scrolled .nav-toggle span, .nav.solid .nav-toggle span { background: var(--ink); }
.nav.menu-open .nav-toggle span { background: var(--ink); }
.nav.menu-open .nav-toggle span:nth-child(1){ top: 12px; transform: rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3){ top: 12px; transform: rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #9B4C6F 0%, #C97894 40%, #E7B2B8 100%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(69,59,55,.15) 0%, transparent 60%);
  z-index: -1;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1); } }

.hero-inner { max-width: 720px; padding-top: var(--nav-h); }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: #fff; margin: 1.4rem 0 1.5rem; letter-spacing: .01em; }
.hero h1 em { font-style: italic; color: var(--blush-soft); }
.hero p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 46ch; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: .66rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero-scroll .line { width: 1px; height: 44px; background: rgba(255,255,255,.6); position: relative; overflow: hidden; }
.hero-scroll .line::after { content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background: var(--gold-soft); animation: scrollline 2.2s var(--ease) infinite; }
@keyframes scrollline { 0%{top:-100%;} 60%,100%{top:100%;} }

/* falling petals */
.petal {
  position: absolute; top: -6%;
  width: 14px; height: 14px;
  background: var(--blush-soft);
  border-radius: 0 100% 0 100%;
  opacity: .0;
  z-index: 0;
  animation: fall linear infinite;
  pointer-events: none;
  will-change: transform, opacity;
}
@keyframes fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: .85; }
  100% { transform: translateY(108vh) rotate(520deg); opacity: 0; }
}

/* page (inner) hero */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content:""; position:absolute; inset:0;
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
  z-index: -2; transform: scale(1.03);
}
.page-hero::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(69,59,55,.45), rgba(69,59,55,.55));
  z-index: -1;
}
.page-hero .container { padding-top: var(--nav-h); }
.page-hero h1 { color: #fff; margin: 1rem 0 .6rem; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold-soft); justify-content: center; }
.page-hero .eyebrow::before { background: var(--gold-soft); }
.breadcrumb { margin-top: 1.4rem; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }

/* ---------- 8. Intro / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,5vw,5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split-media .img-tall { aspect-ratio: 4/5; }
.split-media .badge {
  position: absolute; bottom: -28px; right: -22px;
  background: var(--cream-card); border-radius: var(--radius-lg);
  padding: 1.4rem 1.7rem; box-shadow: var(--shadow-md); text-align: center;
  border: 1px solid var(--line);
}
.split-media .badge .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--blush-deep); line-height: 1; }
.split-media .badge .lbl { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.split-media .stack-img {
  position: absolute; width: 46%; bottom: -34px; left: -30px;
  border: 6px solid var(--cream); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); aspect-ratio: 1; object-fit: cover;
}
.split-body h2 { margin: 1rem 0 1.4rem; }
.split-body .lead { margin-bottom: 1.4rem; }
.split-body p + p { margin-top: 1rem; }
.sign { font-family: var(--font-script); font-size: 2.2rem; color: var(--blush-deep); margin-top: 1.6rem; }

/* feature list */
.feature-list { display: grid; gap: 1.2rem; margin: 1.8rem 0; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list .ic {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--blush-soft); color: var(--blush-deep);
}
.feature-list .ic svg { width: 20px; height: 20px; }
.feature-list h4 { font-size: 1.15rem; margin-bottom: .1rem; }
.feature-list p { font-size: .92rem; }

/* ---------- 9. Occasions grid ---------- */
.occasions { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.occasion {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm); isolation: isolate;
}
.occasion img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; transition: transform 1s var(--ease);
}
.occasion::after {
  content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(69,59,55,0) 30%, rgba(69,59,55,.82) 100%);
  transition: background .5s var(--ease);
}
.occasion:hover img { transform: scale(1.09); }
.occasion:hover::after { background: linear-gradient(180deg, rgba(206,140,147,.25) 10%, rgba(69,59,55,.9) 100%); }
.occasion-body { padding: 1.8rem; color: #fff; position: relative; z-index: 1; }
.occasion-body h3 { color: #fff; margin-bottom: .3rem; }
.occasion-body p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 0; max-height: 0; opacity: 0; overflow: hidden; transition: all .5s var(--ease); }
.occasion:hover .occasion-body p { max-height: 80px; opacity: 1; margin-top: .4rem; }
.occasion .tag { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- 10. Featured collection ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.bloom-card {
  background: var(--cream-card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border: 1px solid var(--line);
}
.bloom-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.bloom-card .ph { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.bloom-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.bloom-card:hover .ph img { transform: scale(1.08); }
.bloom-card .ph .fav {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.85); display: grid; place-items: center; color: var(--blush-deep);
}
.bloom-card .ph .fav svg { width: 16px; height: 16px; }
.bloom-body { padding: 1.3rem 1.4rem 1.6rem; text-align: center; }
.bloom-body .cat { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.bloom-body h3 { font-size: 1.35rem; margin: .35rem 0 .5rem; }
.bloom-body p { font-size: .86rem; margin-bottom: 0; }
.bloom-body .price { font-family: var(--font-display); color: var(--blush-deep); font-size: 1.15rem; margin-top: .6rem; }

/* ---------- 11. Stats band ---------- */
.stats { background: var(--sage-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.6rem,5vw,3.6rem); color: var(--sage-deep); line-height: 1; }
.stat .lbl { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); margin-top: .5rem; }

/* ---------- 12. Why us ---------- */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.why-card {
  padding: 2.6rem 2rem; border-radius: var(--radius-lg); text-align: center;
  background: var(--cream); border: 1px solid var(--line);
  transition: transform .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}
.why-card:hover { transform: translateY(-8px); background: var(--cream-card); box-shadow: var(--shadow-md); }
.why-card .ic {
  width: 72px; height: 72px; margin: 0 auto 1.4rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--lavender-soft); color: var(--sage-deep);
  transition: background .5s var(--ease), transform .5s var(--ease);
}
.why-card:hover .ic { background: var(--blush-soft); color: var(--blush-deep); transform: rotate(-6deg); }
.why-card .ic svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.why-card p { font-size: .92rem; margin: 0; }

/* ---------- 13. Testimonials ---------- */
.testi { background: linear-gradient(180deg, var(--cream-deep), var(--cream)); position: relative; }
.testi-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.testi-card {
  background: var(--cream-card); border-radius: var(--radius-lg); padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); position: relative;
}
.testi-card .quote { font-family: var(--font-display); font-size: 4rem; color: var(--blush-soft); line-height: .6; height: 28px; }
.testi-card p { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--ink); line-height: 1.6; }
.testi-stars { color: var(--gold); letter-spacing: .2em; margin: 1rem 0 1.2rem; font-size: .9rem; }
.testi-who { display: flex; align-items: center; gap: .9rem; }
.testi-who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--blush); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; }
.testi-who .name { font-weight: 500; color: var(--ink); font-size: .92rem; letter-spacing: .04em; }
.testi-who .role { font-size: .74rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .14em; }

/* ---------- 14. CTA band ---------- */
.cta-band {
  position: relative; color: #fff; text-align: center; overflow: hidden;
  padding: clamp(4.5rem,9vw,7.5rem) 0;
}
.cta-band::before { content:""; position:absolute; inset:0; background-image: var(--hero-img); background-size: cover; background-position: center; z-index:-2; transform: scale(1.04); }
.cta-band::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(69,59,55,.78), rgba(110,126,96,.55)); z-index:-1; }
.cta-band h2 { color:#fff; margin: 1rem auto 1.2rem; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 2.2rem; }
.cta-band .eyebrow { color: var(--gold-soft); justify-content:center; }
.cta-band .eyebrow::before { background: var(--gold-soft); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone { margin-top: 1.8rem; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .04em; }
.cta-phone a { border-bottom: 1px solid var(--gold-soft); }

/* ---------- 15. Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 3rem; }
.filter-btn {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  padding: .7rem 1.4rem; border-radius: 40px; color: var(--ink-soft);
  border: 1px solid var(--line); background: var(--cream-card); transition: all .4s var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--blush); }
.filter-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.masonry { columns: 4; column-gap: 1.1rem; }
.masonry .g-item {
  break-inside: avoid; margin-bottom: 1.1rem; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.masonry .g-item img { width: 100%; transition: transform .9s var(--ease); }
.masonry .g-item::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(69,59,55,0) 40%, rgba(69,59,55,.7));
  opacity: 0; transition: opacity .5s var(--ease);
}
.masonry .g-item:hover img { transform: scale(1.07); }
.masonry .g-item:hover::after { opacity: 1; }
.g-item .g-cap {
  position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1.2rem 1.3rem;
  color: #fff; opacity: 0; transform: translateY(10px); transition: all .5s var(--ease);
}
.g-item:hover .g-cap { opacity: 1; transform: translateY(0); }
.g-item .g-cap .t { font-family: var(--font-display); font-size: 1.25rem; }
.g-item .g-cap .c { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); }
.g-item .g-plus {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--ink); display: grid; place-items: center; z-index: 2;
  opacity: 0; transform: scale(.6); transition: all .5s var(--ease);
}
.g-item:hover .g-plus { opacity: 1; transform: scale(1); }
.g-item.hide { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(43,36,33,.92);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  backdrop-filter: blur(6px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(90vw, 900px); max-height: 84vh; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  transition: background .3s var(--ease); font-size: 1.4rem;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--blush-deep); border-color: var(--blush-deep); }
.lightbox .lb-close { top: 26px; right: 26px; }
.lightbox .lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .04em; }

/* ---------- 16. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.info-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.4rem; box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
}
.info-row { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .ic { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 50%; background: var(--blush-soft); color: var(--blush-deep); display: grid; place-items: center; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row h4 { font-size: 1.2rem; margin-bottom: .15rem; }
.info-row p, .info-row a { font-size: .95rem; color: var(--ink-soft); }
.info-row a:hover { color: var(--blush-deep); }

.form-card { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem,3vw,2.8rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .95rem 1.1rem; font-family: var(--font-sans); font-size: .95rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blush); box-shadow: 0 0 0 4px var(--blush-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 1rem; text-align: center; }
.form-msg { display: none; padding: 1rem 1.2rem; border-radius: var(--radius); background: var(--sage-soft); color: var(--sage-deep); font-size: .9rem; margin-bottom: 1.2rem; }
.form-msg.show { display: block; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); line-height: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; }

.hours-list li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--ink); font-weight: 400; }
.hours-list .time { color: var(--ink-soft); }
.hours-list .closed { color: var(--blush-deep); }

/* ---------- 17. About values ---------- */
.values-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
.value {
  display:flex; gap:1.2rem; padding: 1.8rem; background: var(--cream-card);
  border:1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease);
}
.value:hover { transform: translateY(-6px); }
.value .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--blush-soft); line-height: 1; flex: 0 0 auto; }
.value h4 { font-size: 1.25rem; margin-bottom: .3rem; }
.value p { font-size: .9rem; margin: 0; }

.process-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 1.6rem; }
.step { text-align:center; position: relative; }
.step .circle {
  width: 84px; height: 84px; margin: 0 auto 1.2rem; border-radius: 50%;
  display:grid; place-items:center; background: var(--white); border: 1px solid var(--line);
  color: var(--blush-deep); font-family: var(--font-display); font-size: 1.8rem; box-shadow: var(--shadow-sm);
}
.step h4 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { font-size: .88rem; margin: 0; }

/* team / florist */
.team-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.team-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--cream-card); border:1px solid var(--line); }
.team-card .ph { aspect-ratio: 3/4; overflow: hidden; }
.team-card .ph img { width:100%; height:100%; object-fit: cover; transition: transform .8s var(--ease); }
.team-card:hover .ph img { transform: scale(1.06); }
.team-body { padding: 1.4rem; text-align:center; }
.team-body h4 { font-size: 1.3rem; }
.team-body .role { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* ---------- 18. Footer ---------- */
.footer { background: #3a322e; color: rgba(255,255,255,.72); padding: 4.5rem 0 0; }
.footer a { color: rgba(255,255,255,.72); transition: color .3s var(--ease); }
.footer a:hover { color: var(--blush); }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.4rem; padding-bottom: 3rem; }
.footer .brand-name { color:#fff; font-family: var(--font-display); font-size: 1.7rem; font-weight:600; }
.footer .brand-sub { text-transform: uppercase; letter-spacing:.5em; font-size:.56rem; color: var(--gold-soft); margin: .4rem 0 1.2rem; }
.footer p { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer h5 { color:#fff; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1.2rem; font-weight: 500; }
.footer .f-links li { margin-bottom: .7rem; font-size: .9rem; }
.footer .f-contact li { display:flex; gap:.7rem; margin-bottom: .9rem; font-size: .9rem; align-items:flex-start; }
.footer .f-contact svg { width: 17px; height: 17px; color: var(--blush); flex:0 0 auto; margin-top: 3px; }
.socials { display:flex; gap:.7rem; margin-top: 1.2rem; }
.socials a { width: 40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:grid; place-items:center; }
.socials a:hover { background: var(--blush); border-color: var(--blush); color:#fff; }
.socials svg { width: 17px; height:17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.6rem 0; display:flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .8rem; color: rgba(255,255,255,.5); }

/* newsletter mini */
.newsletter { display:flex; gap:.5rem; margin-top: 1rem; }
.newsletter input { flex:1; padding:.75rem 1rem; border-radius: 40px; border:1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color:#fff; font-family: var(--font-sans); font-size:.85rem; }
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline:none; border-color: var(--blush); }
.newsletter button { flex:0 0 auto; width:46px; border-radius:50%; background: var(--blush); color:#fff; display:grid; place-items:center; }
.newsletter button:hover { background: var(--blush-deep); }
.newsletter button svg { width:18px; height:18px; }

/* ---------- 19. Floating actions ---------- */
.floaties { position: fixed; right: 20px; bottom: 22px; z-index: 90; display:flex; flex-direction: column; gap: .8rem; }
.floaty { width: 54px; height:54px; border-radius:50%; display:grid; place-items:center; box-shadow: var(--shadow-md); color:#fff; transition: transform .4s var(--ease); }
.floaty:hover { transform: scale(1.1) translateY(-2px); }
.floaty.wa { background: #25D366; }
.floaty.call { background: var(--blush-deep); }
.floaty svg { width: 26px; height:26px; }
.to-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 89; width:46px; height:46px; border-radius:50%;
  background: var(--ink); color:#fff; display:grid; place-items:center; box-shadow: var(--shadow-md);
  opacity:0; visibility:hidden; transform: translateY(12px); transition: all .4s var(--ease);
}
.to-top.show { opacity:1; visibility:visible; transform: translateY(0); }
.to-top:hover { background: var(--blush-deep); }
.to-top svg { width: 20px; height:20px; }

/* ---------- 20. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before { animation: none; }
  .petal { display: none; }
}

/* ---------- 21. Responsive ---------- */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(2,1fr); }
  .masonry { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .process-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  :root { --nav-h: 74px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    width: min(85vw, 360px);
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.5rem 0;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.menu-open .nav-links { transform: translateX(0); }

  .nav-links a {
    display: block;
    padding: 1rem 1.8rem;
    border-bottom: 1px solid rgba(69,59,55,.08);
    width: 100%;
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links a { color: var(--ink); font-size: 1rem; }
  .nav-links a::after { background: var(--blush-deep); }
  .nav-cta { display: none; }
  .occasion-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2.4rem; }
  .testi-track { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .stack-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .occasion:hover .occasion-body p, .occasion-body p { max-height: 80px; opacity: 1; margin-top: .4rem; }
}
@media (max-width: 560px) {
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .masonry { columns: 2; column-gap: .8rem; }
  .why-grid, .process-grid, .occasion-grid, .values-grid, .stats-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 2rem; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .split-media .badge { right: 8px; bottom: -20px; padding: 1rem 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
