*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── COLOUR PALETTE (logo-matched) ── */
:root {
  --lavender:      #b39ddb;   /* primary: medium lavender */
  --lavender-lt:   #ede7f6;   /* light lavender background */
  --lavender-mid:  #7e57c2;   /* deeper lavender for accents */
  --purple-deep:   #4a148c;   /* logo dark purple */
  --beige:         #f5f0e8;   /* secondary: warm beige */
  --beige-mid:     #e8dcc8;   /* slightly darker beige */
  --gold:          #c9a030;   /* logo gold */
  --gold-lt:       #f0d080;   /* lighter gold */
  --mint:          #80cbc4;   /* logo mint/teal accent */
  --white:         #ffffff;
  --text:          #2e1654;   /* dark purple for text */
  --muted:         #7b6fa0;   /* muted purple-grey */
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--beige);
  color: var(--text);
  overflow-x: hidden;
}

/* ── BRAND FONT ── */
.brand-font {
  font-family: 'Tangerine', cursive;
  font-weight: 700;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 4rem;
  background: linear-gradient(90deg, rgba(237,231,246,0.97) 0%, rgba(245,240,232,0.97) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,160,48,0.25);
  animation: fadeDown 0.8s ease both;
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:none; } }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: 48px; object-fit: contain; border-radius: 50%; }
.nav-logo-text {
  font-family: 'Tangerine', cursive;
  font-weight: 700;
  font-size: 2rem;
  color: var(--purple-deep);
  line-height: 1; letter-spacing: 0.04em;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--lavender-mid); }

.nav-btn {
  font-family: 'Jost', sans-serif; font-size: 0.74rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--gold);
  background: transparent; color: var(--purple-deep); cursor: pointer;
  transition: all 0.3s; border-radius: 2px;
}
.nav-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column;
  justify-content: center; padding: 8rem 4rem 4rem 6rem;
  background: linear-gradient(160deg, var(--beige) 0%, var(--lavender-lt) 100%);
  animation: fadeUp 1s 0.3s ease both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:none; } }

.hero-tag {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-tag::before { content:''; width:36px; height:1px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }

.hero h1 {
  font-family: 'Tangerine', cursive;
  font-weight: 700;
  font-size: clamp(4rem, 6.5vw, 8rem);
  line-height: 0.95;
  color: var(--purple-deep); margin-bottom: 0.6rem;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem); font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--lavender-mid); margin-bottom: 1.6rem;
}

.hero-desc {
  font-size: 0.93rem; line-height: 1.85; color: var(--muted);
  max-width: 380px; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--lavender-mid), var(--purple-deep));
  color: var(--white); border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.3s; text-decoration: none; display:inline-block;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--purple-deep), var(--lavender-mid)); box-shadow: 0 6px 20px rgba(126,87,194,0.4); }

.btn-outline {
  padding: 0.85rem 2rem; background: transparent;
  color: var(--purple-deep); border: 1.5px solid var(--lavender-mid); cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 0.76rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.3s; text-decoration: none; display:inline-block;
}
.btn-outline:hover { background: var(--lavender-lt); }

/* Hero right — logo panel */
.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--purple-deep) 0%, #7b1fa2 45%, var(--lavender-mid) 100%);
  animation: fadeIn 1.2s 0.5s ease both;
  display: flex; align-items: center; justify-content: center;
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* Subtle dot pattern overlay */
.hero-right::before {
  content:''; position:absolute; inset:0; z-index:1;
  background: radial-gradient(circle at 30% 70%, rgba(128,203,196,0.18) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(240,208,128,0.12) 0%, transparent 50%);
}

/* Logo centred in hero-right */
.hero-logo-display {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.2rem;
  padding: 3rem;
}
.hero-logo-display img {
  width: min(380px, 78%);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(240,208,128,0.35), 0 0 120px rgba(74,20,140,0.5);
  animation: floatLogo 5s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}
.hero-logo-line { width: 60px; height: 1.5px; background: linear-gradient(90deg, transparent, var(--gold-lt), transparent); }
.hero-logo-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Small decorative ring */
.deco-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none; z-index: 1;
}
.ring-a { width:320px; height:320px; top:-80px; right:-80px; }
.ring-b { width:180px; height:180px; bottom:40px; left:20px; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: linear-gradient(90deg, var(--purple-deep) 0%, #6a1b9a 50%, var(--purple-deep) 100%);
  padding: 0.9rem 0; overflow: hidden;
}
.marquee-inner {
  display: flex; gap: 3rem; width: max-content;
  animation: scrollM 22s linear infinite;
}
@keyframes scrollM { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-lt); white-space: nowrap;
  display: flex; align-items: center; gap: 1.5rem;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); flex-shrink:0; }

/* ── SECTION COMMONS ── */
.section-tag {
  font-size: 0.67rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-tag::before { content:''; width:28px; height:1px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); }
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 400;
  line-height: 1.1; color: var(--purple-deep);
}
.section-h2 em { font-style: italic; color: var(--lavender-mid); }

/* ── SERVICES (flip cards) ── */
.services {
  padding: 7rem 6rem;
  background: linear-gradient(180deg, var(--beige) 0%, var(--lavender-lt) 100%);
}
.section-header { margin-bottom: 3.5rem; }

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

/* Flip card container */
.service-card {
  perspective: 1000px;
  cursor: pointer;
  min-height: 280px;
}
.card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4,0.2,0.2,1);
  display: flex;
  flex-direction: column;
}
.service-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 2.5rem 2rem;
  border-radius: 4px;
}

/* Front face */
.card-front {
  position: relative;
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(179,157,219,0.25);
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s;
}
.service-card:hover .card-front {
  box-shadow: 0 12px 40px rgba(126,87,194,0.12);
}
.card-front-bar {
  position: absolute; left: 0; bottom: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender-mid), var(--mint));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 0 0 4px 4px;
}
.service-card:hover .card-front-bar { transform: scaleX(1); }

.service-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500; color: var(--purple-deep);
  margin-bottom: 0.7rem;
}
.service-desc {
  font-size: 0.84rem; line-height: 1.75; color: var(--muted);
  margin-bottom: 1.2rem; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-price {
  font-size: 0.74rem; letter-spacing: 0.1em; color: var(--gold);
  font-weight: 500; border-top: 1px solid var(--lavender-lt); padding-top: 0.8rem;
}
.flip-hint {
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--lavender); margin-top: 0.5rem; display: flex; align-items: center; gap: 0.3rem;
}

/* Back face */
.card-back {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--purple-deep) 0%, #7b1fa2 100%);
  transform: rotateY(180deg);
  color: white;
  overflow-y: auto;
}
.card-back-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--gold-lt); margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(240,208,128,0.3);
}
.sub-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.6rem; list-style: none;
}
.sub-list li {
  font-size: 0.72rem; line-height: 1.4;
  color: rgba(255,255,255,0.88);
  padding-left: 0.8rem; position: relative;
}
.sub-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--mint); font-size: 0.5rem; top: 0.15rem;
}
.card-back-close {
  margin-top: 1rem; font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  cursor: pointer; text-align: center;
}

/* ── WHY US ── */
.why {
  padding: 7rem 6rem;
  background: linear-gradient(135deg, var(--purple-deep) 0%, #6a1b9a 50%, var(--lavender-mid) 100%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.why .section-tag { color: var(--gold-lt); }
.why .section-tag::before { background: linear-gradient(90deg, var(--gold-lt), transparent); }
.why .section-h2 { color: var(--white); }
.why .section-h2 em { color: var(--lavender); font-style: italic; }
.why-desc {
  font-size: 0.9rem; line-height: 1.9; color: rgba(255,255,255,0.65);
  margin: 1.3rem 0 2.5rem;
}
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: var(--gold-lt);
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 0.25rem;
}
.why-right { display: flex; flex-direction: column; gap: 1.2rem; }
.feature {
  padding: 1.5rem 1.8rem;
  border: 1px solid rgba(240,208,128,0.2);
  background: rgba(255,255,255,0.04);
  transition: all 0.3s; border-radius: 3px;
}
.feature:hover {
  border-color: var(--gold-lt);
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.feature-text { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── GALLERY ── */
.gallery {
  padding: 7rem 6rem;
  background: linear-gradient(180deg, var(--lavender-lt) 0%, var(--beige) 100%);
}

/* ── GALLERY UPLOAD UI ── */
.gallery-manager {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid rgba(179,157,219,0.3);
  border-radius: 6px;
  overflow: hidden;
}
.gallery-toolbar {
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, var(--lavender-lt), var(--beige));
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(179,157,219,0.2);
  flex-wrap: wrap; gap: 0.8rem;
}
.gallery-toolbar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--purple-deep); font-weight: 500;
}
.toolbar-actions { display: flex; gap: 0.7rem; align-items: center; flex-wrap: wrap; }
.upload-btn-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, var(--lavender-mid), var(--purple-deep));
  color: white; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px;
  transition: opacity 0.2s;
}
.upload-btn-label:hover { opacity: 0.85; }
#galleryUpload { display: none; }

.clear-btn {
  padding: 0.55rem 1rem; background: transparent;
  border: 1px solid rgba(179,157,219,0.5); color: var(--muted);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: all 0.2s;
}
.clear-btn:hover { border-color: var(--lavender-mid); color: var(--purple-deep); }

.gallery-upload-zone {
  padding: 2.5rem;
  border: 2px dashed rgba(179,157,219,0.4);
  margin: 1.5rem;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(135deg, rgba(237,231,246,0.4), rgba(245,240,232,0.4));
}
.gallery-upload-zone:hover, .gallery-upload-zone.drag-over {
  border-color: var(--lavender-mid);
  background: rgba(237,231,246,0.7);
}
.upload-zone-icon { font-size: 2.5rem; margin-bottom: 0.8rem; opacity: 0.6; }
.upload-zone-text {
  font-size: 0.85rem; color: var(--muted); line-height: 1.6;
}
.upload-zone-text strong { color: var(--lavender-mid); }

.gallery-grid-display {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  padding: 0 1.5rem 1.5rem;
  min-height: 60px;
}
.gallery-thumb {
  position: relative; overflow: hidden; border-radius: 3px;
  aspect-ratio: 1; cursor: pointer;
  border: 2px solid transparent; transition: border 0.2s;
}
.gallery-thumb:hover { border-color: var(--lavender-mid); }
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-thumb:hover img { transform: scale(1.07); }
.gallery-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(74,20,140,0.55);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.gallery-thumb:hover .gallery-thumb-overlay { opacity: 1; }
.thumb-action {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.5);
  color: white; font-size: 0.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.thumb-action:hover { background: rgba(255,255,255,0.4); }
.thumb-label-input {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(74,20,140,0.85);
  border: none; outline: none; color: white;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.5rem; text-align: center; display: none;
  font-family: 'Jost', sans-serif;
}
.gallery-thumb:hover .thumb-label-input { display: block; }
.gallery-empty-msg {
  grid-column: 1/-1; text-align: center;
  padding: 2rem; color: var(--muted); font-size: 0.82rem;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(20,0,40,0.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative; max-width: 90vw; max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw; max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 0 80px rgba(201,160,48,0.3);
}
.lightbox-close {
  position: absolute; top: -14px; right: -14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: white;
  border: none; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-caption {
  text-align: center; color: rgba(255,255,255,0.7);
  font-size: 0.8rem; letter-spacing: 0.1em; margin-top: 0.7rem;
  text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 7rem 6rem;
  background: linear-gradient(180deg, var(--beige) 0%, var(--lavender-lt) 100%);
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem;
}
.testi-card {
  background: var(--white); padding: 2.5rem;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--lavender-mid), var(--mint)) 1;
  box-shadow: 0 4px 24px rgba(126,87,194,0.07);
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(126,87,194,0.14); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-style: italic; line-height: 1.65;
  color: var(--purple-deep); margin-bottom: 1.5rem;
}
.testi-author {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
}

/* ── BOOKING ── */
.booking {
  padding: 7rem 6rem;
  background: linear-gradient(135deg, var(--lavender-mid) 0%, var(--purple-deep) 60%, #6a1b9a 100%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.booking-left .section-tag { color: var(--gold-lt); }
.booking-left .section-tag::before { background: linear-gradient(90deg, var(--gold-lt), transparent); }
.booking-left h2 {
  font-family: 'Tangerine', cursive;
  font-weight: 700;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  color: var(--white); line-height: 1; margin: 0.3rem 0 1rem;
}
.booking-left p {
  font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.8;
}

.booking-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.form-input, .form-select {
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.87rem; outline: none;
  transition: border 0.3s; border-radius: 2px;
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus, .form-select:focus { border-color: var(--gold-lt); background: rgba(255,255,255,0.18); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #4a148c; }
.form-btn {
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--purple-deep);
  border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  transition: all 0.3s; border-radius: 2px; margin-top: 0.2rem;
}
.form-btn:hover { background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ── CONTACT ── */
.contact {
  padding: 5rem 6rem;
  background: var(--beige);
  display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem;
  border-top: 1px solid rgba(179,157,219,0.25);
}
.contact-info {
  display: flex; flex-direction: row; align-items: flex-start;
  flex-wrap: wrap; gap: 10px;
}
.contact-info h4 {
  width: 100%; margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--purple-deep); letter-spacing: 0.05em;
}
.contact-info p {
  font-size: 0.83rem; color: var(--muted); line-height: 1.9; width: 100%;
}
.contact-info a {
  text-decoration: none; margin-right: 10px; font-size: 10px;
  transition: transform 0.3s ease; display: inline-block;
}
.contact-info a.text-link {
  font-size: 0.83rem; color: var(--muted); display: block; width: 100%;
}
.contact-info a.text-link:hover { color: var(--lavender-mid); }
.contact-info a:hover { transform: scale(1.2); }
.fa-instagram { color: #E4405F; }
.fa-facebook  { color: #1877F2; }
.fa-whatsapp  { color: #25D366; }
.fa-instagram, .fa-facebook, .fa-whatsapp { font-size: 1.4rem !important; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(90deg, var(--purple-deep) 0%, #6a1b9a 50%, var(--purple-deep) 100%);
  padding: 2rem 6rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.8rem;
}
.footer-brand img {
  height: 44px; width: 44px; object-fit: contain; border-radius: 50%;
  border: 1.5px solid rgba(240,208,128,0.5);
}
.footer-logo-text {
  font-family: 'Tangerine', cursive;
  font-weight: 700;
  font-size: 1.8rem; color: var(--gold-lt); line-height: 1;
}
.footer-copy {
  font-size: 0.7rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em;
}
.footer-social { display: flex; gap: 0.8rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.75rem; text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold-lt); color: var(--gold-lt); background: rgba(255,255,255,0.08); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 360px; }
  .hero-left { padding: 7rem 1.5rem 3rem; }
  .services, .gallery, .testimonials { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
  .booking { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr 1fr; padding: 4rem 1.5rem; }
  footer { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; text-align: center; }
  .gallery-grid-display { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
