@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quintessential&display=swap');

:root {
  --surface: #fbf9f9;
  --surface-2: #f5f3f3;
  --surface-3: #efeded;
  --surface-white: #ffffff;
  --on-surface: #1b1c1c;
  --on-surface-soft: #4c4546;
  --primary: #0d0d0d;
  --primary-soft: #1b1b1b;
  --on-primary: #ffffff;
  --secondary: #e6c878;
  --secondary-deep: #c9a85a;
  --secondary-soft: #f3db93;
  --secondary-bright: #f8dba8;
  --secondary-glow: #f8dba8;
  --line: #e3dede;
  --line-soft: #cfc4c5;
  --gold: linear-gradient(120deg, #f8dba8 0%, #f3db93 50%, #f8dba8 100%);
  --gold-soft: linear-gradient(120deg, #f8dba8, #f3db93, #f8dba8);
  --font-head: 'Amiri', serif;
  --font-body: 'Montserrat', sans-serif;
  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(0,0,0,.06);
  --shadow-md: 0 14px 40px rgba(115,92,0,.10);
  --shadow-lg: 0 26px 60px rgba(115,92,0,.16);
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.25; margin: 0; font-weight: 700; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  vertical-align: middle;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 64px);
}
.section { padding-block: clamp(64px, 11vw, 120px); }
.section:last-of-type { padding-bottom: clamp(24px, 4vw, 40px); }
.section-sm { padding-block: clamp(48px, 7vw, 80px); }
.grid { display: grid; gap: clamp(18px, 2.5vw, 28px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-auto { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.between { display: flex; align-items: center; justify-content: space-between; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--secondary);
  border: 1px solid rgba(230,200,120,.3);
  padding: 7px 16px; border-radius: 999px;
}
.title-lg { font-size: clamp(2.4rem, 7vw, 4rem); }
.title { font-size: clamp(2.2rem, 6vw, 3.2rem) !important; line-height: 1.2; }
.lead { font-size: clamp(1rem, 2.2vw, 1.15rem); color: var(--on-surface-soft); }
.muted { color: var(--on-surface-soft); }

.gold-text {
  background: var(--gold);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldShift 5s linear infinite;
}
@keyframes goldShift { to { background-position: 200% center; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, opacity .3s;
  white-space: nowrap;
}
.btn:active { transform: scale(.96); }
.btn-gold { background: var(--gold-soft); color: #2a2100; position: relative; overflow: hidden; }
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn-gold:hover::after { transform: translateX(120%); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--primary-soft); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid var(--secondary); color: var(--secondary-deep); }
.btn-outline:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.25); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.mini-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: 60px;
  background: rgba(251,249,249,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.mini-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(251,249,249,.98); }
.mini-header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 36px; width: auto; }
.brand .brand-name { font-family: 'Quintessential', cursive; font-weight: 700; font-size: 1.15rem; color: var(--primary); letter-spacing: .02em; }
.mini-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; color: var(--primary);
  transition: background .3s, transform .3s; font-size: 1.3rem;
}
.icon-btn:hover { background: var(--surface-3); transform: scale(1.05); }

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--primary-soft); color: #fff; overflow: hidden;
  padding-top: 60px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(270deg, rgba(13,13,13,.88) 0%, rgba(13,13,13,.50) 55%, rgba(13,13,13,.20) 100%);
}
.hero-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(70px); opacity: .45; pointer-events: none; }
.hero-glow.a { top: 8%; left: 6%; background: var(--secondary-glow); animation: drift 16s ease-in-out infinite; }
.hero-glow.b { bottom: 12%; right: 8%; background: var(--secondary-soft); animation: floaty 9s ease-in-out infinite; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 680px; margin-inline: auto;
  text-align: center; padding: 40px 20px;
}
.hero-text .title-lg { color: #fff; }
.hero-text .lead { color: #d9d4d4; }
.hero-text .eyebrow { color: var(--secondary); border-color: rgba(230,200,120,.3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

.stats { background: var(--surface-2); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,36px); text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--secondary-deep); line-height: 1; }
.stat .lbl { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-surface-soft); margin-top: 10px; }

.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,24px); }
.usp-card {
  text-align: center; padding: clamp(20px, 3vw, 32px);
  background: var(--surface-white); border: 1px solid var(--line);
  border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s;
}
.usp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-sm); }
.usp-card .icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(230,200,120,.12); color: var(--secondary-deep); font-size: 1.6rem;
  margin: 0 auto 16px;
}
.usp-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.usp-card p { color: var(--on-surface-soft); font-size: .9rem; margin: 0; }

.sec-head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head .title { margin-block: 14px 10px; }
.divider { width: 80px; height: 3px; background: var(--gold); background-size: 200% auto; animation: goldShift 4s linear infinite; margin: 0 auto; border-radius: 2px; }
.card {
  background: var(--surface-white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 32px);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
.card .icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(230,200,120,.12); color: var(--secondary-deep); font-size: 1.8rem;
  margin-bottom: 18px; transition: transform .5s var(--ease), background .4s;
}
.card:hover .icon { transform: scale(1.12) rotate(-5deg); background: var(--secondary-soft); }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--on-surface-soft); font-size: .95rem; margin: 0; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; padding: 10px 20px;
  border-radius: 999px; font-size: .85rem; font-weight: 600;
  margin-top: 16px; transition: transform .3s, box-shadow .3s;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.35); }

.testimonials-marquee { overflow: hidden; }
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 36px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
.marquee-wrap .testi-card {
  flex: 0 0 auto;
  width: 260px;
  margin: 0 12px;
  border-radius: 16px;
  background: var(--surface-2);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  padding: 0;
  border: none;
}
.marquee-wrap .testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
.marquee-wrap .testi-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f5f3f3;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .marquee-wrap .testi-card { width: 200px; margin: 0 8px; }
  .marquee-track { animation-duration: 38s; }
}
@media (max-width: 480px) {
  .marquee-wrap .testi-card { width: 160px; margin: 0 6px; }
  .marquee-track { animation-duration: 30s; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.testimonials-section { background: var(--surface-2); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--surface-white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--secondary-deep); font-size: 1.2rem; margin-bottom: 12px; }
.testi-text { font-family: var(--font-head); font-size: 1.1rem; line-height: 1.6; color: var(--on-surface); margin-bottom: 16px; }
.testi-author { font-weight: 600; color: var(--on-surface-soft); font-size: .9rem; }

.gallery-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/5;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute; inset: auto 0 0 0; padding: 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent);
  color: #fff; font-family: var(--font-head); font-size: .95rem;
}

.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(0,0,0,.9); align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: grid; place-items: center; font-size: 1.8rem;
  transition: background .3s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

.offer-banner {
  background: linear-gradient(120deg, #ff6b6b, #ee5a5a);
  color: #fff; padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg); text-align: center;
  box-shadow: var(--shadow-md);
}
.offer-banner h3 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.offer-banner p { font-size: 1.1rem; opacity: .95; margin-bottom: 20px; }
.offer-badge {
  display: inline-block; background: #fff; color: #ff6b6b;
  padding: 8px 20px; border-radius: 999px; font-weight: 700;
  font-size: .9rem; margin-bottom: 16px;
}

.faq-item {
  background: var(--surface-white); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: right; padding: 18px 22px;
  font-family: var(--font-head); font-size: 1.1rem;
  font-weight: 600; color: var(--on-surface);
  display: flex; justify-content: space-between; align-items: center;
  background: none; transition: background .3s;
}
.faq-question:hover { background: var(--surface-2); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  padding: 0 22px; color: var(--on-surface-soft); font-size: .95rem;
}
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 18px; }
.faq-icon { transition: transform .3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); }

.booking-section { background: var(--primary-soft); color: #fff; }
.booking-form {
  background: var(--surface-white); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px); max-width: 500px;
  margin-inline: auto; color: var(--on-surface);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--on-surface-soft); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 14px; font-family: inherit;
  font-size: 1rem; color: var(--on-surface);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(230,200,120,.18);
}
.field textarea { resize: vertical; }
.booking-form h2 { color: var(--primary); text-align: center; margin-bottom: 24px; }
.booking-form .btn { width: 100%; }

.location-section { background: var(--surface-2); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.location-info { background: var(--surface-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.location-info h3 { margin-bottom: 16px; color: var(--secondary-deep); }
.location-info p { color: var(--on-surface-soft); margin-bottom: 12px; }
.location-info .phone { font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 300px; display: block; border: none; }

.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: var(--primary-soft); padding: 12px 16px;
  display: none; gap: 12px; border-top: 1px solid rgba(255,255,255,.1);
}
.sticky-bar .btn { flex: 1; font-size: .9rem; padding: 12px 20px; }

.site-footer { background: var(--primary-soft); color: #fff; margin-top: 60px; }
.footer-inner { padding: clamp(32px, 5vw, 56px) 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-grid h4 { font-family: var(--font-head); font-size: 1.15rem; color: var(--secondary-soft); margin-bottom: 16px; }
.footer-grid a { color: #b9b3b3; font-size: .9rem; display: inline-block; padding-block: 5px; transition: color .3s; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { color: #b9b3b3; font-size: .9rem; }
.social { display: flex; flex-direction: row; flex-wrap: wrap; gap: 14px; }
.social a {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 48px; height: 48px; padding: 0;
  border-radius: 50%; color: #fff; font-size: .92rem; overflow: hidden;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.social a .material-symbols-outlined,
.social a > i { color: #fff; font-size: 1.5rem; transition: transform .3s var(--ease); }
.social a .lbl { display: none; white-space: nowrap; font-weight: 600; }
.social a:hover { transform: translateY(-3px); }
.social a:hover > i { transform: scale(1.12); }
.social a.ig:hover { background: rgba(193,53,132,.18); border-color: #c13584; color: #e9599f; box-shadow: 0 8px 22px rgba(193,53,132,.25); }
.social a.tt:hover { background: rgba(0,0,0,.25); border-color: #25f4ee; color: #25f4ee; box-shadow: 0 8px 22px rgba(37,244,238,.2); }
.social a.sc:hover { background: rgba(255,252,0,.12); border-color: #fffc00; color: #fffc00; box-shadow: 0 8px 22px rgba(255,252,0,.18); }
.social a.ig:hover > i,
.social a.tt:hover > i,
.social a.sc:hover > i { color: inherit; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 32px; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: #b9b3b3; font-size: .85rem; margin-inline-start: 14px; }
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .82rem; margin: 0; }

.back-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 65;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary-soft); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease), background .3s;
}
.back-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-top:hover { background: var(--secondary-deep); }

.fab-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 70;
  display: flex; flex-direction: column; gap: 12px;
}
.fab-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  font-size: 1.6rem; color: #fff;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.fab-btn:hover { transform: scale(1.1); }
.fab-call {
  background: var(--primary-soft);
}
.fab-call:hover {
  background: var(--secondary-deep);
  box-shadow: 0 14px 36px rgba(201,168,90,.4);
}
.fab-whatsapp {
  background: #25D366;
}
.fab-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 14px 36px rgba(37,211,102,.6);
}

@keyframes floatUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(26px,-26px); } }

.hero-anim { opacity: 0; animation: floatUp 1.1s var(--ease) forwards; }
.d1 { animation-delay: .15s; } .d2 { animation-delay: .35s; } .d3 { animation-delay: .55s; } .d4 { animation-delay: .75s; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.r1 { transition-delay: .12s; } .r2 { transition-delay: .24s; } .r3 { transition-delay: .36s; }

@media (max-width: 899px) {
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .hero-inner { padding: 20px; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-bar { display: none; }
  .back-top { bottom: 80px; }
  .fab-container { bottom: 24px; }
}

@media (max-width: 639px) {
  .stat-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .gallery-preview { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: 1fr; }
  .brand .brand-name { display: none; }
}

@media (min-width: 900px) {
  .sticky-bar { display: none; }
}
