/* ============================================================
   WePack - style.css
   Base styles, LTR layout (English & Russian)
   Mobile-first responsive design
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  /* Colors - warm minimalism */
  --bg:           #FFFFFF;
  --bg-alt:       #FBF8F6;
  --bg-card:      #FFFFFF;
  --text:         #2C1810;
  --text-mid:     #6B4438;
  --text-soft:    #9E7B6E;
  --accent:       #C4704F;
  --accent-dark:  #A85A3C;
  --accent-light: #E0A07C;
  --accent-pale:  rgba(196, 112, 79, 0.08);
  --border:       #EAE0D8;
  --border-light: #F5F0EB;
  --white:        #FFFFFF;
  --bg-dark:      #1C0D08;
  --shadow-sm:    0 1px 3px rgba(44, 24, 16, 0.07), 0 1px 2px rgba(44, 24, 16, 0.04);
  --shadow:       0 4px 16px rgba(44, 24, 16, 0.08);
  --shadow-lg:    0 10px 40px rgba(44, 24, 16, 0.10);

  /* Typography - DM Sans sans-serif headings */
  --font-head: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w:     1160px;
  --radius:    12px;
  --radius-sm: 6px;
  --radius-lg: 20px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  0.28s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }

/* --- Layout Utilities ------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { overflow: hidden; }

.section-wrap {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 580px;
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(196, 112, 79, 0.30);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 28px rgba(196, 112, 79, 0.40);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  box-shadow: none;
}

.btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent-light);
  background: var(--accent-pale);
  transform: translateY(-2px);
}

/* --- Header ----------------------------------------------- */
.header {
  z-index: 200;
  background: rgba(255, 252, 250, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(234, 224, 216, 0.65);
  transition: box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
}

.header.is-scrolled {
  background: rgba(255, 252, 250, 0.97);
  box-shadow: 0 2px 28px rgba(44, 24, 16, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.logo em {
  font-style: normal;
  color: var(--accent);
}

.header .logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo__img {
  height: 75px;
  width: auto;
}

@media (max-width: 768px) {
  .header__inner {
    height: 84px;
  }

  .logo__img {
    height: 65px;
  }
}

@media (max-width: 480px) {
  .header__inner {
    height: 72px;
  }

  .logo__img {
    height: 50px;
  }
}

/* Premium segmented language control */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(251, 248, 246, 0.9);
  border-radius: 10px;
  padding: 3px;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(44, 24, 16, 0.05);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 28px;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--text-soft);
  transition: all var(--dur) var(--ease);
}

.lang-link:hover {
  color: var(--text);
  background: rgba(196, 112, 79, 0.07);
}

.lang-link.active {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 1px 4px rgba(44, 24, 16, 0.10);
}

/* --- Navigation (desktop) --------------------------------- */
.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur) var(--ease);
}

.nav__link:hover {
  color: var(--accent);
  background: var(--accent-pale);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

/* Header CTA button (desktop only) */
.header__cta {
  padding: 9px 22px;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Groups CTA + lang-switcher + hamburger toggle */
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger - visible only on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease),
              opacity  0.25s var(--ease),
              width    0.25s var(--ease);
}

/* bars 1 and 3 pivot to form × */
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* --- Mobile drawer ---------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear var(--dur);
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.36);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 88vw);
  background: var(--white);
  padding: 88px 28px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(44, 24, 16, 0.14);
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: none;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.mobile-menu__link {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  letter-spacing: -0.01em;
  transition: background var(--dur) var(--ease),
              color    var(--dur) var(--ease);
}

.mobile-menu__link:hover {
  background: var(--accent-pale);
  color: var(--accent);
}

.mobile-menu__lang {
  display: flex;
  gap: 4px;
  padding: 20px 12px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 28px;
}

/* --- Hero ------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  padding: 60px 0 40px;
  background: linear-gradient(160deg, #FFFFFF 0%, #FDF8F5 60%, #FAF2EC 100%);
  position: relative;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

/* Warm blurred circle - top right */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(196, 112, 79, 0.10) 0%,
    transparent 68%);
  top: -250px;
  right: -150px;
  pointer-events: none;
}

/* Subtle warm blob - bottom left */
.hero::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(225, 195, 160, 0.12) 0%,
    transparent 70%);
  bottom: -100px;
  left: 8%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* 2-column grid: text left, visual right */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-pale);
  border: 1px solid rgba(196, 112, 79, 0.22);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  max-width: none;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(15.5px, 1.6vw, 18px);
  line-height: 1.72;
  color: var(--text-mid);
  max-width: none;
  margin-bottom: 36px;
}

/* CTA button group */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Trust badges row */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
}

.trust-check {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

/* Hero visual column */
.hero__visual {
  position: relative;
}

.hero__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(44, 24, 16, 0.18),
              0 8px 20px rgba(44, 24, 16, 0.08);
  background: var(--bg-alt);
}

.hero__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* Floating "After" badge - top right of image */
.hero__img-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(196, 112, 79, 0.18);
}

/* Floating stat chip - bottom left of image */
.hero__stat {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 10px 36px rgba(44, 24, 16, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 3px;
}

.hero__stat span {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.35;
}

/* --- Services --------------------------------------------- */
.services {
  background: var(--white);
}

.services-header {
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.service-card:hover {
  background: var(--white);
  border-color: var(--accent-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-pale);
  border: 1px solid rgba(196, 112, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--text-mid);
}

/* --- Gallery ---------------------------------------------- */
.gallery {
  background: var(--bg-alt);
}

.gallery-header {
  margin-bottom: 44px;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.gallery-tab {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  transition: all var(--dur) var(--ease);
}

.gallery-tab:hover {
  border-color: var(--accent-light);
  color: var(--accent);
}

.gallery-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
  animation: fadeUp 0.3s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.ba-item {
  display: flex;
  flex-direction: column;
}

.ba-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

/* Video slides - identical sizing to .ba-img */
.ba-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.ba-caption {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 10px;
  line-height: 1.5;
}

/* --- Gallery carousel ------------------------------------- */
.ba-carousel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  /* contain:paint forces the GPU compositor to clip all descendant layers
     (including will-change:transform children) to this element's border box */
  contain: paint;
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
}

/* width:100% keeps translateX(-N*100%) relative to one slide width */
.ba-slides {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 0;
  transition: transform 0.38s var(--ease);
  will-change: transform;
}

/* flex-basis:100% is an exact size; flex-shrink:0 prevents compression;
   min-width:100% guards against any implicit shrink in edge-case layouts */
.ba-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
}

/* Carousel arrows - hidden until multiple slides */
.ba-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease);
  user-select: none;
}

.ba-arrow--prev { left: 8px; }
.ba-arrow--next { right: 8px; }

.ba-carousel.has-multiple .ba-arrow {
  opacity: 1;
  pointer-events: auto;
}

.ba-arrow:hover {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent-light);
}

.ba-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(28, 13, 8, 0.55);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  pointer-events: none;
  display: none;
}

.ba-carousel.has-multiple .ba-counter {
  display: block;
}

/* --- Lightbox --------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(28, 13, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  /* display controlled via JS style.display — do not set here */
  transition: opacity 0.18s var(--ease);
}

.lightbox__img.is-loading {
  opacity: 0;
}

/* Video in lightbox - controls visible, same constraints as image */
.lightbox__video {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  /* display controlled via JS style.display - do not set here */
  outline: none;
  background: #000;
}

.lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 501;
  transition: background var(--dur) var(--ease);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.lightbox__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 501;
  transition: background var(--dur) var(--ease);
  user-select: none;
}

.lightbox__arrow--prev { left: 16px; }
.lightbox__arrow--next { right: 16px; }

.lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.lightbox__arrow[hidden],
.lightbox__counter[hidden] {
  display: none;
}

.lightbox__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .lightbox { padding: 60px 16px; }
  .lightbox__arrow--prev { left: 6px; }
  .lightbox__arrow--next { right: 6px; }
  .lightbox__arrow { width: 40px; height: 40px; font-size: 26px; }
}

/* --- Testimonials ----------------------------------------- */
.testimonials {
  background: var(--bg-alt);
}

.testimonials__header {
  margin-bottom: 52px;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--dur) var(--ease),
              transform  var(--dur) var(--ease);
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
  font-size: 15px;
  color: #E8A838;
  line-height: 1;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text-mid);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1.5px solid rgba(196, 112, 79, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-head);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.testimonial-city {
  font-size: 12.5px;
  color: var(--text-soft);
  font-weight: 400;
  margin-top: 1px;
}

/* --- Who it's for ----------------------------------------- */
.who-for {
  background: var(--white);
}

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

.who-for__text .section-sub {
  font-size: 18px;
  max-width: none;
}

.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.who-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  border: 1px solid var(--border-light);
}

.who-for__visual {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
}

.who-quote {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}

.who-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--accent-light);
  border-radius: 2px;
}

/* --- Why us ----------------------------------------------- */
.why-us {
  background: var(--bg-alt);
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 4px;
}

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

.why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--accent-pale);
  border: 1px solid rgba(196, 112, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 1px;
}

.why-body strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.why-body span {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* --- How it works ----------------------------------------- */
.how {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(10% + 1px);
  right: calc(10% + 1px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 4px;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1.5px solid rgba(196, 112, 79, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
  transition: all var(--dur) var(--ease);
}

.step:hover .step__num {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

.step h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.58;
}

/* --- Contact ---------------------------------------------- */
/* Two-class selector beats the responsive .section-wrap overrides */
.contact.section-wrap {
  background: var(--white);
  padding: 72px 0 96px;
  position: relative;
}

/* Warm gradient wash at the very top of the contact section */
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--accent-light));
  opacity: 0.55;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact__info {}

.contact__info h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact__info > p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}

.contact-link:hover {
  color: var(--accent);
}

.contact-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 7px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-alt);
  outline: none;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23C4704F' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--bg-alt);
  padding-right: 44px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 112, 79, 0.12);
  background: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-soft);
  opacity: 0.7;
}

.form-group input.is-invalid,
.form-group select.is-invalid {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.04);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
}

.field-error {
  display: block;
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  line-height: 1.4;
}

.form__error-msg {
  font-size: 14px;
  color: #c0392b;
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

.form__success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form__success.is-visible {
  display: block;
  animation: fadeUp 0.4s var(--ease) both;
}

.success-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.form__success h4 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.form__success p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer__brand .logo {
  color: var(--white);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer__brand .logo em {
  color: var(--accent-light);
}

.logo__img--footer {
  height: 80px;
  width: auto;
}

@media (max-width: 480px) {
  .logo__img--footer {
    height: 60px;
  }
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.40);
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--dur) var(--ease);
}

.footer__col ul li a:hover {
  color: var(--accent-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}

/* --- Scroll Reveal ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger > *:nth-child(2) { transition-delay: 0.06s; }
.stagger > *:nth-child(3) { transition-delay: 0.12s; }
.stagger > *:nth-child(4) { transition-delay: 0.18s; }
.stagger > *:nth-child(5) { transition-delay: 0.24s; }
.stagger > *:nth-child(6) { transition-delay: 0.30s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* --- Responsive ------------------------------------------- */

/* Large tablets */
@media (max-width: 1024px) {
  .section-wrap { padding: 72px 0; }

  /* Testimonials: 2 columns on tablet landscape */
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps::before { display: none; }

  .who-for__inner,
  .why-us__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__brand p {
    max-width: 500px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .section-wrap { padding: 56px 0; }

  .hero {
    min-height: auto;
    padding: 48px 0 56px;
  }

  /* Hero: single column on tablet/mobile */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__content {
    align-items: flex-start;
  }

  .hero__img {
    height: 320px;
  }

  /* Hide header CTA on mobile - hero has its own */
  .header__cta { display: none; }

  .nav { display: none; }
  .nav-toggle { display: flex; }

  /* Testimonials: 1 column on tablet */
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 36px 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-wrap { padding: 48px 0; }

  .hero { padding: 40px 0 48px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
  .hero__img { height: 260px; }
  .hero__ctas { gap: 10px; }
  .hero__ctas .btn { padding: 13px 22px; font-size: 14px; }

  .steps { grid-template-columns: 1fr; gap: 20px; }

  .gallery-tab { padding: 8px 16px; font-size: 13px; }

  .form-card { padding: 28px 20px; }

  .btn { padding: 14px 30px; font-size: 14.5px; }
}

/* ============================================================
   NEW SECTIONS - Hero Collage, Accordion, Team, Float CTA
   ============================================================ */

/* --- Hero Collage ----------------------------------------- */
.hero__collage {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 12px;
  height: 490px;
}

.hero__col-a {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(44, 24, 16, 0.18),
              0 8px 20px rgba(44, 24, 16, 0.08);
}

.hero__col-b {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__col-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.hero__col-a .hero__col-img {
  height: 100%;
  border-radius: 0;
}

.hero__col-b .hero__col-img {
  flex: 1;
  height: calc(50% - 6px);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* --- Info Accordion --------------------------------------- */
.info-cards {
  background: var(--white);
}

.info-cards__header {
  margin-bottom: 52px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease),
              box-shadow  var(--dur) var(--ease),
              background  var(--dur) var(--ease);
}

.acc-item[open] {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.acc-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.acc-trigger::-webkit-details-marker { display: none; }
.acc-trigger::marker { display: none; }

.acc-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(196, 112, 79, 0.15);
  transition: background var(--dur) var(--ease);
}

.acc-item[open] .acc-icon {
  background: var(--accent);
}

.acc-label {
  flex: 1;
}

.acc-arrow {
  font-size: 22px;
  color: var(--text-soft);
  margin-left: auto;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--dur) var(--ease),
              color     var(--dur) var(--ease);
  display: inline-block;
}

.acc-item[open] .acc-arrow {
  transform: rotate(90deg);
  color: var(--accent);
}

.acc-body {
  padding: 4px 22px 22px 76px;
  animation: fadeUp 0.2s var(--ease) both;
}

.acc-body p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.acc-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.acc-body ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.acc-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-weight: 700;
  font-size: 11px;
}

.acc-cta {
  margin-top: 4px;
  padding: 12px 28px;
  font-size: 14px;
}

/* Info visual panel */
.info-visual {
  position: sticky;
  top: 100px;
}

.info-img-stack {
  position: relative;
  padding-bottom: 32px;
}

.info-img--main {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.info-img--secondary {
  position: absolute;
  width: 56%;
  bottom: 0;
  right: -20px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  display: block;
}

.info-trust-chip {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(44, 24, 16, 0.14);
  border: 1px solid var(--border-light);
  text-align: center;
}

.info-trust-chip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 3px;
}

.info-trust-chip span {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
  line-height: 1.4;
}

/* --- Team section ----------------------------------------- */
.team {
  background: var(--bg-alt);
}

.team__header {
  margin-bottom: 52px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
}

.team-photo__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #EDE1D6 0%, #DBC9B5 100%);
  border: 1px solid var(--border);
}

.team-photo:not(.team-photo--featured) .team-photo__frame {
  aspect-ratio: 3 / 4;
}

.team-photo--featured .team-photo__frame {
  aspect-ratio: 2 / 3;
}

/* Placeholder icon when photo is missing */
.team-photo__frame::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text-soft);
  opacity: 0.55;
  letter-spacing: 0.03em;
  pointer-events: none;
  z-index: 0;
  padding: 16px;
  text-align: center;
}

.team-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.45s var(--ease);
}

.team-photo__frame:hover .team-photo__img {
  transform: scale(1.04);
}

.team-photo__label {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  letter-spacing: -0.01em;
}

.team-note {
  margin-top: 48px;
  text-align: center;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.team-note p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 520px;
}

.team-note__cta {
  padding: 11px 28px;
  font-size: 14px;
}

/* --- Floating contact button ------------------------------ */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 28px rgba(196, 112, 79, 0.45);
  text-decoration: none;
  transition: background   var(--dur) var(--ease),
              transform    var(--dur) var(--ease),
              box-shadow   var(--dur) var(--ease);
}

.float-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(196, 112, 79, 0.55);
}

.float-cta__icon {
  font-size: 16px;
  line-height: 1;
}

/* --- Responsive for new sections -------------------------- */

@media (max-width: 1100px) {
  .info-grid {
    grid-template-columns: 1fr 300px;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .hero__collage {
    height: 360px;
  }
}

@media (max-width: 768px) {
  /* Collage: hide side column, full-width main */
  .hero__collage {
    grid-template-columns: 1fr;
    height: 310px;
  }

  .hero__col-b { display: none; }

  .hero__col-a {
    border-radius: 18px;
  }

  /* Info grid: stack vertically */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-visual { display: none; }

  .acc-body {
    padding: 4px 18px 20px 18px;
  }

  /* Team: single column */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .team-photo:not(.team-photo--featured) .team-photo__frame,
  .team-photo--featured .team-photo__frame {
    aspect-ratio: 4 / 3;
  }

  .team-note {
    padding: 22px 20px;
  }

  /* Float button smaller on mobile */
  .float-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .hero__collage { height: 260px; }

  .team-grid { max-width: none; }

  .acc-trigger { font-size: 15px; padding: 16px 16px; gap: 12px; }
  .acc-icon { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
  .acc-body { padding: 2px 16px 18px 16px; }
}

/* ============================================================
   PROCESS STORY - photo grid with overlay captions
   ============================================================ */

.process-story {
  background: var(--bg-dark);
  padding-top: 52px;
  padding-bottom: 80px;
}

.process-story .section-label {
  color: var(--accent-light);
}

.process-intro {
  margin-bottom: 36px;
}

.process-intro .section-title {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #2a1a12;
  cursor: default;
}

.process-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
  opacity: 0.88;
}

.process-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.process-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 20px 22px;
  background: linear-gradient(
    to top,
    rgba(28, 13, 8, 0.88) 0%,
    rgba(28, 13, 8, 0.40) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}

.process-card__num {
  display: none;
}

.process-card__caption {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ============================================================
   SERVICES COMPACT - icon chips row
   ============================================================ */

.services-compact {
  background: var(--white);
}

.services-compact__header {
  margin-bottom: 28px;
  text-align: center;
}

.services-compact__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: -0.01em;
  transition: border-color var(--dur) var(--ease),
              background   var(--dur) var(--ease),
              color        var(--dur) var(--ease),
              transform    var(--dur) var(--ease);
}

.service-chip:hover {
  background: var(--white);
  border-color: var(--accent-light);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.service-chip__icon {
  font-size: 19px;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE - Process & Compact
   ============================================================ */

@media (max-width: 960px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .process-card {
    aspect-ratio: 4 / 3;
  }

  .process-card__caption {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .process-card {
    aspect-ratio: 3 / 4;
  }

  .process-card__caption {
    font-size: 17px;
  }

  .process-card__overlay {
    padding: 28px 14px 16px;
  }

  .service-chip {
    padding: 12px 18px;
    font-size: 13.5px;
    gap: 8px;
  }

  .service-chip__icon {
    font-size: 17px;
  }
}

/* ============================================================
   TESTIMONIALS COMPACT - single-slide carousel
   ============================================================ */

/* Two-class selector beats the responsive .section-wrap overrides */
.testimonials-compact.section-wrap {
  background: var(--bg-alt);
  padding: 60px 0 52px;
}

.tc-header {
  text-align: center;
  margin-bottom: 44px;
}

.tc-title {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 0;
}

/* Row: [←] [slider] [→] */
.tc-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.tc-slider {
  flex: 1;
  overflow: hidden;
  /* contain prevents slider from expanding the row */
  min-width: 0;
}

.tc-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.tc-slide {
  flex: 0 0 100%;
}

/* Card */
.tc-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Decorative large quote mark */
.tc-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 28px;
  font-family: var(--font-head);
  font-size: 96px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.tc-stars {
  display: flex;
  gap: 2px;
  font-size: 15px;
  color: #E8A838;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1;
}

.tc-text {
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.tc-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1.5px solid rgba(196, 112, 79, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

.tc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.tc-city {
  font-size: 12.5px;
  color: var(--text-soft);
  margin-top: 1px;
}

/* Arrows */
.tc-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color        var(--dur) var(--ease),
              box-shadow   var(--dur) var(--ease);
}

.tc-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(196, 112, 79, 0.35);
}

.tc-arrow:active {
  transform: scale(0.94);
}

/* Dot indicators */
.tc-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              width     var(--dur) var(--ease),
              border-radius var(--dur) var(--ease);
}

.tc-dot.is-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 600px) {
  .tc-wrapper {
    gap: 10px;
  }

  .tc-arrow {
    width: 38px;
    height: 38px;
  }

  .tc-card {
    padding: 26px 24px 22px;
  }

  .tc-card::before {
    font-size: 72px;
    right: 16px;
  }

  .tc-text {
    font-size: 15px;
  }
}

/* ============================================================
   About Modal
   ============================================================ */

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear var(--dur);
}

.about-modal.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.about-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.about-modal.is-open .about-modal__backdrop {
  opacity: 1;
}

.about-modal__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(44, 24, 16, 0.18), 0 8px 24px rgba(44, 24, 16, 0.08);
  width: 100%;
  max-width: 960px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.38s var(--ease), opacity 0.35s var(--ease);
}

.about-modal.is-open .about-modal__card {
  transform: none;
  opacity: 1;
}

.about-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-soft);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.about-modal__close:hover {
  background: var(--accent-pale);
  color: var(--accent);
  border-color: var(--accent-light);
}

.about-modal__body {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* Left column — images */
.about-modal__gallery {
  width: 44%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  background: var(--bg-alt);
}

.about-modal__main-img {
  flex: 1;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
}

.about-modal__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-modal__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex-shrink: 0;
}

.about-modal__thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Right column — text */
.about-modal__content {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  padding: 36px 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-modal__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 40px; /* breathing room from close button */
}

.about-modal__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
}

.about-modal__subtitle {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.about-modal__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-modal__section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0;
}

.about-modal__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.72;
  margin: 0;
}

.about-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-modal__list li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}

.about-modal__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.about-modal__checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.about-modal__checks li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.about-modal__check-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-modal__highlight {
  background: linear-gradient(135deg,
    rgba(196, 112, 79, 0.07) 0%,
    rgba(196, 168, 130, 0.11) 100%);
  border: 1px solid rgba(196, 112, 79, 0.18);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1.55;
  text-align: center;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .about-modal {
    padding: 0;
    align-items: flex-end;
  }

  .about-modal__card {
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    max-width: 100%;
  }

  .about-modal__body {
    flex-direction: column;
    overflow-y: auto;
  }

  .about-modal__gallery {
    width: 100%;
    flex-direction: row;
    flex-shrink: 0;
    height: 160px;
    padding: 10px;
    gap: 8px;
  }

  .about-modal__main-img {
    width: 50%;
    flex: none;
    border-radius: 10px;
  }

  .about-modal__thumbs {
    flex: 1;
    gap: 6px;
  }

  .about-modal__thumbs img {
    aspect-ratio: 1;
    border-radius: 7px;
  }

  .about-modal__content {
    padding: 20px 20px 32px;
    gap: 18px;
    overflow-y: visible;
    flex-shrink: 0;
  }

  .about-modal__header {
    padding-right: 44px;
  }

  .about-modal__title {
    font-size: 20px;
  }

  .about-modal__highlight {
    font-size: 13.5px;
  }
}
