@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
:root {
  --bg: #F5F2ED;
  --bg-rgb: 245, 242, 237;
  --surface: #EDE8E0;
  --text: #1A1A1A;
  --text-rgb: 26, 26, 26;
  --muted: #5C5549;
  --primary: #2D5A27;
  --primary-rgb: 45, 90, 39;
  --primary-contrast: #FFFFFF;
  --amber: #B8860B;
  --amber-rgb: 184, 134, 11;
  --border: rgba(26, 26, 26, 0.1);
  --shadow: rgba(26, 26, 26, 0.08);
  --glass-bg: rgba(245, 242, 237, 0.12);
  --glass-border: rgba(245, 242, 237, 0.15);
  --bamboo-line: rgba(45, 90, 39, 0.3);
  --hero-glass-bg: rgba(15, 18, 16, 0.65);
  --hero-glass-border: rgba(240, 237, 232, 0.1);
}

html[data-theme="dark"] {
  --bg: #0F1210;
  --bg-rgb: 15, 18, 16;
  --surface: #1A201A;
  --text: #F0EDE8;
  --text-rgb: 240, 237, 232;
  --muted: #9B9488;
  --primary: #5A9E50;
  --primary-rgb: 90, 158, 80;
  --primary-contrast: #0F1210;
  --border: rgba(240, 237, 232, 0.1);
  --shadow: rgba(0, 0, 0, 0.3);
  --glass-bg: rgba(26, 32, 26, 0.6);
  --glass-border: rgba(240, 237, 232, 0.08);
  --bamboo-line: rgba(90, 158, 80, 0.3);
  --hero-glass-bg: rgba(15, 18, 16, 0.72);
  --hero-glass-border: rgba(240, 237, 232, 0.08);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0F1210;
    --bg-rgb: 15, 18, 16;
    --surface: #1A201A;
    --text: #F0EDE8;
    --text-rgb: 240, 237, 232;
    --muted: #9B9488;
    --primary: #5A9E50;
    --primary-rgb: 90, 158, 80;
    --primary-contrast: #0F1210;
    --border: rgba(240, 237, 232, 0.1);
    --shadow: rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(26, 32, 26, 0.6);
    --glass-border: rgba(240, 237, 232, 0.08);
    --bamboo-line: rgba(90, 158, 80, 0.3);
    --hero-glass-bg: rgba(15, 18, 16, 0.72);
    --hero-glass-border: rgba(240, 237, 232, 0.08);
  }
}

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

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

body {
  font-family: 'Be Vietnam Pro', 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-radius: 8px;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: #F0EDE8;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, color 0.3s ease;
}

.site-header .nav-logo,
.site-header .nav-link,
.site-header .lang-btn,
.site-header .lang-divider,
.site-header .theme-toggle {
  color: #F0EDE8;
}

.site-header.scrolled {
  background-color: rgba(var(--bg-rgb, 245, 242, 237), 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  color: var(--text);
}

.site-header.scrolled .nav-logo,
.site-header.scrolled .nav-link,
.site-header.scrolled .lang-btn,
.site-header.scrolled .lang-divider,
.site-header.scrolled .theme-toggle {
  color: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
  transition: width 0.4s ease;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: 0.5;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.lang-btn.active {
  opacity: 1;
  background-color: rgba(var(--primary-rgb), 0.15);
}

.lang-btn:hover {
  opacity: 0.9;
}

.lang-divider {
  opacity: 0.3;
  font-size: 0.75rem;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.theme-toggle:hover {
  opacity: 1;
  background-color: rgba(var(--text-rgb), 0.08);
  transform: rotate(15deg);
}

.icon-sun,
.icon-moon {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

html[data-theme="dark"] .icon-sun {
  display: block;
}

html[data-theme="dark"] .icon-moon {
  display: none;
}

html:not([data-theme="dark"]) .icon-sun {
  display: none;
}

html:not([data-theme="dark"]) .icon-moon {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .icon-sun {
    display: block;
  }
  :root:not([data-theme="light"]) .icon-moon {
    display: none;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  z-index: 1001;
}

.menu-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #F0EDE8;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.site-header.scrolled .menu-bar {
  background: var(--text);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROMO BANNER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.promo-banner {
  background: linear-gradient(90deg, rgba(var(--amber-rgb), 0.15), rgba(var(--primary-rgb), 0.15));
  padding: 12px 48px;
  text-align: center;
  font-size: 0.875rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.promo-banner p {
  opacity: 0.7;
}

.promo-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.promo-close:hover {
  opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION LABEL (reusable)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: var(--bamboo-line);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 18, 16, 0.7) 0%,
    rgba(15, 18, 16, 0.3) 50%,
    rgba(15, 18, 16, 0.15) 100%
  );
  z-index: 1;
}

.hero-glass-panel {
  position: relative;
  z-index: 2;
  width: 45%;
  max-width: 560px;
  margin-left: 8%;
  padding: 64px 48px;
  background: var(--hero-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hero-glass-border);
  border-radius: 28px;
  animation: panelFadeIn 0.8s ease 0.4s both;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.5);
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #7b6a4f;
  margin-bottom: 28px;
}

.hero-amber-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin-bottom: 24px;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.7);
  margin-bottom: 36px;
  max-width: 380px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-contrast);
  background: var(--primary);
  border-radius: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(var(--amber-rgb), 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.3);
}

.hero-cta:hover::before {
  opacity: 1;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(240, 237, 232, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1);
  }
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about {
  padding: 120px 32px;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  padding-top: 20px;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.about-p1,
.about-p2 {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 20px;
  max-width: 540px;
}

.about-image-wrap {
  position: relative;
  margin-top: -40px;
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px var(--shadow), 0 4px 20px var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 70px var(--shadow), 0 8px 24px var(--shadow);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.services {
  padding: 120px 32px;
  background-color: var(--surface);
  transition: background-color 0.4s ease;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.services-desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow), 0 4px 16px var(--shadow);
  border-color: rgba(var(--amber-rgb), 0.3);
}

.service-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.service-card-body {
  padding: 24px;
}

.service-card-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-card-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  white-space: nowrap;
  line-height: 1;
}

.service-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.6;
}

.service-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.service-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.8;
}

.service-card-duration {
  font-size: 0.8rem;
  opacity: 0.45;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cta-section {
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.06), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-bamboo-line {
  display: none;
}

.cta-bamboo-line.left,
.cta-bamboo-line.right {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--bamboo-line);
  vertical-align: middle;
  flex-shrink: 0;
}

.cta-desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  padding: 18px 42px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-contrast);
  background: var(--primary);
  border-radius: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(var(--amber-rgb), 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.3);
}

.cta-btn:hover::before {
  opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BAMBOO GARDEN INTERLUDE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.bamboo-garden {
  padding: 80px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  background: var(--surface);
  transition: background-color 0.4s ease;
}

.bamboo-inner {
  max-width: 640px;
  margin: 0 auto;
}

.bamboo-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.bamboo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.bamboo-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.gallery {
  padding: 120px 32px;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 56px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item-tall img {
  aspect-ratio: 3/4;
  object-fit: cover;
}

.gallery-item:not(.gallery-item-tall) img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVIEWS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.reviews {
  padding: 120px 32px;
  background-color: var(--surface);
  transition: background-color 0.4s ease;
}

.reviews-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 56px;
}

.testimonial-spotlight {
  position: relative;
  padding: 40px 0;
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  line-height: 0.8;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.testimonial-slides {
  position: relative;
  min-height: 220px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(10px);
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 640px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  border: none;
  padding: 0;
}

.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 6px;
}

.testimonial-service {
  font-size: 0.8rem;
  opacity: 0.4;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  opacity: 1;
  background: var(--primary);
  transform: scale(1.5);
}

.testimonial-dot:hover {
  opacity: 0.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.faq {
  padding: 120px 32px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.faq-desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 48px;
  max-width: 520px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  gap: 16px;
}

.faq-question:hover {
  opacity: 1;
}

.faq-chevron {
  flex-shrink: 0;
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  opacity: 0.7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.6;
  padding-bottom: 24px;
  max-width: 600px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact {
  padding: 120px 32px;
  background-color: var(--surface);
  transition: background-color 0.4s ease;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  display: block;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.7;
}

.contact-item a {
  transition: opacity 0.2s ease;
}

.contact-item a:hover {
  opacity: 1;
}

.contact-map {
  width: 100%;
  height: 200px;
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B9488' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--amber);
  box-shadow: 0 1px 0 0 var(--amber);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-contrast);
  background: var(--primary);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(var(--amber-rgb), 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-submit:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.25);
}

.form-submit:hover::before {
  opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.site-footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0.7;
}

.footer-rights {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FLOATING BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-contrast);
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3), 0 2px 8px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.4), 0 4px 12px var(--shadow);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.25s; }
.stagger-3 { transition-delay: 0.4s; }
.stagger-4 { transition-delay: 0.55s; }
.stagger-5 { transition-delay: 0.7s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REDUCED MOTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-glass-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-line {
    animation: none;
    opacity: 0.4;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — MOBILE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: var(--bg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  /* When mobile menu is open, X bars and links must contrast with var(--bg) overlay */
  .site-header:has(.nav-links.open) .menu-bar {
    background: var(--text);
  }

  .site-header:has(.nav-links.open) .nav-logo {
    color: var(--text);
  }

  .nav-links.open .nav-link,
  .nav-links.open .lang-btn,
  .nav-links.open .lang-divider,
  .nav-links.open .theme-toggle {
    color: var(--text);
  }

  .nav-link {
    font-size: 1.2rem;
    opacity: 1;
  }

  .nav-controls {
    margin-left: 0;
    margin-top: 16px;
    gap: 20px;
  }

  .main-nav {
    padding: 16px 20px;
  }

  /* Hero */
  .hero-glass-panel {
    width: 90%;
    max-width: none;
    margin: 0 auto;
    padding: 48px 28px;
    border-radius: 20px;
  }

  .hero {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 100px;
  }

  .hero-scroll-indicator {
    bottom: 24px;
  }

  /* About */
  .about {
    padding: 80px 20px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    margin-top: 0;
  }

  /* Services */
  .services {
    padding: 80px 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card-body {
    padding: 20px;
  }

  .service-card-title {
    font-size: 1.15rem;
  }

  .service-card-desc {
    font-size: 0.85rem;
  }

  /* CTA */
  .cta-section {
    padding: 80px 20px;
  }

  .cta-bamboo-line.left,
  .cta-bamboo-line.right {
    display: none;
  }

  /* Bamboo Garden */
  .bamboo-garden {
    padding: 60px 20px;
  }

  /* Gallery */
  .gallery {
    padding: 80px 20px;
  }

  .gallery-masonry {
    columns: 2;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
    border-radius: 14px;
  }

  /* Reviews */
  .reviews {
    padding: 80px 20px;
  }

  .testimonial-quote-mark {
    font-size: 6rem;
  }

  .testimonial-slides {
    min-height: 260px;
  }

  /* FAQ */
  .faq {
    padding: 80px 20px;
  }

  /* Contact */
  .contact {
    padding: 80px 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Floating buttons */
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 1;
  }

  .testimonial-slides {
    min-height: 320px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LARGE SCREENS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (min-width: 1440px) {
  .hero-glass-panel {
    margin-left: 10%;
  }

  .about-inner,
  .contact-inner {
    max-width: 1300px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BAMBOO LINE VERTICAL MOTIF
   (Decorative vertical lines)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about::before,
.faq::before {
  content: '';
  position: absolute;
  left: 8%;
  top: 80px;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, var(--bamboo-line), transparent);
  pointer-events: none;
}

.about,
.faq {
  position: relative;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SELECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

::selection {
  background: rgba(var(--primary-rgb), 0.2);
  color: var(--text);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SMOOTH SCROLLBAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(var(--text-rgb), 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--text-rgb), 0.25);
}

/* === ACCESSIBILITY ESSENTIALS === */

/* Focus indicators (keyboard navigation) — WCAG 2.4.7 */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
*:focus:not(:focus-visible) { outline: none; }
