/* ============================================================
   STYLE.CSS — BASE RESET & LAYOUT SCAFFOLD
   No colors. No fonts. No hardcoded values.
   All values come from config.css variables.
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-h);
}

/* ── SECTION BASE ────────────────────────────────────────── */
.section-hero,
.section-services,
.section-about,
.section-team,
.section-gallery,
.section-testimonials,
.section-contact {
  position: relative;
  width: 100%;
}

/* ── BUTTON BASE CLASSES ─────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:      var(--btn-primary-bg);
  color:           var(--btn-primary-text);
  border:          var(--btn-primary-border);
  border-radius:   var(--btn-primary-radius);
  font-family:     var(--font-accent);
  font-size:       var(--btn-primary-size);
  font-weight:     var(--btn-primary-weight);
  letter-spacing:  var(--btn-primary-tracking);
  text-transform:  var(--btn-primary-transform);
  padding:         var(--btn-primary-padding-v) var(--btn-primary-padding-h);
  transition:      var(--btn-primary-transition);
  cursor:          pointer;
}

.btn-primary:hover {
  background: var(--btn-primary-bg-hover);
  color:      var(--btn-primary-text-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:    var(--btn-secondary-bg);
  color:         var(--btn-secondary-text);
  border:        var(--btn-secondary-border);
  border-radius: var(--btn-secondary-radius);
  font-family:   var(--font-accent);
  font-size:     var(--btn-primary-size);
  font-weight:   var(--btn-primary-weight);
  letter-spacing: var(--btn-primary-tracking);
  text-transform: var(--btn-primary-transform);
  padding:       var(--btn-primary-padding-v) var(--btn-primary-padding-h);
  transition:    var(--btn-primary-transition);
  cursor:        pointer;
}

.btn-secondary:hover {
  background: var(--btn-secondary-bg-hover);
  color:      var(--btn-secondary-text-hover);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:    var(--btn-ghost-bg);
  color:         var(--btn-ghost-text);
  border:        var(--btn-ghost-border);
  border-radius: var(--btn-ghost-radius);
  font-family:   var(--font-accent);
  font-size:     var(--btn-primary-size);
  font-weight:   var(--btn-primary-weight);
  letter-spacing: var(--btn-primary-tracking);
  text-transform: var(--btn-primary-transform);
  padding:       var(--btn-primary-padding-v) var(--btn-primary-padding-h);
  transition:    var(--btn-primary-transition);
  cursor:        pointer;
}

.btn-ghost:hover {
  background: var(--btn-ghost-bg-hover);
  color:      var(--btn-ghost-text-hover);
}

/* ── SCROLL REVEAL ANIMATION ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  var(--animation-duration) var(--animation-easing),
    transform var(--animation-duration) var(--animation-easing);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--section-padding-h-mobile);
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--nav-bg);
  box-shadow: none;
  z-index: 900;
  transition: var(--transition-smooth);
}

.site-nav.scrolled {
  background: var(--nav-bg);
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--section-padding-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--nav-logo-font);
  font-size: var(--nav-logo-size);
  font-weight: var(--nav-logo-weight);
  letter-spacing: var(--nav-logo-tracking);
  color: var(--nav-logo-color);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: var(--font-accent);
  font-size: var(--nav-link-size);
  font-weight: var(--nav-link-weight);
  letter-spacing: var(--nav-link-tracking);
  text-transform: uppercase;
  color: var(--nav-link-color);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--nav-link-underline-color);
  transition: left 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), right 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after {
  left: 0;
  right: 0;
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--nav-logo-color);
  transition: var(--transition-fast);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--mobile-overlay-bg);
  z-index: 950;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-direction: column;
}

.mobile-overlay.active {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 var(--section-padding-h-mobile);
}

.mobile-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  flex-shrink: 0;
}

.mobile-logo {
  font-family: var(--nav-logo-font);
  font-size: var(--nav-logo-size);
  font-weight: var(--nav-logo-weight);
  letter-spacing: var(--nav-logo-tracking);
  color: var(--mobile-link-color);
  text-decoration: none;
}

.close-btn {
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.close-line {
  position: absolute;
  width: 24px;
  height: 1px;
  background: var(--mobile-link-color);
  top: 50%;
  left: 50%;
}

.close-line-1 {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line-2 {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 0;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: var(--mobile-link-size);
  font-weight: 400;
  color: var(--mobile-link-color);
  text-decoration: none;
  padding: 16px 0;
  text-align: center;
  display: block;
  width: 100%;
  transition: opacity 300ms ease;
}

.mobile-nav-link:hover {
  opacity: 0.5;
}

.mobile-overlay-bottom {
  padding: 32px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.mobile-book-btn {
  width: 100%;
  max-width: 320px;
  background: var(--mobile-cta-bg);
  color: var(--mobile-cta-text);
  border: var(--mobile-cta-border);
  border-radius: var(--mobile-cta-radius);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: var(--btn-primary-weight, 500);
  letter-spacing: var(--btn-primary-tracking, 0.12em);
  text-transform: uppercase;
  padding: 16px 24px;
  cursor: pointer;
  text-align: center;
}

.mobile-overlay-whatsapp-link {
  display: inline-block;
  color: var(--mobile-link-color);
  text-decoration: underline;
  font-size: 13px;
  text-align: center;
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nav-cta-bg);
  color: var(--nav-cta-text);
  border: var(--nav-cta-border);
  border-radius: var(--nav-cta-radius);
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: var(--btn-primary-weight);
  letter-spacing: var(--btn-primary-tracking);
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links-desktop {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-mobile-actions {
    display: flex;
  }
  .hamburger {
    display: inline-flex;
  }
  .mobile-overlay {
    display: flex;
  }
  .nav-inner {
    padding: 0 var(--section-padding-h-mobile);
  }
}

@media (min-width: 769px) {
  .mobile-overlay {
    display: none !important;
  }
  .nav-mobile-actions {
    display: none !important;
  }
}

/* ── HERO ──────────────────────────────────────────────── */
.section-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-top: calc(-1 * var(--nav-height));
  overflow: hidden;
  background-color: #1a1a1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay-color);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 var(--section-padding-h) 12vh;
}

.hero-heading {
  font-family: var(--hero-heading-font);
  font-size: var(--hero-heading-size);
  font-weight: var(--hero-heading-weight);
  color: var(--hero-heading-color);
  letter-spacing: var(--hero-heading-tracking);
  line-height: var(--hero-heading-lineheight);
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 900ms var(--animation-easing) forwards;
}

.hero-tagline {
  font-family: var(--hero-tagline-font);
  font-size: var(--hero-tagline-size);
  font-weight: var(--hero-tagline-weight);
  color: var(--hero-tagline-color);
  letter-spacing: var(--hero-tagline-tracking);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 900ms var(--animation-easing) 150ms forwards;
}

.hero-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-cta-bg);
  color: var(--hero-cta-text);
  border: var(--hero-cta-border);
  border-radius: var(--hero-cta-radius);
  font-family: var(--font-accent);
  font-size: var(--btn-primary-size);
  font-weight: var(--btn-primary-weight);
  letter-spacing: var(--btn-primary-tracking);
  text-transform: var(--btn-primary-transform);
  padding: var(--btn-primary-padding-v) var(--btn-primary-padding-h);
  transition: var(--transition-smooth);
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 900ms var(--animation-easing) 300ms forwards;
}

.hero-cta:hover {
  background: var(--hero-cta-bg-hover);
  color: var(--hero-cta-text-hover);
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-bg {
    background-image: var(--hero-bg-image-mobile);
  }
  .hero-heading {
    font-size: var(--hero-heading-size-mobile);
  }
  .hero-content {
    padding: 0 var(--section-padding-h-mobile) 12vh;
  }
}

@media (min-width: 769px) {
  .section-hero {
    aspect-ratio: var(--hero-desktop-ratio);
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: var(--nav-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 var(--section-padding-h);
    margin: 0;
    gap: 20px;
    box-sizing: border-box;
  }
  .hero-content > .hero-heading,
  .hero-content > .hero-tagline,
  .hero-content > .hero-cta {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* ── SERVICES ──────────────────────────────────────────── */
.section-services {
  background: var(--services-bg);
  padding: var(--section-padding-v) 0;
}

.services-heading {
  font-family: var(--services-heading-font);
  font-size: var(--services-heading-size);
  color: var(--services-heading-color);
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
}

.services-subtext {
  text-align: center;
  color: var(--services-subtext-color);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-top: 12px;
  margin-bottom: 56px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.service-card {
  flex: 0 0 calc((100% - 24px * 3) / 4);
}


.service-card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--services-card-radius);
  background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--services-card-overlay);
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.service-card-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--services-card-label-color);
  font-family: var(--services-card-label-font);
  font-size: var(--services-card-label-size);
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .service-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 599px) {
  .service-card { flex: 0 0 calc((100% - 12px) / 2); }
  .services-grid { gap: 12px; }
  .section-services { padding: var(--section-padding-v-mobile) 0; }
  .services-heading { font-size: 34px; }
}


/* ── SERVICES MODAL ────────────────────────────────────── */
.services-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--modal-bg);
  align-items: stretch;
  justify-content: center;
  overflow-y: auto;
}

.services-modal.active {
  display: flex;
  backdrop-filter: blur(var(--modal-blur));
  -webkit-backdrop-filter: blur(var(--modal-blur));
}

.services-modal-inner {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: auto;
  padding: 64px 48px 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.services-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}

.services-modal-close .close-line {
  background: var(--modal-heading-color);
}

.services-modal-heading {
  font-family: var(--modal-heading-font);
  font-size: var(--modal-heading-size);
  color: var(--modal-heading-color);
  font-weight: 400;
}

.services-modal-divider {
  height: 1px;
  background: var(--modal-leader-color);
  margin-top: 20px;
  margin-bottom: 8px;
}

.services-modal-items {
  flex: 1;
  padding-bottom: 32px;
}

.modal-item {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-item-text {
  flex-shrink: 0;
  max-width: 60%;
}

.modal-item-name {
  font-family: var(--font-body);
  color: var(--modal-item-name-color);
  font-size: var(--modal-item-name-size);
  font-weight: 600;
}

.modal-item-desc {
  font-family: var(--font-body);
  color: var(--modal-item-desc-color);
  font-size: var(--modal-item-desc-size);
  font-weight: 300;
  margin-top: 4px;
}

.modal-item-leader {
  flex: 1;
  border-bottom: 1px dotted var(--modal-leader-color);
  margin-bottom: 6px;
}

.modal-item-price {
  flex-shrink: 0;
  font-family: var(--font-body);
  color: var(--modal-item-price-color);
  font-size: var(--modal-item-price-size);
  font-weight: 500;
}

.services-modal-footer {
  position: sticky;
  bottom: 0;
  background: var(--modal-bg);
  padding: 20px 0 32px;
}
.services-modal.active .services-modal-footer {
  backdrop-filter: blur(var(--modal-blur));
  -webkit-backdrop-filter: blur(var(--modal-blur));
}

.services-modal-cta {
  width: 100%;
  background: var(--modal-cta-bg);
  color: var(--modal-cta-text);
  border: var(--modal-cta-border);
  border-radius: var(--modal-cta-radius);
  font-family: var(--font-accent);
  font-size: var(--btn-primary-size);
  font-weight: var(--btn-primary-weight);
  letter-spacing: var(--btn-primary-tracking);
  text-transform: var(--btn-primary-transform);
  padding: var(--btn-primary-padding-v) var(--btn-primary-padding-h);
  cursor: pointer;
  transition: var(--transition-fast);
}

.services-modal-cta:hover {
  background: var(--modal-cta-bg-hover);
  color: var(--modal-cta-text-hover);
}

.services-modal-image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--services-card-radius);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .services-modal-inner { padding: 56px 24px 0; }
  .services-modal-heading { font-size: 28px; }
  .services-modal-image { height: 180px; }
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.section-about {
  background: var(--about-bg);
  padding: var(--section-padding-v) 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  gap: 60px;
}

.about-image-panel {
  flex: 0 0 50%;
  width: 50%;
  align-self: stretch;
  padding-left: 40px;
  display: flex;
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  overflow: hidden;
  background: #2a2a2a;
  color: transparent;
}

.about-text-panel {
  flex: 0 0 calc(50% - 60px);
  width: calc(50% - 60px);
  padding: 0 80px 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.about-overline {
  color: var(--about-overline-color);
  font-size: var(--about-overline-size);
  letter-spacing: var(--about-overline-tracking);
  text-transform: uppercase;
  margin: 0 0 20px 0;
  font-family: var(--about-body-font);
}

.about-heading {
  font-family: var(--about-heading-font);
  font-size: var(--about-heading-size);
  color: var(--about-heading-color);
  line-height: var(--about-heading-lineheight);
  margin: 0 0 28px 0;
}

.about-paragraphs {
  width: 100%;
}

.about-paragraph {
  font-family: var(--about-body-font);
  font-size: var(--about-body-size);
  color: var(--about-body-color);
  line-height: var(--about-body-lineheight);
  margin: 0 0 16px 0;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* Image-only reveal: fade without translate */
.reveal.reveal-fade {
  transform: none;
}
.reveal.reveal-fade.revealed {
  transform: none;
}

@media (max-width: 1024px) {
  .about-text-panel {
    padding: 0 40px 40px 0;
  }
}

@media (max-width: 768px) {
  .section-about {
    flex-direction: column;
    padding: var(--section-padding-v-mobile) 0;
    gap: 32px;
  }
  .about-image-panel,
  .about-text-panel {
    flex: 0 0 auto;
    width: 100%;
  }
  .about-text-panel {
    order: 1;
    padding: 0 40px;
  }
  .about-image-panel {
    order: 2;
    padding: 0 20px;
    aspect-ratio: 4 / 3;
  }
  .about-heading {
    font-size: 34px;
  }
}

/* ── TEAM ────────────────────────────────────────────────── */
.section-team {
  background: var(--team-bg);
  padding: var(--section-padding-v) 0;
  overflow: visible;
}
.team-carousel-wrapper { overflow: visible; }
.section-team .container {
  padding: 0 var(--section-padding-h);
}
.team-overline {
  text-align: center;
  text-transform: uppercase;
  color: var(--about-overline-color);
  font-size: var(--about-overline-size);
  letter-spacing: var(--about-overline-tracking);
  font-family: var(--font-body);
}
.team-heading {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 60px;
  font-family: var(--team-heading-font);
  font-size: var(--team-heading-size);
  color: var(--team-heading-color);
  font-weight: 400;
  line-height: 1.15;
}
.team-carousel-wrapper {
  position: relative;
  width: 100%;
}
.team-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 64px calc(50vw - 130px) 64px;
  scroll-padding-inline: calc(50vw - 130px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.team-grid::-webkit-scrollbar { display: none; }
.team-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: scale(0.85);
  opacity: 0.6;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-card.card-active {
  transform: scale(1.10);
  opacity: 1;
}
.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--team-photo-radius);
  background: #2a2a2a;
  filter: var(--team-photo-filter);
  transition: filter 400ms ease;
  color: transparent;
}
.team-card:hover .team-photo {
  filter: var(--team-photo-hover-filter);
}
.team-text {
  margin-top: 16px;
  text-align: center;
}
.team-name {
  font-family: var(--team-name-font);
  font-size: var(--team-name-size);
  font-weight: var(--team-name-weight);
  color: var(--team-name-color);
  letter-spacing: var(--team-name-tracking);
  text-transform: uppercase;
}
.team-role {
  margin-top: 6px;
  font-family: var(--team-role-font);
  font-size: var(--team-role-size);
  color: var(--team-role-color);
  letter-spacing: var(--team-role-tracking);
  text-transform: uppercase;
}
.team-bio {
  margin-top: 6px;
  font-family: var(--team-bio-font);
  font-size: var(--team-bio-size);
  color: var(--team-bio-color);
  line-height: var(--team-bio-lineheight);
}
.team-arrow,
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--testimonials-arrow-bg);
  color: var(--testimonials-arrow-color);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, opacity 200ms ease;
}
.team-arrow:hover,
.gallery-arrow:hover { background: rgba(0,0,0,0.65); }
.team-arrow-prev,
.gallery-arrow-prev { left: 20px; }
.team-arrow-next,
.gallery-arrow-next { right: 20px; }
@media (max-width: 768px) {
  .section-team {
    padding: var(--section-padding-v-mobile) 0;
  }
  .team-heading {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .team-grid {
    padding: 24px calc(50vw - 110px);
    scroll-padding-inline: calc(50vw - 110px);
    gap: 16px;
  }
  .team-card {
    flex: 0 0 220px;
  }
  .team-arrow,
  .gallery-arrow { display: none; }
}




/* ============================================================
   GALLERY
   ============================================================ */
.section-gallery {
  background-color: var(--gallery-bg);
  padding: var(--section-padding-v) 0;
}
.section-gallery .container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-h);
}
.gallery-overline {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--about-overline-size);
  color: var(--about-overline-color);
  letter-spacing: var(--about-overline-tracking);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.gallery-heading {
  text-align: center;
  font-family: var(--gallery-heading-font);
  font-size: var(--gallery-heading-size);
  color: var(--gallery-heading-color);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 48px;
}
.gallery-grid {
  column-count: 3;
  column-gap: 12px;
}
.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  border-radius: var(--gallery-image-radius);
  overflow: hidden;
  background-color: #2a2a2a;
  break-inside: avoid;
  cursor: pointer;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: var(--gallery-image-filter);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: transparent;
}
.gallery-item:hover {
  filter: var(--gallery-image-hover-filter);
  transform: scale(var(--gallery-image-hover-scale));
}
.gallery-item.ratio-1-1 { aspect-ratio: 1 / 1; }
.gallery-item.ratio-4-3 { aspect-ratio: 4 / 3; }
.gallery-item.ratio-3-4 { aspect-ratio: 3 / 4; }

/* Desktop & Tablet >=769: horizontal scrolling fixed 2-row grid */
@media (min-width: 769px) {
  .gallery-carousel-wrapper {
    position: relative;
    width: 100%;
  }
  .gallery-grid {
    column-count: unset;
    column-gap: unset;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 var(--section-padding-h);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item {
    width: auto;
    height: auto;
    margin: 0;
    aspect-ratio: 1 / 1 !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .gallery-heading { font-size: 40px; }
}
@media (min-width: 1025px) {
  .gallery-heading { font-size: 48px; }
}

/* Mobile <=768: masonry with tighter spacing for fuller appearance */
@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .gallery-grid .gallery-item {
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .gallery-grid { column-count: 2; }
  .gallery-heading { font-size: 32px; margin-bottom: 32px; }
  .section-gallery .container {
    padding: 0 var(--section-padding-h-mobile);
  }
  .section-gallery {
    padding: var(--section-padding-v-mobile) 0;
  }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: var(--lightbox-bg);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 300ms ease;
}
.lightbox-image.fading {
  opacity: 0;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--lightbox-close-color);
}
.lightbox-close .close-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--lightbox-close-color);
}
.lightbox-close .close-line-1 { transform: rotate(45deg); }
.lightbox-close .close-line-2 { transform: rotate(-45deg); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lightbox-arrow-bg);
  color: var(--lightbox-arrow-color);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.22); }
.lightbox-arrow-prev { left: 24px; }
.lightbox-arrow-next { right: 24px; }
.lightbox-arrow.hidden { display: none; }

/* ── VIDEO ──────────────────────────────────────────────── */
.section-video {
  background: var(--video-bg);
  padding: var(--section-padding-v) 0;
}
.video-overline {
  text-align: center;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--about-overline-tracking);
  margin: 0 0 16px;
}
.video-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--video-accent);
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 48px;
}
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.video-aspect {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.video-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}
.video-caption {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin: 24px 0 0;
}
@media (max-width: 768px) {
  .section-video { padding: var(--section-padding-v-mobile) 0; }
  .video-heading { font-size: 30px; margin-bottom: 32px; }
}

/* ============= TESTIMONIALS ============= */
.section-testimonials {
  position: relative;
  background-color: var(--testimonials-bg);
  background-image: var(--testimonials-bg-image);
  background-size: cover;
  background-position: center;
  padding: var(--section-padding-v) var(--section-padding-h);
  overflow: hidden;
}
.section-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--testimonials-overlay);
  z-index: 0;
}
.section-testimonials .container.testimonials-container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-heading {
  font-family: var(--testimonials-heading-font);
  font-size: var(--testimonials-heading-size);
  color: var(--testimonials-heading-color);
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 64px;
}
.testimonial-slide {
  transition: opacity 500ms ease;
  opacity: 1;
}
.testimonial-slide.fading {
  opacity: 0;
}
.testimonial-quote {
  font-family: var(--testimonials-quote-font);
  font-size: var(--testimonials-quote-size);
  color: var(--testimonials-quote-color);
  line-height: var(--testimonials-quote-lineheight);
  text-align: center;
  margin: 0 0 28px;
}
.testimonial-quote.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.testimonial-seemore {
  display: inline-block;
  margin: 0 0 28px;
  color: var(--testimonials-seemore-color);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--testimonials-stars-color);
}
.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--testimonials-stars-color);
}
.testimonial-stars-label {
  margin-left: 8px;
  color: var(--testimonials-stars-color);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.testimonial-reviewer {
  color: var(--testimonials-reviewer-color);
  font-size: var(--testimonials-reviewer-size);
  letter-spacing: var(--testimonials-reviewer-tracking);
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 6px;
}
.testimonial-location {
  color: rgba(255, 255, 255, 0.50);
  font-size: 11px;
  letter-spacing: var(--testimonials-reviewer-tracking);
  text-transform: uppercase;
  font-family: var(--font-body);
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--testimonials-arrow-bg);
  color: var(--testimonials-arrow-color);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 200ms ease, background 200ms ease;
}
.testimonials-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}
.testimonials-arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.testimonials-cta-block {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-cta {
  display: inline-block;
  background: var(--testimonials-cta-bg);
  color: var(--testimonials-cta-text);
  border: var(--testimonials-cta-border);
  border-radius: var(--testimonials-cta-radius);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.testimonials-cta:hover {
  background: var(--testimonials-cta-bg-hover);
  color: var(--testimonials-cta-text-hover);
}
.testimonials-cta-link {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 12px;
  text-decoration: none;
  font-family: var(--font-body);
}
.testimonials-cta-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .section-testimonials {
    padding: var(--section-padding-v-mobile) var(--section-padding-h-mobile);
  }
  .testimonials-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

/* ============= CONTACT ============= */
.section-contact {
  position: relative;
  background-color: var(--contact-bg);
  background-image: var(--contact-bg-image);
  background-size: cover;
  background-position: center;
  padding: var(--section-padding-v) var(--section-padding-h);
  overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--contact-bg-overlay);
  z-index: 0;
  pointer-events: none;
}
.section-contact .container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.contact-overline {
  text-align: center;
  text-transform: uppercase;
  color: var(--about-overline-color);
  font-size: var(--about-overline-size);
  letter-spacing: var(--about-overline-tracking);
  font-family: var(--font-body);
  margin: 0 0 16px;
}
.contact-heading {
  text-align: center;
  font-family: var(--contact-heading-font);
  font-size: var(--contact-heading-size);
  color: var(--contact-heading-color);
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 64px;
}
.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}
.contact-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.contact-label {
  text-transform: uppercase;
  color: var(--contact-label-color);
  font-size: var(--contact-label-size);
  letter-spacing: var(--contact-label-tracking);
  font-family: var(--font-body);
  margin-bottom: 16px;
}
.contact-hours .contact-hour-block {
  margin-bottom: 12px;
}
.contact-hours .contact-day {
  color: var(--contact-text-color);
  font-family: var(--font-body);
  font-size: 13px;
}
.contact-hours .contact-time {
  color: var(--contact-text-color);
  font-family: var(--font-body);
  font-size: 13px;
  opacity: 0.6;
}
.contact-link {
  color: var(--contact-text-color);
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity 300ms ease;
}
.contact-link:hover { opacity: 0.6; }
.contact-text {
  color: var(--contact-text-color);
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 8px;
}
.contact-social {
  color: var(--contact-text-color);
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 300ms ease;
}
.contact-social:hover { opacity: 0.6; }
.contact-map {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: var(--contact-map-radius);
  box-shadow: var(--contact-map-shadow);
  display: block;
}
.contact-conversion {
  margin-top: 80px;
  text-align: center;
}
.contact-cta-heading {
  font-family: var(--font-heading);
  color: var(--contact-heading-color);
  font-size: 52px;
  font-weight: 400;
  margin: 0 0 24px;
  line-height: 1.15;
}
.contact-cta-btn {
  background: var(--contact-cta-bg);
  color: var(--contact-cta-text);
  border: var(--contact-cta-border);
  border-radius: var(--contact-cta-radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: var(--contact-cta-weight);
  letter-spacing: var(--contact-cta-tracking);
  text-transform: uppercase;
  padding: 20px 60px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.contact-cta-btn:hover {
  background: var(--contact-cta-bg-hover);
  color: var(--contact-cta-text-hover);
}
.contact-microcopy {
  margin-top: 16px;
  color: var(--contact-microcopy-color);
  font-size: var(--contact-microcopy-size);
  font-family: var(--font-body);
  text-align: center;
}

@media (max-width: 768px) {
  .section-contact {
    padding: var(--section-padding-v-mobile) var(--section-padding-h-mobile);
  }
  .contact-heading { font-size: 32px; margin-bottom: 40px; }
  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }
  .contact-conversion { margin-top: 48px; }
  .contact-cta-heading { font-size: 34px; }
  .contact-cta-btn {
    width: 100%;
    padding: 20px 24px;
  }
}

/* ============================================================
   GLOBAL BACKGROUND SYSTEM (image + overlay pseudo-element)
   ============================================================ */
.section-services,
.section-about,
.section-team,
.section-gallery,
#site-footer {
  position: relative;
}
.section-services::before,
.section-about::before,
.section-team::before,
.section-gallery::before,
#site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.section-services::before {
  background-image: var(--services-bg-image);
  background-color: var(--services-bg-overlay);
}
.section-about::before {
  background-image: var(--about-bg-image);
  background-color: var(--about-bg-overlay);
}
.section-team::before {
  background-image: var(--team-bg-image);
  background-color: var(--team-bg-overlay);
}
.section-gallery::before {
  background-image: var(--gallery-bg-image);
  background-color: var(--gallery-bg-overlay);
}
#site-footer::before {
  background-image: var(--footer-bg-image);
  background-color: var(--footer-bg-overlay);
}
.section-services > *,
.section-about > *,
.section-team > *,
.section-gallery > *,
#site-footer > * {
  position: relative;
  z-index: 1;
}
.section-services .container,
.section-about .container,
.section-team .container,
.section-gallery .container,
#site-footer .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--footer-bg);
  padding: 32px 0;
  width: 100%;
}
.footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copyright,
.footer-agency {
  font-family: var(--footer-font);
  font-size: var(--footer-size);
  color: var(--footer-text-color);
  letter-spacing: var(--footer-tracking);
  text-decoration: none;
  transition: color 300ms ease;
}
.footer-agency:hover {
  color: var(--footer-link-hover-color);
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}

/* ── NAV ICON BUTTONS ───────────────────────────────── */
.nav-icons-desktop,
.nav-icons-mobile,
.nav-mobile-actions,
.mobile-overlay-icons {
  align-items: center !important;
}
.nav-icons-desktop {
  display: inline-flex;
  gap: var(--nav-icon-gap);
  flex-shrink: 0;
}
.nav-icons-mobile {
  display: inline-flex;
  gap: var(--nav-icon-gap);
}
.nav-icon-calendar,
.nav-icon-whatsapp {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--nav-icon-size) !important;
  height: var(--nav-icon-size) !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  background: var(--nav-icon-bg);
  color: var(--nav-icon-color);
  border-radius: var(--nav-icon-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
}
.nav-icon-whatsapp[style*="display: none"],
.nav-icon-whatsapp.hidden {
  display: none !important;
}
.nav-icon-btn:hover {
  background: var(--nav-icon-bg-hover);
}
.nav-icon-calendar svg,
.nav-icon-whatsapp svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  margin: 0 !important;
  vertical-align: middle !important;
  fill: currentColor;
}
.mobile-overlay-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.mobile-overlay-icon.nav-icon-calendar,
.mobile-overlay-icon.nav-icon-whatsapp {
  width: 56px !important;
  height: 56px !important;
}
.mobile-overlay-icon.nav-icon-calendar svg,
.mobile-overlay-icon.nav-icon-whatsapp svg {
  width: 28px !important;
  height: 28px !important;
}
@media (max-width: 768px) {
  .nav-icons-desktop { display: none; }
}
@media (min-width: 769px) {
  .nav-icons-mobile { display: none; }
}


/* ── ABOUT WHATSAPP LINK ─────────────────────────────── */
.about-whatsapp-link {
  display: var(--show-about-whatsapp-link, inline-block);
  margin-top: 24px;
  color: var(--contact-text-color);
  font-family: var(--about-body-font);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 200ms ease;
}
.about-whatsapp-link:hover { opacity: 0.7; }

@media (min-width: 769px) {
  .about-whatsapp-link {
    display: block;
    width: 100%;
    text-align: center;
  }
}
