/* ============================================================
   BYSOPHIELLE FLOWER SHOP — STYLESHEET
   Color Palette:
     Rose:      #E8485A  (primary)
     Blush:     #FADADD  (light accent)
     Petal:     #FFF0F3  (background tint)
     Sage:      #6B8F71  (green accent)
     Ivory:     #FFFDF9  (background)
     Charcoal:  #2D2D2D  (text)
============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: #2D2D2D;
  background: #FFFDF9;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  width: min(90%, 1160px);
  margin-inline: auto;
}

.section { padding-block: 100px; }

/* ===== TYPOGRAPHY ===== */
.section__label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8485A;
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #2D2D2D;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section__subtitle {
  max-width: 600px;
  color: #5a5a5a;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #E8485A;
  color: #fff;
  border-color: #E8485A;
}
.btn--primary:hover {
  background: #c93448;
  border-color: #c93448;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 72, 90, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #E8485A;
  border-color: #E8485A;
}
.btn--ghost:hover {
  background: #E8485A;
  color: #fff;
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; font-size: 1rem; }

/* ===== NAVIGATION ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.1rem;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.header.scrolled {
  background: rgba(255, 253, 249, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding-block: 0.75rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #E8485A;
  white-space: nowrap;
}

.nav__logo-icon { font-size: 1.2rem; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__link {
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 400;
  color: #2D2D2D;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover { color: #E8485A; background: #FFF0F3; }

.nav__link--cta {
  background: #E8485A;
  color: #fff !important;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
}
.nav__link--cta:hover { background: #c93448 !important; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2D2D2D;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__close { display: none; }
.nav__overlay { display: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF0F3 0%, #FFFDF9 50%, #f0f7f1 100%);
  padding-block: 120px 80px;
}

.hero__petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  font-size: 2rem;
  opacity: 0.18;
  animation: floatPetal linear infinite;
  user-select: none;
}

.petal--1  { left:  5%; top: 15%; font-size: 2.5rem; animation-duration: 12s; animation-delay: 0s; }
.petal--2  { left: 15%; top: 70%; font-size: 1.8rem; animation-duration: 16s; animation-delay: 2s; }
.petal--3  { left: 80%; top:  8%; font-size: 3rem;   animation-duration: 14s; animation-delay: 1s; }
.petal--4  { left: 88%; top: 65%; font-size: 2rem;   animation-duration: 18s; animation-delay: 3s; }
.petal--5  { left: 45%; top: 85%; font-size: 1.5rem; animation-duration: 11s; animation-delay: 4s; }
.petal--6  { left: 62%; top: 20%; font-size: 2.2rem; animation-duration: 15s; animation-delay: 0.5s; }
.petal--7  { left: 30%; top:  5%; font-size: 1.6rem; animation-duration: 13s; animation-delay: 6s; }
.petal--8  { left: 72%; top: 82%; font-size: 2.8rem; animation-duration: 17s; animation-delay: 2.5s; }

@keyframes floatPetal {
  0%   { transform: translateY(0px) rotate(0deg);   opacity: 0.15; }
  50%  { transform: translateY(-30px) rotate(180deg); opacity: 0.25; }
  100% { transform: translateY(0px) rotate(360deg); opacity: 0.15; }
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E8485A;
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #2D2D2D;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: #E8485A;
  position: relative;
  display: inline-block;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8485A, #f5a8b0);
  border-radius: 2px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #5a5a5a;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.8);
  border: 1px solid #FADADD;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #5a5a5a;
  backdrop-filter: blur(8px);
}

.badge__icon { font-size: 1rem; }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: #aaa;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceScroll 2s ease-in-out infinite;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transform: rotate(45deg);
}

@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===== ABOUT ===== */
.about { background: #fff; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual { position: relative; }

.about__frame {
  aspect-ratio: 4/4.5;
  background: linear-gradient(135deg, #FADADD 0%, #FFF0F3 60%, #e8f5eb 100%);
  border-radius: 24px 80px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about__flower-art {
  text-align: center;
  animation: gentleSway 4s ease-in-out infinite;
}

.flower-art__bouquet {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.flower-art__wrap {
  font-size: 1.5rem;
  color: #6B8F71;
  letter-spacing: 0.5em;
}

@keyframes gentleSway {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50%       { transform: rotate(2deg) scale(1.03); }
}

.about__tag {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2D2D2D;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.about__tag--1 {
  top: 1.5rem;
  right: -1.5rem;
  animation: tagFloat 3s ease-in-out infinite;
}

.about__tag--2 {
  bottom: 2rem;
  left: -1.5rem;
  animation: tagFloat 3s ease-in-out infinite 1.5s;
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.about__desc {
  color: #5a5a5a;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.highlight strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #2D2D2D;
}

.highlight p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* ===== OCCASIONS ===== */
.occasions {
  background: linear-gradient(180deg, #FFF0F3 0%, #FFFDF9 100%);
}

.occasions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.occasion-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

.occasion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.occasion-card--valentines { border-color: #E8485A; }
.occasion-card--mothers    { border-color: #F4A261; }
.occasion-card--souls      { border-color: #6B8F71; }
.occasion-card--custom     { border-color: #9B5DE5; }

.occasion-card__icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.occasion-card__date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.occasion-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2D2D2D;
}

.occasion-card__desc {
  font-size: 0.92rem;
  color: #6a6a6a;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.occasion-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.occasion-card__list li {
  font-size: 0.88rem;
  color: #555;
  padding-left: 1.2em;
  position: relative;
}

.occasion-card__list li::before {
  content: '🌸';
  position: absolute;
  left: -0.2em;
  font-size: 0.7rem;
  top: 0.15em;
}

/* ===== ARRANGEMENTS ===== */
.arrangements { background: #fff; }

.arrangements__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.arrange-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f0e0e4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.arrange-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(232, 72, 90, 0.12);
}

.arrange-card__img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.arrange-card__img--single  { background: linear-gradient(135deg, #ffe0e6, #fff0f3); }
.arrange-card__img--hand    { background: linear-gradient(135deg, #fadadd, #ffe8ec); }
.arrange-card__img--box     { background: linear-gradient(135deg, #fce4d6, #fff3ee); }
.arrange-card__img--grand   { background: linear-gradient(135deg, #ffd6df, #ffe5f0); }
.arrange-card__img--wreath  { background: linear-gradient(135deg, #d9eadb, #edf5ee); }
.arrange-card__img--custom  { background: linear-gradient(135deg, #e8d5f5, #f5eeff); }

.arrange-card__emoji { animation: petalPop 3s ease-in-out infinite; }

@keyframes petalPop {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12) rotate(5deg); }
}

.arrange-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.arrange-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #2D2D2D;
}

.arrange-card__body p {
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.arrange-card__tag {
  display: inline-block;
  background: #FFF0F3;
  color: #E8485A;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ===== HOW TO ORDER ===== */
.how-to-order {
  background: linear-gradient(135deg, #fce8ed 0%, #edf5ee 100%);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.step {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 200px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease;
}

.step:hover { transform: translateY(-5px); }

.step__number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #FADADD;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.step__icon { font-size: 2rem; margin-bottom: 0.75rem; }

.step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2D2D2D;
}

.step__desc {
  font-size: 0.83rem;
  color: #777;
  line-height: 1.55;
}

.step__connector {
  align-self: center;
  font-size: 1.3rem;
  padding-inline: 0.75rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.how-to-order__note {
  background: #fff;
  border-left: 4px solid #E8485A;
  border-radius: 0 16px 16px 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 720px;
  margin-inline: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.how-to-order__note-icon { font-size: 1.4rem; flex-shrink: 0; }

.how-to-order__note p {
  font-size: 0.92rem;
  color: #5a5a5a;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact { background: #fff; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact__desc {
  color: #6a6a6a;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s;
}

.channel:hover { transform: translateX(4px); }

.channel__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.channel__icon--fb { background: #1877F2; color: #fff; }
.channel__icon--location { background: #FFF0F3; }
.channel__icon--payment  { background: #edf5ee; }

.channel strong { display: block; font-size: 0.9rem; margin-bottom: 0.1rem; }
.channel span { font-size: 0.85rem; color: #777; }

/* ===== FORM ===== */
.contact__form {
  background: #FFFDF9;
  border: 1px solid #f0e0e4;
  border-radius: 24px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2D2D2D;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0cdd0;
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: #2D2D2D;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #E8485A;
  box-shadow: 0 0 0 3px rgba(232, 72, 90, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #E8485A;
  background: #fff8f8;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-error {
  font-size: 0.78rem;
  color: #E8485A;
  font-weight: 600;
  min-height: 1em;
  display: block;
}

.form__note {
  text-align: center;
  font-size: 0.82rem;
  color: #aaa;
  margin-top: 1rem;
}

.form__success {
  margin-top: 1.5rem;
  background: #edf5ee;
  border: 1px solid #6B8F71;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.form__success span { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.form__success strong { display: block; color: #6B8F71; margin-bottom: 0.3rem; }
.form__success p { font-size: 0.88rem; color: #555; margin: 0; }

/* ===== GALLERY ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #FADADD;
  border: none;
  padding: 0;
  aspect-ratio: 1;
  display: block;
  width: 100%;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.06);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 72, 90, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 2rem;
}

.gallery__item:hover .gallery__overlay,
.gallery__item:focus-visible .gallery__overlay {
  opacity: 1;
}

.gallery__item:focus-visible {
  outline: 3px solid #E8485A;
  outline-offset: 3px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox__content {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.3); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }

.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255, 255, 255, 0.3); }

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
}

/* ===== HAPPY CUSTOMERS ===== */
.customers {
  background: #FFF0F3;
}

/* Embla Carousel */
.embla {
  position: relative;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.embla__slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
}

.customer-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #FADADD;
  position: relative;
}

.customer-item canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.customer-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #E8485A;
  opacity: 0.4;
}

.embla__controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.embla__btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid #E8485A;
  background: #fff;
  color: #E8485A;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.embla__btn:hover {
  background: #E8485A;
  color: #fff;
}

/* ===== FOOTER ===== */
.footer {
  background: #2D2D2D;
  color: #ccc;
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand .nav__logo { color: #FADADD; margin-bottom: 0.75rem; }

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #999;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__links ul,
.footer__occasions ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.footer__links li a {
  font-size: 0.88rem;
  color: #999;
  transition: color 0.2s;
}
.footer__links li a:hover { color: #FADADD; }

.footer__occasions li {
  font-size: 0.88rem;
  color: #999;
}

.footer__social p {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer__fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1877F2;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.footer__fb-btn:hover { background: #1560cc; transform: translateY(-2px); }

.footer__bottom {
  padding-block: 1.5rem;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: #777;
}

/* ===== FAB ===== */
.fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: #E8485A;
  color: #fff;
  border-radius: 50px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(232, 72, 90, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.fab.visible {
  opacity: 1;
  transform: translateY(0);
}

.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 72, 90, 0.5);
}

.fab span:first-child { font-size: 1.1rem; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }

  .about__tag--1 { right: 0; }
  .about__tag--2 { left: 0; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    height: 100svh;
    width: min(85vw, 320px);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 1001;
  }

  .nav__menu.open { transform: translateX(0); }

  .nav__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #FFF0F3;
    border: none;
    color: #E8485A;
    font-size: 1.6rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .nav__close:hover { background: #FADADD; }

  .nav__link { font-size: 1.15rem; padding: 0.85rem 1rem; width: 100%; border-radius: 12px; }
  .nav__link--cta { margin-top: 0.75rem; text-align: center; justify-content: center; display: block; }

  .nav__toggle { display: flex; z-index: 1002; }

  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    backdrop-filter: blur(2px);
  }
  .nav__overlay.open { display: block; }

  .steps { gap: 1rem; }
  .step { width: 100%; max-width: 360px; }
  .step__connector { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .section { padding-block: 70px; }
}

@media (max-width: 600px) {
  .embla__slide { flex: 0 0 78%; }
}

@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .contact__form { padding: 1.5rem; }
  .about__tag--1, .about__tag--2 { display: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .embla__slide { flex: 0 0 calc((100% - 1rem) / 2); }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
}
