﻿/* ============================================================
   UNDERCUT — Custom Design System
   Stack: HTML5 + Tailwind CDN + Swiper + AOS
   ============================================================ */

/* --- Google Fonts are loaded in HTML head --- */

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --bg-dark: #3e3631;
  --bg-cream: #ebe1cc;
  --bg-soft: #faf9f5;
  --bg-white: #ffffff;
  --text-primary: #070104;
  --text-muted: #69727d;
  --accent: #f0ad73;
  --accent-hover: #e89548;
  --accent-soft: #fca95c;
  --divider: rgba(235, 225, 204, 0.22);
  --gold-detail: #c1b2a8;
  --tr: 0.3s ease;
  --radius: 4px;
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

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

body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-soft);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

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

::selection {
  background: var(--accent);
  color: var(--text-primary);
}

/* =====================
   TYPOGRAPHY
   — body h* specificity (0,0,2) overrides Tailwind preflight h* (0,0,1)
   ===================== */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.05;
}

body h1 {
  font-size: clamp(56px, 8vw, 90px);
}
body h2 {
  font-size: clamp(44px, 5.5vw, 80px);
}
body h3 {
  font-size: clamp(26px, 2.8vw, 34px);
}
body h4 {
  font-size: 22px;
}

.eyebrow {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  color: var(--accent);
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.section-title-highlight {
  color: rgba(240, 173, 115, 0.35);
}

/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad {
  padding: 100px 0;
}

/* =====================
   CUSTOM CURSOR
   ===================== */
.cursor {
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s ease,
    height 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  z-index: 9999;
  mix-blend-mode: normal;
}
.cursor.expanded {
  width: 52px;
  height: 52px;
  background: rgba(240, 173, 115, 0.12);
  border-color: var(--accent-soft);
}

/* =====================
   HEADER
   ===================== */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 24px 0;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}
.header.scrolled {
  background: rgba(62, 54, 49, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
}
.logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
  line-height: 1;
}
.logo-text span {
  color: var(--accent);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 12px;
  position: relative;
  transition: color var(--tr);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* CTA Button in header */
.btn-book-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: var(--text-primary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    background var(--tr),
    transform var(--tr);
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-book-header:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   MOBILE MENU
   ===================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-link {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 8vw, 52px);
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.2s ease;
}
.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open .mobile-menu-link:nth-child(1) {
  transition-delay: 0.08s;
}
.mobile-menu.open .mobile-menu-link:nth-child(2) {
  transition-delay: 0.13s;
}
.mobile-menu.open .mobile-menu-link:nth-child(3) {
  transition-delay: 0.18s;
}
.mobile-menu.open .mobile-menu-link:nth-child(4) {
  transition-delay: 0.23s;
}
.mobile-menu.open .mobile-menu-link:nth-child(5) {
  transition-delay: 0.28s;
}
.mobile-menu.open .mobile-menu-link:nth-child(6) {
  transition-delay: 0.33s;
}
.mobile-menu.open .mobile-menu-link:nth-child(7) {
  transition-delay: 0.38s;
}
.mobile-menu.open .mobile-menu-link:nth-child(8) {
  transition-delay: 0.43s;
}
.mobile-menu.open .mobile-menu-link:nth-child(9) {
  transition-delay: 0.48s;
}
.mobile-menu-link:hover {
  color: var(--accent);
}

.mobile-menu-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
}
.mobile-menu.open .mobile-menu-footer {
  opacity: 1;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--text-primary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--tr),
    transform var(--tr);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}
.btn-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color var(--tr),
    color var(--tr);
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--tr),
    color var(--tr);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--text-primary);
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/hero-bg.jpg");
  background-size: cover;
  background-position: center top;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-2%, -1%);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 1, 4, 0.88) 0%,
    rgba(7, 1, 4, 0.6) 55%,
    rgba(7, 1, 4, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 140px 0 100px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.hero-title {
  font-size: clamp(58px, 8vw, 120px);
  color: white;
  line-height: 0.95;
  margin-bottom: 24px;
}
.hero-title span {
  color: var(--accent);
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition:
    background var(--tr),
    border-color var(--tr),
    transform var(--tr);
  color: white;
  font-size: 20px;
  margin-left: 8px;
}
.play-btn:hover {
  background: rgba(240, 173, 115, 0.25);
  border-color: var(--accent);
  transform: scale(1.08);
}

/* Hero side bar */
.hero-sidebar {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.hero-sidebar-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-detail));
}
.hero-phone {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--tr);
}
.hero-phone:hover {
  color: var(--accent-hover);
}
.hero-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-social-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  transition:
    color var(--tr),
    transform var(--tr);
  text-decoration: none;
  display: flex;
}
.hero-social-link:hover {
  color: var(--accent);
  transform: rotate(15deg);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.scroll-indicator-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.scroll-indicator-chevron {
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  animation: chevronPulse 1.6s ease-in-out infinite;
}
@keyframes chevronPulse {
  0%,
  100% {
    opacity: 1;
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    opacity: 0.3;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--bg-dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(62, 54, 49, 0.5), var(--bg-dark));
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: var(--text-primary);
  font-family: "Bebas Neue", sans-serif;
  padding: 24px 20px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(240, 173, 115, 0.5);
  animation: floatBadge 3.5s ease-in-out infinite;
  z-index: 2;
  min-width: 130px;
}
.about-badge-num {
  font-size: 46px;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.about-badge-label {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.2;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}
.about-deco-svg {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  opacity: 0.07;
  color: var(--gold-detail);
  pointer-events: none;
}

/* Counter row */
.counters-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--divider);
  margin-top: 48px;
}
.counter-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--divider);
}
.counter-item:last-child {
  border-right: none;
}
.counter-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  display: block;
}
.counter-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 173, 115, 0.04);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-4px);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(240, 173, 115, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}
.service-card:hover .service-icon-wrap {
  background: var(--accent);
}
.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  transition: stroke 0.3s ease;
}
.service-card:hover .service-icon-wrap svg {
  stroke: var(--text-primary);
}

.service-card h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 12px;
}
.service-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.65;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s ease;
}
.service-card:hover .service-card-link {
  gap: 10px;
}

/* =====================
   GALLERY SWIPER
   ===================== */
.swiper-gallery {
  overflow: hidden !important;
}
.swiper-gallery .swiper-wrapper {
  align-items: stretch;
}
.swiper-gallery .swiper-slide {
  height: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(62, 54, 49, 0.85) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-title {
  font-family: "Bebas Neue", sans-serif;
  color: white;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.gallery-item-cat {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Progress bar pagination */
.gallery-progress {
  width: 100%;
  height: 3px;
  background: var(--divider);
  border-radius: 2px;
  margin-top: 36px;
  overflow: hidden;
}
.gallery-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.5s ease;
  width: 0%;
}

/* Gallery filter tabs */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 9px 22px;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
}

/* Gallery grid (gallery page) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* =====================
   PRICING SECTION
   ===================== */
.price-list {
  list-style: none;
}
.price-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 22px 0;
  border-bottom: 1px solid rgba(7, 1, 4, 0.1);
  gap: 6px;
}
.price-item:last-child {
  border-bottom: none;
}
.price-item-heading {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}
.price-info {
  flex: none;
}
.price-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-tag {
  background: var(--accent);
  color: var(--text-primary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 2px;
  vertical-align: middle;
}
.price-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.price-dots {
  flex: 1;
  margin: 0 16px;
  border-bottom: none;
  align-self: center;
  min-width: 20px;
}
.price-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: var(--text-primary);
  white-space: nowrap;
  line-height: 1;
  margin-left: auto;
}
.pricing-img-wrap {
  position: relative;
}
.pricing-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}
.pricing-deco {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  opacity: 0.07;
  color: var(--gold-detail);
}

/* =====================
   TEAM SECTION
   ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  display: block;
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 54, 49, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-overlay-socials {
  display: flex;
  gap: 12px;
}
.team-social {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.team-social:hover {
  transform: rotate(15deg) scale(1.1);
  background: var(--accent-hover);
}
.team-overlay-btn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: white;
  color: var(--text-primary);
  padding: 8px 18px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background var(--tr);
  text-decoration: none;
}
.team-overlay-btn:hover {
  background: var(--accent);
}
.team-info {
  padding: 20px 20px 24px;
  text-align: center;
}
.team-info h3 {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.team-divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 10px;
}
.team-role {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section {
  background: var(--bg-dark);
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 44px 36px;
  height: 100%;
  transition: border-color 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(240, 173, 115, 0.4);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.6;
  display: block;
  margin-bottom: 20px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}
.testimonial-author {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: var(--accent);
  margin-top: 28px;
  letter-spacing: 0.5px;
}
.testimonial-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
}

/* Swiper custom nav */
.swiper-nav-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--divider);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--tr),
    border-color var(--tr),
    color var(--tr);
}
.swiper-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
}
.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* =====================
   BLOG SECTION
   ===================== */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.blog-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.07);
}
.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--text-primary);
  font-family: "Bebas Neue", sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}
.blog-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.blog-excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-decoration: none;
  margin-top: 20px;
  transition: gap 0.2s ease;
}
.blog-read-more:hover {
  gap: 10px;
}

/* =====================
   CONTACTS SECTION
   ===================== */
.contact-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #2a2420;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(1.1);
}

/* =====================
   CTA FULLWIDTH
   ===================== */
.cta-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1621607512022-6aecc4fed814?auto=format&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 1, 4, 0.78);
}
.cta-content {
  position: relative;
  z-index: 2;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #1c1512;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--divider);
}
.footer-col-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 15px;
  padding: 5px 0;
  transition:
    color var(--tr),
    padding-left 0.2s ease;
}
.footer-link:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color var(--tr);
}
.footer-legal a:hover {
  color: var(--accent);
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  text-decoration: none;
  transition:
    background var(--tr),
    color var(--tr),
    transform var(--tr);
}
.social-icon:hover {
  background: var(--accent);
  color: var(--text-primary);
  transform: rotate(15deg);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-top: 16px;
}
.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--divider);
  border-right: none;
  color: white;
  padding: 11px 16px;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.newsletter-input:focus {
  border-color: var(--accent);
}
.newsletter-btn {
  background: var(--accent);
  color: var(--text-primary);
  border: none;
  padding: 11px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--tr);
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--accent-hover);
}

/* =====================
   FLOATING ELEMENTS
   ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  color: white;
  font-size: 26px;
  animation: floatWA 3s ease-in-out infinite;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.whatsapp-float:hover {
  animation: none;
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
@keyframes floatWA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* =====================
   BLOG FEATURED POST
   ===================== */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.featured-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.12) !important;
}
.featured-post-body {
  padding: 48px 40px;
}

@media (max-width: 768px) {
  .featured-post {
    grid-template-columns: 1fr;
  }
  .featured-post-body {
    padding: 28px 24px;
  }
}

/* Ocultar cursor custom em dispositivos touch */
@media (hover: none) {
  .cursor {
    display: none;
  }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  font-size: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background var(--tr);
  pointer-events: none;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--accent-hover);
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
}
.lightbox-inner iframe,
.lightbox-inner video {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  transition:
    color var(--tr),
    transform var(--tr);
}
.lightbox-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

/* =====================
   DECORATIVE SVGs
   ===================== */
.deco {
  position: absolute;
  pointer-events: none;
  color: var(--gold-detail);
  opacity: 0.055;
}

/* =====================
   BOOKING / FORM
   ===================== */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--divider);
  color: white;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-control:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.09);
}
select.form-control {
  cursor: pointer;
}
.form-control option {
  background: var(--bg-dark);
  color: white;
}

/* Step indicator (booking) */
.steps {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}
.step::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 2px;
  background: var(--divider);
}
.step:last-child::after {
  display: none;
}
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
  position: relative;
  z-index: 1;
}
.step.active .step-circle,
.step.done .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
}
.step-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}
.step.active .step-label {
  color: var(--accent);
}

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.time-slot {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.03);
}
.time-slot:hover,
.time-slot.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-primary);
}
.time-slot.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

/* Line divider */
.divider-line {
  width: 64px;
  height: 3px;
  background: var(--accent);
  margin: 16px 0 32px;
}
.divider-line.center {
  margin: 16px auto 32px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  .btn-book-header {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-badge {
    right: 0;
  }
  .hero-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 72px 0;
  }
  h2 {
    font-size: clamp(32px, 9vw, 52px);
  }
  h3 {
    font-size: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .counters-row {
    grid-template-columns: 1fr;
  }
  .counter-item {
    border-right: none;
    border-bottom: 1px solid var(--divider);
  }
  .counter-item:last-child {
    border-bottom: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-bg {
    background-attachment: scroll;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  .section-pad {
    padding: 56px 0;
  }
  h1 {
    font-size: clamp(42px, 12vw, 72px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-badge {
    position: static;
    margin-top: 20px;
    width: fit-content;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
}

/* =====================
   UTILITIES
   ===================== */
.text-accent {
  color: var(--accent);
}
.text-muted {
  color: var(--text-muted);
}
.text-white {
  color: white;
}
.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}
.bg-dark {
  background: var(--bg-dark);
}
.bg-cream {
  background: var(--bg-cream);
}
.bg-soft {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--bg-dark);
  color: white;
}
.section-cream {
  background: var(--bg-cream);
  color: var(--text-primary);
}
.section-white {
  background: var(--bg-white);
  color: var(--text-primary);
}
.section-soft {
  background: var(--bg-soft);
  color: var(--text-primary);
}

/* AOS custom */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Print */
@media print {
  .header,
  .whatsapp-float,
  .back-to-top,
  .mobile-menu {
    display: none !important;
  }
}
