/* =========
   Basic setup
   ========= */
:root {
  --bg: #fbf8f3;
  --surface: #ffffff;
  --ink: #1d1a17;
  --muted: #6f665e;
  --line: #e8ded2;
  --gold: #b8894d;
  --gold-dark: #7d5730;
  --forest: #18342d;
  --sage: #dfe8df;
  --shadow: 0 22px 60px rgba(29, 26, 23, 0.12);
  --soft-shadow: 0 14px 36px rgba(29, 26, 23, 0.07);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 137, 77, 0.12), transparent 34rem),
    var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* =========
   Reusable classes
   ========= */
.section-pad {
  padding: 96px 24px;
}

.section-pad > * {
  position: relative;
}

.section-heading {
  max-width: var(--max-width);
  margin: 0 auto 42px;
}

.section-heading h2,
.lead-copy h2,
.why-content h2,
.contact-card h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.section-heading p:not(.eyebrow),
.lead-copy p,
.why-content p {
  max-width: 650px;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest), #0f2923);
  box-shadow: 0 14px 30px rgba(24, 52, 45, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #19473c, #0c241f);
  box-shadow: 0 18px 42px rgba(24, 52, 45, 0.38);
}

.btn-secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  color: #ffffff;
  background: rgba(184, 137, 77, 0.92);
  border-color: rgba(222, 196, 156, 0.9);
  box-shadow: 0 18px 42px rgba(184, 137, 77, 0.32);
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    #f2ebe2;
}

/* =========
   Header
   ========= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.scrolled,
body.menu-open .site-header {
  background: rgba(251, 248, 243, 0.94);
  border-bottom-color: rgba(232, 222, 210, 0.8);
  box-shadow: 0 14px 34px rgba(29, 26, 23, 0.08);
  backdrop-filter: blur(16px);
}

body.menu-open {
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  transition: color 0.28s ease;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.28s ease;
}

.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .nav-links {
  color: #ffffff;
}

.site-header:not(.scrolled) .menu-toggle {
  background: rgba(24, 52, 45, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
}

.site-header:not(.scrolled) .menu-toggle span {
  background: #ffffff;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav-links a:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  isolation: isolate;
  overflow: hidden;
  padding: 10px 16px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--forest), #0f2923);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(24, 52, 45, 0.18);
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #19473c, #0c241f);
  box-shadow: 0 16px 34px rgba(24, 52, 45, 0.32);
}

.nav-cta:hover::before {
  transform: translateX(130%);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 253, 249, 0.84);
  border: 1px solid rgba(232, 222, 210, 0.72);
  border-radius: var(--radius);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========
   Hero
   ========= */
.hero {
  position: relative;
  display: flex;
  min-height: calc(92vh - 72px);
  align-items: center;
  overflow: hidden;
  padding: 96px 24px 82px;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 28, 25, 0.88) 0%, rgba(17, 28, 25, 0.68) 42%, rgba(17, 28, 25, 0.18) 100%),
    linear-gradient(180deg, rgba(17, 28, 25, 0.18), rgba(17, 28, 25, 0.5));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin-left: clamp(28px, 7vw, 140px);
  margin-right: auto;
}

.hero-copy-track {
  position: relative;
  min-height: 330px;
  max-width: 720px;
  overflow: hidden;
}

.hero-copy-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.hero-copy-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-copy-slide.previous {
  opacity: 0;
  transform: translateX(-60px);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.55rem, 4.7vw, 4.65rem);
  line-height: 0.96;
}

.hero-subtitle {
  max-width: 520px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(24, 52, 45, 0.32));
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%) scale(1.02);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-slide.active.zoom {
  transform: translateX(0) scale(1.06);
  transition: transform 3s ease, opacity 1s ease;
}

.hero-slide.previous {
  opacity: 0;
  transform: translateX(-100%) scale(1.02);
}

.trust-strip {
  max-width: none;
  margin: 0;
  padding: 62px 24px 68px;
  background: #fffdf9;
  color: var(--ink);
}

.trust-heading,
.achievement-grid {
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-heading {
  display: block;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.trust-heading h2 {
  margin: 0 auto;
  max-width: 690px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 0.98;
}

.trust-heading p:not(.eyebrow) {
  margin: 16px auto 0;
  color: var(--muted);
  max-width: 640px;
  font-size: 0.98rem;
}

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

.achievement-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 228px;
  height: 100%;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(24, 52, 45, 0.9), rgba(26, 72, 61, 0.78)),
    rgba(24, 52, 45, 0.84);
  border: 1px solid rgba(24, 52, 45, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(24, 52, 45, 0.18);
  backdrop-filter: blur(16px);
  transform: translateY(18px) scale(0.97);
  opacity: 0;
  cursor: pointer;
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.trust-strip.active .achievement-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.trust-strip.active .achievement-card:nth-child(2) {
  transition-delay: 0.12s;
}

.trust-strip.active .achievement-card:nth-child(3) {
  transition-delay: 0.24s;
}

.trust-strip.active .achievement-card:nth-child(4) {
  transition-delay: 0.36s;
}

.achievement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(184, 137, 77, 0.18), transparent 48%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.achievement-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  width: 55%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: rotate(18deg);
  transition: left 0.8s ease;
}

.achievement-card:hover {
  z-index: 2;
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(184, 137, 77, 0.62);
  background:
    linear-gradient(145deg, rgba(24, 52, 45, 0.95), rgba(46, 95, 79, 0.84)),
    rgba(24, 52, 45, 0.9);
  box-shadow: 0 24px 62px rgba(24, 52, 45, 0.28);
}

.trust-strip.active .achievement-card:hover {
  transform: translateY(-8px) scale(1.015);
}

.achievement-card:hover::before {
  opacity: 1;
}

.achievement-card:hover::after {
  left: 120%;
}

.achievement-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 10px;
  color: #f3dcb7;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.achievement-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.75rem, 4.7vw, 4.3rem);
  line-height: 0.85;
}

.achievement-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1rem;
}

.achievement-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* =========
   Cards and grids
   ========= */
.project-grid,
.service-grid,
.process-grid {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 22px;
}

.project-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.project-card,
.service-card,
.testimonial-card,
.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.project-card {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  background: #fffdf9;
  border-color: rgba(232, 222, 210, 0.88);
  border-radius: 14px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.project-card:hover {
  transform: translateY(-7px);
  border-color: rgba(184, 137, 77, 0.46);
  box-shadow: 0 24px 58px rgba(29, 26, 23, 0.12);
}

.project-card img {
  height: 260px;
  object-position: center;
  transition: transform 0.7s ease;
}

.project-card:hover img {
  transform: scale(1.07);
}

.project-card div {
  padding: 18px 18px 20px;
}

.project-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.project-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 6px;
  padding: 6px 9px;
  color: var(--gold-dark);
  background: rgba(184, 137, 77, 0.1);
  border: 1px solid rgba(184, 137, 77, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-project {
  grid-column: span 4;
  min-height: 520px;
}

.featured-project img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.featured-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 52, 45, 0.02) 25%, rgba(24, 52, 45, 0.84) 100%),
    linear-gradient(90deg, rgba(24, 52, 45, 0.42), transparent 62%);
  pointer-events: none;
}

.featured-project div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 520px;
  padding: 22px;
  color: #ffffff;
  background: rgba(24, 52, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.featured-project span {
  color: #f7ead8;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.featured-project h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.featured-project p {
  color: rgba(255, 255, 255, 0.78);
}

.project-card h3,
.service-card h3,
.testimonial-card strong,
.process-step h3 {
  margin: 6px 0 0;
  font-size: 1.2rem;
}

.split-section {
  background: var(--forest);
  color: #ffffff;
}

.split-section .eyebrow {
  color: #dec49c;
}

.split-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.before-after-showcase {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.comparison-shell,
.comparison-content {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.comparison-shell {
  overflow: hidden;
  padding: 14px;
}

.comparison-frame {
  --split: 52%;
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #0f2923;
  border-radius: 10px;
}

.comparison-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-before-wrap {
  position: absolute;
  inset: 0;
  width: var(--split);
  overflow: hidden;
  transition: width 0.45s ease;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(-1px);
  transition: left 0.45s ease;
}

.compare-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--forest);
  background: #ffffff;
  border: 2px solid rgba(184, 137, 77, 0.42);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.compare-divider span::before {
  content: "\2194";
  font-weight: 900;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(24, 52, 45, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
}

.comparison-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 8px 4px;
}

.compare-arrow {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--forest);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.28s ease, background 0.28s ease;
}

.compare-arrow:hover {
  transform: translateY(-3px);
  background: #dec49c;
}

.compare-dots {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 10px;
}

.compare-dots button {
  width: 42px;
  height: 7px;
  padding: 0;
  background: rgba(255, 255, 255, 0.26);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.compare-dots button.active {
  width: 68px;
  background: #dec49c;
}

.comparison-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.comparison-content h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.comparison-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.comparison-content ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.comparison-content li {
  padding: 12px 14px;
  color: #f7ead8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

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

.service-card,
.testimonial-card,
.process-step {
  padding: 24px;
}

.service-card {
  overflow: hidden;
  padding: 0;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(184, 137, 77, 0.55);
  box-shadow: 0 24px 58px rgba(29, 26, 23, 0.13);
}

.service-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--forest);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 52, 45, 0.02), rgba(24, 52, 45, 0.58)),
    linear-gradient(90deg, rgba(24, 52, 45, 0.2), transparent);
  pointer-events: none;
}

.service-media img {
  transition: transform 0.7s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.08);
}

.service-media span,
.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: var(--forest);
  border-radius: 50%;
  font-weight: 800;
}

.service-media span {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  background: rgba(24, 52, 45, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 30px rgba(24, 52, 45, 0.24);
}

.service-body {
  padding: 22px;
}

.service-card p,
.testimonial-card p,
.process-step p {
  color: var(--muted);
}

.why-section {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 46px;
}

.why-image {
  position: relative;
  height: 640px;
  overflow: hidden;
  border-radius: 70px 0 70px 0;
  box-shadow: var(--shadow);
}

.why-content h2 {
  max-width: 620px;
}

.why-image img {
  transition: transform 0.7s ease;
}

.why-section:hover .why-image img {
  transform: scale(1.04);
}

.why-insight {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  color: #ffffff;
  background: rgba(24, 52, 45, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(24, 52, 45, 0.28);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, background 0.35s ease;
}

.why-insight-label {
  display: block;
  margin-bottom: 8px;
  color: #e9cfaa;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-insight-title {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.why-insight-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.why-intro {
  margin: 18px 0 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 14px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, #ffffff, #fffdf9);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(29, 26, 23, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  border-radius: 14px 0 0 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.check-list li:hover,
.check-list li.active {
  transform: translateX(8px);
  border-color: rgba(184, 137, 77, 0.54);
  box-shadow: 0 18px 44px rgba(29, 26, 23, 0.1);
}

.check-list li:hover::before,
.check-list li.active::before {
  opacity: 1;
}

.check-list li span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--forest);
  background: rgba(223, 232, 223, 0.85);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.check-list li.active span {
  color: #ffffff;
  background: var(--forest);
}

.check-list li strong {
  line-height: 1.25;
}

.check-list li small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.process-experience {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.process-preview {
  position: relative;
  order: 2;
  overflow: hidden;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(24, 52, 45, 0.94), rgba(15, 41, 35, 0.96)),
    var(--forest);
  border: 1px solid rgba(222, 196, 156, 0.24);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(24, 52, 45, 0.22);
}

.process-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  pointer-events: none;
}

.process-preview::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(184, 137, 77, 0.35), transparent 68%);
  pointer-events: none;
}

.process-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #e9cfaa;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-preview-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 6.5rem;
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.18);
}

.process-preview h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.95;
}

.process-preview-text {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.process-deliverables {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.process-deliverables strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
}

.process-deliverables ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-deliverables li {
  padding: 7px 10px;
  color: #f7ead8;
  background: rgba(184, 137, 77, 0.18);
  border: 1px solid rgba(233, 207, 170, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.process-progress {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 7px;
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.process-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #dec49c, var(--gold));
  border-radius: inherit;
  transition: width 0.45s ease;
}

.process-grid {
  display: grid;
  order: 1;
  grid-template-columns: 1fr;
  gap: 12px;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 16px;
  width: 100%;
  min-height: 86px;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.process-step:hover,
.process-step.active {
  transform: translateX(8px);
  background: #ffffff;
  border-color: rgba(184, 137, 77, 0.52);
  box-shadow: 0 18px 46px rgba(29, 26, 23, 0.12);
}

.process-step:focus-visible {
  outline: 3px solid rgba(184, 137, 77, 0.32);
  outline-offset: 3px;
}

.process-step span {
  grid-row: span 2;
}

.process-step strong {
  font-size: 1.03rem;
}

.process-step small {
  color: var(--muted);
  font-weight: 600;
}

.testimonial-header {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto 34px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.testimonial-header h2 {
  max-width: 800px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.testimonial-header p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.testimonial-controls {
  display: flex;
  gap: 10px;
}

.testimonial-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  background: var(--forest);
  border: 1px solid rgba(24, 52, 45, 0.12);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(24, 52, 45, 0.22);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-3px);
  background: var(--gold-dark);
  box-shadow: 0 18px 42px rgba(184, 137, 77, 0.28);
}

.testimonial-carousel {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
}

.testimonial-card::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
  margin-bottom: 18px;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(184, 137, 77, 0.16), transparent 68%);
  pointer-events: none;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 1rem;
}

.testimonial-card strong,
.testimonial-card small,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 22px;
}

.testimonial-card small {
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.review-tag {
  display: inline-flex !important;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--forest);
  background: rgba(223, 232, 223, 0.72);
  border: 1px solid rgba(24, 52, 45, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* =========
   Lead form
   ========= */
.lead-section {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

.lead-benefits {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.lead-benefits li {
  color: var(--forest);
  font-weight: 800;
}

.lead-benefits li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--gold-dark);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(223, 232, 223, 0.42), rgba(255, 255, 255, 0)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.lead-form .full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 137, 77, 0.14);
}

.error-message {
  min-height: 18px;
  color: #b42318;
  font-size: 0.82rem;
}

.form-success {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

/* =========
   Contact and footer
   ========= */
.contact-section {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.contact-card,
.map-placeholder {
  min-height: 360px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(29, 26, 23, 0.07);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  padding: 14px 16px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  padding: 44px 24px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(222, 196, 156, 0.08), transparent 38%),
    var(--forest);
  border-top: 1px solid rgba(222, 196, 156, 0.22);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.15rem;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-brand span {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 12px;
  color: #f7ead8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-links a {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

.footer-contact a {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 11px 15px;
  color: var(--forest);
  background: #dec49c;
  border-radius: var(--radius);
  font-weight: 800;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.62);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 13px 18px;
  color: #ffffff;
  background: #13733d;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31, 143, 77, 0.32);
  font-weight: 800;
}

.mobile-cta-bar {
  display: none;
}

/* =========
   Scroll animation
   ========= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========
   Responsive design
   ========= */
@media (max-width: 1024px) {
  .why-section,
  .lead-section,
  .contact-section,
  .process-experience,
  .before-after-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    height: 100%;
  }

  .why-image {
    height: 560px;
  }

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

  .project-card,
  .featured-project {
    grid-column: auto;
  }

  .featured-project {
    min-height: 440px;
  }

  .comparison-frame {
    height: 500px;
  }

  .service-media {
    height: 240px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .process-preview {
    order: 1;
    min-height: 360px;
  }

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

  .process-step:hover,
  .process-step.active {
    transform: translateY(-4px);
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 68px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: grid;
    gap: 6px;
    padding: 14px;
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 12px 14px;
    color: var(--ink);
    border-radius: var(--radius);
    font-weight: 700;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: var(--forest);
    background: #f4eee6;
    transform: none;
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 6px;
    min-height: 50px;
  }

  .hero {
    min-height: 680px;
    padding: 78px 18px 70px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-copy-track {
    min-height: 390px;
  }

  .hero::before {
    display: block;
    background:
      linear-gradient(180deg, rgba(17, 28, 25, 0.88) 0%, rgba(17, 28, 25, 0.72) 52%, rgba(17, 28, 25, 0.36) 100%);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .project-grid,
  .service-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .featured-project {
    min-height: 420px;
  }

  .featured-project div {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .featured-project h3 {
    font-size: 1.9rem;
  }

  .comparison-frame {
    height: 420px;
  }

  .comparison-content {
    padding: 26px;
  }

  .testimonial-header {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
  }

  .testimonial-controls {
    justify-content: flex-start;
  }

  .testimonial-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .testimonial-track {
    gap: 16px;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 300px;
    padding: 24px;
  }

  .process-preview {
    min-height: 0;
    padding: 24px;
    border-radius: 16px;
  }

  .process-preview-number {
    margin-bottom: 12px;
    font-size: 4.6rem;
  }

  .process-preview h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .process-preview-text {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .process-deliverables {
    margin-top: 18px;
    padding: 14px;
  }

  .process-deliverables ul {
    gap: 7px;
  }

  .process-deliverables li {
    font-size: 0.76rem;
  }

  .process-progress {
    margin-top: 18px;
  }

  .process-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .process-grid::-webkit-scrollbar {
    height: 6px;
  }

  .process-grid::-webkit-scrollbar-thumb {
    background: rgba(184, 137, 77, 0.36);
    border-radius: 999px;
  }

  .process-step {
    flex: 0 0 min(82vw, 310px);
    min-height: 94px;
    scroll-snap-align: start;
  }

  .process-step span {
    width: 38px;
    height: 38px;
  }

  .process-step:hover,
  .process-step.active {
    transform: translateY(-2px);
  }

  .trust-strip {
    padding: 50px 18px 56px;
  }

  .trust-heading,
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .trust-heading {
    gap: 18px;
    margin-bottom: 22px;
  }

  .achievement-grid {
    gap: 14px;
  }

  .hero-media {
    min-height: 100%;
    height: 100%;
    border-radius: 0;
  }

  .why-image {
    min-height: 390px;
    height: 62vh;
    border-radius: 0 0 0 48px;
  }

  .why-insight {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
    border-radius: 14px;
  }

  .why-insight-title {
    font-size: 1.7rem;
  }

  .check-list li:hover,
  .check-list li.active {
    transform: translateY(-2px);
  }

  .project-card img {
    height: 220px;
  }

  .featured-project img {
    height: 100%;
  }

  .featured-project {
    min-height: 390px;
  }

  .lead-form .full,
  .form-row.full {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer > p {
    justify-self: center;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--forest);
    border-radius: var(--radius);
    font-weight: 800;
  }

  .mobile-cta-bar a:first-child {
    background: #13733d;
  }

  body {
    padding-bottom: 82px;
  }

  .section-heading,
  .testimonial-header {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .lead-copy h2,
  .why-content h2,
  .contact-card h2,
  .testimonial-header h2 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
    line-height: 0.98;
  }

  .section-heading p:not(.eyebrow),
  .lead-copy p,
  .why-content p,
  .testimonial-header p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .project-grid,
  .service-grid {
    gap: 16px;
  }

  .project-card {
    border-radius: 16px;
  }

  .project-card img {
    height: 236px;
  }

  .featured-project {
    min-height: 460px;
  }

  .featured-project div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .featured-project h3 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .featured-project p,
  .project-card p,
  .service-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .comparison-frame {
    height: min(78vw, 390px);
    min-height: 300px;
  }

  .comparison-content {
    padding: 22px;
  }

  .comparison-content h3 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 0.98;
  }

  .comparison-content p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .comparison-content li {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .comparison-controls {
    padding: 14px;
  }

  .service-card {
    border-radius: 16px;
  }

  .service-media {
    height: 235px;
  }

  .service-body {
    padding: 20px;
  }

  .why-section {
    gap: 28px;
  }

  .why-image {
    height: 430px;
    min-height: 0;
    border-radius: 40px 0 40px 0;
  }

  .why-insight {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .check-list li {
    min-height: 74px;
  }

  .lead-form {
    gap: 14px;
    padding: 22px;
  }

  .contact-card,
  .map-placeholder {
    min-height: auto;
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .comparison-frame {
    height: 340px;
  }

  .comparison-controls {
    padding: 14px;
  }

  .compare-arrow {
    width: 42px;
    height: 42px;
  }

  .compare-dots button {
    width: 26px;
  }

  .compare-dots button.active {
    width: 40px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.9rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    margin: 16px 0 22px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-copy-track {
    min-height: 360px;
  }

  .hero {
    min-height: 640px;
    padding-top: 72px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 52px;
    font-size: 0.95rem;
  }

  .section-pad {
    padding: 58px 16px;
  }

  .section-heading h2,
  .lead-copy h2,
  .why-content h2,
  .contact-card h2,
  .testimonial-header h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .project-card img {
    height: 210px;
  }

  .featured-project {
    min-height: 430px;
  }

  .featured-project h3 {
    font-size: 1.72rem;
  }

  .featured-project span,
  .project-card span {
    font-size: 0.68rem;
  }

  .comparison-frame {
    height: 300px;
    min-height: 260px;
  }

  .compare-label {
    top: 12px;
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .compare-divider span {
    width: 38px;
    height: 38px;
  }

  .comparison-content {
    padding: 20px;
  }

  .comparison-content h3 {
    font-size: 2.05rem;
  }

  .process-experience {
    gap: 16px;
  }

  .process-preview {
    padding: 20px;
  }

  .process-preview::before {
    inset: 12px;
  }

  .process-kicker {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .process-preview-number {
    font-size: 3.8rem;
  }

  .process-preview h3 {
    font-size: 2.15rem;
  }

  .process-step {
    flex-basis: 86vw;
    padding: 16px;
  }

  .process-step strong {
    font-size: 0.98rem;
  }

  .process-step small {
    font-size: 0.78rem;
  }

  .why-image {
    min-height: 0;
    height: 360px;
    border-radius: 34px 0 34px 0;
  }

  .why-insight {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .why-insight-title {
    font-size: 1.45rem;
  }

  .why-insight-text {
    font-size: 0.82rem;
  }

  .check-list li {
    grid-template-columns: auto 1fr;
    padding: 14px;
  }

  .check-list li span {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  .testimonial-card {
    min-height: auto;
    padding: 22px;
  }

  .achievement-card,
  .service-card,
  .process-step,
  .testimonial-card,
  .lead-form,
  .contact-card,
  .map-placeholder {
    padding: 20px;
  }

  .service-card {
    padding: 0;
  }

  .service-media {
    height: 205px;
  }

  .service-body {
    padding: 18px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .lead-form {
    padding: 18px;
  }

input,
select,
textarea {
    min-height: 48px;
    font-size: 0.95rem;
  }
}

/* =========
   Final device tuning
   These rules sit at the end so every screen size gets balanced spacing,
   readable text, and controlled image/card heights.
   ========= */
html,
body {
  overflow-x: hidden;
}

@media (max-width: 1200px) {
  .section-pad {
    padding-block: 82px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 5.4vw, 4.1rem);
  }

  .section-heading h2,
  .lead-copy h2,
  .why-content h2,
  .contact-card h2,
  .testimonial-header h2 {
    font-size: clamp(2.15rem, 5.8vw, 3.9rem);
  }

  .featured-project {
    min-height: 480px;
  }

  .comparison-frame {
    height: 480px;
  }

  .why-image {
    height: 560px;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 72px 20px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy-track {
    min-height: 360px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 7.5vw, 3.45rem);
  }

  .hero-subtitle {
    max-width: 560px;
    font-size: 0.98rem;
  }

  .section-heading h2,
  .lead-copy h2,
  .why-content h2,
  .contact-card h2,
  .testimonial-header h2 {
    font-size: clamp(2.05rem, 7.2vw, 3.25rem);
    line-height: 1;
  }

  .project-card img {
    height: 230px;
  }

  .featured-project {
    min-height: 440px;
  }

  .comparison-frame {
    height: 390px;
  }

  .comparison-content h3 {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .service-media {
    height: 225px;
  }

  .why-image {
    height: 460px;
  }

  .process-preview-number {
    font-size: 4.4rem;
  }

  .testimonial-card {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 11px 14px;
  }

  .brand span:last-child {
    max-width: 170px;
  }

  .section-pad {
    padding: 54px 16px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .section-heading,
  .testimonial-header {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .lead-copy h2,
  .why-content h2,
  .contact-card h2,
  .testimonial-header h2 {
    font-size: clamp(1.92rem, 9.4vw, 2.62rem);
    line-height: 1;
  }

  .section-heading p:not(.eyebrow),
  .lead-copy p,
  .why-content p,
  .testimonial-header p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero {
    min-height: 615px;
    padding: 68px 16px 58px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.4vw, 2.78rem);
  }

  .hero-subtitle {
    margin: 15px 0 20px;
    font-size: 0.92rem;
  }

  .hero-copy-track {
    min-height: 330px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 50px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .achievement-card {
    min-height: auto;
    padding: 18px;
  }

  .achievement-card strong {
    font-size: 2.55rem;
  }

  .project-grid,
  .service-grid {
    gap: 14px;
  }

  .project-card div,
  .service-body {
    padding: 16px;
  }

  .project-card img {
    height: 205px;
  }

  .featured-project {
    min-height: 405px;
  }

  .featured-project div {
    padding: 14px;
  }

  .featured-project h3 {
    font-size: 1.6rem;
  }

  .featured-project p,
  .project-card p,
  .service-card p {
    font-size: 0.86rem;
  }

  .comparison-frame {
    height: 285px;
    min-height: 0;
  }

  .comparison-content {
    padding: 18px;
  }

  .comparison-content h3 {
    font-size: 1.95rem;
  }

  .comparison-content li {
    font-size: 0.84rem;
  }

  .compare-arrow {
    width: 40px;
    height: 40px;
  }

  .service-media {
    height: 195px;
  }

  .why-image {
    height: 330px;
    border-radius: 30px 0 30px 0;
  }

  .why-insight {
    padding: 12px;
  }

  .why-insight-title {
    font-size: 1.32rem;
  }

  .why-insight-text {
    font-size: 0.78rem;
  }

  .check-list li {
    gap: 12px;
    min-height: auto;
    padding: 13px;
  }

  .process-preview {
    padding: 18px;
  }

  .process-preview-number {
    font-size: 3.35rem;
  }

  .process-preview h3 {
    font-size: 1.95rem;
  }

  .process-preview-text {
    font-size: 0.9rem;
  }

  .process-step {
    flex-basis: min(84vw, 292px);
    padding: 14px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 18px;
  }

  .testimonial-card p {
    font-size: 0.9rem;
  }

  .lead-form,
  .contact-card,
  .map-placeholder {
    padding: 18px;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    padding: 12px 13px;
    font-size: 0.92rem;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    max-width: 142px;
  }

  .section-pad {
    padding: 48px 14px;
  }

  .hero {
    min-height: 590px;
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: clamp(1.88rem, 10.2vw, 2.42rem);
  }

  .hero-copy-track {
    min-height: 315px;
  }

  .section-heading h2,
  .lead-copy h2,
  .why-content h2,
  .contact-card h2,
  .testimonial-header h2 {
    font-size: clamp(1.78rem, 9.6vw, 2.32rem);
  }

  .project-card img {
    height: 188px;
  }

  .featured-project {
    min-height: 370px;
  }

  .comparison-frame {
    height: 250px;
  }

  .service-media {
    height: 180px;
  }

  .why-image {
    height: 300px;
  }

  .process-preview h3 {
    font-size: 1.75rem;
  }
}

/* Process section mobile repair: full-width cards instead of cut carousel */
@media (max-width: 760px) {
  .process-experience {
    gap: 18px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .process-step {
    flex: none;
    width: 100%;
    min-height: 82px;
    padding: 15px;
    scroll-snap-align: unset;
    transform: none;
  }

  .process-step:hover,
  .process-step.active {
    transform: none;
    border-color: rgba(184, 137, 77, 0.5);
    box-shadow: 0 14px 34px rgba(29, 26, 23, 0.1);
  }

  .process-step span {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 430px) {
  .process-grid {
    gap: 9px;
  }

  .process-step {
    grid-template-columns: 38px 1fr;
    gap: 3px 12px;
    min-height: 76px;
    padding: 13px;
  }

  .process-step strong {
    font-size: 0.94rem;
  }

  .process-step small {
    font-size: 0.75rem;
    line-height: 1.35;
  }
}

/* Process section compact two-column mobile layout */
@media (max-width: 760px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .process-step {
    display: flex;
    min-height: 142px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 9px;
    padding: 15px;
  }

  .process-step span {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .process-step strong {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .process-step small {
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

@media (max-width: 380px) {
  .process-grid {
    gap: 9px;
  }

  .process-step {
    min-height: 134px;
    padding: 12px;
  }

  .process-step span {
    width: 34px;
    height: 34px;
  }

  .process-step strong {
    font-size: 0.88rem;
  }

  .process-step small {
    font-size: 0.7rem;
  }
}

/* Contact, footer, and before-after controls polish */
@media (max-width: 760px) {
  .comparison-shell {
    padding: 10px;
  }

  .comparison-controls {
    gap: 16px;
    padding: 18px 4px 2px;
  }

  .compare-arrow {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .compare-dots {
    gap: 8px;
  }

  .compare-dots button {
    width: 34px;
    height: 7px;
  }

  .compare-dots button.active {
    width: 52px;
  }

  .map-placeholder {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 20px 110px;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-self: stretch;
    text-align: left;
  }

  .footer-contact a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .comparison-shell {
    padding: 8px;
    border-radius: 12px;
  }

  .comparison-frame {
    border-radius: 8px;
  }

  .comparison-controls {
    gap: 12px;
    padding-top: 16px;
  }

  .compare-arrow {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    font-size: 1.55rem;
  }

  .compare-dots button {
    width: 26px;
  }

  .compare-dots button.active {
    width: 42px;
  }

  .map-placeholder {
    padding: 18px;
  }

  .footer-brand span {
    border-radius: 8px;
    font-size: 0.76rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-links a {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
  }
}

/* =========
   Portfolio filter tabs
   ========= */
.portfolio-tabs {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-tab {
  min-height: 44px;
  padding: 11px 18px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.portfolio-tab:hover,
.portfolio-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest), #0f2923);
  border-color: rgba(24, 52, 45, 0.2);
  box-shadow: 0 14px 30px rgba(24, 52, 45, 0.16);
  transform: translateY(-2px);
}

.project-card.filter-hidden {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
}

.project-card[hidden] {
  display: none;
}

/* =========
   Google review badge
   ========= */
.google-review-badge {
  display: flex;
  width: fit-content;
  max-width: var(--max-width);
  margin: 0 auto 22px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.google-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--forest);
  border-radius: 50%;
  font-weight: 900;
}

.google-review-badge strong {
  color: var(--ink);
}

.review-stars {
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}

.google-review-badge span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

/* =========
   FAQ accordion
   ========= */
.faq-section {
  background: #fffdf9;
}

.faq-list {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-weight: 800;
}

.faq-question strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--forest);
  border-radius: 50%;
  transition: transform 0.28s ease, background 0.28s ease;
}

.faq-item.open .faq-question strong {
  background: var(--gold-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

/* =========
   Embedded Google map
   ========= */
.map-placeholder {
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  border-radius: var(--radius);
  aspect-ratio: auto;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: inherit;
  filter: saturate(0.9) contrast(0.98);
}

@media (max-width: 760px) {
  .portfolio-tabs,
  .google-review-badge {
    width: 100%;
  }

  .portfolio-tab {
    flex: 1 1 calc(50% - 10px);
  }

  .google-review-badge {
    justify-content: center;
    flex-wrap: wrap;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-answer p {
    padding: 0 16px 16px;
  }
}

/* =========
   Testimonial arrows beside cards
   ========= */
.testimonial-carousel {
  position: relative;
  padding: 0 64px;
}

.testimonial-carousel .testimonial-controls {
  position: absolute;
  inset: 0 0 auto;
  top: 50%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.testimonial-carousel .testimonial-arrow {
  pointer-events: auto;
  box-shadow: 0 18px 42px rgba(24, 52, 45, 0.18);
}

/* =========
   Mobile WhatsApp action
   ========= */
@keyframes whatsappVibrate {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  8% {
    transform: translate3d(-1px, 0, 0) rotate(-4deg);
  }
  16% {
    transform: translate3d(1px, 0, 0) rotate(4deg);
  }
  24% {
    transform: translate3d(-1px, 0, 0) rotate(-3deg);
  }
  32% {
    transform: translate3d(1px, 0, 0) rotate(3deg);
  }
  40% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(31, 143, 77, 0.34), 0 0 0 0 rgba(31, 143, 77, 0.24);
  }
  50% {
    box-shadow: 0 18px 42px rgba(31, 143, 77, 0.42), 0 0 0 12px rgba(31, 143, 77, 0);
  }
}

@media (max-width: 760px) {
  .testimonial-header {
    margin-bottom: 22px;
  }

  .testimonial-carousel {
    padding: 0 48px;
  }

  .testimonial-carousel .testimonial-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }

  .mobile-cta-bar {
    left: auto;
    right: 18px;
    bottom: 18px;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mobile-cta-bar a {
    display: none;
  }

  .mobile-cta-bar .mobile-whatsapp-link {
    display: grid;
    width: 52px;
    min-height: 52px;
    height: 52px;
    place-items: center;
    color: #ffffff;
    background: #13733d;
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(31, 143, 77, 0.34);
    animation: whatsappPulse 2.4s ease-in-out infinite;
  }

  .mobile-cta-bar .mobile-whatsapp-link svg {
    width: 27px;
    height: 27px;
    animation: whatsappVibrate 2.4s ease-in-out infinite;
  }

  .mobile-cta-bar .mobile-whatsapp-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 430px) {
  .testimonial-carousel {
    padding: 0 38px;
  }

  .testimonial-carousel .testimonial-arrow {
    width: 38px;
    height: 38px;
  }

  .mobile-cta-bar {
    right: 16px;
    bottom: 16px;
  }

  .mobile-cta-bar .mobile-whatsapp-link {
    width: 50px;
    min-height: 50px;
    height: 50px;
  }

  .mobile-cta-bar .mobile-whatsapp-link svg {
    width: 26px;
    height: 26px;
  }
}
