/* ============================================================
   СТИЛ МЕБЕЛ ТРЕЙД — Editorial Premium Design
   Inspired by cocktailbox.bg · Green / White / Black
   ============================================================ */

:root {
  /* Greens */
  --green-deep:   #0d2b1a;
  --green-dark:   #173d27;
  --green-main:   #1d5c38;
  --green-mid:    #2d8a55;
  --green-bright: #3ab872;
  --green-pale:   #eaf5ee;
  --green-tint:   #f2faf5;

  /* Neutrals */
  --black:      #0a0c0b;
  --ink:        #141a16;
  --text:       #1e2820;
  --muted:      #6b7c72;
  --border:     #dce8e0;
  --bg-light:   #f5faf7;
  --bg-card:    #ffffff;
  --white:      #ffffff;

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --display:'Syne', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 110px;

  /* Radii */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill:100px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }

.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 1rem;
  display: block;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.01em;
}
.section-heading em {
  font-style: italic;
  color: var(--green-main);
}

/* ============================================================
   BUTTONS — Pill style like cocktailbox
   ============================================================ */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}
.pill-btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pill-btn--dark:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,43,26,0.25);
}
.pill-btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.pill-btn--outline:hover {
  border-color: var(--green-main);
  color: var(--green-main);
  transform: translateY(-2px);
}
.hero-btns .pill-btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.hero-btns .pill-btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  color: var(--white);
}
.pill-btn--green {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}
.pill-btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,92,56,0.3);
}
.pill-btn--white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.pill-btn--white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.2);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-pill {
  background: var(--green-main);
  border-radius: var(--r-pill);
  padding: 6px 18px 6px 6px;
  display: flex;
  align-items: center;
  transition: background 0.25s var(--ease);
}
.nav-logo-pill:hover { background: var(--green-dark); }
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  /* invert: black lines → white, white bg → black.
     screen blend: black areas become transparent → white lines on green pill */
  filter: invert(1);
  mix-blend-mode: screen;
}

/* Nav links always legible */
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.82); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.22s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta-pill {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--r-pill);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.01em;
  transition: background 0.25s, transform 0.25s !important;
}
.nav-cta-pill:hover {
  background: var(--green-dark) !important;
  transform: scale(1.04);
  color: var(--white) !important;
}
.navbar:not(.scrolled) .nav-cta-pill {
  background: rgba(255,255,255,0.15) !important;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white) !important;
}
.navbar:not(.scrolled) .nav-cta-pill:hover {
  background: rgba(255,255,255,0.25) !important;
}

.nav-fb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  transition: all 0.22s;
  flex-shrink: 0;
}
.nav-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.navbar.scrolled .nav-fb { border-color: var(--border); color: var(--muted); }
.navbar.scrolled .nav-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }

.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.86rem;
  transition: color 0.22s;
  margin-top: 4px;
}
.footer-fb:hover { color: #1877f2 !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled .burger span { background: var(--text); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 100vh;
  background: var(--green-deep);
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 56px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--green-bright);
  border-radius: 2px;
}

/* ---- Hero cycling badge ---- */
.hero-badge-cycle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,184,114,0.15);
  border: 1px solid rgba(58,184,114,0.35);
  border-radius: 99px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 1.4rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.hbc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
#heroCycleWord {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#heroCycleWord.fade-out {
  opacity: 0;
  transform: translateY(-6px);
}
#heroCycleWord.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--green-bright);
  display: block;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 400px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

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

.hero-img-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  transition: transform 6s ease;
}
.hero-img-wrap:hover .hero-img { transform: scale(1.04); }

/* Dark overlay on image bottom */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green-deep) 0%, transparent 25%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(13,43,26,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(58,184,114,0.3);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  text-align: center;
  z-index: 2;
}
.hb-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--green-bright);
  line-height: 1;
}
.hb-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.strip {
  background: var(--green-main);
  overflow: hidden;
  padding: 15px 0;
}
.strip-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  gap: 0;
}
.strip-track span  { padding: 0 22px; }
.strip-track .bull { color: var(--green-bright); padding: 0 6px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.about-top-right p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-imgs {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.about-img-big {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 540px;
}
.about-img-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-img-sm {
  border-radius: var(--r-lg);
  overflow: hidden;
  flex: 1;
  min-height: 220px;
}

.stat-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
/* Founder cards */
.founders-row {
  display: flex;
  gap: 14px;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.founder-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  flex: 1;
  min-width: 180px;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.founder-card:hover {
  border-color: var(--green-main);
  box-shadow: var(--shadow-sm);
}
.founder-initials {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-main);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.founder-card strong { display: block; font-size: 0.9rem; color: var(--text); }
.founder-card span   { font-size: 0.76rem; color: var(--muted); }

.stat-card--green {
  background: var(--green-main);
  border-color: var(--green-main);
}
.stat-card--green .stat-card-num,
.stat-card--green .stat-card-suf { color: var(--white); }
.stat-card--green .stat-card-lbl { color: rgba(255,255,255,0.65); }

.stat-card-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--green-main);
  line-height: 1;
}
.stat-card-suf {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-main);
  margin-left: 4px;
}
.stat-card-lbl {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 400px;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  transition: all 0.32s var(--ease);
  cursor: default;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}
.svc-card--dark {
  background: var(--green-deep);
  border-color: var(--green-dark);
}
.svc-card--dark h3 { color: var(--white); }
.svc-card--dark p  { color: rgba(255,255,255,0.55); }
.svc-card--dark:hover { border-color: var(--green-mid); }

.svc-icon {
  font-size: 2rem;
  margin-bottom: 1.4rem;
  display: block;
  filter: none;
}
.svc-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.gal-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gal-btn {
  padding: 9px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  background: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.22s;
}
.gal-btn:hover  { border-color: var(--green-main); color: var(--green-main); }
.gal-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--bg-light);
  cursor: pointer;
}
.gal-item.gal-tall { grid-row: span 2; }
.gal-item.gal-wide { grid-column: span 2; }

.gal-item img {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease);
}
.gal-item:hover img { transform: scale(1.06); }

.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,43,26,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.32s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
}
.gal-item.hidden { display: none; }

.gal-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.gal-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--green-main);
  color: var(--green-main);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
}
.gal-more-btn:hover {
  background: var(--green-main);
  color: var(--white);
}
.gal-more-btn svg { transition: transform 0.22s; }
.gal-more-btn:hover svg { transform: translateY(3px); }

/* ============================================================
   WHY US
   ============================================================ */
.whyus {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.whyus-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 580px;
  box-shadow: var(--shadow-lg);
}
.whyus-content .section-heading { margin-bottom: 2.5rem; }
.whyus-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green-main);
  min-width: 32px;
  padding-top: 3px;
}
.why-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--section-pad) 0;
  background: var(--green-deep);
}
.section-head-center {
  text-align: center;
  margin-bottom: 64px;
}
.process .section-label { color: var(--green-bright); text-align: center; }
.process .section-heading { color: var(--white); }
.process .section-heading em { color: var(--green-bright); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.proc-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: all 0.32s var(--ease);
}
.proc-step:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(58,184,114,0.25);
  transform: translateY(-5px);
}
.proc-num {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  margin-bottom: 20px;
}
.proc-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.proc-step h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.proc-step p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.reviews .section-head-center .section-label { color: var(--green-main); }

.reviews-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  align-items: start;
}
.review-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.review-card:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.review-card--feature {
  background: var(--green-deep);
  border-color: rgba(58,184,114,0.2);
  padding: 44px 40px;
}
.review-card--feature .rev-text   { color: rgba(255,255,255,0.65); }
.review-card--feature .rev-author strong { color: var(--white); }
.review-card--feature .rev-author span   { color: rgba(255,255,255,0.4); }

.rev-quote {
  position: absolute;
  top: 10px; right: 24px;
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 1;
  color: rgba(58,184,114,0.1);
  pointer-events: none;
}
.rev-stars {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--green-main);
  margin-bottom: 18px;
}
.rev-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.rev-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-main);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-author strong { display: block; font-size: 0.88rem; color: var(--text); }
.rev-author span   { font-size: 0.76rem; color: var(--muted); }

/* ============================================================
   CTA FULL — Full-bleed image section
   ============================================================ */
.cta-full {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-full-img {
  position: absolute; inset: 0;
}
.cta-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,43,26,0.88) 0%, rgba(13,43,26,0.72) 100%);
}
.cta-full-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}
.cta-full-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.cta-full-content h2 em {
  font-style: italic;
  color: var(--green-bright);
}
.cta-full-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 2.4rem;
  font-weight: 300;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 1.2rem 0 2.5rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ci-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.ci-row:last-child { border-bottom: none; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; }
.ci-row strong { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 2px; }
.ci-row span   { font-size: 0.9rem; color: var(--muted); }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-field {
  margin-bottom: 20px;
}
.cf-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
  resize: vertical;
  appearance: none;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #b0bdb5; }
.cf-field select { color: var(--muted); cursor: pointer; }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--green-main);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,92,56,0.1);
}
.cf-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 16px 32px;
}
.cf-success {
  display: none;
  margin-top: 14px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-main);
  background: var(--green-tint);
  border: 1px solid var(--green-pale);
  border-radius: var(--r-md);
  padding: 14px;
}
.cf-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.55);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-serif {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 240px;
}
.footer-cols {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h6 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-col a,
.footer-col span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-bright); }

.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.85;
  margin-bottom: 14px;
}
.footer-partner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-partner-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.55;
  transition: opacity 0.25s;
}
.footer-partner-logo:hover { opacity: 0.8; }

/* Contact link styling inside ci-row */
.ci-row a {
  color: var(--green-main);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.ci-row a:hover { color: var(--green-dark); text-decoration: underline; }
.ci-row div { display: flex; flex-direction: column; gap: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — TABLET ≤1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-block { padding: 140px 40px 60px; }
  .hero-img-wrap   { height: 420px; }
  .hero-img-wrap::after { background: linear-gradient(to bottom, var(--green-deep) 0%, transparent 30%); }

  .about-top  { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { grid-template-columns: 1fr; }
  .about-img-big { height: 360px; }
  .about-img-stack { flex-direction: row; }

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

  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-item.gal-tall { grid-row: span 1; }
  .gal-item.gal-wide { grid-column: span 1; }

  .whyus-grid { grid-template-columns: 1fr; }
  .whyus-img  { height: 360px; }

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

  .reviews-row { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

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

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-cols { flex-wrap: wrap; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤680px
   ============================================================ */
@media (max-width: 680px) {
  :root { --section-pad: 60px; }

  .page-wrap  { padding: 0 20px; }
  .nav-wrap   { padding: 0 20px; }

  .burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    gap: 0;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--text);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-links a:last-child { border-bottom: none; margin-top: 8px; }
  .nav-cta-pill { background: var(--ink) !important; color: var(--white) !important; text-align: center; border-radius: var(--r-pill) !important; padding: 12px 0 !important; }
  .navbar:not(.scrolled) .nav-links { background: var(--green-deep); border-bottom-color: rgba(255,255,255,0.1); }
  .navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.08); }

  .hero-text-block { padding: 120px 20px 48px; }
  .hero-img-wrap   { height: 300px; }
  .hero-btns       { flex-direction: column; }
  .hero-badge      { bottom: 20px; right: 20px; padding: 14px 20px; }
  .hb-num          { font-size: 2rem; }

  .section-head-row  { flex-direction: column; }
  .section-head-desc { text-align: left; }

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

  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }

  .about-img-stack { flex-direction: column; }

  .process-steps { grid-template-columns: 1fr; }

  .cf-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

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

/* ============================================================
   INTERACTIVE ELEMENTS
   ============================================================ */

/* ---- Scroll progress bar ---- */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-main), var(--green-bright));
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ---- Floating CTA ---- */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--green-main);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(13,43,26,0.4);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s;
  z-index: 800;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.float-cta:hover { background: var(--green-dark); }

/* ---- Lightbox ---- */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,10,9,0.96);
  z-index: 9500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lb-progress {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  background: var(--green-bright);
  transition: width 0.25s ease;
}
.lb-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 100px;
  box-sizing: border-box;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 6px;
  opacity: 1;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lb-img-wrap img.lb-fade {
  opacity: 0;
  transform: scale(0.97);
}
.lb-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}
.lb-close:hover { background: rgba(255,255,255,0.15); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-nav:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-50%) scale(1.08);
}
.lb-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  text-align: center;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.lb-caption {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 4px;
}
.lb-counter {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ---- gallery items clickable ---- */
.gal-item { cursor: zoom-in; }

@media (max-width: 680px) {
  .float-cta { bottom: 20px; right: 16px; padding: 12px 18px; font-size: 0.85rem; }
  .lb-img-wrap { padding: 56px 16px 70px; }
  .lb-nav { width: 40px; height: 40px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
