/* ============================================================
   THULL HANDWERK — STYLESHEET
   ============================================================ */

/* === Variables ============================================= */
:root {
  --bg:          #F5F2EC;
  --bg-alt:      #EDEAE2;
  --surface:     #FFFFFF;
  --dark:        #1A1A1A;
  --text:        #2C2C2C;
  --muted:       #7A7570;
  --accent:      #7C4F28;
  --accent-h:    #9B6535;
  --green:       #3D5E3F;
  --border:      #DDD8CE;
  --nav-h:       76px;
  --t:           0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow:      0 8px 36px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 72px rgba(0,0,0,0.14);
  --font-h:      'Montserrat', sans-serif;
  --font-b:      'Inter', sans-serif;
  --r:           3px;
}

[data-dark] {
  --bg:      #111111;
  --bg-alt:  #181818;
  --surface: #1C1C1C;
  --text:    #E5E0D6;
  --muted:   #888880;
  --border:  #282828;
}

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

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

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--t), color var(--t);
}

img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* === Loader ================================================ */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.loader-logo {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
}
.loader-line {
  width: 48px; height: 2px;
  background: var(--accent-h);
  position: relative; overflow: hidden;
}
.loader-line::after {
  content: '';
  position: absolute; inset: 0;
  background: #fff;
  transform: translateX(-100%);
  animation: loaderBar 1.2s ease forwards;
}
@keyframes loaderBar { to { transform: translateX(100%); } }

/* === Scroll Progress Bar ================================== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--accent-h);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* === Page Transition ====================================== */
#page-transition {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
#page-transition.out { transform: translateY(0%); }

/* === Container & Layout =================================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--wide { max-width: 1380px; }
.container--narrow { max-width: 820px; }

.section {
  padding: 7rem 0;
}
.section--sm { padding: 4.5rem 0; }

.section-label {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 600; }

.text-muted { color: var(--muted); }

.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.8em);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.split-text.visible .char { opacity: 1; transform: translateY(0); }

/* === Scroll Reveal ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left {
  transform: translateX(-40px);
}
.reveal--left.visible {
  transform: translateX(0);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal--right.visible {
  transform: translateX(0);
}

/* === Navbar =============================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex; align-items: center;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
.navbar.scrolled {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  height: 64px;
}
[data-dark] .navbar.scrolled { background: var(--bg); }

.navbar .container {
  display: flex; align-items: center;
  width: 100%; max-width: 1160px;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo svg { flex-shrink: 0; }
.navbar.hero-nav .nav-logo { color: #fff; }
.navbar.hero-nav .nav-links a { color: rgba(255,255,255,0.85); }
.navbar.hero-nav .nav-actions button svg { stroke: #fff; }
.navbar.hero-nav .hamburger span { background: #fff; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--t);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-actions {
  display: flex; align-items: center; gap: 1rem;
}
.btn-dark-toggle {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--t);
}
.btn-dark-toggle:hover { background: var(--bg-alt); }
.btn-dark-toggle svg { stroke: var(--text); transition: stroke var(--t); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform var(--t), opacity var(--t), background var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 899;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color var(--t);
}
.nav-mobile a:hover { color: var(--accent); }

/* === Buttons ============================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--t);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,79,40,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn svg { flex-shrink: 0; }

/* === Ripple Effect ======================================== */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* === Hero ================================================= */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 115%;
  object-fit: cover;
  transform: translateY(0);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,14,8,0.78) 0%,
    rgba(20,14,8,0.45) 60%,
    rgba(20,14,8,0.3) 100%
  );
}
.hero .container { position: relative; z-index: 1; }
.hero-content {
  max-width: 720px;
}
.hero-tag {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-h);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}
.hero-tag::before {
  content: '';
  display: block; width: 32px; height: 1.5px;
  background: var(--accent-h);
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
  line-height: 1.75;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-h);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
  z-index: 1;
}
.scroll-indicator-line {
  width: 1.5px; height: 52px;
  background: rgba(255,255,255,0.25);
  position: relative; overflow: hidden;
}
.scroll-indicator-line::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 50%;
  background: rgba(255,255,255,0.7);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Subpage Hero (smaller) =============================== */
.hero-sub-page {
  position: relative;
  height: 50vh; min-height: 380px;
  display: flex; align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-sub-page .hero-bg img { height: 120%; }
.hero-sub-page .container { position: relative; z-index: 1; }
.hero-sub-page h1 {
  color: #fff;
  max-width: 600px;
}
.hero-sub-page .hero-tag { margin-bottom: 1rem; }

/* === Stats Bar ============================================ */
.stats-bar {
  background: var(--dark);
  padding: 3.5rem 0;
}
[data-dark] .stats-bar { background: var(--bg-alt); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--accent-h);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
[data-dark] .stat-label { color: var(--muted); }

/* === Services Preview ===================================== */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row--reverse { direction: rtl; }
.service-row--reverse > * { direction: ltr; }

.service-row-image {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: var(--r);
}
.service-row-image img {
  height: 100%;
  transition: transform 0.8s ease;
}
.service-row:hover .service-row-image img {
  transform: scale(1.04);
}

.service-row-body {}
.service-row-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: background var(--t);
}
[data-dark] .service-row-icon { background: var(--bg-alt); }
.service-row-icon svg { stroke: var(--accent); }
.service-row-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.service-row-body p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-h);
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
}

/* === Service Cards (Leistungen page) ====================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 2.5rem;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}
[data-dark] .service-card { background: var(--surface); }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg-alt); }
.service-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
[data-dark] .service-card-icon { background: var(--bg-alt); }
.service-card-icon svg { stroke: var(--accent); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* === Zoom Gallery (fullscreen sticky scroll) ============= */
.zoom-outer {
  position: relative;
  height: 380vh;
}
.zoom-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0D0D0D;
}
.zoom-main-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%; height: 100%;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, border-radius;
  border-radius: 0;
  z-index: 2;
  box-shadow: none;
}
.zoom-main-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.zoom-corner-img {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  opacity: 0;
  will-change: opacity, transform;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.zoom-corner-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.zoom-tl { top: 4%;    left: 2.5%;  width: 22vw; height: 32vh; }
.zoom-tr { top: 4%;    right: 2.5%; width: 22vw; height: 32vh; }
.zoom-bl { bottom: 7%; left: 2.5%;  width: 22vw; height: 32vh; }
.zoom-br { bottom: 7%; right: 2.5%; width: 22vw; height: 32vh; }
.zoom-center-text {
  position: absolute;
  bottom: 3.5rem; left: 50%;
  transform: translateX(-50%) translateY(16px);
  text-align: center;
  z-index: 3;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
  white-space: nowrap;
}
.zoom-center-text .section-label {
  justify-content: center;
  color: rgba(255,255,255,0.6);
}
.zoom-center-text h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}
@media (max-width: 768px) {
  .zoom-outer { height: 280vh; }
  .zoom-tl, .zoom-tr, .zoom-bl, .zoom-br { width: 34vw; height: 24vh; }
}

/* === Horizontal Scroll ==================================== */
.h-scroll-outer {
  position: relative;
}
.h-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.h-scroll-track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.h-scroll-slide {
  min-width: 100vw;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem;
  flex-shrink: 0;
}
.h-scroll-slide:first-child {
  background: var(--dark);
}
.h-scroll-slide:nth-child(2) { background: #1E1A15; }
.h-scroll-slide:nth-child(3) { background: #13191A; }
.h-scroll-slide:nth-child(4) { background: var(--dark); }
.h-scroll-slide:nth-child(5) { background: #1A1814; }

.h-scroll-content {
  max-width: 560px; text-align: left;
}
.h-scroll-step {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-h);
  margin-bottom: 1rem;
}
.h-scroll-content h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1.25rem;
}
.h-scroll-content p {
  color: rgba(255,255,255,0.62);
  font-size: 1.05rem;
  line-height: 1.8;
}
.h-scroll-num {
  font-family: var(--font-h);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}
.h-scroll-visual {
  width: 380px;
  height: 480px;
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
}
.h-scroll-visual img { height: 100%; }
.h-scroll-inner {
  display: flex;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: 960px;
}
.h-scroll-progress {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem;
  z-index: 1;
}
.h-scroll-dot {
  width: 24px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: background var(--t), width var(--t);
}
.h-scroll-dot.active {
  background: var(--accent-h);
  width: 40px;
}

/* === Ferienhaus Highlight ================================= */
.fh-highlight {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.fh-highlight-bg {
  position: absolute; inset: 0;
}
.fh-highlight-bg img {
  height: 100%;
  filter: brightness(0.35);
}
.fh-highlight .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.fh-body h2 { color: #fff; margin-bottom: 1.25rem; }
.fh-body p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; line-height: 1.8; }
.fh-checklist {
  display: flex; flex-direction: column; gap: 0.9rem;
  margin-bottom: 2.5rem;
}
.fh-check {
  display: flex; align-items: flex-start; gap: 0.9rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}
.fh-check svg { flex-shrink: 0; margin-top: 3px; stroke: var(--accent-h); }
.fh-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.fh-stat {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.fh-stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-h);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fh-stat p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* === Testimonials ========================================= */
.testimonials-section { background: var(--bg-alt); }
[data-dark] .testimonials-section { background: var(--bg-alt); }
.testimonials-track { position: relative; overflow: hidden; }
.testimonials-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.testimonial {
  min-width: 100%;
  padding: 1rem 0;
}
.testimonial-card {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-stars {
  display: flex; justify-content: center; gap: 0.3rem;
  margin-bottom: 2rem;
}
.testimonial-stars svg { fill: var(--accent-h); stroke: var(--accent-h); }
.testimonial-text {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 2rem;
}
.testimonial-author {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.testimonial-loc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.testimonials-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.testimonial-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
}
.testimonial-btn:hover svg { stroke: #fff; }
.testimonial-btn svg { stroke: var(--text); }
.testimonials-dots {
  display: flex; gap: 0.5rem;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--t), transform var(--t);
}
.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* === CTA Section ========================================== */
.cta-section {
  background: var(--accent);
  padding: 6rem 0;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === FAQ Accordion ======================================== */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  gap: 1rem;
}
.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--t);
}
.faq-question:hover h4 { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.faq-icon svg {
  stroke: var(--muted);
  transition: transform var(--t), stroke var(--t);
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.faq-item.open .faq-icon svg {
  stroke: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* === Timeline ============================================= */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1.5px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  align-items: center;
  position: relative;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  z-index: 1;
  box-shadow: 0 0 0 3px var(--accent);
}
.timeline-item:nth-child(odd) .timeline-body {
  grid-column: 1;
  text-align: right;
}
.timeline-item:nth-child(odd) .timeline-date {
  grid-column: 2;
}
.timeline-item:nth-child(even) .timeline-date {
  grid-column: 1;
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-body {
  grid-column: 2;
}
.timeline-date {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.5rem 0;
}
.timeline-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.timeline-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === Team ================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  position: relative;
  overflow: hidden;
}
.team-card-img {
  height: 380px;
  overflow: hidden;
  border-radius: var(--r);
  margin-bottom: 1.25rem;
}
.team-card-img img {
  height: 100%;
  transition: transform 0.7s ease;
}
.team-card:hover .team-card-img img {
  transform: scale(1.06);
}
.team-card h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card-role {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-h);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.team-card p { color: var(--muted); font-size: 0.9rem; }

/* === Packages ============================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.package-card {
  padding: 2.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  position: relative;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.package-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.package-card.featured {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.package-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--accent-h);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 0 0 4px 4px;
}
.package-card.featured .package-badge {
  background: rgba(0,0,0,0.2);
}
.package-name {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.package-card.featured .package-name { color: rgba(255,255,255,0.8); }
.package-price {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.package-card.featured .package-price { color: #fff; }
.package-period { font-size: 0.85rem; opacity: 0.6; margin-bottom: 1.5rem; }
.package-features {
  display: flex; flex-direction: column; gap: 0.7rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.package-card.featured .package-features { border-color: rgba(255,255,255,0.2); }
.package-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.package-card.featured .package-feature { color: rgba(255,255,255,0.85); }
.package-feature svg {
  flex-shrink: 0;
  stroke: var(--green);
  margin-top: 1px;
}
.package-card.featured .package-feature svg { stroke: rgba(255,255,255,0.9); }
.package-card.featured .btn-outline-white:hover {
  background: #fff;
  color: var(--accent);
}

/* === Booking Form ========================================= */
.booking-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
}
.booking-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: var(--border);
  transform: translateY(-50%);
  z-index: 0;
}
.booking-step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  position: relative; z-index: 1;
}
.booking-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  transition: all var(--t);
}
.booking-step.active .booking-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.booking-step.done .booking-step-num {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.booking-step-label {
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t);
}
.booking-step.active .booking-step-label { color: var(--accent); }
.booking-step.done .booking-step-label { color: var(--green); }

.booking-pane { display: none; }
.booking-pane.active { display: block; }
.booking-pane h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.booking-pane > p { color: var(--muted); margin-bottom: 2rem; }

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.service-option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--t);
  background: var(--surface);
}
.service-option:hover { border-color: var(--accent); }
.service-option.selected {
  border-color: var(--accent);
  background: rgba(124,79,40,0.04);
}
[data-dark] .service-option.selected { background: rgba(124,79,40,0.1); }
.service-option input { display: none; }
.service-option-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
[data-dark] .service-option-icon { background: var(--bg); }
.service-option-icon svg { stroke: var(--accent); }
.service-option-label {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* Calendar */
.calendar-wrapper { margin-bottom: 2rem; }
.calendar-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.calendar-head h4 {
  font-size: 1.1rem;
}
.cal-nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t);
}
.cal-nav:hover { border-color: var(--accent); background: var(--accent); }
.cal-nav:hover svg { stroke: #fff; }
.cal-nav svg { stroke: var(--text); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-name {
  text-align: center;
  padding: 0.5rem 0;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cal-day {
  text-align: center;
  padding: 0.6rem;
  border-radius: var(--r);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--t);
  color: var(--text);
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--bg-alt);
  color: var(--accent);
}
.cal-day.selected {
  background: var(--accent);
  color: #fff;
}
.cal-day.today { font-weight: 700; color: var(--accent); }
.cal-day.disabled { color: var(--border); cursor: not-allowed; }
.cal-day.empty { pointer-events: none; }

.time-slots {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2rem;
}
.time-slot {
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  color: var(--text);
  background: var(--surface);
}
.time-slot:hover { border-color: var(--accent); color: var(--accent); }
.time-slot.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.time-slot.unavailable { opacity: 0.35; cursor: not-allowed; pointer-events: none; }

/* Forms */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.95rem;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,79,40,0.12);
}
.form-control.error { border-color: #c0392b; }
.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.35rem;
  display: none;
}
.form-group.has-error .form-error { display: block; }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23777' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.booking-summary {
  background: var(--bg-alt);
  padding: 1.75rem;
  border-radius: var(--r);
  margin-bottom: 2rem;
}
[data-dark] .booking-summary { background: var(--bg-alt); }
.booking-summary h4 { margin-bottom: 1.25rem; font-size: 1rem; }
.summary-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child { color: var(--muted); }
.summary-row span:last-child { font-weight: 600; text-align: right; }

.booking-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2.5rem;
  gap: 1rem;
}

/* === Contact Section ====================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info > p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
[data-dark] .contact-item-icon { background: var(--bg-alt); }
.contact-item-icon svg { stroke: var(--accent); }
.contact-item-label {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.contact-form { background: var(--surface); padding: 2.5rem; border-radius: var(--r); box-shadow: var(--shadow-sm); }
[data-dark] .contact-form { background: var(--surface); }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }

/* === Confirmation Modal =================================== */
#confirm-modal {
  position: fixed; inset: 0;
  z-index: 9990;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#confirm-modal.open { opacity: 1; visibility: visible; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 1;
}
#confirm-modal.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all var(--t);
}
.modal-close:hover { background: var(--bg-alt); color: var(--text); }
.modal-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(61,95,67,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.modal-icon svg { stroke: var(--green); }
.modal-box h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.modal-box p { color: var(--muted); line-height: 1.75; font-size: 0.95rem; }

/* === Cookie Banner ======================================== */
#cookie-banner {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: rgba(255,255,255,0.82);
  padding: 1.25rem 1.75rem;
  border-radius: var(--r-lg);
  max-width: 580px;
  width: calc(100% - 2rem);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  z-index: 8000;
  font-size: 0.875rem;
  line-height: 1.6;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
[data-dark] #cookie-banner { background: #0A0A0A; border: 1px solid var(--border); }
#cookie-banner.hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
}
#cookie-banner p { flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--accent-h); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-cookie {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r);
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--t);
}
.btn-cookie-accept {
  background: var(--accent);
  color: #fff;
}
.btn-cookie-accept:hover { background: var(--accent-h); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* === Floating Buttons ===================================== */
.fab-group {
  position: fixed;
  bottom: 5.5rem; right: 1.5rem;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0.75rem;
  z-index: 500;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
  cursor: pointer;
  text-decoration: none;
}
.fab:hover { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.fab-whatsapp { background: #25D366; }
.fab-whatsapp svg { fill: #fff; width: 26px; height: 26px; }
.fab-top {
  background: var(--dark);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
}
[data-dark] .fab-top { background: var(--bg-alt); }
.fab-top.visible { opacity: 1; visibility: visible; }
.fab-top svg { stroke: #fff; }

/* === Footer =============================================== */
footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
}
[data-dark] footer { background: #0A0A0A; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.footer-social a:hover { border-color: var(--accent-h); background: var(--accent); }
.footer-social a svg { stroke: rgba(255,255,255,0.55); transition: stroke var(--t); }
.footer-social a:hover svg { stroke: #fff; }
.footer-col h5 {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--accent-h); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom-links {
  display: flex; gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  transition: color var(--t);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* === Map Placeholder ====================================== */
.map-wrap {
  height: 380px;
  background: var(--bg-alt);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}

/* === Values Section ======================================= */
.values-list {
  display: flex; flex-direction: column; gap: 0;
}
.value-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.value-row:first-child { padding-top: 0; }
.value-num {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding-top: 0.25rem;
}
.value-row h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-row p { color: var(--muted); font-size: 0.92rem; line-height: 1.75; }

/* === Section Head ========================================= */
.section-head { margin-bottom: 4rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 580px;
}
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* === Responsive =========================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .h-scroll-slide { padding: 3rem; }
  .h-scroll-inner { gap: 3rem; }
  .h-scroll-visual { width: 280px; height: 360px; }
}

@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; gap: 2rem; }
  .service-row--reverse { direction: ltr; }
  .service-row-image { height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .fh-highlight .container { grid-template-columns: 1fr; gap: 3rem; }
  .timeline::before { left: 1.5rem; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 3.5rem; }
  .timeline-item::after { left: 1.5rem; top: 1rem; transform: translateX(-50%); }
  .timeline-item:nth-child(odd) .timeline-body,
  .timeline-item:nth-child(even) .timeline-body,
  .timeline-item:nth-child(odd) .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
    grid-column: 1;
    text-align: left;
    grid-row: auto;
  }
  .h-scroll-inner { flex-direction: column; gap: 2rem; text-align: center; }
  .h-scroll-visual { width: 100%; height: 240px; }
  .booking-summary .summary-row { font-size: 0.85rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .zoom-gallery { height: 360px; }
  .zoom-center { width: 65%; height: 240px; }
  .service-options { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .booking-steps { gap: 0; }
  .booking-step-label { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .modal-box { padding: 2rem 1.5rem; }
  .contact-form { padding: 1.75rem; }
  .fh-stats { grid-template-columns: 1fr; }
}

/* === Chatbot ============================================= */
.chatbot-wrap {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 600;
}
.chatbot-toggle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(124,79,40,0.5);
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  border: none;
}
.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(124,79,40,0.65);
}
.chatbot-toggle svg { flex-shrink: 0; }
.chatbot-badge {
  position: absolute;
  top: 1px; right: 1px;
  width: 18px; height: 18px;
  background: #e74c3c;
  border-radius: 50%;
  font-family: var(--font-h);
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  pointer-events: none;
}
.chatbot-badge.hidden { display: none; }
.chatbot-window {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0;
  width: 340px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 20px 72px rgba(0,0,0,0.22);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  max-height: 530px;
}
.chatbot-window.open {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.chatbot-header {
  background: var(--dark);
  padding: 0.9rem 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
[data-dark] .chatbot-header { background: #090909; }
.chatbot-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 0.72rem; font-weight: 800;
  color: #fff; flex-shrink: 0;
  position: relative;
}
.chatbot-online-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  border: 2px solid var(--dark);
}
.chatbot-header-text { flex: 1; }
.chatbot-header-name {
  font-family: var(--font-h);
  font-size: 0.88rem; font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.chatbot-header-status {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1px;
}
.chatbot-close-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  cursor: pointer; border: none; background: none;
  transition: all var(--t); flex-shrink: 0;
}
.chatbot-close-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.chatbot-messages {
  flex: 1; overflow-y: auto;
  padding: 1rem 0.9rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  min-height: 180px; max-height: 260px;
  scroll-behavior: smooth;
}
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.chat-msg {
  display: flex; gap: 0.4rem; align-items: flex-end;
  max-width: 92%;
}
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-bubble {
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.855rem; line-height: 1.55;
  white-space: pre-wrap; word-break: break-word;
}
.chat-msg.bot .chat-bubble {
  background: var(--bg-alt);
  color: var(--text);
  border-bottom-left-radius: 3px;
}
.chat-msg.user .chat-bubble {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 3px;
}
.chat-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 0.6rem 0.85rem;
  background: var(--bg-alt);
  border-radius: 14px; border-bottom-left-radius: 3px;
  align-self: flex-start; width: fit-content;
}
.chat-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingDot 1.3s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.chatbot-suggestions {
  padding: 0.4rem 0.9rem 0;
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  flex-shrink: 0;
}
.chatbot-suggest {
  padding: 0.28rem 0.7rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: 0.7rem; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
  background: var(--surface);
  white-space: nowrap;
}
.chatbot-suggest:hover { border-color: var(--accent); color: var(--accent); }
.chatbot-input-area {
  padding: 0.65rem 0.9rem;
  display: flex; gap: 0.5rem; align-items: center;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chatbot-input {
  flex: 1;
  padding: 0.55rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.855rem;
  outline: none;
  transition: border-color var(--t);
}
.chatbot-input:focus { border-color: var(--accent); }
.chatbot-send {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}
.chatbot-send:hover { background: var(--accent-h); transform: scale(1.08); }
@media (max-width: 480px) {
  .chatbot-window { width: calc(100vw - 3rem); right: 0; }
}
