/* Αλέξανδρος Μόσχος — Professional Florist Site */

:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --rose-800: #9f1239;
  --wine: #881337;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-700: #047857;
  --viber: #7360f2;
  --viber-dark: #5b4bc4;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --ink: #1a1a2e;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 12px 40px -16px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(15, 23, 42, 0.25);
  --radius: 0.875rem;
  --radius-lg: 1.25rem;
  --max-w: 72rem;
  --font-display: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Lato", system-ui, -apple-system, sans-serif;
  --banner-h: clamp(16rem, 45vh, 28rem);
  --credit-h: 2.375rem;
  --share-h: 2.75rem;
  --dock-h: calc(var(--credit-h) + var(--share-h));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px));
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
svg.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Flower banner — infinite horizontal slide */
.flower-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  --banner-bg: url('../assets/images/antheon-hero.jpg');
}
.flower-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--banner-h);
  z-index: 0;
  background-image: var(--banner-bg);
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.4) saturate(1.15);
  transform: scale(1.06);
  pointer-events: none;
}
.flower-banner__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--banner-h);
  overflow: hidden;
}
.flower-banner__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: banner-slide 45s linear infinite;
  will-change: transform;
}
.flower-banner:hover .flower-banner__track,
.flower-banner.is-paused .flower-banner__track {
  animation-play-state: paused;
}
.flower-banner__set {
  display: flex;
  height: 100%;
  flex-shrink: 0;
}
.flower-banner__set img {
  flex-shrink: 0;
  width: clamp(20rem, 48vw, 38rem);
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-right: 2px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
@keyframes banner-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.flower-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--banner-h);
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 46, 0.35) 0%,
    transparent 18%,
    transparent 82%,
    rgba(26, 26, 46, 0.35) 100%
  );
  pointer-events: none;
}
.flower-banner__caption {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 1rem 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.92) 0%, var(--ink) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.flower-banner__sep { opacity: 0.55; font-weight: 400; }

@media (max-width: 768px) {
  :root { --banner-h: clamp(14rem, 38vh, 20rem); }
  .flower-banner__set img { width: clamp(16rem, 72vw, 22rem); }
}

@media (max-width: 480px) {
  .flower-banner__caption {
    font-size: 1rem;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem 1rem;
  }
  .flower-banner__sep { display: none; }
  .flower-banner__set img { width: clamp(14rem, 85vw, 18rem); }
}

/* Top bar */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.88);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  min-height: 2.5rem;
  padding: 0.375rem 0;
}
.topbar__left, .topbar__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.topbar__item svg { width: 0.875rem; height: 0.875rem; opacity: 0.7; }
.topbar a { transition: color 0.2s; }
.topbar a:hover { color: var(--white); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.header.is-scrolled {
  border-color: var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
}
.brand { display: flex; align-items: center; gap: 1.125rem; min-width: 0; }
.brand__logo {
  flex-shrink: 0;
  width: 6.5rem;
  height: 5.25rem;
  border-radius: 0.375rem;
  overflow: hidden;
  display: block;
  background: transparent;
  box-shadow: none;
}
.brand__logo-img,
.brand__logo-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  line-height: 1.2;
  min-width: 0;
}
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand__tagline {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
  white-space: nowrap;
}

.nav { display: none; align-items: center; gap: 0.125rem; }
.nav a {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: background 0.2s, color 0.2s;
}
.nav a:hover, .nav a.is-active { background: var(--rose-50); color: var(--rose-800); }

.header__cta { display: none; align-items: center; gap: 0.5rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.lang-switch__btn:hover { opacity: 0.85; }
.lang-switch__btn.is-active {
  opacity: 1;
  border-color: var(--rose-600);
  box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.15);
}
.lang-switch__btn img,
.lang-switch__flag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.625rem;
  background: var(--white);
  color: var(--slate-700);
  cursor: pointer;
}
.nav-toggle svg { width: 1.375rem; height: 1.375rem; }

.nav-menu {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  top: calc(var(--banner-h) + 2.5rem + 4.5rem);
  background: var(--white);
  padding: 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  z-index: 40;
  border-top: 1px solid var(--slate-200);
}
.nav-menu.is-open { display: flex; }
.nav-menu a, .nav-menu .nav-menu__label {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 0.625rem;
  font-weight: 600;
  color: var(--slate-700);
}
.nav-menu__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  padding-top: 1rem;
}
.nav-menu a:hover { background: var(--rose-50); color: var(--rose-800); }
.nav-menu .nav-menu__channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.5rem 0 0;
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .header__cta { display: flex; }
  .nav-toggle { display: none; }
  .nav-menu { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.375rem;
  border-radius: 0.625rem;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--rose-700); color: var(--white); box-shadow: 0 4px 14px rgba(190,18,60,0.3); }
.btn--primary:hover { background: var(--rose-800); }
.btn--white { background: var(--white); color: var(--rose-800); box-shadow: var(--shadow-sm); }
.btn--white:hover { background: var(--rose-50); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.btn--outline-dark {
  background: transparent;
  color: var(--rose-700);
  border: 1.5px solid var(--rose-200);
}
.btn--outline-dark:hover { background: var(--rose-50); border-color: var(--rose-700); color: var(--rose-800); }
.btn--whatsapp { background: #128c43; color: var(--white); }
.btn--whatsapp:hover { background: #0f7a3a; }
.btn--viber { background: var(--viber); color: var(--white); }
.btn--viber:hover { background: var(--viber-dark); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--slate-800); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--block { width: 100%; }
.btn svg { width: 1.125rem; height: 1.125rem; }

/* Channel pills */
.channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-700);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.channel-pill:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.channel-pill--phone:hover { border-color: var(--rose-200); color: var(--rose-800); }
.channel-pill--wa:hover { border-color: #86efac; color: #128c43; }
.channel-pill--viber:hover { border-color: #c4b5fd; color: var(--viber); }
.channel-pill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
.channel-pill--phone .channel-pill__dot { background: var(--rose-600); }
.channel-pill--wa .channel-pill__dot { background: #25d366; }
.channel-pill--viber .channel-pill__dot { background: var(--viber); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, #2d1b2e 40%, var(--wine) 100%);
  color: var(--white);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(190,18,60,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; padding: 4.5rem 0 5rem; }
.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 1.1fr 0.9fr; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.75);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: rgba(255,255,255,0.35);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 1.25rem;
  max-width: 32rem;
  line-height: 1.5;
}
.hero__text {
  opacity: 0.82;
  max-width: 34rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero__channels-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
  margin-bottom: 0.625rem;
}

.hero__visual { position: relative; }
.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero__image img { width: 100%; height: clamp(22rem, 48vw, 34rem); object-fit: cover; }
.hero__badge {
  position: absolute;
  bottom: -1rem;
  left: 0;
  background: var(--white);
  color: var(--ink);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 14rem;
}
@media (min-width: 1024px) {
  .hero__badge { left: -1rem; }
}
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--rose-800);
  margin-bottom: 0.125rem;
}
.hero__badge span { font-size: 0.75rem; color: var(--slate-500); }

/* Trust bar */
.trust {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
@media (min-width: 768px) {
  .trust__item { border-bottom: none; }
  .trust__item:last-child { border-right: none; }
}
.trust__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  display: grid;
  place-items: center;
  color: var(--rose-700);
}
.trust__icon svg { width: 1.125rem; height: 1.125rem; }
.trust__title { font-weight: 800; font-size: 0.9375rem; color: var(--ink); margin-bottom: 0.125rem; }
.trust__desc { font-size: 0.8125rem; color: var(--slate-500); line-height: 1.4; }

/* Stats */
.stats { background: var(--white); border-bottom: 1px solid var(--slate-200); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 640px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stats__item {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--slate-100);
}
.stats__item:last-child { border-right: none; }
.stats__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rose-800);
  line-height: 1;
}
.stats__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  margin-top: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--slate-50); }
.section--warm { background: linear-gradient(180deg, var(--rose-50) 0%, var(--white) 100%); }
.section__head { text-align: center; margin-bottom: 3rem; max-width: 42rem; margin-inline: auto; }
.section__head .eyebrow {
  justify-content: center;
  color: var(--rose-700);
  margin-bottom: 0.875rem;
}
.section__head .eyebrow::before { background: var(--rose-200); }
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section__head p {
  color: var(--slate-600);
  margin-top: 0.875rem;
  font-size: 0.9375rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--rose-200);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}
.card__emoji { font-size: 1.75rem; line-height: 1; }
.card__num {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--slate-400);
  letter-spacing: 0.06em;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.375rem;
}
.card p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.55; }
.card__season {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  padding: 0.3125rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-700);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
}
.card--cta {
  background: linear-gradient(145deg, var(--rose-50), var(--white));
  border-color: var(--rose-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
}
.card--cta h3 { font-size: 1.125rem; }
.card__cta-label {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--rose-700);
}
.card__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.card--cta .card__channels .btn {
  flex: 1 1 5.5rem;
  min-width: 0;
  justify-content: center;
}

/* Photo catalog cards */
.card--photo {
  padding: 0;
  overflow: hidden;
}
.card--photo .card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--slate-100);
}
.card--photo .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.card--photo:hover .card__media img { transform: scale(1.06); }
.card--photo .card__season {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.card--photo .card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card--photo h3 { font-size: 1.1875rem; }
.card--cta.card--photo {
  background: linear-gradient(145deg, var(--rose-50), var(--white));
  text-align: center;
}
.card--cta .card__media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--rose-100), var(--rose-50));
  display: flex;
  align-items: center;
  justify-content: center;
}
.card--cta .card__media-icon {
  font-size: 2.5rem;
  opacity: 0.85;
}

/* B2B process steps */
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.step:hover {
  border-color: var(--rose-200);
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--rose-700);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.55;
}
.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--rose-50);
  color: var(--rose-700);
  margin-bottom: 0.75rem;
}
.step__icon svg { width: 1rem; height: 1rem; }
.page-hero__actions--wrap { flex-wrap: wrap; }

/* B2B page */
.b2b-stats {
  background: linear-gradient(155deg, var(--ink), var(--wine));
  color: var(--white);
  padding: 2rem 0;
}
.b2b-stats .stats__item { border-color: rgba(255,255,255,0.12); }
.b2b-stats .stats__value { color: var(--white); }
.b2b-stats .stats__label { color: rgba(255,255,255,0.7); }

.b2b-order {
  display: grid;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 900px) {
  .b2b-order { grid-template-columns: 1.1fr 0.9fr; padding: 2.5rem; }
}
.b2b-order h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.b2b-order > .b2b-order__content > p {
  color: var(--slate-500);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.b2b-benefits {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .b2b-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .b2b-benefits { grid-template-columns: repeat(3, 1fr); } }
.b2b-benefit {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.b2b-benefit:hover {
  border-color: var(--rose-200);
  box-shadow: var(--shadow-sm);
}
.b2b-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--rose-50);
  color: var(--rose-700);
  margin-bottom: 1rem;
}
.b2b-benefit__icon svg { width: 1.25rem; height: 1.25rem; }
.b2b-benefit h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.b2b-benefit p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.55;
}

.b2b-compare {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .b2b-compare { grid-template-columns: 1fr 1fr; } }
.b2b-compare__col {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--slate-200);
}
.b2b-compare__col--us {
  background: linear-gradient(145deg, var(--rose-50), var(--white));
  border-color: var(--rose-200);
}
.b2b-compare__col--them {
  background: var(--slate-50);
}
.b2b-compare__col h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.b2b-compare__col ul {
  list-style: none;
  display: grid;
  gap: 0.625rem;
}
.b2b-compare__col li {
  font-size: 0.875rem;
  color: var(--slate-600);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.b2b-compare__col--us li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rose-700);
  font-weight: 800;
}
.b2b-compare__col--them li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--slate-400);
  font-weight: 700;
}

.b2b-audience {
  display: grid;
  gap: 1rem;
}
.b2b-audience__card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
}
.b2b-audience__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--rose-50);
  color: var(--rose-700);
  display: grid;
  place-items: center;
}
.b2b-audience__icon svg { width: 1.125rem; height: 1.125rem; }
.b2b-audience__card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.b2b-audience__card p {
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.5;
}

.b2b-faq {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
}
.b2b-faq__item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.b2b-faq__item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.b2b-faq__item summary::-webkit-details-marker { display: none; }
.b2b-faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--rose-700);
  flex-shrink: 0;
}
.b2b-faq__item[open] summary::after { content: "−"; }
.b2b-faq__item[open] summary { border-bottom: 1px solid var(--slate-200); }
.b2b-faq__item p {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.6;
}
.b2b-faq__item a { color: var(--rose-700); font-weight: 700; }

.b2b-quick-cta {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  text-align: center;
}
.b2b-quick-cta__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-600);
  margin-bottom: 1rem;
}
.b2b-quick-cta__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.b2b-quick-cta__channels .btn { min-width: 7rem; justify-content: center; }

/* Image showcase mosaic */
.showcase {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .showcase {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }
  .showcase__main { grid-row: span 2; }
}
.showcase__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.showcase__item img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  display: block;
}
.showcase__main img { min-height: 20rem; }
@media (min-width: 768px) { .showcase__main img { min-height: 28rem; } }
.showcase__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(26, 26, 46, 0.85));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--slate-700);
  line-height: 1.6;
  margin: 0;
}
.testimonial__quote::before { content: "\201C"; color: var(--rose-600); font-weight: 700; }
.testimonial__author {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--slate-100);
}
.testimonial__name {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--ink);
}
.testimonial__role {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 0.125rem;
}

/* Staff / team */
.staff {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 52rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .staff { grid-template-columns: repeat(2, 1fr); } }
.staff-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.staff-card:hover {
  border-color: var(--rose-200);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.staff-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-700), var(--wine));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(190, 18, 60, 0.25);
}
.staff-card__avatar--alt {
  background: linear-gradient(135deg, var(--slate-700), var(--ink));
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.2);
}
.staff-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.staff-card__role {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3125rem 0.875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rose-700);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
}
.staff-card__bio {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.staff-card__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.staff-card__contact a {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--rose-700);
  padding: 0.4375rem 0.875rem;
  border-radius: 999px;
  border: 1px solid var(--rose-200);
  background: var(--rose-50);
  transition: background 0.2s, color 0.2s;
}
.staff-card__contact a:hover {
  background: var(--rose-700);
  color: var(--white);
  border-color: var(--rose-700);
}

/* Product gallery (subpages) */
.product-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .product-gallery { grid-template-columns: repeat(3, 1fr); } }
.product-gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--slate-100);
  box-shadow: var(--shadow-sm);
}
.product-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-gallery__item:hover img { transform: scale(1.04); }
.product-gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 21 / 9;
}
@media (max-width: 767px) {
  .product-gallery__item--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
}

/* Spec pills */
.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.spec {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--slate-700);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

/* Split with visual */
.split--visual {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split--visual { grid-template-columns: 1fr 1fr; }
}
.split__visual-stack {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.split__visual-stack .split__visual-main {
  grid-column: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__visual-stack .split__visual-main img {
  width: 100%;
  height: clamp(14rem, 30vw, 20rem);
  object-fit: cover;
}
.split__visual-stack .split__visual-sub {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split__visual-stack .split__visual-sub img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

/* Image strip (wholesale) */
.img-strip {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
@media (min-width: 768px) { .img-strip { grid-template-columns: repeat(4, 1fr); } }
.img-strip__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.img-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Flower details */
.flower-details {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
}
.flower-details__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin: 0 0 1.75rem;
}
.flower-details__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .flower-details__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .flower-details__grid { grid-template-columns: repeat(3, 1fr); }
}
.flower-detail {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.flower-detail h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.625rem;
  line-height: 1.35;
}
.flower-detail__latin {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  font-style: italic;
  color: var(--slate-400);
}
.flower-detail p {
  font-size: 0.8125rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}
.flower-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--slate-600);
  line-height: 1.5;
}
.flower-detail li + li { margin-top: 0.35rem; }
.flower-detail strong { color: var(--slate-700); font-weight: 700; }
.flower-details__note {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-500);
}
.flower-details__note a:not(.btn) {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--rose-700);
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}
.flower-details__note a:not(.btn):hover { text-decoration: underline; }
.flower-details__note .btn { margin-top: 0; text-decoration: none; word-break: normal; }
.flower-details__note .btn:hover { text-decoration: none; }
.flower-details__email {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--rose-700);
  color: var(--white) !important;
  border-radius: 999px;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: background 0.2s;
}
.flower-details__email:hover {
  background: var(--rose-800);
  text-decoration: none;
}

/* Calendar */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.calendar { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 0.875rem; }
.calendar th, .calendar td { padding: 0.875rem 0.375rem; text-align: center; }
.calendar thead tr { background: var(--ink); color: var(--white); }
.calendar th:first-child, .calendar td:first-child {
  text-align: left;
  padding-left: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}
.calendar th { font-weight: 600; font-size: 0.75rem; letter-spacing: 0.04em; }
.calendar tbody tr { border-bottom: 1px solid var(--slate-100); }
.calendar tbody tr:hover { background: var(--rose-50); }
.calendar tbody tr:last-child { border-bottom: none; }
.dot {
  display: inline-block;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
}
.dot--on { background: var(--rose-700); box-shadow: 0 0 0 3px var(--rose-100); }
.dot--off { background: var(--slate-200); }
.table-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--slate-500);
}
.table-legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.table-note { font-size: 0.8125rem; color: var(--slate-400); text-align: center; margin-top: 0.75rem; }

/* Gallery */
.gallery { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery--4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .gallery--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .gallery--5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .gallery--5 { grid-template-columns: repeat(5, 1fr); } }
.gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.gallery__img {
  aspect-ratio: 1 / 1;
  min-height: clamp(14rem, 28vw, 20rem);
  overflow: hidden;
  background: var(--slate-100);
}
.gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery figure:hover .gallery__img img { transform: scale(1.04); }
.gallery figcaption {
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--slate-700);
  border-top: 1px solid var(--slate-100);
}

/* Split / philosophy */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.split__lead { color: var(--slate-600); margin-bottom: 1.5rem; font-size: 0.9375rem; }
.checklist { display: flex; flex-direction: column; gap: 1rem; }
.checklist li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  color: var(--slate-700);
  font-size: 0.9375rem;
}
.checklist__icon {
  flex-shrink: 0;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: #ecfdf5;
  color: var(--emerald-700);
  display: grid;
  place-items: center;
  margin-top: 0.125rem;
  border: 1px solid #a7f3d0;
}
.checklist__icon svg { width: 0.875rem; height: 0.875rem; }

.cta-box {
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--ink), var(--wine));
  color: var(--white);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.cta-box .eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; }
.cta-box .eyebrow::before { background: rgba(255,255,255,0.25); }
.cta-box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-box p { opacity: 0.88; margin-bottom: 1.5rem; font-size: 0.9375rem; line-height: 1.6; }
.cta-box__channels { display: flex; flex-direction: column; gap: 0.625rem; }

/* Contact strip */
.contact-strip {
  background: var(--ink);
  color: var(--white);
  padding: 2.5rem 0;
}
.contact-strip__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .contact-strip__inner { grid-template-columns: 1fr auto; }
}
.contact-strip h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.contact-strip p { opacity: 0.8; font-size: 0.9375rem; }
.contact-strip__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Info cards */
.info-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card__row { display: flex; gap: 1rem; align-items: flex-start; }
.info-card__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  display: grid;
  place-items: center;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  color: var(--rose-700);
}
.info-card__icon svg { width: 1.25rem; height: 1.25rem; }
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.375rem;
}
.info-card p, .info-card ul { font-size: 0.875rem; color: var(--slate-600); line-height: 1.55; }
.info-card ul li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.375rem;
}
.info-card ul li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--emerald-500);
  flex-shrink: 0;
}
.info-card a {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--rose-700);
  margin-top: 0.625rem;
  display: inline-flex;
  gap: 0.25rem;
}
.info-card a:hover { text-decoration: underline; }

/* Contact grid */
.contact-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .contact-grid { grid-template-columns: repeat(5, 1fr); } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.contact-card:hover { box-shadow: var(--shadow); border-color: var(--slate-300); }
.contact-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.contact-card__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--slate-400);
  margin-bottom: 0.375rem;
}
.contact-card__value { font-weight: 700; color: var(--ink); }
.contact-card__sub { font-size: 0.875rem; color: var(--slate-500); margin-top: 0.25rem; }
.contact-card a.link {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 0.625rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.contact-card a.phone { font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.contact-card a.phone:hover { color: var(--rose-700); }
.contact-card a.link--wa { color: #128c43; }
.contact-card a.link--viber { color: var(--viber); }
.contact-card a.link--email { color: #1d4ed8; font-size: 0.8125rem; word-break: break-all; }
.contact-card a.link--map { color: var(--emerald-700); }
.contact-card ul { font-size: 0.875rem; color: var(--slate-600); line-height: 1.9; }

.map-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; }

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
@media (min-width: 1100px) { .footer__grid { grid-template-columns: 1.35fr 1fr 1fr 1fr 1.1fr; } }
.footer__grid ul { font-size: 0.875rem; line-height: 1.5; }
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer p { font-size: 0.875rem; line-height: 1.65; }
.footer h4 {
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer a { font-size: 0.875rem; transition: color 0.2s; }
.footer a:hover { color: var(--white); }
.footer__channels {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
.footer__channel {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.15s;
}
.footer__channel:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.footer__channel svg { width: 1.125rem; height: 1.125rem; color: var(--white); }
.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* Fixed bottom dock — share bar + web-partner credit */
.site-bottom-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.site-bottom-dock > * { pointer-events: auto; }

/* Social share bar */
.share-bar {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: var(--share-h);
  min-height: var(--share-h);
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.06);
}
.share-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  height: 100%;
  flex-wrap: nowrap;
  padding: 0.375rem 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.share-bar__inner::-webkit-scrollbar { display: none; }
.share-bar__label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--slate-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.share-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
  justify-content: center;
}
.share-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.share-bar__btn svg {
  width: 1.0625rem;
  height: 1.0625rem;
}
.share-bar__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.share-bar__btn--wa { background: #128c43; }
.share-bar__btn--fb { background: #1877f2; }
.share-bar__btn--viber { background: var(--viber); }
.share-bar__btn--x { background: #0f172a; }
.share-bar__btn--in { background: #0a66c2; }
.share-bar__btn--copy { background: var(--slate-600); }
.share-bar__btn--native { background: var(--rose-700); }
.share-bar__toast {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow);
  pointer-events: none;
}
.share-bar__toast[hidden] { display: none; }

/* Floating contact dock */
.fab-dock {
  position: fixed;
  bottom: calc(var(--dock-h) + 1rem + env(safe-area-inset-bottom, 0px));
  right: 1.5rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
}
.fab-dock__menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.fab-dock.is-open .fab-dock__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.fab-dock__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem 0.625rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-200);
  transition: transform 0.15s;
  white-space: nowrap;
}
.fab-dock__item:hover { transform: translateX(-2px); }
.fab-dock__item-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
}
.fab-dock__item-icon--phone { background: var(--rose-700); }
.fab-dock__item-icon--wa { background: #128c43; }
.fab-dock__item-icon--viber { background: var(--viber); }
.fab-dock__item-icon svg { width: 1.125rem; height: 1.125rem; }

.fab-dock__toggle {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, var(--rose-700), var(--wine));
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(190,18,60,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab-dock__toggle:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(190,18,60,0.45); }
.fab-dock.is-open .fab-dock__toggle { background: var(--slate-700); box-shadow: var(--shadow); }
.fab-dock__toggle svg { width: 1.5rem; height: 1.5rem; transition: transform 0.25s; }
.fab-dock.is-open .fab-dock__toggle svg { transform: rotate(45deg); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Web-partner credit — horizontal bottom banner */
.credit-banner {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: var(--credit-h);
  padding: 0.5rem 1rem;
  background: linear-gradient(90deg, var(--ink) 0%, #2a1f35 50%, var(--ink) 100%);
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.15);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.credit-banner:hover,
.credit-banner:focus-visible {
  background: linear-gradient(90deg, var(--rose-800) 0%, var(--wine) 50%, var(--rose-800) 100%);
  color: var(--white);
  outline: none;
}
.credit-banner__text {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.credit-banner__brand {
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fecdd3;
}
.credit-banner:hover .credit-banner__brand,
.credit-banner:focus-visible .credit-banner__brand { color: var(--white); }

/* eikō flowers — bottom partner banner (always visible, bottommost) */
.eiko-banner {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 4.25rem;
  padding: 0.875rem 1.25rem;
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.eiko-banner:hover,
.eiko-banner:focus-visible {
  background: #1a1a1a;
  color: #fff;
  outline: none;
}
.eiko-banner__brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.eiko-banner__tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.45;
  color: #fff;
}
.eiko-banner__url {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 640px) {
  .eiko-banner {
    min-height: 3.75rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    padding: 0.875rem 1.5rem;
  }
  .eiko-banner__brand { font-size: 1.375rem; }
  .eiko-banner__tagline { font-size: 0.75rem; }
}

/* ——— Skip link ——— */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.625rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 0.5rem 0.5rem;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--rose-400);
  outline-offset: 2px;
}

/* ——— Cookie consent (eikō-style bottom bar in dock) ——— */
.cookie-bar {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 1rem 0;
}
.cookie-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
.cookie-bar__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  font-weight: 400;
  color: #fff;
}
.cookie-bar__privacy {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar__privacy:hover,
.cookie-bar__privacy:focus-visible {
  color: #d4ff00;
}
.cookie-bar__accept {
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: #d4ff00;
  color: #000;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cookie-bar__accept:hover,
.cookie-bar__accept:focus-visible {
  background: #eaff4d;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@media (min-width: 640px) {
  .cookie-bar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .cookie-bar__text {
    font-size: 0.875rem;
    flex: 1 1 auto;
  }
}

/* ——— Legal & 404 ——— */
.legal-page { max-width: 42rem; }
.legal-page__intro { margin: 1rem 0 2rem; color: var(--slate-600); line-height: 1.7; }
.legal-block { margin-bottom: 1.75rem; }
.legal-block h2 { font-size: 1.125rem; margin: 0 0 0.5rem; }
.legal-block p { margin: 0; color: var(--slate-600); line-height: 1.7; }
.not-found { text-align: center; max-width: 28rem; margin: 0 auto; padding: 3rem 0; }
.not-found h1 { margin: 0.5rem 0 1rem; }
.footer__privacy { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer__privacy:hover { color: var(--rose-300); }

/* ——— Focus visible ——— */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav a:focus-visible,
.channel-pill:focus-visible,
.card--link:focus-visible,
.is-zoomable:focus-visible {
  outline: 2px solid var(--rose-500);
  outline-offset: 2px;
}

/* ——— Mobile-friendly layout ——— */
@media (max-width: 768px) {
  html { scroll-padding-top: 4.5rem; }

  .topbar__inner {
    justify-content: center;
    padding: 0.5rem 0;
  }
  .topbar__left { justify-content: center; width: 100%; }
  .topbar__right {
    justify-content: center;
    width: 100%;
    gap: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }
  .topbar__item--hours { display: none; }

  .header__inner { min-height: 4rem; }
  .brand__name { font-size: 1rem; }
  .brand__tagline { font-size: 0.6rem; letter-spacing: 0.08em; }
  .brand__logo { width: 5rem; height: 4rem; }

  .hero__inner { padding: 3rem 0 3.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; min-height: 2.75rem; }
  .channels { flex-direction: column; }
  .channel-pill { width: 100%; justify-content: center; min-height: 2.75rem; }
  .hero__badge { position: relative; bottom: auto; left: auto; margin-top: 1rem; max-width: none; }

  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-right: none; border-bottom: 1px solid var(--slate-200); }
  .trust__item:last-child { border-bottom: none; }

  .stats__item:nth-child(2) { border-right: none; }

  .section { padding: 3rem 0; }

  .contact-strip { padding: 2rem 0; }
  .contact-strip__buttons { flex-direction: column; width: 100%; }
  .contact-strip__buttons .btn { width: 100%; min-height: 2.75rem; }

  .cta-box__channels .btn { min-height: 2.75rem; }

  .map-wrap iframe { height: 260px; }

  .footer__grid { gap: 1.75rem; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .fab-dock__toggle { width: 3.25rem; height: 3.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .brand__tagline {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    white-space: normal;
    max-width: 9.5rem;
    line-height: 1.35;
  }

  .gallery--5 { grid-template-columns: repeat(2, 1fr); }

  .flower-details { padding: 1.25rem; margin-top: 2rem; }

  .credit-banner__text { font-size: 0.625rem; }
  .credit-banner__brand { font-size: 0.75rem; }
}

/* Subpages */
.subpage { padding-top: 0; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--slate-500);
}
.breadcrumbs a { color: var(--rose-700); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span[aria-current="page"] { color: var(--slate-700); font-weight: 600; }

.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2a1f35 100%);
  color: var(--white);
  padding: 2.5rem 0 3rem;
}
.page-hero--compact { padding: 2rem 0 2.5rem; }
.page-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr 1fr; }
}
.page-hero .eyebrow::before { background: var(--rose-600); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.page-hero__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.25rem;
}
.page-hero .checklist { color: var(--white); }
.page-hero .checklist li {
  color: var(--white);
  font-weight: 700;
}
.page-hero .checklist li strong {
  color: var(--white);
  font-weight: 800;
}
.page-hero .checklist__icon { background: rgba(255,255,255,0.15); color: #fecdd3; border-color: rgba(255,255,255,0.2); }
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.page-hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.page-hero .specs .spec {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
.flower-nav__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.flower-nav a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-700);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.flower-nav a:hover {
  border-color: var(--rose-200);
  color: var(--rose-700);
  background: var(--rose-50);
}

.card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--rose-200);
}
.card__more {
  display: block;
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--rose-700);
}

/* Image lightbox */
.is-zoomable {
  cursor: zoom-in;
}
.card--photo .card__media .is-zoomable { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox.is-open .lightbox__figure {
  opacity: 1;
  transform: scale(1);
}
body.lightbox-open { overflow: hidden; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(4px);
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(92vw, 72rem);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(88vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  max-width: 40rem;
  line-height: 1.4;
}
.lightbox__caption[hidden] { display: none; }

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__nav[hidden],
.lightbox__close[hidden] { display: none; }

@media (max-width: 640px) {
  .lightbox { padding: 0.5rem; }
  .lightbox__nav { width: 2.25rem; height: 2.25rem; font-size: 1.5rem; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
  .lightbox__close { top: 0.5rem; right: 0.5rem; }
}

@media (max-width: 768px) {
  .page-hero { padding: 2rem 0; }
  .page-hero__actions { flex-direction: column; }
  .page-hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track, .gallery__img img, .flower-banner__track { animation: none; transition: none; }
}
