/* ─────────────────────────────────────────────
   COMO LA FLOR — Bloom Bar & Floral Studio
   Brand palette from style guide
───────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --rose:     #D4246D;
  --hot:      #EE4599;
  --blush:    #FCC7DE;
  --gold:     #F9A8C9;
  --sage:     #8DB664;
  --cream:    #FFFFFF;
  --dark:     #111111;
  --dark2:    #1a1a1a;
  --muted:    #555555;
  --text:     #111111;
  --white:    #FFFFFF;
  --border:   rgba(212,36,109,.14);

  --ff-head: 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-script: 'Great Vibes', cursive;
  --ff-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --r: 2px;
  --sh: 0 8px 40px rgba(23,6,12,.18);
  --sh-lg: 0 24px 80px rgba(23,6,12,.28);
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
img { display: block; width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 36px; }
.section { padding: 108px 0; }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: var(--r);
  transition: all .28s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  border: 1.5px solid var(--rose);
}
.btn-primary:hover {
  background: var(--hot);
  border-color: var(--hot);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,36,109,.38);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.65);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn.fw { width: 100%; text-align: center; }

/* ── TYPE HELPERS ─────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--ff-head);
  font-size: .65rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.services .eyebrow,
.gallery .eyebrow,
.booking .eyebrow { color: #F9A8C9; }
.hero-eyebrow { color: #F9A8C9; }
.section-title {
  font-family: var(--ff-script);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
}
.divider-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.divider-row.center { justify-content: center; }
.div-line {
  height: 1px;
  width: 52px;
  background: var(--gold);
  flex-shrink: 0;
}
.div-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}
.sec-head { margin-bottom: 60px; }
.sec-head.center { text-align: center; }
.sec-head.center .div-line { width: 44px; }
.sec-sub {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.sec-head.center .sec-sub { margin: 0 auto; }
.req { color: var(--rose); }

/* ── NAV ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 26px 0;
  transition: background .4s, padding .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(23,6,12,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 2px 28px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main {
  font-family: var(--ff-head);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .1em;
}
.logo-sub {
  font-family: var(--ff-body);
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--ff-head);
  font-size: .63rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--r);
  transition: background .2s, transform .2s !important;
}
.nav-links .nav-cta:hover {
  background: var(--hot);
  transform: translateY(-1px);
}
/* Logo images */
.nav-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.6));
}
.hero-logo-img {
  width: min(680px, 88vw);
  height: auto;
  object-fit: contain;
  margin: 0 auto -180px;
  display: block;
  filter: drop-shadow(0 0 40px rgba(0,0,0,.9)) drop-shadow(0 0 12px rgba(0,0,0,.9));
}
@media (max-width: 600px) {
  .hero-logo-img { width: min(340px, 90vw); }
  .nav-logo-img  { height: 100px; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Green Pink Minimal Modern Simple  Organic  Food Vegan Shop  Business Card.JPG');
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
  transition: transform 10s ease-out;
  will-change: transform;
}
.hero-bg.ready { transform: scale(1); }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(23,6,12,.70) 0%,
    rgba(23,6,12,.55) 40%,
    rgba(23,6,12,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 32px;
}
.hero-eyebrow {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 1.15rem;
  color: #F9A8C9;
  letter-spacing: .14em;
  margin-bottom: 16px;
  display: block;
}
.hero-title {
  font-family: var(--ff-script);
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: .07em;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 32px rgba(23,6,12,.5);
}
.hero-tagline {
  font-family: var(--ff-body);
  font-size: clamp(.85rem, 2vw, 1.05rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.orn-line {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(237,180,128,.5);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 530px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.55);
  font-family: var(--ff-head);
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: .45; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── ABOUT ────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--r);
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background-image: url('IMG_4431.jpg');
  background-size: cover;
  background-position: center top;
  border-radius: var(--r);
  filter: none;
}
.about-accent-border {
  position: absolute;
  top: -14px; left: -14px;
  right: 14px; bottom: -14px;
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  opacity: .4;
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 94px; height: 94px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--ff-head);
  text-align: center;
  box-shadow: var(--sh);
  line-height: 1.2;
}
.about-badge span { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.about-badge strong { font-size: 1.4rem; font-weight: 500; }
.about-copy p { color: var(--muted); margin-bottom: 18px; font-size: 1.04rem; }
.stats-row {
  display: flex;
  gap: 44px;
  padding: 28px 0;
  margin: 32px 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--ff-head);
  font-size: 2.1rem;
  color: var(--rose);
  line-height: 1;
}
.stat-l {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── SERVICES ─────────────────────────────── */
.services { background: var(--dark); }
.services .eyebrow { color: var(--gold); }
.services .section-title { color: var(--white); }
.services .div-line { background: rgba(237,180,128,.35); }
.services .sec-sub { color: rgba(255,255,255,.55); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
}
.svc-card {
  background: var(--dark);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(237,180,128,.07);
  transition: background .3s, transform .3s;
}
.svc-card:hover {
  background: rgba(212,36,109,.1);
  transform: translateY(-4px);
  z-index: 1;
}
.svc-icon-wrap { margin-bottom: 22px; }
.svc-icon-img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; display: block; margin: 0 auto; }
.svc-card h3 {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 14px;
}
.svc-card p {
  font-size: .98rem;
  color: rgba(255,255,255,.52);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}
.svc-link {
  font-family: var(--ff-head);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s, letter-spacing .2s;
  align-self: flex-start;
}
.svc-link:hover { color: var(--rose); letter-spacing: .28em; }

/* ── PACKAGES ─────────────────────────────── */
.packages {
  background: var(--cream);
  position: relative;
}
.packages::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--rose));
}
.pkg-tabs {
  display: flex;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 56px;
}
.pkg-tab {
  font-family: var(--ff-head);
  font-size: .63rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 32px;
  color: var(--muted);
  border-right: 1px solid var(--border);
  transition: background .2s, color .2s;
}
.pkg-tab:last-child { border-right: none; }
.pkg-tab.active, .pkg-tab:hover { background: var(--rose); color: var(--white); }
.pkg-panel { display: none; }
.pkg-panel.active { display: block; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.pkg-card.featured {
  border-color: var(--rose);
  box-shadow: 0 0 0 1px var(--rose), var(--sh);
  transform: translateY(-8px);
}
.pkg-card.featured:hover { transform: translateY(-14px); box-shadow: 0 0 0 1px var(--rose), var(--sh-lg); }
.pkg-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-head {
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pkg-head h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}
.pkg-price strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
}
.pkg-price span { font-size: .8rem; color: var(--muted); letter-spacing: .06em; }
.pkg-list {
  flex: 1;
  margin-bottom: 30px;
}
.pkg-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,36,109,.06);
  font-size: .98rem;
  color: var(--muted);
}
.pkg-list li::before {
  content: '✦';
  color: var(--rose);
  font-size: .6rem;
  flex-shrink: 0;
  margin-top: 5px;
}
/* Wide card spans full row when it's the 4th in a 3-col grid */
.pkg-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0 40px;
  align-items: center;
}
.pkg-card-wide .pkg-head { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.pkg-card-wide .pkg-list { margin-bottom: 0; }
.pkg-card-wide .btn { align-self: center; white-space: nowrap; }

@media (max-width: 800px) {
  .pkg-card-wide {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .pkg-card-wide .pkg-head { border-bottom: 1px solid var(--border); padding-bottom: 22px; margin-bottom: 24px; }
  .pkg-card-wide .pkg-list { margin-bottom: 30px; }
}

.pkg-notices {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.pkg-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 18px;
}
.pkg-notice svg { flex-shrink: 0; }

.pkg-note {
  text-align: center;
  margin-top: 48px;
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}
.pkg-note a { color: var(--rose); text-decoration: underline; text-underline-offset: 3px; }

/* ── GALLERY ──────────────────────────────── */
.gallery { background: var(--dark); }
.gallery .eyebrow { color: var(--gold); }
.gallery .section-title { color: var(--white); }
.gallery .div-line { background: rgba(237,180,128,.35); }
.gallery .sec-sub { color: rgba(255,255,255,.55); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 280px;
  gap: 6px;
}
.gal-item {
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--r);
}
.gal-item.gal-tall { grid-row: span 2; }
.gal-item.gal-wide { grid-column: span 2; }
.gal-item.gal-placeholder { background-color: #f2e6ec; background-image: none; }
.gal-item.gal-placeholder .gal-label { opacity: 0.4; }
.gal-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,6,12,.8) 0%, rgba(23,6,12,0) 55%);
  opacity: 0;
  transition: opacity .35s;
}
.gal-item:hover::before { opacity: 1; }
.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212,36,109,.08);
  opacity: 0;
  transition: opacity .35s;
}
.gal-item:hover::after { opacity: 1; }
.gal-item > * { position: relative; z-index: 1; }
.gal-label {
  position: absolute;
  bottom: 20px; left: 24px;
  z-index: 2;
  font-family: var(--ff-head);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s;
}
.gal-item:hover .gal-label { opacity: 1; transform: translateY(0); }
.gal-foot {
  text-align: center;
  margin-top: 52px;
  color: rgba(255,255,255,.55);
}
.gal-foot p { margin-bottom: 20px; font-style: italic; font-size: 1.02rem; }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 36px;
  border-radius: var(--r);
  transition: transform .3s, box-shadow .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.testi-card.featured {
  border-color: var(--rose);
  background: linear-gradient(135deg, rgba(212,36,109,.03), var(--white));
}
.testi-q {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  color: var(--rose);
  line-height: .6;
  margin-bottom: 18px;
  opacity: .45;
}
.testi-card p {
  font-style: italic;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 26px;
}
.testi-author {
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-author strong {
  font-family: var(--ff-head);
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--dark);
}
.testi-author span { font-size: .85rem; color: var(--rose); font-style: italic; }

/* ── BOOKING ──────────────────────────────── */
.booking {
  position: relative;
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
  background-image: url('Green Pink Minimal Modern Simple  Organic  Food Vegan Shop  Business Card.JPG');
  background-size: cover;
  background-position: center;
  filter: brightness(.25) saturate(.8);
}
.booking .container { position: relative; z-index: 1; }
.booking .eyebrow { color: var(--gold); }
.booking .section-title { color: var(--white); }
.booking .div-line { background: rgba(237,180,128,.38); }
.booking > .container > .booking-grid > .booking-info p { color: rgba(255,255,255,.65); font-size: 1.04rem; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 76px;
  align-items: start;
}
.bk-items { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.bk-item { display: flex; gap: 18px; align-items: flex-start; }
.bk-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(237,180,128,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 11px;
}
.bk-item strong {
  display: block;
  font-family: var(--ff-head);
  font-size: .76rem;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 4px;
}
.bk-item p { font-size: .95rem; color: rgba(255,255,255,.5); margin: 0; }

/* ── FORMS ────────────────────────────────── */
.form-wrap { }
.form-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 48px 44px;
  box-shadow: var(--sh-lg);
}
.form-card h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--dark);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label {
  font-family: var(--ff-head);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid rgba(212,36,109,.16);
  border-radius: var(--r);
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4246D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212,36,109,.09);
}
.form-group textarea { resize: vertical; min-height: 104px; }
.form-note {
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 14px;
}

/* ── CONTACT ──────────────────────────────── */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: box-shadow .25s, transform .25s;
}
.ci-item:hover { box-shadow: var(--sh); transform: translateX(4px); }
.ci-ico {
  width: 38px; height: 38px;
  background: rgba(212,36,109,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 9px;
}
.ci-item strong {
  display: block;
  font-family: var(--ff-head);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 3px;
}
.ci-item a, .ci-item span { font-size: .95rem; color: var(--muted); }
.ci-item a:hover { color: var(--rose); }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.soc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  padding: 11px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.soc-btn:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: translateY(-3px);
}

/* ── FOOTER ───────────────────────────────── */
.footer { background: var(--dark); padding-top: 84px; }
.ft-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-logo {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.ft-sub {
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.ft-desc { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 280px; margin-bottom: 26px; }
.ft-brand .soc-btn { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.65); }
.ft-brand .soc-btn:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }
.ft-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.ft-col h5 {
  font-family: var(--ff-head);
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col a { font-size: .95rem; color: rgba(255,255,255,.45); transition: color .2s; }
.ft-col a:hover { color: var(--gold); }
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 36px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: .8rem;
  color: rgba(255,255,255,.28);
}

/* ── TOAST ────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--dark2);
  color: var(--white);
  padding: 18px 28px;
  border-left: 4px solid var(--rose);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  font-family: var(--ff-head);
  font-size: .7rem;
  letter-spacing: .1em;
  z-index: 9999;
  transform: translateX(140%);
  transition: transform .4s cubic-bezier(.22,.68,0,1.2);
}
.toast.show { transform: translateX(0); }

/* ── SCROLL ANIMATIONS ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1040px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-col { max-width: 480px; margin: 0 auto; }
  .booking-grid { grid-template-columns: 1fr; gap: 52px; }
  .ft-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(23,6,12,.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 200;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: .88rem; }

  .svc-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card.featured { transform: none; }
  .pkg-tabs { flex-wrap: wrap; width: 100%; }
  .pkg-tab { flex: 1; border-right: none; border-bottom: 1px solid var(--border); }

  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gal-item.gal-tall { grid-row: span 1; }
  .gal-item.gal-wide { grid-column: span 2; }

  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .section { padding: 76px 0; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gal-item.gal-wide { grid-column: span 1; }
  .stats-row { flex-direction: column; gap: 18px; }
  .ft-cols { grid-template-columns: 1fr 1fr; }
  .ft-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 22px 20px; }
  .hero-title { font-size: clamp(2.8rem, 15vw, 4.5rem); }
}
