/* ============================================
   DREAMY FLORAL SHOP — Complete Styles
   Palette: Cream, Rose Gold, Warm Brown, Blush
   Fonts: Cormorant Garamond + Great Vibes + Lato
   ============================================ */

/* ── CSS Variables ── */
:root {
  --cream:        #F9F4EE;
  --cream-dark:   #F0E8DC;
  --blush:        #F5E6E0;
  --rose-gold:    #C9956B;
  --rose-light:   #D4A87A;
  --rose-deep:    #A0714A;
  --brown-dark:   #2C1810;
  --brown-mid:    #5C3D2E;
  --brown-light:  #8B6355;
  --gold:         #C8A96E;
  --gold-light:   #E2C98A;
  --white:        #FFFFFF;
  --text-dark:    #2C1810;
  --text-mid:     #5C3D2E;
  --text-light:   #8B7355;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Lato', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-full:  999px;

  --shadow-sm:    0 2px 12px rgba(44,24,16,0.08);
  --shadow-md:    0 8px 32px rgba(44,24,16,0.14);
  --shadow-lg:    0 20px 60px rgba(44,24,16,0.20);

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* ── Floating Petals ── */
.petals-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.petal {
  position: absolute;
  opacity: 0;
  animation: petalFall linear infinite;
  top: -60px;
}

.petal-1  { left: 5%;  animation-duration: 12s; animation-delay: 0s;   font-size: 1.2rem; }
.petal-2  { left: 15%; animation-duration: 15s; animation-delay: 2s;   font-size: 1rem; }
.petal-3  { left: 28%; animation-duration: 11s; animation-delay: 4s;   font-size: 1.4rem; }
.petal-4  { left: 42%; animation-duration: 14s; animation-delay: 1s;   font-size: 1.1rem; }
.petal-5  { left: 58%; animation-duration: 13s; animation-delay: 3s;   font-size: 1.3rem; }
.petal-6  { left: 70%; animation-duration: 16s; animation-delay: 5s;   font-size: 1rem; }
.petal-7  { left: 82%; animation-duration: 12s; animation-delay: 2.5s; font-size: 1.2rem; }
.petal-8  { left: 92%; animation-duration: 14s; animation-delay: 0.5s; font-size: 1.1rem; }

@keyframes petalFall {
  0%   { transform: translateY(-60px) rotate(0deg) translateX(0);    opacity: 0; }
  10%  { opacity: 0.55; }
  50%  { transform: translateY(50vh) rotate(180deg) translateX(30px); opacity: 0.35; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(110vh) rotate(360deg) translateX(-20px); opacity: 0; }
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(249, 244, 238, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(249, 244, 238, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(200,169,110,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Navbar Logo with image */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,0.5);
  box-shadow: 0 2px 8px rgba(44,24,16,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(201,149,107,0.35);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--rose-gold);
  line-height: 1;
}

.logo-serif {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-top: -2px;
}

/* On transparent navbar (hero), make text white */
.navbar:not(.scrolled) .logo-script { color: #F2D4B8; }
.navbar:not(.scrolled) .logo-serif  { color: rgba(249,244,238,0.75); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(249,244,238,0.9);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

.navbar.scrolled .nav-link { color: var(--brown-dark); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--rose-gold) !important; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--rose-gold) !important; }

.nav-cta {
  background: var(--rose-gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--rose-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,149,107,0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--brown-dark); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,149,107,0.35);
}

.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,107,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.mt-2 { margin-top: 24px; }

/* ── Section Headers ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 56px; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.75;
}

.ornament {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin: 10px 0;
  display: block;
}

.ornament-light { color: rgba(200,169,110,0.6); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1e0f08 0%, #3d2318 35%, #6b3a22 65%, #a0714a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,149,107,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.18) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1600&q=50') center/cover no-repeat;
  opacity: 0.1;
  mix-blend-mode: luminosity;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 130px 24px 90px;
  width: 100%;
}

/* Hero Logo */
.hero-logo-wrap { margin-bottom: 28px; }

.hero-logo-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  background: rgba(249,244,238,0.97);
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(200,169,110,0.5),
    0 0 0 6px rgba(200,169,110,0.12),
    0 24px 64px rgba(0,0,0,0.4);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-logo-img:hover {
  transform: scale(1.04) rotate(1deg);
  box-shadow:
    0 0 0 1px rgba(200,169,110,0.7),
    0 0 0 8px rgba(200,169,110,0.18),
    0 32px 80px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(249,244,238,0.85);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(249,244,238,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(249,244,238,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── Marquee Strip ── */
.marquee-strip {
  background: var(--brown-dark);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  padding: 0 18px;
}

.marquee-track .dot { color: var(--rose-gold); padding: 0 4px; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── About ── */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual { position: relative; padding-bottom: 30px; }

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-frame:hover .about-img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-deep));
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  left: -24px;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-text { padding-left: 16px; }

.about-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── Services ── */
.services {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--blush) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,169,110,0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,149,107,0.25);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-wide {
  grid-column: span 4;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 28px 36px;
}

.service-wide-text { flex: 1; }
.service-card-wide .service-icon { font-size: 2.8rem; flex-shrink: 0; margin-bottom: 0; }

.service-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-gold);
  transition: color var(--transition);
}

.service-link:hover { color: var(--rose-deep); }

/* ── Gallery ── */
.gallery { background: var(--cream); }

.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1.5px solid rgba(92,61,46,0.2);
  background: transparent;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
  box-shadow: 0 4px 16px rgba(201,149,107,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.78) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.gallery-item.hidden { display: none; }

/* ── Why Us ── */
.why-us {
  background: linear-gradient(135deg, #1e0f08 0%, #3d2318 50%, #5c3d2e 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1487530811015-780780169993?w=1200&q=30') center/cover no-repeat;
  opacity: 0.05;
}

.why-us .section-label { color: var(--gold-light); }
.why-title { color: var(--cream) !important; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(249,244,238,0.06);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: rgba(249,244,238,0.11);
  border-color: rgba(200,169,110,0.38);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.why-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(249,244,238,0.65);
  line-height: 1.75;
}

/* ── Testimonials ── */
.testimonials { background: var(--blush); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,169,110,0.1);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ── Booking ── */
.booking { background: var(--cream); }

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.booking-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 18px 0 28px;
}

.contact-details { display: flex; flex-direction: column; gap: 18px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: color var(--transition);
  line-height: 1.5;
}

.contact-item a:hover { color: var(--rose-gold); }

/* Booking section logo */
.booking-logo-wrap {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,0.4);
  box-shadow: var(--shadow-sm);
}

/* ── Booking Form ── */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,169,110,0.12);
}

.booking-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(92,61,46,0.16);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(201,149,107,0.14);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(92,61,46,0.38); }

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C3D2E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--cream);
  padding-right: 40px;
  cursor: pointer;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #d94f4f;
  box-shadow: 0 0 0 3px rgba(217,79,79,0.1);
}

.btn-icon { font-size: 0.85rem; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.visible { display: block; }
.booking-form.hidden { display: none; }

.success-icon { font-size: 3rem; margin-bottom: 16px; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.form-success p { color: var(--text-mid); line-height: 1.7; }

/* ── Footer ── */
.footer { background: var(--brown-dark); }

.footer-top { padding: 72px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
}

/* Footer logo with image */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand .logo-script { font-size: 1.9rem; color: var(--rose-light); }
.footer-brand .logo-serif  { color: rgba(249,244,238,0.45); font-size: 0.6rem; }

.footer-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(249,244,238,0.5);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(249,244,238,0.07);
  border: 1px solid rgba(200,169,110,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249,244,238,0.55);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(249,244,238,0.5);
  transition: color var(--transition);
}

.footer-links-col a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item span:first-child { font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }

.footer-contact-item a,
.footer-contact-item span:last-child {
  font-size: 0.85rem;
  color: rgba(249,244,238,0.5);
  line-height: 1.5;
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(200,169,110,0.1);
  padding: 26px 0;
  text-align: center;
}

.footer-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(249,244,238,0.3);
  letter-spacing: 0.04em;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,6,2,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-content { max-width: 90vw; max-height: 85vh; text-align: center; }

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

#lightboxCaption {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(249,244,238,0.65);
  margin-top: 12px;
  font-style: italic;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(249,244,238,0.08);
  border: 1px solid rgba(249,244,238,0.18);
  color: var(--cream);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--rose-gold); border-color: var(--rose-gold); }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--transition);
  z-index: 500;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--rose-deep); transform: translateY(-3px); }

/* ── Reveal Animations ── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0); }

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { gap: 48px; }
  .booking-wrap { gap: 48px; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 40px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }

  .nav-link { color: var(--brown-dark) !important; font-size: 1.1rem; }
  .nav-cta { width: 100%; text-align: center; }

  /* Hero */
  .hero-logo-img { width: 160px; height: 160px; }
  .hero-content { padding: 110px 20px 80px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { display: none; }
  .about-img-badge { right: 12px; }
  .about-text { padding-left: 0; }
  .about-img { height: 320px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card-wide {
    grid-column: span 2;
    flex-direction: column;
    text-align: center;
  }
  .service-card-wide .service-icon { margin-bottom: 12px; }

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

  /* Why Us */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking-wrap { grid-template-columns: 1fr; gap: 40px; }
  .booking-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-logo-wrap { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-wrap { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 260px; }
  .nav-logo-img { width: 42px; height: 42px; }
  .logo-script { font-size: 1.5rem; }
}