/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root {
  --c-dark:    #1A1A18;
  --c-darkest: #111110;
  --c-cream:   #FAFAF7;
  --c-beige:   #F0EDE6;
  --c-warm:    #F5F2EB;
  --c-copper:  #8B6F47;
  --c-gold:    #D4AB6A;
  --c-forest:  #2C3E2D;
  --c-footer:  #1F2A1F;
  --c-gray:    #5A5A52;
  --c-div:     #E8E4DC;
  --c-num:     #D8D4CC;

  --nav-h: 72px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

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

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--c-cream);
  color: var(--c-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* =====================================================
   UTILITY
   ===================================================== */
.ovl-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--c-copper);
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  white-space: nowrap;
}

.btn--dark {
  background: var(--c-dark);
  color: var(--c-cream);
}
.btn--dark:hover {
  background: var(--c-darkest);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,26,24,.18);
}

.btn--light {
  background: var(--c-cream);
  color: var(--c-dark);
}
.btn--light:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(3px); }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mob-menu {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(340px, 100%);
  background: var(--c-dark);
  color: var(--c-cream);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.mob-menu.is-open { transform: translateX(0); }

.mob-menu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  height: var(--nav-h);
}

.mob-menu__logo {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.mob-menu__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mob-menu__close span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-cream);
  position: absolute;
}
.mob-menu__close span:first-child { transform: rotate(45deg); }
.mob-menu__close span:last-child  { transform: rotate(-45deg); }

.mob-menu__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 0 28px;
}

.mob-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 0;
  gap: 4px;
}

.mob-menu__link {
  display: block;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  padding: 10px 0;
  color: var(--c-cream);
  transition: opacity 0.15s;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mob-menu__link:last-child  { border-bottom: none; }
.mob-menu__link:hover       { opacity: 0.7; }
.mob-menu__link--dim        { opacity: 0.45; font-size: 16px; }
.mob-menu__link--dim:hover  { opacity: 0.65; }

.mob-menu__foot {
  margin-top: auto;
  padding: 32px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mob-menu__phone {
  font-size: 24px;
  font-weight: 500;
  color: var(--c-cream);
}

.mob-menu__cta { justify-content: center; }

.mob-menu__lang {
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.4;
}
.lang-on { opacity: 1; font-weight: 600; }

.mob-menu__bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(2px);
}
.mob-menu__bg.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* =====================================================
   HEADER
   ===================================================== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.hdr.hdr--scrolled {
  box-shadow: 0 1px 0 var(--c-div), 0 4px 24px rgba(26,26,24,.06);
}

.hdr__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hdr__logo img { height: 84px; width: auto; }

.hdr__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.hdr__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
  padding: 6px 11px;
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.hdr__link:hover { background: var(--c-beige); }
.hdr__link.is-active { font-weight: 600; }

.hdr__right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.hdr__lang {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-gray);
  cursor: pointer;
  user-select: none;
}

.hdr__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
  transition: color 0.15s;
}
.hdr__phone:hover { color: var(--c-copper); }

.hdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hdr__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-dark);
  transition: transform 0.3s, opacity 0.3s;
}

/* =====================================================
   HERO v2
   ===================================================== */
.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 100svh;
  padding-top: var(--nav-h);
}

.hero__left {
  background: var(--c-warm);
  display: flex;
  flex-direction: column;
  padding: 60px 64px 60px 80px;
}

.hero__page-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--c-copper);
  text-transform: uppercase;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 0 40px;
  flex: 1;
  justify-content: center;
}

.hero__h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 4.2vw, 72px);
  font-weight: 300;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  display: flex;
  flex-direction: column;
}

.hero__h1-line--italic {
  font-style: italic;
  font-weight: 300;
}

.hero__sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-gray);
  max-width: 420px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__ghost-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.hero__ghost-cta:hover { color: var(--c-copper); }

.hero__badges {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-gray);
  opacity: 0.65;
  text-transform: uppercase;
  line-height: 1.6;
}

.hero__scroll-hint {
  font-size: 18px;
  color: var(--c-copper);
  animation: bounce 2.5s ease-in-out infinite;
  align-self: flex-start;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =====================================================
   DIFFERENTIATORS
   ===================================================== */
.diff {
  background: var(--c-cream);
  border-top: 1px solid var(--c-div);
}

.diff__top-div { height: 80px; }

.diff__cols {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: stretch;
}

.diff__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 52px;
  padding-bottom: 48px;
}
.diff__col:first-child { padding-left: 0; }
.diff__col:last-child  { padding-right: 0; }

.diff__divider {
  width: 1px;
  background: var(--c-div);
  flex-shrink: 0;
  margin: 0;
}

.diff__num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--c-copper);
}

.diff__spacer-lg { height: 32px; }
.diff__spacer-sm { height: 16px; }

.diff__title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-dark);
}

.diff__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-gray);
}

.diff__grow { flex: 1; min-height: 24px; }

.diff__cert-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-copper);
  border: 1px solid var(--c-div);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  margin-top: 24px;
  align-self: flex-start;
}

.diff__bot-div { height: 40px; }

.diff__bot-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 80px 80px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--c-div);
}
.diff__bot-spacer { flex: 1; }

/* =====================================================
   REALIZĂRI
   ===================================================== */
.realiz {
  background: var(--c-beige);
  padding: 80px 80px 100px;
}

.realiz__hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 56px;
}

.realiz__hdr-left { display: flex; flex-direction: column; gap: 12px; }

.realiz__h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-dark);
}

.realiz__hdr-right {
  max-width: 360px;
  padding-bottom: 6px;
}

.realiz__hdr-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-gray);
}

.realiz__row1 {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto 16px;
}

.realiz__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.realiz__large,
.realiz__small,
.realiz__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}

.realiz__large { aspect-ratio: 16/10; }
.realiz__small { aspect-ratio: 3/3; }
.realiz__tile  { aspect-ratio: 4/3; }

.realiz__large img,
.realiz__small img,
.realiz__tile  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.realiz__large:hover img,
.realiz__small:hover img,
.realiz__tile:hover  img {
  transform: scale(1.04);
}

.realiz__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(17,17,16,.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.realiz__label-name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.realiz__label-meta {
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

.realiz__label--sm .realiz__label-name { font-size: 13px; }

/* =====================================================
   PROCESS
   ===================================================== */
.proc {
  background: var(--c-cream);
  padding-top: 100px;
}

.proc__hdr {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px 64px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proc__h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-dark);
}

.proc__steps {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--c-div);
  border-bottom: 1px solid var(--c-div);
}

.proc__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px 36px 40px;
  border-right: 1px solid var(--c-div);
  transition: filter 0.2s;
}
.proc__step:last-child { border-right: none; }
.proc__step:hover { filter: brightness(0.975); }

.proc__step--warm  { background: var(--c-warm); }
.proc__step--white { background: #fff; }

.proc__num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--c-copper);
}

.proc__gap    { height: 28px; }
.proc__gap-sm { height: 14px; }
.proc__grow   { flex: 1; min-height: 32px; }

.proc__step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--c-dark);
}

.proc__step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-gray);
}

.proc__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-copper);
  opacity: 0.4;
  align-self: flex-end;
}

.proc__divider {
  height: 1px;
  background: var(--c-div);
  max-width: 1400px;
  margin: 0 auto;
}

.proc__bot {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 80px 100px;
  display: flex;
  justify-content: flex-end;
}

/* =====================================================
   COMPARISON
   ===================================================== */
.comp {
  background: var(--c-beige);
  padding: 100px 80px;
}

.comp__hdr {
  max-width: 1400px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp__h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-dark);
}

.comp__tbl {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-div);
}

.comp__row {
  display: grid;
  grid-template-columns: 1.6fr 2fr 2fr;
}

.comp__row--head  { background: var(--c-dark); color: var(--c-cream); }
.comp__row--warm  { background: var(--c-warm); }
.comp__row--white { background: #fff; }

.comp__cell {
  padding: 18px 28px;
  border-right: 1px solid var(--c-div);
  display: flex;
  align-items: center;
}
.comp__cell:last-child { border-right: none; }
.comp__row--head .comp__cell { border-right-color: rgba(255,255,255,.08); }

.comp__th-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
}

.comp__col-ssh {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.comp__col-classic {
  font-size: 13px;
  opacity: 0.5;
}

.comp__crit {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-dark);
}

.comp__val-ssh {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-forest);
}

.comp__val-classic {
  font-size: 14px;
  color: var(--c-gray);
}

.comp__bot {
  max-width: 1400px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.comp__note {
  font-size: 12px;
  color: var(--c-gray);
  opacity: 0.6;
}

/* =====================================================
   CALCULATOR
   ===================================================== */
.calc {
  background: var(--c-cream);
  padding: 100px 80px;
  border-top: 1px solid var(--c-div);
}

.calc__hdr {
  max-width: 800px;
  margin: 0 auto 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.calc__h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 2.8vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-dark);
}

.calc__sub {
  font-size: 15px;
  color: var(--c-gray);
  line-height: 1.6;
}

.calc__body {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

/* Preview */
.calc__preview {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.calc__prev-card {
  background: var(--c-dark);
  color: var(--c-cream);
  border-radius: var(--r-lg);
  padding: 40px 36px;
}

.calc__prev-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
}

.calc__prev-price {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 300;
  margin-top: 16px;
  line-height: 1.2;
}

.calc__prev-div {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 28px 0;
}

.calc__prev-specs { display: flex; flex-direction: column; gap: 14px; }

.calc__prev-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc__prev-key { font-size: 12px; opacity: 0.45; }
.calc__prev-val { font-size: 13px; font-weight: 500; }

.calc__prev-disc {
  font-size: 11px;
  line-height: 1.6;
  color: var(--c-gray);
  margin-top: 20px;
  opacity: 0.7;
}

/* Form */
.calc__form {
  background: var(--c-warm);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.calc__field--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.calc__field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gray);
}

.calc__field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc__area-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dark);
}

.calc__select-wrap { position: relative; }

.calc__select {
  width: 100%;
  appearance: none;
  background: #fff;
  border: 1px solid var(--c-div);
  border-radius: var(--r-sm);
  padding: 12px 40px 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--c-dark);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.calc__select:focus { border-color: var(--c-copper); }

.calc__caret {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: var(--c-gray);
}

/* Range slider */
.calc__slider-wrap { padding: 4px 0; }

.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--c-div);
  outline: none;
  cursor: pointer;
}

.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-dark);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--c-div);
  transition: box-shadow 0.2s;
}
.calc__slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 2px var(--c-copper);
}

.calc__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-dark);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--c-div);
}

.calc__slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--c-gray);
  opacity: 0.6;
}

/* Toggles */
.calc__toggles {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.calc__tog {
  flex: 1;
  min-width: fit-content;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--c-div);
  color: var(--c-dark);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.calc__tog:hover         { border-color: var(--c-copper); }
.calc__tog--active       { background: var(--c-dark); color: var(--c-cream); border-color: var(--c-dark); }

/* Stepper */
.calc__stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--c-div);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #fff;
}

.calc__step-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--c-dark);
  transition: background 0.15s;
  border: none;
  background: none;
  cursor: pointer;
}
.calc__step-btn:hover { background: var(--c-beige); }

.calc__step-val {
  min-width: 40px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-left: 1px solid var(--c-div);
  border-right: 1px solid var(--c-div);
  padding: 0 8px;
  height: 40px;
  line-height: 40px;
}

.calc__submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.tst {
  background: var(--c-warm);
  padding: 100px 80px;
  border-top: 1px solid var(--c-div);
}

.tst__hdr {
  max-width: 1400px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tst__h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-dark);
}

/* Featured */
.tst__feat {
  max-width: 1400px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-div);
  background: #fff;
}

.tst__feat-photo { position: relative; min-height: 320px; }
.tst__feat-photo img { width: 100%; height: 100%; object-fit: cover; }

.tst__feat-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 52px;
  gap: 32px;
}

.tst__feat-quote-wrap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tst__big-q {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  line-height: 0.7;
  color: var(--c-copper);
  opacity: 0.3;
  flex-shrink: 0;
  margin-top: -8px;
}

.tst__feat-quote {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--c-dark);
}

.tst__feat-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tst__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.tst__avatar--lg { width: 52px; height: 52px; }

.tst__feat-name { font-size: 15px; font-weight: 600; color: var(--c-dark); }
.tst__feat-loc  { font-size: 12px; color: var(--c-gray); margin-top: 2px; }

/* 3-col grid */
.tst__grid {
  max-width: 1400px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tst__card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--c-div);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.tst__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,26,24,.08);
}

.tst__stars { font-size: 13px; color: var(--c-copper); letter-spacing: 0.1em; }
.tst__quote { font-size: 14px; line-height: 1.7; color: var(--c-dark); flex: 1; }
.tst__card-div { height: 1px; background: var(--c-div); }

.tst__card-meta { display: flex; align-items: center; gap: 12px; }
.tst__card-name { font-size: 13px; font-weight: 600; color: var(--c-dark); }
.tst__card-loc  { font-size: 11px; color: var(--c-gray); margin-top: 2px; }

/* Certs */
.tst__certs {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--c-div);
  padding-top: 56px;
}

.tst__cert-row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.tst__cert { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }

.tst__cert-ico {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.tst__cert-ico--serif { font-family: 'Fraunces', serif; font-weight: 400; }
.tst__cert-ico--bold  { font-size: 16px; letter-spacing: 0.04em; }

.tst__cert-txt {
  font-size: 10px;
  color: var(--c-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =====================================================
   BLOG
   ===================================================== */
.blog {
  background: var(--c-cream);
  padding: 100px 80px;
  border-top: 1px solid var(--c-div);
}

.blog__hdr {
  max-width: 1400px;
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.blog__hdr-left { display: flex; flex-direction: column; gap: 12px; }

.blog__h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-dark);
}

.blog__hdr-desc {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-gray);
  padding-bottom: 6px;
}

.blog__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog__card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-div);
  background: #fff;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.blog__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(26,26,24,.1);
}

.blog__img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.blog__card:hover .blog__img { transform: scale(1.05); }

.blog__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-copper);
}

.blog__title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--c-dark);
}

.blog__exc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-gray);
  flex: 1;
}

.blog__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--c-gray);
  opacity: 0.65;
  padding-top: 8px;
  border-top: 1px solid var(--c-div);
}

.blog__dot { opacity: 0.4; }

.blog__foot {
  max-width: 1400px;
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
}

.blog__all-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-copper);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog__all-link:hover { color: var(--c-dark); }

.arr-copper { display: inline-block; transition: transform 0.2s; }
.blog__all-link:hover .arr-copper { transform: translateX(3px); }

/* =====================================================
   FINAL CTA
   ===================================================== */
.fcta {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-dark);
}

.fcta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fcta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,16,.5) 0%,
    rgba(17,17,16,.4) 100%
  );
}

.fcta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 100px 40px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fcta__ovl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
}

.fcta__h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.fcta__sub {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.75;
  max-width: 520px;
}

.fcta__ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.fcta__btn-prim { font-size: 15px; padding: 16px 32px; }

.fcta__phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.fcta__phone-link:hover { opacity: 1; }

.fcta__reas {
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 0.08em;
}

/* =====================================================
   FOOTER
   ===================================================== */
.ftr {
  background: var(--c-footer);
  color: var(--c-cream);
  padding: 80px 0 0;
}

.ftr__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.ftr__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 80px;
  padding-bottom: 64px;
}

.ftr__logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ftr__logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212,171,106,.35);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--c-gold);
  flex-shrink: 0;
}

.ftr__logo-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-cream);
  opacity: 0.8;
}

.ftr__tagline {
  font-size: 13px;
  color: rgba(250,250,247,.45);
  line-height: 1.6;
  margin-bottom: 24px;
}

.ftr__brand-div {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin-bottom: 24px;
}

.ftr__contact-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: center;
}

.ftr__contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,.3);
}

.ftr__contact-val {
  font-size: 13px;
  color: var(--c-cream);
  opacity: 0.75;
  transition: opacity 0.15s;
}
.ftr__contact-val:hover { opacity: 1; }

.ftr__col-title {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,247,.3);
  margin-bottom: 24px;
}

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

.ftr__link {
  font-size: 14px;
  color: rgba(250,250,247,.65);
  transition: color 0.15s;
}
.ftr__link:hover { color: var(--c-cream); }

.ftr__news-sub {
  font-size: 13px;
  color: rgba(250,250,247,.45);
  margin-bottom: 20px;
  line-height: 1.6;
}

.ftr__nl-form {
  display: flex;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 28px;
}

.ftr__nl-input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: none;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 13px;
  color: var(--c-cream);
  outline: none;
}
.ftr__nl-input::placeholder { color: rgba(250,250,247,.3); }
.ftr__nl-input:focus { background: rgba(255,255,255,.08); }

.ftr__nl-btn {
  background: var(--c-gold);
  color: var(--c-dark);
  padding: 12px 18px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s;
  border: none;
  white-space: nowrap;
}
.ftr__nl-btn:hover { filter: brightness(1.08); }

.ftr__social { display: flex; align-items: center; gap: 12px; }

.ftr__social-lbl {
  font-size: 11px;
  color: rgba(250,250,247,.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ftr__social-ico {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,247,.55);
  transition: color 0.15s, border-color 0.15s;
}
.ftr__social-ico:hover { color: var(--c-gold); border-color: rgba(212,171,106,.4); }

.ftr__divider { height: 1px; background: rgba(255,255,255,.07); }

.ftr__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.ftr__copy { font-size: 12px; color: rgba(250,250,247,.3); }

.ftr__bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ftr__legal-link {
  font-size: 12px;
  color: rgba(250,250,247,.35);
  transition: color 0.15s;
}
.ftr__legal-link:hover { color: rgba(250,250,247,.75); }

.ftr__legal-sep { width: 1px; height: 12px; background: rgba(255,255,255,.12); }

.ftr__lang-sw {
  font-size: 12px;
  color: rgba(250,250,247,.35);
  letter-spacing: 0.06em;
  cursor: pointer;
}

/* =====================================================
   RESPONSIVE — 1200px
   ===================================================== */
@media (max-width: 1200px) {
  .hdr__inner    { padding: 0 32px; }
  .hero__left    { padding: 60px 48px 60px 48px; }
  .diff__cols    { padding: 0 40px; }
  .diff__bot-bar { padding: 40px 40px 80px; }
  .realiz        { padding: 80px 40px 100px; }
  .proc__hdr     { padding: 0 40px 64px; }
  .proc__bot     { padding: 40px 40px 100px; }
  .comp          { padding: 100px 40px; }
  .calc          { padding: 100px 40px; }
  .tst           { padding: 100px 40px; }
  .blog          { padding: 100px 40px; }
  .ftr__inner    { padding: 0 40px; }
  .ftr__cols     { gap: 48px; }
  .diff__col     { padding: 0 36px 48px; }
  .proc__step    { padding: 40px 28px 32px; }
}

/* =====================================================
   RESPONSIVE — 960px
   ===================================================== */
@media (max-width: 960px) {
  :root { --nav-h: 64px; }

  .hdr__nav, .hdr__phone, .hdr__lang, .hdr__cta { display: none; }
  .hdr__burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 55vw;
    min-height: auto;
  }
  .hero__left  { padding: 60px 40px 48px; }
  .hero__right { min-height: 55vw; }

  .diff__cols {
    flex-direction: column;
    padding: 0 40px;
  }
  .diff__col {
    padding: 32px 0;
    border-bottom: 1px solid var(--c-div);
  }
  .diff__col:last-child { border-bottom: none; }
  .diff__divider { display: none; }

  .realiz__row1 { grid-template-columns: 1fr; }
  .realiz__large, .realiz__small { aspect-ratio: 16/9; }
  .realiz__row2 { grid-template-columns: 1fr 1fr; }

  .proc__steps { flex-direction: column; }
  .proc__step {
    border-right: none;
    border-bottom: 1px solid var(--c-div);
    padding: 36px 40px;
  }
  .proc__step:last-child { border-bottom: none; }

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

  .calc__body     { grid-template-columns: 1fr; }
  .calc__preview  { position: static; }

  .tst__feat  { grid-template-columns: 1fr; }
  .tst__feat-photo { min-height: 280px; }
  .tst__grid  { grid-template-columns: 1fr; }

  .blog__grid { grid-template-columns: 1fr; }
  .blog__hdr  { flex-direction: column; align-items: flex-start; }

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

/* =====================================================
   RESPONSIVE — 640px
   ===================================================== */
@media (max-width: 640px) {
  .hdr__inner { padding: 0 20px; }
  .hero__left { padding: 48px 24px 40px; }

  .diff__cols    { padding: 0 24px; }
  .diff__bot-bar { padding: 32px 24px 64px; }

  .realiz        { padding: 64px 24px 80px; }
  .realiz__row2  { grid-template-columns: 1fr; }

  .proc__hdr  { padding: 0 24px 48px; }
  .proc__step { padding: 28px 24px; }
  .proc__bot  { padding: 32px 24px 80px; }

  .comp { padding: 80px 24px; }
  .comp__row { grid-template-columns: 1fr; }
  .comp__row--head { display: none; }
  .comp__cell { border-right: none; border-bottom: 1px solid var(--c-div); }
  .comp__cell:last-child { border-bottom: none; }

  .calc { padding: 80px 24px; }
  .tst  { padding: 80px 24px; }
  .blog { padding: 80px 24px; }
  .ftr__inner { padding: 0 24px; }

  .tst__cert-row { gap: 28px; }
  .tst__feat-body { padding: 32px 28px; }

  .fcta__content { padding: 80px 24px; }
}
