/* ===========================================================
   LAIPTINIŲ RENOVACIJOS — Premium Editorial Design
   Color: Onyx + Bronze + Cream
   Type:  Fraunces (display) + Inter (body)
   =========================================================== */

:root {
  /* Core palette */
  --onyx-900: #0d0e10;
  --onyx-800: #16181c;
  --onyx-700: #1f2227;
  --onyx-600: #2a2e35;
  --ink-500: #4a4f57;
  --ink-400: #6b7079;
  --ink-300: #9aa0aa;

  --cream-50: #faf7f2;
  --cream-100: #f5f0e6;
  --cream-200: #ebe4d4;
  --paper: #ffffff;

  --bronze-700: #7a4f1a;
  --bronze-600: #9a6520;
  --bronze-500: #b8802b;   /* primary accent */
  --bronze-400: #cf9a44;
  --bronze-300: #e0b46a;

  --line: rgba(13, 14, 16, 0.08);
  --line-strong: rgba(13, 14, 16, 0.16);
  --line-light: rgba(255, 255, 255, 0.12);

  /* Type */
  --serif: 'Poppins', system-ui, -apple-system, sans-serif;
  --sans:  'Poppins', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: 32px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;

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

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--onyx-800);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ TYPOGRAPHY ============ */

.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-600);
  display: inline-block;
  margin-bottom: 24px;
}
.section-eyebrow.light { color: var(--bronze-400); }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--onyx-900);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--bronze-600);
}
.section-title.light { color: var(--cream-50); }
.section-title.light em { color: var(--bronze-400); }

.section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 620px;
  margin-bottom: 24px;
}

.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-500);
  margin-bottom: 16px;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--onyx-900);
  color: var(--cream-50);
  border: 1px solid var(--onyx-900);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bronze-500);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { border-color: var(--bronze-500); }
.btn-primary svg { transition: transform 0.4s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--cream-50);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--onyx-900);
  border-bottom: 1px solid var(--onyx-900);
  padding-bottom: 4px;
  transition: all 0.3s var(--ease);
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--bronze-600); border-color: var(--bronze-600); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============ NAV ============ */

.nav-wrap {
  /* position: fixed; */
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.nav-wrap.scrolled {
  padding: 12px 0;
  background: rgba(250, 247, 242, 0.95);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--onyx-900);
  color: var(--cream-50);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  border-radius: 50%;
  letter-spacing: -0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--onyx-900);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-600);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-500);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--bronze-600);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--onyx-900);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  background: var(--onyx-900);
  color: var(--cream-50);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--bronze-600); }
.nav-cta svg { transition: transform 0.3s var(--ease); }
.nav-cta:hover svg { transform: translateX(3px); }

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.85);
  animation: heroZoom 20s var(--ease-out) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,14,16,0.55) 0%, rgba(13,14,16,0.75) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(184,128,43,0.12), transparent 50%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  color: var(--cream-50);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--bronze-300);
  margin-bottom: 32px;
}
.eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--bronze-400);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  max-width: 1100px;
}
.hero-title span { display: block; }
.hero-title em {
  font-style: italic;
  color: var(--bronze-300);
  font-weight: 300;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.8);
  max-width: 540px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.meta-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
  color: var(--cream-50);
  letter-spacing: -0.02em;
}
.meta-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
}
.meta-div {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--bronze-400), transparent);
  position: relative;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 20px;
  background: var(--bronze-400);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(60px); opacity: 0; }
}

/* ============ TRUST BAR ============ */

.trust {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item svg {
  width: 28px; height: 28px;
  color: var(--bronze-600);
  flex-shrink: 0;
}
.trust-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.trust-value {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--onyx-900);
  letter-spacing: -0.01em;
}

/* ============ ABOUT ============ */

.about {
  padding: 140px 0;
  background: var(--cream-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-list {
  list-style: none;
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--onyx-800);
  font-weight: 400;
}
.about-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze-500);
  flex-shrink: 0;
}

.about-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.about-img-wrap {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(13, 14, 16, 0.25);
}
.about-img-wrap:first-child {
  top: 0; left: 0;
  width: 62%;
  aspect-ratio: 3/4;
  z-index: 1;
}
.about-img-wrap.about-img-2 {
  bottom: 0; right: 0;
  width: 62%;
  aspect-ratio: 3/4;
  z-index: 2;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }
.img-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cream-50);
  color: var(--onyx-900);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 999px;
}
.tag-after {
  background: var(--bronze-500);
  color: var(--cream-50);
}

.about-stat {
  position: absolute;
  bottom: 30%;
  left: 30%;
  z-index: 3;
  background: var(--onyx-900);
  color: var(--cream-50);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 40px -10px rgba(13,14,16,0.4);
}
.stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 50px;
  font-weight: 300;
  color: var(--bronze-400);
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(245, 240, 230, 0.7);
}

/* ============ SERVICES ============ */

.services {
  padding: 140px 0;
  background: var(--paper);
  position: relative;
}
.services-head {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-head .section-lead { text-align: center; }

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

.service-card {
  position: relative;
  padding: 48px 44px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze-500), transparent);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease);
  transform-origin: left;
}
.service-card:hover {
  background: var(--onyx-900);
  border-color: var(--onyx-900);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(13, 14, 16, 0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--bronze-600);
  position: absolute;
  top: 24px; right: 28px;
  transition: color 0.4s var(--ease);
}
.service-card:hover .service-num { color: var(--bronze-400); }

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 28px;
  transition: all 0.4s var(--ease);
}
.service-icon svg { width: 26px; height: 26px; color: var(--onyx-900); transition: color 0.4s var(--ease); }
.service-card:hover .service-icon {
  background: transparent;
  border-color: var(--bronze-500);
}
.service-card:hover .service-icon svg { color: var(--bronze-400); }

.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--onyx-900);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}
.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-500);
  margin-bottom: 28px;
  transition: color 0.4s var(--ease);
}
.service-card:hover h3 { color: var(--cream-50); }
.service-card:hover p { color: rgba(245, 240, 230, 0.7); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--onyx-900);
  transition: color 0.4s var(--ease);
}
.service-link span { transition: transform 0.3s var(--ease); }
.service-card:hover .service-link { color: var(--bronze-400); }
.service-card:hover .service-link span { transform: translateX(6px); }

/* ============ FEATURE / TECHNOLOGY ============ */

.feature {
  position: relative;
  padding: 140px 0;
  background: var(--onyx-900);
  overflow: hidden;
}
.feature-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 128, 43, 0.18), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(184, 128, 43, 0.08), transparent 50%);
}
.feature-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.feature-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.7);
  margin-bottom: 20px;
  font-weight: 300;
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
}
.fstat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fstat-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 50px;
  color: var(--bronze-400);
  line-height: 1;
  letter-spacing: -0.02em;
}
.fstat-lbl {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
  line-height: 1.4;
}

.feature-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.feature-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75) saturate(0.9);
  transition: transform 1s var(--ease);
}
.feature-visual:hover .feature-img { transform: scale(1.05); }
.feature-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(13, 14, 16, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(207, 154, 68, 0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--bronze-300);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze-400);
  box-shadow: 0 0 12px var(--bronze-400);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============ PROCESS ============ */

.process {
  padding: 140px 0;
  background: var(--cream-100);
}
.process-head {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-head .section-lead { text-align: center; }

.process-list {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.proc {
  text-align: left;
  padding: 24px;
}
.proc-num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--bronze-500);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.proc h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--onyx-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.proc p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
}
.proc-line {
  width: 60px;
  height: 1px;
  background: var(--line-strong);
  position: relative;
}
.proc-line::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--bronze-500);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ============ TESTIMONIALS ============ */

.testimonials {
  padding: 140px 0;
  background: var(--paper);
}
.t-head {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  padding: 40px 36px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.t-card::before {
  content: "“";
  font-family: var(--serif);
  font-size: 80px;
  color: var(--bronze-300);
  position: absolute;
  top: 8px;
  right: 24px;
  line-height: 1;
  opacity: 0.4;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(13, 14, 16, 0.18);
  border-color: var(--bronze-300);
}
.t-card-feature {
  background: var(--cream-50);
  border-color: var(--onyx-900);
}
.t-card-feature::before { color: var(--bronze-500); opacity: 0.6; }
.t-card-feature blockquote { color: var(--cream-50); }
.t-card-feature .t-name { color: var(--onyx-900); }
.t-card-feature .t-meta { color: var(--ink-400); }

.t-stars {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--bronze-500);
}
.t-card blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--onyx-800);
  font-weight: 400;
  letter-spacing: -0.005em;
  font-style: italic;
}
.t-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.t-card-feature figcaption { border-top-color: rgba(255,255,255,0.1); }
.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--onyx-900);
}
.t-meta {
  font-size: 12px;
  color: var(--ink-400);
  letter-spacing: 0.04em;
}

/* ============ CTA / CONTACT ============ */

.cta {
  padding: 140px 0;
  background: var(--cream-50);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}
.cta-contact:hover {
  border-color: var(--bronze-500);
  transform: translateX(4px);
}
.cta-contact svg {
  width: 22px; height: 22px;
  color: var(--bronze-600);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 4px;
}
.contact-value {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--onyx-900);
}

.cta-form {
  background: var(--paper);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 30px 60px -20px rgba(13, 14, 16, 0.08);
}
.form-row label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--onyx-900);
  padding: 14px 16px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--bronze-500);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(184, 128, 43, 0.08);
}

/* ============ FOOTER ============ */

.footer {
  background: var(--onyx-900);
  color: rgba(245, 240, 230, 0.7);
  padding: 100px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.brand-light .brand-mark {
  background: var(--cream-50);
  color: var(--onyx-900);
}
.brand-light .brand-name { color: var(--cream-50); }
.brand-light .brand-sub { color: var(--bronze-400); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 24px;
  max-width: 320px;
  color: rgba(245, 240, 230, 0.5);
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-400);
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(245, 240, 230, 0.65);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--bronze-300); }
.footer-col li:not(:has(a)) { font-size: 14px; color: rgba(245, 240, 230, 0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(245, 240, 230, 0.4);
}

/* ============ INNER PAGE HERO ============ */

.page-hero {
  position: relative;
  padding: 200px 0 120px;
  overflow: hidden;
  background: var(--onyx-900);
  color: var(--cream-50);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(0.85);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,14,16,0.6) 0%, rgba(13,14,16,0.85) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(184,128,43,0.15), transparent 50%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 24px 0 28px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--bronze-300);
  font-weight: 300;
}
.page-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-300);
  font-weight: 500;
}
.breadcrumb-line { width: 32px; height: 1px; background: var(--bronze-400); }

/* ============ REVEAL ANIMATIONS ============ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealIn 1s var(--ease-out) forwards;
}
.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.25s; }
.reveal.d3 { animation-delay: 0.4s; }
.reveal.d4 { animation-delay: 0.6s; }
.reveal.d5 { animation-delay: 0.75s; }
.reveal.d6 { animation-delay: 0.9s; }

@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-img {
  opacity: 0;
  transform: scale(0.96) translateY(30px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.reveal-img.in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Brand logo (Header / Footer image upload) */
.brand--has-logo { gap: 0; }
.brand-logo-img {
  display: block;
  width: 140px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

/* Form submission status notice (shown after admin-post.php redirect) */
.dmnt-form-notice {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.dmnt-form-notice--ok  { background: #e9f7ef; color: #1d6f42; border: 1px solid #b6e0c5; }
.dmnt-form-notice--err { background: #fdecea; color: #a61b1b; border: 1px solid #f3b9b3; }

/* Elementor editor preview: reveal JS doesn't run inside the iframe,
   so force everything visible to prevent blank widgets. */
body.elementor-editor-active .reveal,
body.elementor-editor-active .reveal-up,
body.elementor-editor-active .reveal-img {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ============ PASLAUGOS / SERVICES PAGE ============ */

.svc-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--cream-100);
  transition: all 0.3s var(--ease);
}
.svc-pill:hover {
  background: var(--bronze-500);
  border-color: var(--bronze-500);
  transform: translateY(-2px);
}
.svc-pill svg { width: 16px; height: 16px; color: var(--bronze-300); transition: color 0.3s; }
.svc-pill:hover svg { color: var(--cream-50); }

.svc-detail {
  padding: 120px 0;
  background: var(--cream-50);
}
.svc-detail.alt { background: var(--paper); }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-detail.alt .svc-detail-grid {
  direction: rtl;
}
.svc-detail.alt .svc-detail-grid > * {
  direction: ltr;
}

.svc-image-wrap {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(13, 14, 16, 0.2);
}
.svc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.svc-image-wrap:hover img { transform: scale(1.05); }
.svc-image-num {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 80px;
  color: var(--cream-50);
  line-height: 0.9;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  letter-spacing: -0.03em;
}

.svc-features {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--onyx-800);
}
.svc-features li:last-child { border-bottom: 0; }
.svc-features svg {
  width: 18px; height: 18px;
  color: var(--bronze-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-highlight {
  background: var(--onyx-900);
  color: var(--cream-50);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.svc-highlight-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,128,43,0.18), transparent 60%);
}
.svc-highlight-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.svc-highlight-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bronze-500);
  color: var(--cream-50);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  border-radius: 999px;
  margin-bottom: 24px;
}
.svc-highlight h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.svc-highlight h2 em { color: var(--bronze-300); font-style: italic; }
.svc-highlight p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.7);
  font-weight: 300;
}

/* ============ FAQ ============ */

.faq {
  padding: 140px 0;
  background: var(--cream-50);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--bronze-300); }
.faq-item[open] { border-color: var(--bronze-500); }
.faq-q {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--onyx-900);
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--onyx-900);
  transition: all 0.3s var(--ease);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item[open] .faq-icon { background: var(--bronze-500); border-color: var(--bronze-500); }
.faq-item[open] .faq-icon::before { background: var(--cream-50); }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-500);
}

/* ============ DARBAI / GALLERY ============ */

.gallery {
  padding: 140px 0;
  background: var(--cream-50);
}
.gallery-head {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--onyx-900);
  aspect-ratio: 4/3;
  display: block;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.4s;
}
.g-item:hover img { transform: scale(1.06); opacity: 0.9; }

/* Lightbox */
.dmnt-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13,14,16,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.dmnt-lightbox.is-open { opacity: 1; }
.dmnt-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.dmnt-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
}
.dmnt-lightbox-close:hover { background: rgba(255,255,255,0.15); }

/* ============ KONTAKTAI ============ */

.contact-section {
  padding: 140px 0;
  background: var(--cream-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-block {
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}
.contact-info-block:hover {
  border-color: var(--bronze-500);
  transform: translateX(4px);
}
.contact-info-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-info-head svg {
  width: 22px; height: 22px;
  color: var(--bronze-600);
}
.contact-info-head h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.contact-info-block p,
.contact-info-block a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--onyx-900);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.contact-info-block .small {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: 0;
}

/* CTA banner */
.cta-banner {
  background: var(--onyx-900);
  color: var(--cream-50);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,128,43,0.2), transparent 60%);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-banner h2 em { color: var(--bronze-300); font-style: italic; }
.cta-banner p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.7);
  margin-bottom: 36px;
  font-weight: 300;
}
.cta-banner-phone {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: var(--bronze-400);
  letter-spacing: -0.02em;
  margin-top: 8px;
  transition: color 0.3s var(--ease);
}
.cta-banner-phone:hover { color: var(--bronze-300); }


/* ============================================================
 *                      RESPONSIVE
 * Breakpoints:
 *   <= 1200px  small desktop / large tablet
 *   <= 1024px  tablet (collapse 2-col to 1, 4-col to 2)
 *   <= 768px   small tablet / large phone
 *   <= 640px   mobile (full single-column, mobile nav)
 *   <= 380px   tiny phone tweaks
 * ============================================================ */

/* ---------- TABLET (<=1024px) ---------- */
@media (max-width: 1024px) {
  :root { --gutter: 28px; }

  .container { padding: 0 var(--gutter); }

  /* Section padding scales down */
  .about, .services, .feature, .process, .testimonials, .cta,
  .faq, .gallery, .svc-detail, .contact-section { padding: 90px 0; }
  .svc-highlight, .cta-banner { padding: 80px 0; }

  /* Nav */
  .nav { padding: 0 var(--gutter); }
  .nav-links { gap: 24px; }
  .nav-cta { padding: 10px 18px; font-size: 12px; }

  /* Hero */
  .hero { min-height: 80vh; }
  .hero-inner { padding: 100px var(--gutter) 60px; }
  .hero-title { font-size: clamp(44px, 8vw, 64px); }

  /* Page hero */
  .page-hero { padding: 140px 0 70px; }

  /* Trust */
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 40px; }
  .trust-item:nth-child(2) { border-right: 0; }

  /* About — single column, stacked visuals */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual {
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
  }
  .about-visual .about-img-wrap,
  .about-visual .about-img-wrap:first-child,
  .about-visual .about-img-wrap.about-img-2 {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16/10;
  }
  .about-stat {
    position: relative;
    bottom: auto; left: auto;
    align-self: flex-start;
    margin-top: 4px;
  }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .service-card { padding: 36px 32px; }

  /* Feature */
  .feature-grid { grid-template-columns: 1fr; gap: 60px; }
  .feature-visual { max-width: 700px; margin: 0 auto; }
  .feature-img { aspect-ratio: 4/3; }

  /* Process — keep 4 across but tighter */
  .process-list { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; }

  /* Testimonials */
  .t-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .t-card-feature { grid-column: span 2; }

  /* CTA Form */
  .cta-grid { grid-template-columns: 1fr; gap: 60px; }
  .cta-form { padding: 44px 36px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 50px 40px; }

  /* Service detail */
  .svc-detail-grid { grid-template-columns: 1fr; gap: 50px; }
  .svc-detail.alt .svc-detail-grid { direction: ltr; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }

  /* Contact section */
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-section .cta-form { padding: 44px 36px !important; }

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

/* ---------- SMALL TABLET / LARGE PHONE (<=768px) ---------- */
@media (max-width: 768px) {
  :root { --gutter: 22px; }

  .section-title { font-size: clamp(30px, 6.5vw, 40px); }
  .section-lead, .section-body { font-size: 15px; }

  .about, .services, .feature, .process, .testimonials, .cta,
  .faq, .gallery, .svc-detail, .contact-section { padding: 70px 0; }
  .svc-highlight, .cta-banner { padding: 70px 0; }

  /* Nav — see "MOBILE NAV" block below for hamburger behavior */

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner { padding: 120px var(--gutter) 70px; }
  .hero-title { font-size: clamp(40px, 9vw, 56px); }
  .hero-lede { font-size: 16px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-meta { flex-wrap: wrap; gap: 18px 22px; }
  .hero-meta .meta-div { display: none; }
  .meta-num { font-size: 28px; }

  /* Page hero */
  .page-hero { padding: 130px 0 60px; min-height: auto; }
  .page-hero h1 { font-size: clamp(40px, 9vw, 60px); }
  .page-hero p { font-size: 16px; }
  .breadcrumb { font-size: 11px; }

  /* Trust → stack to 1 col */
  .trust-inner { grid-template-columns: 1fr; gap: 18px; }
  .trust-item { border-right: 0; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }

  /* Services → 1 col */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Feature stats */
  .feature-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .fstat-num { font-size: 36px !important; }
  .fstat-lbl { font-size: 11px; }

  /* Process — vertical stack */
  .process-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-list .proc-line { display: none; }
  .proc { text-align: left; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
  .proc-num { width: 48px; height: 48px; font-size: 18px; }

  /* Testimonials */
  .t-grid { grid-template-columns: 1fr; }
  .t-card-feature { grid-column: span 1; }
  .t-card { padding: 32px 28px; }
  .t-card blockquote { font-size: 16px; }

  /* CTA form */
  .cta-form { padding: 36px 24px; }
  .contact-section .cta-form { padding: 36px 24px !important; }

  /* Footer */
  .footer { padding: 70px 0 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* Service detail */
  .svc-image-wrap { aspect-ratio: 4/3; }
  .svc-image-num { font-size: 56px; bottom: 16px; left: 16px; }

  /* Highlight */
  .svc-highlight h2 { font-size: clamp(28px, 7vw, 40px); }
  .svc-highlight p { font-size: 15px; }

  /* CTA banner */
  .cta-banner h2 { font-size: clamp(28px, 7vw, 40px); }
  .cta-banner-phone { font-size: clamp(28px, 7vw, 36px); }

  /* FAQ */
  .faq-item { padding: 22px 24px; }
  .faq-q { font-size: 17px; gap: 16px; }

  /* Gallery → 2 col */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Service pills */
  .svc-pills { flex-wrap: wrap; gap: 8px; }
  .svc-pill { font-size: 12px; padding: 8px 14px; }

  /* Buttons */
  .btn { padding: 14px 24px; font-size: 13px; }
}

/* ---------- MOBILE (<=640px) ---------- */
@media (max-width: 640px) {
  :root { --gutter: 18px; }

  body { font-size: 15px; }

  .section-eyebrow { font-size: 11px; }
  .section-title { font-size: clamp(26px, 7vw, 34px); }

  .about, .services, .feature, .process, .testimonials, .cta,
  .faq, .gallery, .svc-detail, .contact-section { padding: 56px 0; }
  .svc-highlight, .cta-banner { padding: 56px 0; }

  /* Nav brand smaller */
  .brand-mark { width: 36px; height: 36px; font-size: 16px; }
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 10px; }
  .brand-logo-img { max-height: 44px !important; width: auto !important; }

  /* Hero */
  .hero-inner { padding: 110px var(--gutter) 56px; }
  .hero-eyebrow { font-size: 10px; }
  .hero-title { font-size: clamp(34px, 10vw, 48px); line-height: 1.1; }
  .hero-lede { font-size: 15px; }
  .hero-meta { gap: 14px 18px; }
  .meta-num { font-size: 24px; }
  .meta-lbl { font-size: 10px; }
  .hero-scroll { display: none; }

  /* Page hero */
  .page-hero { padding: 110px 0 48px; }
  .page-hero h1 { font-size: clamp(32px, 10vw, 48px); line-height: 1.1; }

  /* About — stack images cleanly instead of absolute overlap */
  .about-visual {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
  }
  .about-img-wrap,
  .about-img-wrap:first-child,
  .about-img-wrap.about-img-2 {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4/3;
  }
  .about-stat {
    position: relative;
    bottom: auto; left: auto;
    align-self: flex-start;
    margin-top: 4px;
    padding: 18px 22px;
  }
  .stat-num { font-size: 38px; }

  /* Services */
  .service-card { padding: 28px 24px; }

  /* Feature stats — 2 col + wrap */
  .feature-stats { grid-template-columns: repeat(2, 1fr); }
  .feature-stats .fstat:nth-child(3) { grid-column: 1 / -1; }
  .feature-img { aspect-ratio: 16/11; }
  .feature-badge { padding: 8px 14px; font-size: 10px; }

  /* Testimonials */
  .t-card blockquote { font-size: 15px; }
  .t-stars { font-size: 14px; }

  /* CTA contacts stack */
  .cta-contacts { flex-direction: column; gap: 12px; }
  .cta-contact { width: 100%; }

  /* CTA form fields */
  .form-row input, .form-row textarea, .form-row select { font-size: 15px; padding: 12px 14px; }
  .cta-form, .contact-section .cta-form { padding: 28px 20px !important; }

  /* Footer */
  .footer { padding: 56px 0 24px; }
  .footer-col h5 { font-size: 12px; }
  .footer-col li { font-size: 14px; }

  /* Service detail */
  .svc-image-num { font-size: 44px; }
  .svc-features li { font-size: 14px; }

  /* CTA banner */
  .cta-banner-phone { font-size: clamp(24px, 7vw, 32px); }

  /* FAQ */
  .faq-item { padding: 18px 20px; }
  .faq-q { font-size: 15px; }
  .faq-a { font-size: 14px; }

  /* Gallery → 1 col on phone */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Buttons full-width on small */
  .btn-block { padding: 14px 20px; }

  /* DMNT custom benefits grid in svc-fasadu */
  .dmnt-ben-card { padding: 24px 22px; }
  .dmnt-ben-card h3 { font-size: 19px; }
}

/* ---------- TINY PHONES (<=380px) ---------- */
@media (max-width: 380px) {
  .hero-title { font-size: clamp(30px, 11vw, 40px); }
  .page-hero h1 { font-size: clamp(28px, 11vw, 38px); }
  .section-title { font-size: clamp(24px, 8vw, 30px); }
  .nav-links { gap: 4px 14px; }
  .nav-links a { font-size: 12px; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 8px 12px; }
}

/* ============================================================
 *                MOBILE NAV (hamburger + slide-down)
 * ============================================================ */

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  z-index: 110;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-toggle:hover { border-color: var(--bronze-500); }
.nav-toggle-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  margin-left: -9px;
  background: var(--onyx-900);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease), top 0.4s var(--ease), background-color 0.3s;
}
.nav-toggle-bar:nth-child(1) { transform: translateY(-6px); }
.nav-toggle-bar:nth-child(2) { transform: translateY(0); }
.nav-toggle-bar:nth-child(3) { transform: translateY(6px); }

/* Hamburger → X animation */
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* Mobile menu wrapper — desktop default: just a flex container */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-cta-mobile { display: none; }

/* In-panel close button — hidden on desktop, shown on mobile via media query */
.nav-close {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  color: var(--onyx-900);
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 2;
}
.nav-close svg { width: 18px; height: 18px; }
.nav-close:hover {
  border-color: var(--bronze-500);
  background: var(--bronze-500);
  color: var(--cream-50);
  transform: rotate(90deg);
}

/* Body scroll-lock when menu open */
body.dmnt-menu-open { overflow: hidden; }

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 16, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 9998;
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  /* Show hamburger, hide inline desktop CTA */
  .nav-toggle { display: inline-block !important; }
  .nav > .nav-cta:not(.nav-cta-mobile) { display: none !important; }
  .nav { gap: 12px; }

  /* Slide-down menu panel — JS appends this to <body> so position:fixed
     works regardless of Elementor's transformed wrappers. */
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(82vw, 380px);
    max-width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 32px 40px;
    background: var(--cream-50);
    box-shadow: -20px 0 60px -20px rgba(13, 14, 16, 0.25);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    overflow-y: auto;
    z-index: 9999;
    visibility: visible;
  }
  .nav-menu.is-open { transform: translateX(0); }

  /* In-panel close (X) button */
  .nav-menu .nav-close { display: inline-flex; }

  /* Menu links list */
  .nav-menu .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav-menu .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  }
  .nav-menu .nav-links a {
    display: block;
    padding: 18px 0;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--onyx-900);
  }
  .nav-menu .nav-links a::after { display: none; }
  .nav-menu .nav-links a:hover,
  .nav-menu .nav-links a.active,
  .nav-menu .nav-links .current-menu-item > a { color: var(--bronze-500); }

  /* Mobile-only CTA inside the panel */
  .nav-menu .nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding: 16px 22px;
    width: 100%;
    background: var(--bronze-500);
    color: var(--cream-50);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s var(--ease) 0.3s, transform 0.4s var(--ease) 0.3s, background-color 0.3s;
  }
  .nav-menu .nav-cta-mobile:hover { background: var(--bronze-600); }

  /* Stagger menu items in when open */
  .nav-menu.is-open .nav-links li {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-menu.is-open .nav-links li:nth-child(1) { transition-delay: 0.10s; }
  .nav-menu.is-open .nav-links li:nth-child(2) { transition-delay: 0.16s; }
  .nav-menu.is-open .nav-links li:nth-child(3) { transition-delay: 0.22s; }
  .nav-menu.is-open .nav-links li:nth-child(4) { transition-delay: 0.28s; }
  .nav-menu.is-open .nav-links li:nth-child(5) { transition-delay: 0.34s; }
  .nav-menu.is-open .nav-links li:nth-child(n+6) { transition-delay: 0.40s; }

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

@media (max-width: 480px) {
  .nav-menu { width: 100vw; padding: 88px 24px 32px; }
  .nav-menu .nav-links a { font-size: 20px; padding: 16px 0; }
}
