/* ============================================================
   UPBLOOM — Editorial Floral Studio Design System
   Modern Australian Premium · Minimal · Architectural
   ============================================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&family=Cormorant:ital,wght@1,300;1,400&display=swap');

/* ── Design Tokens ── */
:root {
  /* ─── Upbloom Colour Palette ─── */
  --ivory:        #FDFAF6;      /* Primary background — warm, not clinical white */
  --cream:        #F5EFE6;      /* Surface cards, panels */
  --parchment:    #EDE5D8;      /* Subtle tonal variation */
  --dust:         #C8BFB6;      /* Borders, dividers */
  --stone:        #7A736C;      /* Secondary text, labels */
  --charcoal:     #1C1917;      /* Primary text */
  --ink-mid:      #4A433E;      /* Body copy */

  /* ─── Accent Palette ─── */
  --blush:        #D4A090;      /* Primary CTA, highlights */
  --blush-soft:   #E2B9AE;      /* Hover state */
  --blush-pale:   rgba(212,160,144,0.12);
  --sage:         #8FA887;      /* Secondary accent */
  --sage-soft:    #A8BFAA;
  --sage-pale:    rgba(143,168,135,0.12);
  --dusk:         #B5956A;      /* Warm tertiary */
  --dusk-pale:    rgba(181,149,106,0.10);

  /* ─── Surface System ─── */
  --surface-0:    var(--ivory);
  --surface-1:    var(--cream);
  --surface-2:    var(--parchment);
  --surface-card: rgba(253,250,246,0.80);

  /* ─── Glass Layers ─── */
  --glass-bg:     rgba(253,250,246,0.72);
  --glass-border: rgba(200,191,182,0.35);
  --glass-border-strong: rgba(200,191,182,0.55);

  /* ─── Shadows ─── */
  --shadow-xs:    0 1px 3px rgba(28,25,23,0.06);
  --shadow-sm:    0 2px 12px rgba(28,25,23,0.07), 0 1px 4px rgba(28,25,23,0.05);
  --shadow-md:    0 6px 28px rgba(28,25,23,0.09), 0 2px 8px rgba(28,25,23,0.06);
  --shadow-lg:    0 16px 48px rgba(28,25,23,0.11), 0 4px 16px rgba(28,25,23,0.07);
  --shadow-float: 0 20px 60px rgba(28,25,23,0.10), 0 4px 20px rgba(28,25,23,0.08);
  --shadow-glow:  0 0 32px rgba(212,160,144,0.22), 0 8px 32px rgba(28,25,23,0.10);

  /* ─── Typography ─── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-accent:  'Cormorant', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  /* ─── Spacing Scale (8px base) ─── */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;
  --sp-11: 160px;

  /* ─── Border Radii ─── */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-pill: 999px;

  /* ─── Motion ─── */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:     150ms;
  --t-mid:      300ms;
  --t-slow:     550ms;

  /* ─── Layout ─── */
  --nav-height: 70px;
  --announce-height: 38px;
  --btn-h:      50px;
  --max-w:      1180px;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: calc(var(--announce-height) + var(--nav-height) + 8px);
}

/* ── Background Texture ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(212,160,144,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(143,168,135,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(181,149,106,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  font-weight: 400;
}

h1 { font-size: clamp(44px, 6.5vw, 80px); font-weight: 300; }
h2 { font-size: clamp(32px, 4.5vw, 54px); font-weight: 300; }
h3 { font-size: clamp(22px, 2.8vw, 34px); font-weight: 400; }
h4 { font-size: clamp(18px, 2vw, 22px); font-weight: 400; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--blush); font-weight: 300; }

p {
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) ease;
}

strong { font-weight: 500; color: var(--charcoal); }

/* ── Utility: Overline Label ── */
.overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.overline::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--blush);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── Layout Primitives ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .container { padding: 0 var(--sp-5); }
}

.section {
  padding: var(--sp-10) 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .section { padding: var(--sp-8) 0; }
}

/* ── Announcement Bar ── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--announce-height);
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.75);
  z-index: 10002;
}
.announcement-bar a { color: var(--blush-soft); opacity: 1; }

/* ── Navigation ── */
header {
  position: fixed;
  top: var(--announce-height);
  left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-height);
}

header nav {
  max-width: var(--max-w);
  margin: 8px auto;
  height: calc(var(--nav-height) - 16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-6);
  background: rgba(253,250,246,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

header nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--sage-soft) 100%);
  flex-shrink: 0;
}
.logo img {
  height: 32px;
  width: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: var(--sp-6);
  list-style: none;
  align-items: center;
  position: relative;
  z-index: 1;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--t-fast) ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after {
  content: '';
  display: block;
  width: 4px; height: 4px;
  background: var(--blush);
  border-radius: 50%;
  margin: 3px auto 0;
}

/* Nav CTA */
.nav-cta {
  font-size: 12px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
  border: 1px solid var(--glass-border-strong);
  padding: var(--sp-2) var(--sp-5) !important;
  border-radius: var(--r-pill);
  transition: all var(--t-mid) var(--ease-out) !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--charcoal);
  color: var(--ivory) !important;
  border-color: var(--charcoal);
}
.nav-cta.active::after { display: none !important; }

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--charcoal);
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: var(--sp-3);
}

@media (max-width: 900px) {
  .mobile-menu-btn { display: flex; }
  .mobile-nav-actions { display: flex; }
  header nav { margin: 8px var(--sp-4); padding: 0 var(--sp-4); }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    flex-direction: column;
    gap: var(--sp-2);
    background: rgba(253,250,246,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-md);
    padding: var(--sp-5);
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }
  .nav-links.active { display: flex; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: var(--btn-h);
  padding: 0 var(--sp-7);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--ivory);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--glass-border-strong);
  color: var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-blush {
  background: var(--blush);
  color: #fff;
  box-shadow: 0 4px 18px rgba(212,160,144,0.35);
}
.btn-blush:hover {
  background: var(--blush-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,144,0.40);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  padding: 0;
  height: auto;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.btn-ghost::after {
  content: '→';
  transition: transform var(--t-mid) var(--ease-out);
}
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-ghost:hover { color: var(--blush); border-color: var(--blush); }

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Card System ── */
.card {
  background: var(--surface-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  border-color: rgba(200,191,182,0.5);
}

/* ── Section Divider ── */
.divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--dust), transparent);
  margin: 0 auto;
}
.divider-h {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dust), transparent);
  margin: var(--sp-8) 0;
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-9);
  padding: var(--sp-10) 0;
  position: relative;
}

.hero-text { position: relative; z-index: 2; }
.hero-text .overline { margin-bottom: var(--sp-6); }
.hero-text h1 { margin-bottom: var(--sp-6); line-height: 1.05; }
.hero-text p.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: var(--sp-7);
  color: var(--stone);
}
.hero-cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-float);
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.hero-img-wrap:hover img { transform: scale(1.04); }

/* Floating accent badge */
.hero-badge {
  position: absolute;
  bottom: var(--sp-7);
  left: calc(-1 * var(--sp-8));
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero-badge-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 2px; }
.hero-badge-value { font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--charcoal); }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    min-height: auto;
    padding: var(--sp-8) 0;
    text-align: center;
  }
  .hero-text { order: 1; }
  .hero-text .overline { justify-content: center; }
  .hero-text p.hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: 2; }
  .hero-badge { left: var(--sp-4); bottom: var(--sp-5); }
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}

.service-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.service-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease-out);
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(28,25,23,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
  transition: background var(--t-mid) ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(28,25,23,0.82) 100%);
}
.service-card .overline { color: rgba(253,250,246,0.65); margin-bottom: var(--sp-2); }
.service-card .overline::before { background: rgba(253,250,246,0.5); }
.service-card h3 {
  color: var(--ivory);
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: var(--sp-3);
  font-weight: 300;
}
.service-card p { color: rgba(253,250,246,0.70); font-size: 14px; margin-bottom: var(--sp-5); }
.service-card .btn-ghost { color: var(--ivory); border-color: rgba(253,250,246,0.5); }
.service-card .btn-ghost:hover { color: var(--blush-soft); border-color: var(--blush-soft); }

/* Primary card (Bloom Bar) */
.service-card.primary { aspect-ratio: unset; grid-row: span 2; }
@media (max-width: 900px) {
  .service-card.primary { aspect-ratio: 3/4; grid-row: span 1; }
}

/* ── Stats Strip ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat-cell {
  background: var(--surface-1);
  padding: var(--sp-7) var(--sp-5);
  text-align: center;
  transition: background var(--t-mid) ease;
}
.stat-cell:hover { background: var(--ivory); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 500;
  margin-bottom: var(--sp-1);
}
.stat-desc { font-size: 13px; color: var(--stone); }

@media (max-width: 767px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── Image + Text Blocks ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .split-grid.reverse { direction: ltr; }
}

.split-img {
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}
.split-img img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }

.split-text .overline { margin-bottom: var(--sp-5); }
.split-text h2 { margin-bottom: var(--sp-5); }
.split-text p { margin-bottom: var(--sp-4); font-size: 15px; }
.split-text .btn { margin-top: var(--sp-4); }

/* ── Testimonials ── */
.testimonial-wrap {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-7);
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-wrap::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--dust);
  position: absolute;
  top: -20px;
  left: var(--sp-7);
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}
.testimonial-attr {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dust), transparent);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.process-step h4 { font-size: 16px; margin-bottom: var(--sp-3); color: var(--charcoal); }
.process-step p { font-size: 14px; color: var(--stone); }

@media (max-width: 767px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}

/* ── Shop / Product Grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; gap: var(--sp-5); } }

.product-card {
  background: var(--surface-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all var(--t-mid) var(--ease-out);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
}
.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease-out);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: var(--sp-5) var(--sp-5) var(--sp-6); }
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: var(--sp-2);
}
.product-desc { font-size: 13px; color: var(--stone); margin-bottom: var(--sp-4); }
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: var(--sp-4);
}
.product-card .btn { width: 100%; }

/* Product tag */
.product-tag {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
  font-weight: 400;
}
.product-tag.blush { background: var(--blush); }

/* ── Gallery / Mood Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-3);
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
  transition: transform var(--t-slow) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { aspect-ratio: unset; height: 100%; }

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { aspect-ratio: 1; height: auto; }
}

/* ── CTA Section ── */
.cta-band {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  padding: var(--sp-10) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(212,160,144,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  color: var(--ivory);
  font-weight: 300;
  margin-bottom: var(--sp-4);
}
.cta-band h2 em { color: var(--blush-soft); }
.cta-band p { color: rgba(253,250,246,0.65); font-size: 16px; margin-bottom: var(--sp-7); }
.cta-band .btn-primary {
  background: var(--ivory);
  color: var(--charcoal);
}
.cta-band .btn-primary:hover { background: var(--cream); }
.cta-band .btn-secondary {
  border-color: rgba(253,250,246,0.3);
  color: var(--ivory);
}
.cta-band .btn-secondary:hover {
  background: rgba(253,250,246,0.1);
  color: var(--ivory);
  border-color: rgba(253,250,246,0.5);
}

/* ── Form Styles ── */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--sp-2);
  font-weight: 500;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(253,250,246,0.70);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212,160,144,0.5);
  box-shadow: 0 0 0 3px rgba(212,160,144,0.10);
  background: var(--ivory);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--dust); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A736C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: 40px;
  cursor: pointer;
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: var(--sp-10) 0 var(--sp-8);
  text-align: center;
}
.page-hero .overline { justify-content: center; margin-bottom: var(--sp-5); }
.page-hero h1 { max-width: 700px; margin: 0 auto var(--sp-5); }
.page-hero p { font-size: 18px; max-width: 520px; margin: 0 auto; color: var(--stone); }

/* ── Package Cards ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .packages-grid { grid-template-columns: 1fr; } }

.package-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  background: var(--surface-1);
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
}
.package-card.featured {
  border-color: var(--blush);
  background: var(--ivory);
  box-shadow: var(--shadow-glow);
}
.package-featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blush);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-pill);
  font-weight: 500;
  white-space: nowrap;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.package-card .overline { margin-bottom: var(--sp-4); }
.package-card h3 { font-size: 26px; margin-bottom: var(--sp-2); }
.package-from { font-size: 12px; color: var(--stone); letter-spacing: 0.06em; }
.package-price { font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--charcoal); line-height: 1; margin: var(--sp-3) 0 var(--sp-5); }
.package-features { list-style: none; margin-bottom: var(--sp-6); }
.package-features li {
  padding: var(--sp-2) 0;
  font-size: 14px;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  border-bottom: 1px solid rgba(200,191,182,0.3);
}
.package-features li::before { content: '✦'; color: var(--blush); font-size: 8px; line-height: 22px; flex-shrink: 0; }
.package-card .btn { width: 100%; }

/* ── FAQ Accordion ── */
.accordion { border-top: 1px solid var(--glass-border); }
.accordion-item { border-bottom: 1px solid var(--glass-border); }
.accordion-header {
  padding: var(--sp-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--charcoal);
  transition: color var(--t-fast) ease;
  gap: var(--sp-4);
  user-select: none;
}
.accordion-header:hover { color: var(--blush); }
.accordion-icon { transition: transform var(--t-mid) var(--ease-out); color: var(--stone); font-size: 16px; flex-shrink: 0; }
.accordion-item.active .accordion-icon { transform: rotate(180deg); color: var(--blush); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height var(--t-slow) var(--ease-out); }
.accordion-item.active .accordion-content { max-height: 500px; }
.accordion-body { padding-bottom: var(--sp-5); font-size: 15px; color: var(--ink-mid); line-height: 1.75; }
.accordion-body a { color: var(--blush); }

/* ── Newsletter / Footer ── */
.newsletter-bar {
  background: var(--surface-1);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--sp-7) 0;
  text-align: center;
}
.newsletter-bar h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: var(--sp-5);
}
.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  height: 50px;
  padding: 0 var(--sp-5);
  background: var(--ivory);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--t-fast) ease;
}
.newsletter-input:focus { border-color: rgba(212,160,144,0.45); }
.newsletter-input::placeholder { color: var(--dust); }

@media (max-width: 560px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-input, .newsletter-form .btn { width: 100%; }
}

footer {
  background: var(--charcoal);
  padding: var(--sp-9) 0 var(--sp-7);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); } }

.footer-brand p { font-size: 14px; color: rgba(253,250,246,0.45); line-height: 1.7; margin-top: var(--sp-4); max-width: 260px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ivory);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-logo-mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--sage-soft) 100%);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.35);
  margin-bottom: var(--sp-5);
  font-weight: 500;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--sp-3); }
.footer-links a {
  font-size: 14px;
  color: rgba(253,250,246,0.55);
  font-weight: 300;
  transition: all var(--t-fast) ease;
}
.footer-links a:hover { color: var(--ivory); padding-left: var(--sp-2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(253,250,246,0.1);
  font-size: 12px;
  color: rgba(253,250,246,0.30);
}
.footer-bottom a { color: rgba(253,250,246,0.40); transition: color var(--t-fast) ease; }
.footer-bottom a:hover { color: rgba(253,250,246,0.65); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up { animation: fadeInUp 0.85s var(--ease-out) both; }
.fade-in { animation: fadeIn 0.65s ease both; }
.delay-1 { animation-delay: 0.10s; }
.delay-2 { animation-delay: 0.20s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.50s; }
.delay-5 { animation-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in { animation: none; opacity: 1; transform: none; }
}

/* ── Misc Utilities ── */
.text-center { text-align: center; }
.text-sage   { color: var(--sage); }
.text-blush  { color: var(--blush); }
.text-stone  { color: var(--stone); }

.bg-ivory   { background: var(--ivory); }
.bg-cream   { background: var(--surface-1); }
.bg-dark    { background: var(--charcoal); }

.mb-1 { margin-bottom: var(--sp-1); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-7 { margin-bottom: var(--sp-7); }
.mb-8 { margin-bottom: var(--sp-8); }

/* ── Focus Accessibility ── */
:focus-visible {
  outline: 2px solid var(--blush);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--dust); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--stone); }

/* ── Bloom Bar specific ── */
.bar-experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
@media (max-width: 767px) { .bar-experience-grid { grid-template-columns: 1fr; } }
.experience-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  background: var(--surface-1);
  transition: all var(--t-mid) var(--ease-out);
}
.experience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.exp-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blush-pale);
  border: 1px solid rgba(212,160,144,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.exp-icon svg { stroke: var(--blush); stroke-width: 1.5; fill: none; width: 22px; height: 22px; }
.experience-card h4 { font-size: 18px; margin-bottom: var(--sp-3); }
.experience-card p { font-size: 14px; color: var(--stone); }

/* ── Cart badge (for shop) ── */
.cart-icon { position: relative; display: inline-flex; align-items: center; }
.cart-badge {
  position: absolute; top: -8px; right: -8px;
  background: var(--blush); color: #fff;
  font-size: 10px; font-weight: 600;
  min-width: 18px; height: 18px;
  border-radius: 50%; display: none;
  align-items: center; justify-content: center;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-9);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: var(--sp-7); } }
.contact-info h2 { margin-bottom: var(--sp-5); }
.contact-info p { margin-bottom: var(--sp-5); font-size: 15px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--glass-border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--blush-pale);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { stroke: var(--blush); stroke-width: 1.5; fill: none; width: 18px; height: 18px; }
.contact-detail-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-bottom: 3px; }
.contact-detail-value { font-size: 15px; color: var(--charcoal); font-weight: 300; }

.contact-form {
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 560px) { .contact-form { padding: var(--sp-6) var(--sp-5); } }

/* ── About page ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 767px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-family: var(--font-display); font-size: 24px; font-weight: 300; margin-bottom: var(--sp-1); }
.team-role { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }

/* ── Qty controls (shop) ── */
.qty-controls {
  display: inline-flex; align-items: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill); overflow: hidden;
  background: var(--ivory); height: 44px;
}
.qty-btn {
  background: transparent; border: none;
  padding: 0 14px; height: 44px;
  font-size: 18px; color: var(--ink-mid);
  cursor: pointer;
  transition: color var(--t-fast) ease;
  min-width: 44px;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { color: var(--charcoal); }
.qty-val {
  padding: 0 14px;
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  min-width: 48px; text-align: center;
  font-size: 15px; color: var(--charcoal);
  line-height: 44px;
}

/* ── Success / cancel pages ── */
.centered-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: var(--sp-7); }
.centered-card {
  max-width: 560px; width: 100%;
  background: var(--surface-1);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-9) var(--sp-7);
  text-align: center;
  box-shadow: var(--shadow-float);
}
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--sage-pale);
  border: 1px solid rgba(143,168,135,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-6); font-size: 30px; color: var(--sage);
}
