/* =========================================================
   ProfessioNail Narellan — multipage site (V2)
   Palette: beige-pink + dark brown, tuned to Vicki's poster.
   Floral accents from her own brand artwork.
   ========================================================= */

:root {
  /* ===== Vicki's exact brand palette =====
     #FBE6E5 blush · #EDC0B4 peach · #EAA296 rose · #927659 brown · red logo */
  --blush: #fbe6e5;        /* page background */
  --peach: #edc0b4;        /* alternating bands + cards */
  --rose-deep: #eaa296;    /* stronger accent band + eyebrows */
  --brown: #927659;        /* footer + feature anchor */

  --ivory: #fbe6e5;        /* page background = blush */
  --cream: #fbeee9;        /* card surface (warm, not white) */
  --beige: #edc0b4;        /* alternating band = peach */
  --rose: #d4796b;         /* eyebrow/accent text (rose deepened for legibility) */
  --cocoa: #d81f27;        /* BRAND RED — Book button + logo P only */
  --cocoa-deep: #4a3325;   /* dark brown — headings (her writing colour) */
  --taupe: #927659;        /* her feature brown */
  --footer: #927659;       /* BROWN footer band (matches her business card) */
  --ink: #4a3325;          /* dark brown body text */
  --ink-soft: #6d5640;     /* muted brown body */
  --line: #eccdc2;         /* peachy hairline borders */

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Jost", system-ui, sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --radius: 3px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  color: var(--cocoa-deep);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rose);
  margin: 0 0 0.9rem;
}

/* ---------- layout helpers ---------- */
section { padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.section-head.left { margin-left: 0; }
.band-beige { background: var(--beige); }
.band-cream { background: var(--cream); }

/* ---------- placeholder media ---------- */
.ph {
  background: repeating-linear-gradient(45deg, #f1e9d8 0 14px, #f6f0e2 14px 28px);
  display: grid;
  place-items: center;
  position: relative;
  color: var(--cocoa);
  min-height: 220px;
}
.ph::after {
  content: attr(data-ph);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1rem;
  opacity: 0.8;
}
/* a .ph that has a real photo dropped in */
.ph.filled { background: none; }
.ph.filled::after { content: none; }
.ph > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-solid { background: var(--cocoa); color: var(--cream); }
.btn-solid:hover { background: var(--cocoa-deep); }
.btn-outline { background: transparent; color: var(--cocoa-deep); border-color: var(--cocoa); }
.btn-outline:hover { background: var(--cocoa); color: var(--cream); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.85rem; }
/* hero CTA: light outline so it's softer than the solid nav button */
.hero .btn-outline { color: var(--cream); border-color: rgba(255,255,255,0.85); background: transparent; }
.hero .btn-outline:hover { background: var(--cream); color: var(--cocoa-deep); border-color: var(--cream); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237,192,180,0.96);   /* peach #EDC0B4 */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2b3a4;
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--cocoa-deep);
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 3px;
  font-weight: 400;
}
.brand-logo { height: 56px; width: auto; display: block; }
.footer-brand .brand-logo { height: 76px; }
@media (max-width: 900px) { .brand-logo { height: 46px; } }
.nav-list { display: flex; gap: 2rem; align-items: center; }
.nav-list a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  font-weight: 500;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.25s ease;
}
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }
.nav-list a.active { color: var(--cocoa-deep); }
.nav-cta { white-space: nowrap; }

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--cocoa-deep); transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 0.4rem; padding: 0 var(--pad) 1.5rem; }
.mobile-menu a {
  padding: 0.7rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { text-align: center; margin-top: 0.6rem; border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  padding: var(--pad);
}
.hero-media { position: absolute; inset: 0; min-height: 100%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(253,238,234,0.55) 0%, transparent 26%),
    radial-gradient(120% 92% at 50% 46%, rgba(38,20,24,0.32), rgba(38,20,24,0.62));
}
.hero-content { position: relative; max-width: 720px; }
.hero-content .eyebrow { color: var(--ivory); opacity: 0.9; }
.hero h1 {
  color: var(--cream);
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: clamp(3.8rem, 9.5vw, 6.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 22px rgba(33,16,20,0.6);
}
.hero-sub { font-size: 1.1rem; font-weight: 300; margin: 1.2rem auto 2.2rem; max-width: 500px; color: #fff; text-shadow: 0 1px 12px rgba(33,16,20,0.55); }
.hero-wordmark { width: min(440px, 84vw); height: auto; margin: 0.3rem auto 0; filter: drop-shadow(0 4px 20px rgba(33,16,20,0.5)); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* page hero (inner pages, shorter) */
.page-hero {
  background: var(--beige);
  text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-hero p.eyebrow { margin-bottom: 0.8rem; }
.page-hero p.lead { color: var(--ink-soft); max-width: 560px; margin: 1rem auto 0; }

/* ---------- intro / two-col ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: var(--maxw);
  margin: 0 auto;
}
.split .ph { min-height: 420px; height: 100%; }
.split-text p { color: var(--ink-soft); }

/* ---------- service cards ---------- */
.card-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.s-card {
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -26px rgba(77,48,24,0.4); }
.s-card .ph { min-height: 240px; }
.s-card .body { padding: 1.8rem; }
.s-card h3 { margin-bottom: 0.7rem; }
.s-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }

/* ---------- price menu (services page) ---------- */
.menu-block { max-width: 760px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); }
.menu-block h2 { margin-bottom: 0.4rem; }
.menu-block .menu-note { color: var(--taupe); font-size: 0.9rem; margin-bottom: 1.8rem; }
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-row .name { font-size: 1.05rem; color: var(--ink); }
.menu-row .desc { font-size: 0.85rem; color: var(--ink-soft); display: block; margin-top: 2px; }
.menu-row .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-row .price { font-family: var(--font-display); font-size: 1.25rem; color: var(--cocoa-deep); white-space: nowrap; }

/* ---------- gallery ---------- */
.gallery-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-grid .ph { aspect-ratio: 1 / 1; min-height: 0; }
.gallery-grid .tall { grid-row: span 2; aspect-ratio: 1 / 2; }

/* ---------- story band ---------- */
.story { background: var(--beige); display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.story .ph { min-height: 460px; }
.story .content { padding: clamp(3rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.story .content p { color: var(--ink-soft); max-width: 48ch; }

/* ---------- highlight strip ---------- */
.highlights { background: var(--cream); color: var(--ink); }
.highlights .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; text-align: center; }
.highlights h3 { color: var(--cocoa); font-size: 2.4rem; margin-bottom: 0.3rem; }
.highlights p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--rose-deep); color: var(--ink); text-align: center; }
.cta-band h2 { color: var(--cocoa-deep); }
.cta-band p { color: var(--ink); max-width: 46ch; margin: 1rem auto 2rem; }
.cta-band .btn-solid { background: var(--cocoa); color: var(--cream); }
.cta-band .btn-solid:hover { background: var(--cocoa-deep); }

/* ---------- contact ---------- */
.contact-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.info-list { margin: 0 0 2rem; }
.info-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.info-list .label { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cocoa); margin-bottom: 0.2rem; }
.info-list a, .info-list span { color: var(--ink); font-size: 1.05rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.hours-row span:last-child { color: var(--ink-soft); }
.booking-box { background: var(--cream); border: 1px solid var(--line); padding: 2rem; }
.note-box {
  background: var(--beige);
  border-left: 3px solid var(--cocoa);
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}

/* simple form */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cocoa); margin-bottom: 0.4rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer); color: #f3e3d6; border-top: 1px solid var(--line); }
.site-footer a { color: #f3e3d6; }
.site-footer .footer-col h4 { color: #ffffff; }
.site-footer .footer-col a:hover { color: #fbe6e5; }
.site-footer .footer-tag { color: #ecd8c8; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.18); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 2.5rem;
}
.footer-brand .brand { color: var(--ivory); }
.footer-brand .brand small { color: var(--taupe); }
.footer-tag { font-size: 0.9rem; margin-top: 0.8rem; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cocoa-deep); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cocoa); }
.socials { display: flex; gap: 1.2rem; margin-top: 1.2rem; }
.socials a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-bottom {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 1.4rem var(--pad);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-list, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split, .story, .contact-grid, .highlights .wrap { grid-template-columns: 1fr; }
  .split .ph, .story .ph { min-height: 320px; }
  .story .ph { order: -1; }
  .highlights .wrap { gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .gallery-grid, .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid .tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  /* tighter overall so less scrolling on phones */
  section { padding-top: 2.8rem; padding-bottom: 2.8rem; }
  .page-hero { padding-top: 2.4rem; padding-bottom: 1.8rem; }
  .section-head { margin-bottom: 1.8rem; }
  /* services: keep all three side by side, compact */
  .card-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .s-card .body { padding: 0.6rem 0.45rem 0.85rem; }
  .s-card h3 { font-size: 0.9rem; line-height: 1.15; margin-bottom: 0.35rem; }
  .s-card p { display: none; }
  .s-card .ph { min-height: 0; aspect-ratio: 1 / 1; }
  .s-card .btn { padding: 0.45rem 0.3rem; font-size: 0.54rem; letter-spacing: 0.04em; white-space: nowrap; }
  /* contact: tighter, less scrolling */
  .contact-grid { gap: 1.4rem; }
  .info-list li { padding: 0.55rem 0; }
  .info-list a, .info-list span { font-size: 0.98rem; }
  .hours-row { padding: 0.32rem 0; font-size: 0.88rem; }
  .booking-box { padding: 1.3rem; }
}

/* ---------- hero blend ---------- */
.hero-content { position: relative; z-index: 2; }
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to top, var(--ivory), transparent);
  z-index: 1;
  pointer-events: none;
}
/* soften the hard edge between blush bands */
.band-beige, .reviews { position: relative; }

/* ---------- reviews ---------- */
.reviews { background: var(--blush); }
.reviews-carousel { position: relative; max-width: var(--maxw); margin: 0 auto; }
.reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 2px 1rem;
  scroll-behavior: smooth;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 clamp(280px, 33%, 360px);
  scroll-snap-align: start;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--rose); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 0.8rem; }
.review-text { color: var(--ink); font-size: 0.98rem; line-height: 1.65; margin: 0 0 1.3rem; flex: 1; }
.review-meta { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--taupe); }
.review-name { color: var(--ink); font-weight: 500; font-size: 0.98rem; display: block; margin-bottom: 1px; }
.rev-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--cream); color: var(--cocoa-deep);
  font-size: 1.4rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 6px 18px -8px rgba(74,54,54,0.4); transition: background 0.2s;
}
.rev-arrow:hover { background: var(--beige); }
.rev-prev { left: -12px; }
.rev-next { right: -12px; }
.reviews-cta { text-align: center; margin-top: 2.4rem; }
.reviews-cta a { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; border-bottom: 1px solid var(--rose); padding-bottom: 3px; color: var(--cocoa-deep); }
@media (max-width: 700px) { .rev-arrow { display: none; } .review-card { flex-basis: 82%; } }

/* ---------- services accordion ---------- */
.menu-accordion { max-width: 760px; margin: 0 auto; }
details.menu-cat { border-bottom: 1px solid var(--line); }
details.menu-cat:first-child { border-top: 1px solid var(--line); }
details.menu-cat > summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--cocoa-deep);
}
details.menu-cat > summary::-webkit-details-marker { display: none; }
details.menu-cat > summary::after {
  content: "+";
  font-family: var(--font-ui);
  font-weight: 300;
  color: var(--rose);
  font-size: 1.7rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
details.menu-cat[open] > summary::after { content: "\2013"; }
details.menu-cat .cat-body { padding: 0 0.2rem 1.5rem; }
details.menu-cat .menu-note { margin: -0.4rem 0 1rem; }

/* ---------- floral banner frame (from Vicki's poster artwork) ----------
   Soft faded watercolour florals that span an edge as a frame:
   a cluster anchored at the LEFT and a mirrored one at the RIGHT,
   each fading toward the centre. Applied subtly across pages so it
   reads as a frame, never a corner sticker on every edge.
*/
/* Florals sit fully INSIDE the section (no edge bleed = never clipped) and
   behind the content (z-index 0), so they frame neatly around photos/text. */
.floral-top, .floral-bottom { position: relative; overflow: hidden; }
.floral-top > *, .floral-bottom > * { position: relative; z-index: 1; }
.floral-top::before, .floral-top::after,
.floral-bottom::before, .floral-bottom::after {
  content: "";
  position: absolute;
  width: clamp(140px, 21vw, 250px);
  aspect-ratio: 2543 / 1454;
  background: url('assets/floral-water.png') no-repeat center;
  background-size: contain;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}
.floral-top::before    { top: 0; left: 0; }
.floral-top::after     { top: 0; right: 0; transform: scaleX(-1); }
.floral-bottom::before { bottom: 0; left: 0; transform: scaleY(-1); }
.floral-bottom::after  { bottom: 0; right: 0; transform: scale(-1,-1); }

@media (max-width: 560px) {
  /* smaller on phones so corners never crowd the copy, still clearly visible */
  .floral-top::before, .floral-top::after,
  .floral-bottom::before, .floral-bottom::after { width: 105px; opacity: 0.8; }
}

/* ===== per-section placement variants (homepage) =====
   full-section pseudo with corner backgrounds, each pre-flipped so the bloom
   hugs its corner. Sit behind content, kept soft so the page stays clean. */
.floral-diag, .floral-corners, .floral-sides, .floral-strip, .floral-center, .floral-mid { position: relative; overflow: hidden; }
.floral-diag > *, .floral-corners > *, .floral-sides > *, .floral-strip > *, .floral-center > *, .floral-mid > * { position: relative; z-index: 1; }
.floral-diag::before, .floral-corners::before, .floral-sides::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.62; background-repeat: no-repeat;
  /* blend the blooms into the content: corners stay, inner edges fade toward the text */
  -webkit-mask-image: radial-gradient(ellipse 82% 82% at 50% 50%, transparent 26%, #000 72%);
  mask-image: radial-gradient(ellipse 82% 82% at 50% 50%, transparent 26%, #000 72%);
}
/* diagonal: top-left + bottom-right (welcome, framing around the photo) */
.floral-diag::before {
  background-image: url('assets/floral-water.png'), url('assets/floral-xy.png');
  background-position: top left, bottom right;
  background-size: clamp(150px, 20vw, 235px) auto;
}
/* four corners (services) */
.floral-corners::before {
  background-image: url('assets/floral-water.png'), url('assets/floral-x.png'),
                    url('assets/floral-y.png'), url('assets/floral-xy.png');
  background-position: top left, top right, bottom left, bottom right;
  background-size: clamp(115px, 14vw, 175px) auto;
}
/* both sides, centred — uses the SECOND flower (variant A) for variety */
.floral-sides::before {
  background-image: url('assets/floral-A.png'), url('assets/floral-Ax.png');
  background-position: left center, right center;
  background-size: clamp(135px, 17vw, 205px) auto;
}
/* faded garland across the bottom, phasing upward (Book CTA) */
.floral-strip::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 60%; z-index: 0; pointer-events: none; opacity: 0.7;
  background: url('assets/floral-garland.png') no-repeat bottom center;
  background-size: 118% auto;
  -webkit-mask-image: linear-gradient(to top, #000 28%, transparent 100%);
  mask-image: linear-gradient(to top, #000 28%, transparent 100%);
}
/* garland raised toward the centre, behind the service cards */
.floral-mid::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 26%;
  height: 60%; z-index: 0; pointer-events: none; opacity: 0.68;
  background: url('assets/floral-garland.png') no-repeat bottom center;
  background-size: 118% auto;
  -webkit-mask-image: linear-gradient(to top, #000 14%, transparent 100%);
  mask-image: linear-gradient(to top, #000 14%, transparent 100%);
}
/* faded garland spread across the centre, behind the content (services) */
.floral-center::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  height: 78%; z-index: 0; pointer-events: none; opacity: 0.6;
  background: url('assets/floral-garland.png') no-repeat center;
  background-size: 116% auto;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

/* ---- MOBILE: clean + uncluttered. Every floral section drops to two small,
   faint blooms (top-left + bottom-right) so nothing crowds the copy. ---- */
@media (max-width: 700px) {
  /* bigger blooms, but the blend mask + low opacity melt them into the copy */
  .floral-corners::before, .floral-sides::before, .floral-diag::before {
    background-image: url('assets/floral-water.png'), url('assets/floral-xy.png');
    background-position: top left, bottom right;
    background-size: 165px auto;
    opacity: 0.5;
  }
  .floral-strip::before  { height: 46%; background-size: 175% auto; opacity: 0.62; }
  .floral-mid::before    { bottom: 30%; height: 52%; background-size: 175% auto; opacity: 0.6; }
  .floral-center::before { height: 70%; background-size: 175% auto; opacity: 0.5; }
}
@media (max-width: 400px) {
  .floral-corners::before, .floral-sides::before, .floral-diag::before { background-size: 140px auto; }
}
