/* ============================================================
   Trychologia Hair & Spa — Justyna Trela
   style.css
   ============================================================ */

/* ---- Custom Properties ------------------------------------ */
:root {
  --forest-deep: #0F1F15;
  --forest: #2D6A4F;
  --forest-light: #3D8A68;
  --gold: #C9A96E;
  --gold-light: #E2C99A;
  --cream: #F5F0E8;
  --cream-dark: #EDE8DC;
  --warm-white: #FDFAF5;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.87, 0, 0.13, 1);

  --container: 1400px;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ---- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; } /* handled by Lenis */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---- Custom Cursor ---------------------------------------- */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
  mix-blend-mode: normal;
}
.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-radius 0.4s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 6px; height: 6px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; border-color: var(--gold); }

/* ---- Container -------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

/* ---- Buttons ---------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest-deep);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  border-radius: inherit;
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 8px 32px rgba(201, 169, 110, 0.4); }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: none;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.07); }

.btn-booksy-nav {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 11px 24px;
  border-radius: 50px;
  cursor: none;
  transition: background 0.3s, box-shadow 0.3s;
}
.btn-booksy-nav:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35); }

/* ---- Section Labels --------------------------------------- */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '—';
  margin-right: 8px;
  opacity: 0.6;
}

/* ---- Reveal animations (set by JS, initial state) --------- */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }

/* ======================================================
   HEADER
   ====================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
.header.scrolled {
  padding: 14px 0;
  background: rgba(15, 31, 21, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  flex-shrink: 0;
}
.logo img { height: 64px; width: auto; max-width: 160px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  cursor: none;
}
.nav-links a:hover { color: var(--warm-white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  min-height: 100vh;
  background: var(--forest-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(45, 106, 79, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    var(--forest-deep);
  pointer-events: none;
}

.hero-botanicals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-botanicals svg {
  position: absolute;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  padding-top: 130px;
  padding-bottom: 60px;
}

.hero-text { color: var(--warm-white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  overflow: hidden;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(253, 250, 245, 0.6);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
  opacity: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
  opacity: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(253,250,245,0.5);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* Hero Image */
.hero-image {
  position: relative;
  opacity: 0;
}
.hero-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 75vh;
  background: linear-gradient(145deg, var(--forest) 0%, var(--forest-deep) 100%);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 50%, var(--forest-deep) 100%),
    linear-gradient(to right, var(--forest-deep) 0%, transparent 30%);
}
.hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: rgba(15,31,21,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.badge-stars {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
}
.badge-text { color: var(--warm-white); }
.badge-text strong {
  display: block;
  font-size: 16px;
  font-family: var(--font-serif);
}
.badge-text span { font-size: 12px; color: rgba(253,250,245,0.5); }

.hero-img-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50%;
}
.hero-img-deco::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 50%;
}

/* Photo placeholder (when no photo) */
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(45,106,79,0.3) 0%, rgba(15,31,21,0.8) 100%);
  color: rgba(253,250,245,0.4);
  font-size: 14px;
  gap: 12px;
  text-align: center;
  padding: 24px;
}
.hero-photo-placeholder svg { opacity: 0.3; }

/* Hero scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253,250,245,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ======================================================
   MARQUEE
   ====================================================== */
.marquee-section {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-deep);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--forest-deep);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================================================
   ABOUT
   ====================================================== */
.about {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--cream-dark), var(--cream));
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: 50%;
  z-index: -1;
}
.about-img-accent::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
}
.about-cert {
  position: absolute;
  top: 28px;
  right: -16px;
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.about-cert p { font-size: 12px; color: var(--text-light); line-height: 1.4; }
.about-cert strong { display: block; font-size: 14px; color: var(--forest); margin-bottom: 2px; }

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin-bottom: 24px;
}
.about-text h2 em {
  font-style: italic;
  color: var(--forest);
}
.about-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 36px;
}
.about-stat .num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat .label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* ======================================================
   SERVICES
   ====================================================== */
.services {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.services-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin-bottom: 16px;
}
.services-header p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
  cursor: none;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15,31,21,0.1);
  border-color: rgba(45,106,79,0.15);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--forest);
  transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(45, 106, 79, 0.12);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.service-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}
.service-time svg { width: 14px; height: 14px; }
.service-price {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--forest);
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}
.services-cta p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; }

/* ======================================================
   PROCESS
   ====================================================== */
.process {
  padding: var(--section-pad) 0;
  background: var(--forest-deep);
  color: var(--warm-white);
  overflow: hidden;
}
.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 80px;
}
.process-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.process-header p {
  font-size: 17px;
  color: rgba(253,250,245,0.55);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 24px 48px;
  position: relative;
}
.step-connector {
  position: absolute;
  top: 28px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: rgba(201,169,110,0.2);
  z-index: 0;
}
.process-step:last-child .step-connector { display: none; }

.step-num-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.4);
  margin-bottom: 24px;
  background: var(--forest-deep);
  transition: border-color 0.3s, background 0.3s;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}
.process-step:hover .step-num-wrap {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: rgba(253,250,245,0.5);
  line-height: 1.7;
}

/* ======================================================
   GALLERY
   ====================================================== */
.gallery-section { overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  cursor: none;
}
.gallery-item--tall { grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,21,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-white);
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: auto; }
  .gallery-item:nth-child(4), .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; }
  .gallery-item { aspect-ratio: 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   REVIEWS
   ====================================================== */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.reviews-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  max-width: 500px;
}
.reviews-score {
  text-align: center;
  flex-shrink: 0;
}
.score-big {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  display: block;
}
.score-stars { font-size: 18px; color: var(--gold); letter-spacing: 4px; margin: 4px 0; }
.score-label { font-size: 13px; color: var(--text-light); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: none;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15,31,21,0.08);
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.review-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-text::before { content: '"'; font-family: var(--font-serif); font-size: 24px; color: var(--gold); line-height: 0; vertical-align: -8px; margin-right: 4px; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--forest-deep); }
.review-date { font-size: 12px; color: var(--text-light); }
.reviews-footer { text-align: center; margin-top: 48px; }
.reviews-footer p { font-size: 15px; color: var(--text-light); margin-bottom: 20px; }

/* ======================================================
   PRICING
   ====================================================== */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.pricing-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}
.pricing-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin-bottom: 16px;
}
.pricing-header p { font-size: 17px; color: var(--text-mid); line-height: 1.6; }

.pricing-table {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--warm-white);
  gap: 24px;
  transition: background 0.2s;
  cursor: none;
}
.pricing-row:first-child { border-radius: 16px 16px 0 0; }
.pricing-row:last-child { border-radius: 0 0 16px 16px; }
.pricing-row:hover { background: rgba(45,106,79,0.04); }
.pricing-row:not(:last-child) { border-bottom: 1px solid var(--cream-dark); }

.pricing-name { font-size: 15px; font-weight: 500; color: var(--forest-deep); }
.pricing-desc { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.pricing-time {
  font-size: 13px;
  color: var(--text-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pricing-amount {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  flex-shrink: 0;
  min-width: 90px;
  text-align: right;
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 24px;
}

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-banner {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--forest-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(45,106,79,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner .section-tag { color: var(--gold-light); }
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  max-width: 800px;
  margin: 0 auto 40px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }

/* ======================================================
   CONTACT
   ====================================================== */
.contact {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.contact-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin-bottom: 32px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item-text strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 2px; }
.contact-item-text a, .contact-item-text p { font-size: 16px; color: var(--text-dark); font-weight: 500; }

.contact-qr {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: 16px;
  margin-top: 8px;
}
.contact-qr img { width: 72px; height: 72px; border-radius: 8px; }
.contact-qr-text strong { display: block; font-size: 14px; color: var(--forest-deep); margin-bottom: 4px; }
.contact-qr-text span { font-size: 13px; color: var(--text-light); }

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  background: var(--cream-dark);
  position: sticky;
  top: 100px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--forest-deep);
  padding: 56px 0 32px;
  color: rgba(253,250,245,0.5);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-logo { height: 72px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; line-height: 1.6; max-width: 240px; }
.footer-nav-title, .footer-social-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a {
  font-size: 14px;
  color: rgba(253,250,245,0.5);
  transition: color 0.2s;
  cursor: none;
}
.footer-nav-links a:hover { color: var(--warm-white); }
.footer-social-links { display: flex; gap: 12px; }
.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,250,245,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: none;
}
.footer-social-links a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.1); }
.footer-social-links svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(253,250,245,0.4); transition: color 0.2s; cursor: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .step-connector { display: none; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { display: none; }
  .hero-title { font-size: clamp(44px, 10vw, 72px); }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { position: static; height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .pricing-row { flex-wrap: wrap; }
  .pricing-time { display: none; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--warm-white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--warm-white);
  padding: 8px;
}
