@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Jost:wght@400;500;600&display=swap');
@import url('effects.css');
@import url('abhijat-parity.css');
@import url('abhijat-deep.css');
@import url('menu-collections.css');
@import url('responsive.css');

:root {
  --gold: #c8a45a;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7b3c;
  --black: #000000;
  --black-soft: #0a0a0a;
  --surface: #111111;
  --surface-card: #1a1a1a;
  --text: #f5f5f5;
  --text-muted: #a8a8a8;
  --hairline: #2a2a2a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --header-h: 72px;
  --container: min(1200px, 92vw);
  --transition: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --section-pad: clamp(64px, 10vw, 100px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  background: var(--black-soft);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.container { width: var(--container); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

.type-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.type-display { font-size: clamp(2rem, 5vw, 3.25rem); }
.type-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.type-sub { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gold { color: var(--gold); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0px);
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); }

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  flex-shrink: 0;
  min-width: 0;
}
.brand img {
  height: 56px;
  width: 56px;
  max-width: min(72px, 18vw);
  object-fit: contain;
  background: transparent;
}
.site-header.header-over-hero .brand img {
  height: 64px;
  width: 64px;
  max-width: 72px;
}
.site-footer .brand img {
  height: 88px;
  width: 88px;
  max-width: 100px;
}
.brand span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.nav-desktop {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
  align-items: center;
}
.nav-desktop a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-desktop a:hover { color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown > button {
  background: none;
  border: none;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 13px;
}
.nav-dropdown-panel a:hover { color: var(--gold); background: rgba(200, 164, 90, 0.08); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-cta .btn-primary {
  padding: 12px 18px;
  font-size: 11px;
  white-space: nowrap;
}
.header-inner nav { flex: 1; display: flex; justify-content: center; min-width: 0; }
@media (max-width: 1023px) {
  .header-cta .btn-primary { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-light); color: var(--black); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 999;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile li { border-bottom: 1px solid var(--hairline); }
.nav-mobile a, .nav-mobile button.nav-link-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  color: var(--text);
  font-size: 16px;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.nav-mobile .sub-links { padding-left: 16px; padding-bottom: 12px; }
.nav-mobile .sub-links a { font-size: 14px; color: var(--text-muted); padding: 8px 0; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none; }
}

main { padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); }
.page-home main { padding-top: 0; }

/* Hero slider */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
  max-width: 640px;
}
.hero-content p { font-size: 1.05rem; margin-bottom: 28px; }
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dot.active { background: var(--gold); }

/* Sections */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--surface); }
.section-header { margin-bottom: 48px; max-width: 720px; }
.section-header.center { text-align: center; margin-inline: auto; max-width: 800px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Service blocks */
.service-row {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}
.service-row:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .service-row { grid-template-columns: 1fr 1fr; }
  .service-row.reverse .service-media { order: 2; }
}
.service-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}
.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-media:hover img { transform: scale(1.04); }

/* Stats band */
.stats-band {
  background: var(--gold);
  color: var(--black);
  padding: 48px 0;
  text-align: center;
}
.stats-band .stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
}
.stats-band .stat-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
  align-items: start;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 767px) {
  .stats-grid .stat-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 220px;
    margin-inline: auto;
  }
}
.stats-grid .stat-label {
  font-size: 12px;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .stats-grid .stat-label {
    font-size: 13px;
  }
}
.stats-grid .stat-item {
  text-align: center;
}
.stats-grid .stat-num {
  margin: 0;
}
.stats-grid .stat-label {
  margin: 8px 0 0;
  font-weight: 500;
}

/* Cards grid */
.cards-3 {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card-menu {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--hairline);
  background: var(--surface-card);
}
.card-menu picture {
  position: absolute;
  inset: 0;
  display: block;
}
.card-menu img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity var(--transition), transform 0.6s ease;
}
.card-menu:hover img { opacity: 0.55; transform: scale(1.05); }
.card-menu .card-body { position: relative; z-index: 1; }
.card-link {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.gallery-grid {
  align-items: stretch;
}
.gallery-grid:not(.portfolio-grid) .gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(160px, 28vw, 260px);
  background: #0c0c0c;
  border: 1px solid var(--hairline);
}

/* Portfolio: larger tiles (not 4-col gallery); images fill card with cover */
.gallery-grid.portfolio-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .gallery-grid.portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .gallery-grid.portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
.gallery-grid.portfolio-grid .gallery-item.portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  background: var(--surface-card);
}
.gallery-grid.portfolio-grid .portfolio-item picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: clamp(220px, 38vw, 400px);
  overflow: hidden;
  background: #0c0c0c;
}
.gallery-grid.portfolio-grid .portfolio-item picture img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}
.portfolio-item-label {
  display: block;
  padding: 12px 10px 14px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.35;
}

.gallery-lightbox-caption {
  margin: 0;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #f5f5f5;
  text-align: center;
}
.lg-sub-html .gallery-lightbox-caption {
  background: rgba(0, 0, 0, 0.75);
}

.gallery-grid:not(.portfolio-grid) .gallery-item picture,
.gallery-grid:not(.portfolio-grid) .gallery-item img {
  width: 100%;
  height: auto;
  max-height: clamp(160px, 28vw, 260px);
  object-fit: contain;
  object-position: center;
  border: none;
}

/* Testimonials */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 40px 24px;
  text-align: center;
  box-sizing: border-box;
}
.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text);
  margin: 0 0 24px;
  font-style: italic;
}
.testimonial-author { color: var(--gold); font-weight: 600; }
.testimonial-role { font-size: 14px; color: var(--text-muted); }
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.testimonial-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
}
.testimonial-nav button:hover { border-color: var(--gold); color: var(--gold); }

/* Areas strip */
.areas-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  padding: 40px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.areas-strip a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
}
.areas-strip a:hover { color: var(--gold); }

/* FAQ */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 48px 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.65;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: var(--section-pad) 24px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--black) 100%);
  border-top: 1px solid var(--hairline);
}

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}
@media (min-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  }
}
.footer-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 14px; }
.footer-social,
.contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a,
.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--hairline);
  color: var(--text);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover,
.contact-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.contact-social strong {
  margin-right: 4px;
}
.footer-social--bar {
  margin-top: 0;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* Modal — above header, floats, lightGallery */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 10050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(520px, 92vw);
  max-height: min(90vh, 90dvh);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  z-index: 10051;
  padding: 32px 28px 28px;
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.modal-backdrop.open + .modal,
.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: min(520px, 92vw);
  height: max-content;
  max-height: min(90vh, 90dvh);
  transform: none;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.modal h2 {
  margin: 0 40px 8px 0;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: var(--text);
}
.plan-modal-intro {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}
body.plan-modal-open {
  overflow: hidden;
}

/* First booking offer popup */
.booking-offer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10040;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.booking-offer-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.booking-offer-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10041;
  width: min(420px, 92vw);
  max-height: min(90vh, 90dvh);
  overflow: auto;
  padding: 28px 26px 22px;
  transform: translate(-50%, -48%) scale(0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: center;
  color: var(--text);
  background: linear-gradient(165deg, #1f1a14 0%, #121212 45%, #0d0d0d 100%);
  border: 1px solid rgba(200, 164, 90, 0.45);
  box-shadow:
    0 0 0 1px rgba(200, 164, 90, 0.12),
    0 28px 90px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(232, 213, 163, 0.08);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s ease;
}
.booking-offer-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.booking-offer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-offer-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.booking-offer-sparkle {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(232, 213, 163, 0.14), transparent 42%),
    radial-gradient(circle at 82% 8%, rgba(200, 164, 90, 0.12), transparent 38%);
}
.booking-offer-badge {
  position: relative;
  display: inline-flex;
  margin: 4px auto 14px;
  padding: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  animation: booking-offer-pulse 2.8s ease-in-out infinite;
}
.booking-offer-badge-inner {
  display: block;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1208;
  background: linear-gradient(180deg, #fff8e8 0%, #f0dfa8 100%);
}
@keyframes booking-offer-pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.03); filter: brightness(1.06); }
}
.booking-offer-eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.booking-offer-eyebrow i {
  margin-right: 6px;
}
.booking-offer-title {
  margin: 0 0 12px;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.5rem, 4.5vw, 1.85rem);
  line-height: 1.2;
  color: var(--text);
}
.booking-offer-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: left;
}
.booking-offer-perks {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
  font-size: 13px;
  color: var(--text);
}
.booking-offer-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.booking-offer-perks i {
  color: var(--gold);
  margin-top: 2px;
}
.booking-offer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-offer-cta {
  width: 100%;
  font-weight: 600;
}
.booking-offer-later {
  width: 100%;
}
.booking-offer-terms {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  opacity: 0.85;
}
body.booking-offer-open {
  overflow: hidden;
}
body.booking-offer-open .float-wa-queries,
body.booking-offer-open .float-whatsapp,
body.booking-offer-open .float-phone {
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .booking-offer-badge {
    animation: none;
  }
  .booking-offer-modal,
  .booking-offer-backdrop {
    transition-duration: 0.15s;
  }
}

body.plan-modal-open .float-wa-queries,
body.plan-modal-open .float-whatsapp,
body.plan-modal-open .float-phone,
body.plan-modal-open .back-to-top,
body.plan-modal-open .side-share {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid var(--hairline);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200, 164, 90, 0.25);
}
.form-textarea { min-height: 100px; resize: vertical; }

/* Inner pages */
.page-hero {
  padding: calc(var(--section-pad) * 0.75) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
}
.page-hero--photo {
  position: relative;
  background: var(--black-soft);
  background-image: linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 100%), var(--page-hero-image);
  background-size: cover;
  background-position: center;
}
.page-hero--photo .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 12px; }
.locations-coverage {
  margin: 12px 0 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.page-hero .locations-coverage {
  max-width: 36em;
}
.breadcrumb {
  font-size: 13px;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); }
.content-feature-img {
  margin: 0;
  max-height: 420px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.content-feature-img picture {
  display: block;
  width: 100%;
  max-height: 420px;
}
.content-feature-img img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
}
.content-feature-img--banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 667;
  max-height: 420px;
}
.content-feature-img--banner picture,
.content-feature-img--banner img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 42%;
}
.prose { max-width: 720px; }
.prose p { margin-bottom: 1.25em; }
.prose ul { margin-bottom: 1.25em; padding-left: 1.25em; }
.prose li { margin-bottom: 0.5em; }

.contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info-item { margin-bottom: 24px; }
.contact-info-item strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.offices-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.office-block {
  padding: 16px 18px;
  border: 1px solid var(--hairline);
  background: var(--surface-card);
}
.office-block strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.office-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

.map-embed {
  aspect-ratio: 16/10;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

.location-cards {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .location-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .location-cards { grid-template-columns: repeat(3, 1fr); } }
.location-card {
  padding: 28px;
  border: 1px solid var(--hairline);
  background: var(--surface-card);
  transition: border-color var(--transition);
}
.location-card:hover { border-color: var(--gold); }
a.location-card { color: inherit; text-decoration: none; }

.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* WhatsApp mascot — in main CSS so Hostinger/CDN always applies position (not only via @import) */
.float-wa-queries {
  position: fixed;
  left: 12px;
  bottom: 20px;
  z-index: 848;
  display: block;
  width: clamp(96px, 22vw, 148px);
  line-height: 0;
  transition: transform 0.35s ease, filter 0.35s ease;
  animation: floatWaBob 3.5s ease-in-out infinite;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}
.float-wa-queries img {
  width: 100%;
  height: auto;
  display: block;
}
.float-wa-queries:hover {
  transform: scale(1.05) translateY(-4px);
  filter: drop-shadow(0 14px 32px rgba(200, 164, 90, 0.35));
}
@keyframes floatWaBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 900px) {
  .float-wa-queries {
    width: clamp(80px, 26vw, 112px);
    left: 8px;
    bottom: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-wa-queries { animation: none; }
}
