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

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

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

a {
  text-decoration: none;
}

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

/* ─── Tokens ─────────────────────────────────────── */
:root {
  --green-main: #8FA287;
  --green-light: #A7B89F;
  --green-dark: #4E5F4E;
  --green-soft: #C7D3C2;
  --green-bg: #EEF2EB;
  --bg: #F7F4EF;
  --bg-warm: #F2EDE5;
  --gold: #C9A96E;
  --gold-lt: rgba(201, 169, 110, 0.22);
  --gold-bd: rgba(201, 169, 110, 0.38);
  --text: #26231E;
  --text-md: #5C5850;
  --text-lt: #9A9285;
  --white: #FDFCFA;
  --font-ed: 'Cormorant Garamond', Georgia, serif;
  --font-mo: 'Manrope', system-ui, sans-serif;
  --r: 18px;
  --r-sm: 10px;
  --shadow: 0 4px 32px rgba(38, 35, 30, 0.07);
  --shadow-lg: 0 12px 60px rgba(38, 35, 30, 0.10);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Base ─────────────────────────────────────── */
body {
  font-family: var(--font-mo);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography helpers ─────────────────────────── */
.hl {
  font-family: var(--font-ed);
  font-style: italic;
  font-weight: 500;
  color: var(--green-dark);
}

.hl-light {
  font-family: var(--font-ed);
  font-style: italic;
  font-weight: 400;
  color: var(--green-main);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.gold-line-c {
  margin: 0 auto;
}

/* ─── Layout ─────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
  overflow: hidden;
}

/* ─── Reveal animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays */
.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.d5 {
  transition-delay: 0.5s;
}

.d6 {
  transition-delay: 0.6s;
}

/* ─── Buttons ──────────────────────────────────── */
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 100px;
  font-family: var(--font-mo);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform 0.2s, box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--green-main);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(78, 95, 78, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid var(--gold-bd);
  font-family: var(--font-mo);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--transition), color var(--transition), transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--green-main);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* ─── NAV ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--gold-bd);
}

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

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 12px !important;
  transition: background var(--transition), transform 0.2s;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--green-main) !important;
  transform: translateY(-1px);
}

/* ─── MOBILE MENU ────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 10000;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.4s;
  display: block;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--bg);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex !important;
  flex-direction: column !important;
}

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

.nav-mobile-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247, 244, 239, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1;
}

.nav-mobile-leaf {
  position: absolute;
  color: #8FA287;
  opacity: 0.12;
  pointer-events: none;
  z-index: 2;
}

.nav-mobile-leaf svg {
  fill: currentColor;
}

.nav-mobile-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex !important;
  flex-direction: column !important;
  padding: 40px 32px;
}

.nav-mobile-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 60px;
}

.nav-mobile-close {
  font-size: 48px;
  font-weight: 200;
  color: var(--text);
  line-height: 1;
  padding: 10px;
  margin: -10px;
}

.nav-mobile-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
  margin-bottom: 40px;
}

.nav-mobile-links a {
  font-size: 32px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
  display: block !important;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-mobile.open .nav-mobile-links a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-links a:hover {
  color: var(--green-dark);
}

.nav-mobile-footer {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--gold-bd);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.nav-mobile.open .nav-mobile-footer {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-footer p {
  font-size: 14px;
  color: var(--text-md);
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-ed);
}

.nav-mobile-social {
  margin-top: 20px;
  display: flex;
  gap: 24px;
}

.nav-mobile-social a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

/* ─── HERO ─────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  padding-top: 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 32px;
  min-height: calc(100vh - 88px);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.17;
  margin-bottom: 22px;
  color: var(--text);
  text-wrap: pretty;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero image */
.hero-img-wrap {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: var(--r);
  overflow: visible;
}

.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  border: 1px solid var(--gold-bd);
  transform: translate(14px, 14px);
  pointer-events: none;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r);
  display: block;
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -28px;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--gold-bd);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.hero-badge-n {
  font-family: var(--font-ed);
  font-size: 42px;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1;
}

.hero-badge-t {
  font-size: 12px;
  color: var(--text-lt);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.hero-badge2 {
  position: absolute;
  top: 24px;
  right: -20px;
  z-index: 3;
  background: var(--green-dark);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
}

.hero-badge2-t {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero-badge2-v {
  font-size: 14px;
  color: white;
  font-weight: 600;
}

/* Botanical SVG */
.botanical {
  position: absolute;
  pointer-events: none;
  color: var(--green-soft);
  opacity: 0.5;
}

/* ─── ABOUT ─────────────────────────────────────── */
#about {
  padding: 120px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-frame {
  position: relative;
  border-radius: 40px;
  overflow: visible;
}

.about-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  border: 1px solid var(--gold-bd);
  transform: translate(-12px, -12px);
  pointer-events: none;
  z-index: 0;
}

.about-photo {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: 40px !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
  border: 1px solid var(--gold-bd) !important;
  box-shadow: var(--shadow-lg) !important;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent) !important;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent) !important;
}

.about-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 140px;
  height: 140px;
  background: var(--green-soft);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
}

.about-text {
  position: relative;
}

.about-eyebrow {
  margin-bottom: 24px;
}

.about-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  text-wrap: pretty;
}

.about-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-md);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}

.about-value {
  background: var(--white);
  border: 1px solid var(--gold-bd);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-value:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.about-value-icon {
  font-size: 20px;
  margin-bottom: 8px;
}

.about-value-title {
  font-family: var(--font-ed);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.about-value-desc {
  font-size: 12px;
  color: var(--text-lt);
}

/* ─── SERVICES ─────────────────────────────────── */
#services {
  padding: 120px 0;
  background: var(--bg-warm);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 14px;
  text-wrap: pretty;
}

.section-sub {
  font-size: 15px;
  color: var(--text-lt);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gold-bd);
  border-radius: var(--r);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--green-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--green-dark);
}

.service-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.service-desc {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 10px;
}

/* ─── GALLERY ─────────────────────────────────── */
#results {
  padding: 120px 0;
  background: var(--bg);
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid var(--gold-bd);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-md);
  background: transparent;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 2;
}

.gallery-item.span2 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78, 95, 78, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: white;
  font-size: 13px;
  font-weight: 500;
}

/* Before/after slider */
.ba-section {
  margin-top: 80px;
}

.ba-title {
  text-align: center;
  margin-bottom: 48px;
}

.ba-slider-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-bd);
  position: relative;
  user-select: none;
  cursor: col-resize;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ba-after {
  overflow: hidden;
}

.ba-before-label,
.ba-after-label {
  position: absolute;
  top: 16px;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.ba-before-label {
  left: 16px;
}

.ba-after-label {
  right: 16px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: white;
  z-index: 10;
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 14px;
}

/* ─── DIFFERENTIALS ──────────────────────────────── */
#differentials {
  padding: 120px 0;
  background: var(--green-bg);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diff-text .section-title {
  text-align: left;
  margin-top: 16px;
}

.diff-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.diff-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.diff-item-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.diff-item-desc {
  font-size: 14px;
  color: var(--text-md);
  font-weight: 300;
}

.diff-img-wrap {
  position: relative;
}

.diff-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r);
  display: block;
}

.diff-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-bd);
  border-radius: var(--r);
  transform: translate(14px, 14px);
  pointer-events: none;
}

/* ─── PROCESS ─────────────────────────────────── */
#process {
  padding: 120px 0;
  background: var(--bg);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 60px auto 0;
}

.process-line {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold-lt);
}

.process-line-fill {
  position: absolute;
  left: 23px;
  top: 0;
  width: 1px;
  background: var(--gold);
  height: 0;
  transition: height 1s ease;
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 0 0 40px 0;
  position: relative;
  z-index: 1;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-ed);
  font-size: 20px;
  font-weight: 500;
  color: var(--green-dark);
  transition: background var(--transition), border-color var(--transition);
}

.process-step.active .process-num {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

.process-content {
  padding-top: 10px;
}

.process-step-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-step-desc {
  font-size: 14px;
  color: var(--text-md);
  font-weight: 300;
  line-height: 1.75;
}

/* ─── TESTIMONIALS ──────────────────────────────── */
#testimonials {
  padding: 120px 0;
  background: var(--bg-warm);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gold-bd);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.t-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.t-text {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.85;
  font-style: italic;
  font-family: var(--font-ed);
  font-size: 17px;
  margin-bottom: 22px;
}

.t-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.t-service {
  font-size: 12px;
  color: var(--text-lt);
  margin-top: 2px;
}

.t-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-ed);
  font-size: 80px;
  color: var(--gold-lt);
  line-height: 1;
  font-weight: 500;
  user-select: none;
}

/* ─── FAQ ──────────────────────────────────────── */
#faq {
  padding: 120px 0;
  background: var(--bg);
}

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

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

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 20px;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--green-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--gold-bd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.4s, background 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

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

.faq-a-inner {
  font-size: 14px;
  color: var(--text-md);
  line-height: 1.85;
  padding-bottom: 22px;
  font-weight: 300;
}

/* ─── CTA ──────────────────────────────────────── */
#cta {
  padding: 120px 0;
  background: var(--green-dark);
  text-align: center;
  position: relative;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-eyebrow .eyebrow {
  justify-content: center;
}

.cta-eyebrow .eyebrow::before {
  display: none;
}

.cta-eyebrow .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.cta-title {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin: 20px 0 18px;
  text-wrap: pretty;
}

.cta-title .hl {
  color: var(--green-soft);
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.85;
  font-weight: 300;
}

.cta-btn {
  background: white;
  color: var(--green-dark);
  padding: 18px 42px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.cta-botanical {
  position: absolute;
  opacity: 0.06;
  color: white;
  pointer-events: none;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--text);
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand img {
  height: 38px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 220px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-insta {
  color: var(--green-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 3s ease infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

/* ─── MARQUEE ─────────────────────────────────── */
.mq-section {
  background: var(--green-dark);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}

.mq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(167, 184, 159, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mq-header {
  text-align: center;
  margin-bottom: 56px;
}

.mq-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.mq-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll linear infinite;
  will-change: transform;
}

.mq-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.mq-card {
  width: 280px;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201, 169, 110, 0.25);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
  cursor: pointer;
}

.mq-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mq-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.mq-card:hover img {
  transform: scale(1.08);
}

.mq-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78, 95, 78, 0.85) 0%, rgba(78, 95, 78, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
  transition: opacity 0.4s ease;
}

.mq-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 10px;
}

.mq-book {
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s;
}

.mq-book:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.mq-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.mq-ticker {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.mq-ticker-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mq-ticker-dot {
  color: var(--gold);
  font-size: 10px;
}

.mq-cta-btn {
  background: transparent;
  border: 1px solid var(--gold-bd);
  color: var(--gold);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.3s, color 0.3s;
}

.mq-cta-btn:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ─── CANVAS PARTICLES ───────────────────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

/* ─── PARALLAX LAYERS ────────────────────────── */
.parallax-slow {
  will-change: transform;
}

.parallax-med {
  will-change: transform;
}

/* ─── GREEN SECTION VARIANTS ────────────────── */
#about.green-tint {
  background: var(--green-bg);
}

#process.green-bg-dark {
  background: var(--green-dark);
}

#process.green-bg-dark .section-title {
  color: white;
}

#process.green-bg-dark .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

#process.green-bg-dark .eyebrow {
  color: var(--gold);
}

#process.green-bg-dark .process-num {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--green-soft);
}

#process.green-bg-dark .process-step.active .process-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

#process.green-bg-dark .process-step-title {
  color: white;
}

#process.green-bg-dark .process-step-desc {
  color: rgba(255, 255, 255, 0.6);
}

#process.green-bg-dark .process-line {
  background: rgba(255, 255, 255, 0.1);
}

#process.green-bg-dark .process-line-fill {
  background: var(--gold);
}

/* ─── ANIMATED GOLD LINE ────────────────────── */
.gold-animated-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 1.2s ease;
  margin: 28px 0;
}

.gold-animated-line.visible {
  width: 100%;
}

/* ─── SERVICE CARD ENHANCED ──────────────────── */
.service-card-3d {
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ─── SCROLL PROGRESS BAR ────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green-main));
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── SECTION TRANSITIONS ────────────────────── */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
}

.section-wave svg {
  width: 100%;
  height: 100%;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 20px;
    min-height: unset;
  }

  .hero-photo {
    height: 380px;
  }

  .hero-badge {
    display: none;
  }

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

  .about-photo {
    height: 500px;
    max-height: none;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.span2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .container {
    padding: 0 20px;
  }
}