:root {
  --bg: #f4efe7;
  --surface: #fffaf2;
  --surface-strong: #ffffff;
  --ink: #1b1815;
  --ink-soft: #5f574e;
  --dark: #171411;
  --dark-2: #24201c;
  --line: rgba(27, 24, 21, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --brown: #8b552f;
  --brown-dark: #633a21;
  --sand: #d8b47a;
  --gold: #e2b35e;
  --green: #22c55e;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 60px rgba(35, 25, 17, 0.12);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding: 112px 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-dark {
  color: var(--brown-dark);
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(3.2rem, 7vw, 6.85rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

h2 {
  margin-top: 18px;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

p {
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: #20180f;
  box-shadow: 0 12px 34px rgba(226, 179, 94, 0.23);
}

.btn-primary:hover {
  background: #efc473;
}

.btn-primary svg {
  width: 22px;
  fill: currentColor;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--dark);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(23, 20, 17, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
}

.brand-icon svg {
  width: 30px;
  fill: var(--gold);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #20180f;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 980;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.menu-overlay.visible {
  visibility: visible;
  opacity: 1;
}

.hero {
  min-height: 820px;
  padding: 160px 0 104px;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent 55%);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  top: -170px;
  left: -110px;
  width: 460px;
  height: 460px;
  background: rgba(139, 85, 47, 0.27);
}

.hero-glow-two {
  right: 7%;
  bottom: -160px;
  width: 360px;
  height: 360px;
  background: rgba(226, 179, 94, 0.15);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.hero-text {
  max-width: 660px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-trust span {
  display: inline-flex;
  gap: 8px;
}

.hero-trust b {
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.visual-frame {
  position: absolute;
  inset: 0 12px 0 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 110px 28px 28px 28px;
  background: #d8d0c3;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.ceiling-panel {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  width: 100%;
  height: 37%;
  transform: skewY(-8deg) scale(1.06);
  transform-origin: left top;
  background: linear-gradient(180deg, #f5f1e9, #d7cfc2);
  box-shadow: 0 14px 26px rgba(54, 43, 33, 0.18);
}

.ceiling-panel span {
  flex: 1;
  border-right: 1px solid rgba(78, 65, 52, 0.14);
  box-shadow: inset -8px 0 12px rgba(0, 0, 0, 0.035);
}

.light-fixture {
  position: absolute;
  top: 82px;
  left: 57%;
  z-index: 4;
  width: 50px;
  height: 50px;
  transform: skewY(-8deg);
  border: 7px solid #e9e2d6;
  border-radius: 50%;
  background: #f7d991;
  box-shadow: 0 0 30px rgba(247, 217, 145, 0.75);
}

.light-fixture i {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff7dc;
}

.room-wall {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(135deg, #beb1a1, #9c8d7b);
}

.window {
  position: absolute;
  top: 22%;
  left: 12%;
  width: 38%;
  height: 42%;
  border: 10px solid #726454;
  background: linear-gradient(145deg, #c9e0e2, #77959a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 12px 26px rgba(52, 42, 31, 0.18);
}

.window::before,
.window::after {
  position: absolute;
  background: #726454;
  content: "";
}

.window::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  transform: translateX(-50%);
}

.window::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 6px;
  transform: translateY(-50%);
}

.window span {
  position: absolute;
  right: 11px;
  bottom: 10px;
  left: 11px;
  height: 25%;
  border-radius: 50% 50% 0 0;
  background: #687f5d;
}

.sofa {
  position: absolute;
  right: 8%;
  bottom: 9%;
  width: 49%;
  height: 30%;
  border-radius: 24px 24px 12px 12px;
  background: #4b3f35;
  box-shadow: 0 18px 28px rgba(31, 24, 18, 0.22);
}

.sofa::before {
  position: absolute;
  top: 42%;
  right: 0;
  left: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.sofa i {
  position: absolute;
  top: 14%;
  width: 38%;
  height: 36%;
  border-radius: 12px;
  background: #6d5b4d;
}

.sofa i:first-child {
  left: 8%;
}

.sofa i:last-child {
  right: 8%;
}

.plant {
  position: absolute;
  bottom: 7%;
  left: 8%;
  width: 62px;
  height: 125px;
}

.plant::before,
.plant::after,
.plant i {
  position: absolute;
  width: 26px;
  height: 74px;
  border-radius: 80% 0 80% 0;
  background: #4d6943;
  content: "";
}

.plant::before {
  top: 4px;
  left: 10px;
  transform: rotate(-24deg);
}

.plant::after {
  top: 6px;
  right: 7px;
  transform: rotate(30deg) scaleX(-1);
}

.plant i {
  top: -2px;
  left: 22px;
  transform: rotate(5deg);
}

.plant b {
  position: absolute;
  right: 7px;
  bottom: 0;
  left: 7px;
  height: 45px;
  border-radius: 6px 6px 14px 14px;
  background: #7d5740;
}

.visual-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 6;
  max-width: 230px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(23, 20, 17, 0.72);
  backdrop-filter: blur(12px);
}

.visual-label span,
.visual-label strong {
  display: block;
}

.visual-label span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.visual-label strong {
  margin-top: 2px;
  font-size: 0.95rem;
}

.floating-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(35, 31, 27, 0.9);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

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

.floating-card strong {
  font-size: 0.82rem;
}

.floating-card small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
}

.card-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #1e1710;
  font-weight: 900;
}

.card-one {
  top: 12%;
  left: -4px;
}

.card-two {
  right: -26px;
  bottom: 15%;
}

.quick-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  color: #3e3832;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-strip-grid i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brown);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}

.section-heading > p {
  max-width: 470px;
  padding-bottom: 10px;
}

.services {
  background: #f8f4ed;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 85, 47, 0.32);
  box-shadow: var(--shadow);
}

.service-card-featured {
  background: var(--brown);
  color: #fff;
}

.service-card-featured::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.03), 0 0 0 68px rgba(255, 255, 255, 0.025);
  content: "";
}

.service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(27, 24, 21, 0.26);
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.42);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 64px;
  place-items: center;
  border-radius: 16px;
  background: rgba(139, 85, 47, 0.1);
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.11);
}

.service-icon svg {
  width: 31px;
  fill: var(--brown);
}

.service-card-featured .service-icon svg {
  fill: var(--gold);
}

.service-card h3 {
  max-width: 240px;
  font-size: 1.35rem;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  font-size: 0.92rem;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.service-tag {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-showcase {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.work-showcase::before {
  position: absolute;
  top: 0;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(139, 85, 47, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(139, 85, 47, 0.025), 0 0 0 116px rgba(139, 85, 47, 0.02);
  content: "";
}

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

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 58px;
}

.comparison-card,
.result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: 0 18px 46px rgba(35, 25, 17, 0.08);
}

.comparison-card {
  border-radius: var(--radius-md);
}

.comparison-card-after {
  transform: translateY(28px);
}

.work-photo {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d9d2c8;
}

.comparison-card .work-photo {
  aspect-ratio: 4 / 3;
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.work-photo:hover img,
.work-photo:focus-visible img {
  transform: scale(1.035);
}

.work-photo:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.photo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(23, 20, 17, 0.8);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.comparison-card-after .photo-badge {
  background: rgba(139, 85, 47, 0.9);
}

.comparison-card figcaption {
  display: grid;
  gap: 5px;
  padding: 24px 26px 27px;
}

.comparison-card figcaption strong {
  font-size: 1.08rem;
}

.comparison-card figcaption span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 92px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.results-heading span {
  color: var(--brown-dark);
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.results-heading p {
  max-width: 480px;
  font-size: 0.88rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.result-card {
  border-radius: var(--radius-sm);
}

.result-card .work-photo {
  aspect-ratio: 4 / 3;
}

.result-card figcaption {
  padding: 18px 20px 20px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.advantages {
  background: var(--bg);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 92px;
  align-items: center;
}

.advantages-visual {
  position: relative;
  min-height: 570px;
}

.sample-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(27, 24, 21, 0.12);
  box-shadow: var(--shadow);
}

.sample-main {
  inset: 10px 78px 70px 0;
  border-radius: 32px 90px 32px 32px;
  background: #ede9e0;
}

.sample-small {
  right: 0;
  bottom: 0;
  width: 55%;
  height: 42%;
  border-radius: 30px;
  background: #d9d7d2;
}

.sample-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #382c23;
  font-size: 0.7rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.slats {
  position: absolute;
  inset: -10% -15%;
  display: flex;
  transform: rotate(-14deg);
}

.slats i {
  flex: 1;
  border-right: 2px solid rgba(62, 54, 47, 0.15);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(0, 0, 0, 0.025));
  box-shadow: inset -12px 0 18px rgba(32, 27, 22, 0.035);
}

.wood-lines {
  position: absolute;
  inset: -30px;
  transform: rotate(12deg);
  background:
    radial-gradient(circle at 25% 30%, rgba(57, 52, 47, 0.24) 0 2px, transparent 2.5px),
    radial-gradient(circle at 75% 70%, rgba(57, 52, 47, 0.2) 0 2px, transparent 2.5px),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(77, 70, 63, 0.16) 118px 120px),
    repeating-linear-gradient(0deg, transparent 0 78px, rgba(77, 70, 63, 0.12) 78px 80px),
    linear-gradient(135deg, #eceae5, #c9c6bf);
  background-size: 120px 80px, 120px 80px, auto, auto, auto;
}

.measure-mark {
  position: absolute;
  z-index: 5;
  padding: 9px 12px;
  border: 1px solid rgba(27, 24, 21, 0.12);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.92);
  color: #4e443a;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(35, 25, 17, 0.09);
}

.measure-a {
  top: 42%;
  right: 28px;
}

.measure-b {
  bottom: 18px;
  left: 42px;
}

.advantages-content .lead {
  max-width: 650px;
  margin-top: 24px;
}

.advantage-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.advantage-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.advantage-item > span {
  color: var(--brown);
  font-family: "Oswald", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.advantage-item h3 {
  margin-bottom: 6px;
}

.advantage-item p {
  max-width: 580px;
  font-size: 0.9rem;
}

.process {
  padding: 108px 0;
}

.process::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(226, 179, 94, 0.045));
  content: "";
}

.process-heading {
  position: relative;
  z-index: 2;
}

.process-heading h2 {
  max-width: 740px;
}

.text-link {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  color: var(--gold);
  font-size: 1.15rem;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line-light);
}

.process-step {
  min-height: 250px;
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line-light);
}

.process-step:not(:first-child) {
  padding-left: 28px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
}

.process-step h3 {
  max-width: 220px;
  color: #fff;
}

.process-step p {
  max-width: 220px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.faq {
  background: #f8f4ed;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro p {
  max-width: 440px;
  margin-top: 22px;
}

.faq-intro .btn {
  margin-top: 28px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.accordion-trigger span {
  font-size: 1rem;
  font-weight: 800;
}

.accordion-trigger i {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion-trigger i::before,
.accordion-trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--brown);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.accordion-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.accordion-content > p {
  overflow: hidden;
}

.accordion-item.open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-content > p {
  padding: 0 60px 28px 0;
}

.final-cta {
  padding: 0 0 108px;
  background: #f8f4ed;
}

.final-cta-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  min-height: 390px;
  padding: 64px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--brown);
  color: #fff;
  box-shadow: 0 28px 70px rgba(84, 48, 25, 0.24);
}

.final-cta-box::before {
  position: absolute;
  right: -130px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025), 0 0 0 96px rgba(255, 255, 255, 0.02);
  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.final-cta .btn {
  position: relative;
  z-index: 2;
}

.final-cta-pattern {
  position: absolute;
  top: 0;
  right: 23%;
  display: flex;
  width: 190px;
  height: 100%;
  transform: skewX(-14deg);
  opacity: 0.12;
}

.final-cta-pattern span {
  flex: 1;
  border-right: 1px solid #fff;
}

.site-footer {
  padding: 78px 0 26px;
  background: var(--dark);
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 48px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-contact {
  text-align: right;
}

.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-contact span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.73rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(31, 168, 85, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(31, 168, 85, 0.42);
}

.whatsapp-float svg {
  width: 23px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 38px;
  }

  .hero-visual {
    min-height: 500px;
  }

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

  .service-card-featured {
    grid-row: span 2;
  }

  .advantages-grid {
    gap: 48px;
  }

  .process-step {
    padding-right: 18px;
  }

  .process-step:not(:first-child) {
    padding-left: 18px;
  }

  .faq-grid {
    gap: 54px;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 86px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 1020;
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1010;
    display: flex;
    width: min(86vw, 390px);
    height: 100dvh;
    padding: 116px 30px 34px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1714;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    transform: translateX(105%);
    transition: transform 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 18px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 24px;
    padding: 16px 18px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 142px 0 82px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 570px;
    margin-inline: auto;
  }

  .quick-strip-grid {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 17px;
    padding: 20px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    padding-bottom: 0;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .comparison-card-after {
    transform: none;
  }

  .results-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 58px;
  }

  .advantages-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .process-step {
    min-height: 235px;
    padding: 26px 24px 20px 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-step:nth-child(2) {
    border-right: 0;
    padding-left: 24px;
  }

  .process-step:nth-child(3) {
    padding-left: 0;
    border-bottom: 0;
  }

  .process-step:nth-child(4) {
    padding-left: 24px;
    border-bottom: 0;
  }

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

  .faq-intro {
    position: static;
  }

  .final-cta-box {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 50px;
  }

  .final-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-icon {
    width: 43px;
    height: 43px;
  }

  .brand-icon svg {
    width: 27px;
  }

  .brand-copy strong {
    font-size: 1.25rem;
  }

  .hero {
    padding: 124px 0 70px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .hero-visual {
    min-height: 450px;
  }

  .visual-frame {
    inset: 0 0 0 10px;
    border-radius: 72px 24px 24px 24px;
  }

  .light-fixture {
    top: 58px;
    width: 42px;
    height: 42px;
  }

  .floating-card {
    min-width: 190px;
    padding: 12px;
  }

  .card-one {
    top: 10%;
    left: -2px;
  }

  .card-two {
    right: -6px;
    bottom: 11%;
  }

  .visual-label {
    right: 14px;
    bottom: 14px;
  }

  .quick-strip-grid i:nth-of-type(2),
  .quick-strip-grid span:nth-of-type(3),
  .quick-strip-grid i:nth-of-type(3),
  .quick-strip-grid span:nth-of-type(4) {
    display: none;
  }

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

  .comparison-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    margin-top: 40px;
  }

  .comparison-card figcaption {
    padding: 20px;
  }

  .results-heading span {
    font-size: 1.45rem;
  }

  .service-card,
  .service-card-featured {
    min-height: 320px;
    grid-row: auto;
  }

  .service-icon {
    margin-bottom: 54px;
  }

  .advantages-visual {
    min-height: 460px;
  }

  .sample-main {
    inset: 0 40px 72px 0;
  }

  .sample-small {
    width: 62%;
    height: 39%;
  }

  .measure-a {
    top: 39%;
    right: 3px;
  }

  .measure-b {
    left: 18px;
  }

  .advantage-item {
    grid-template-columns: 42px 1fr;
  }

  .process-heading .text-link {
    justify-self: start;
  }

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

  .process-step,
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    min-height: auto;
    padding: 26px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step > span {
    margin-bottom: 28px;
  }

  .process-step h3,
  .process-step p {
    max-width: 100%;
  }

  .accordion-trigger {
    min-height: 80px;
  }

  .accordion-trigger span {
    font-size: 0.93rem;
  }

  .accordion-item.open .accordion-content > p {
    padding-right: 0;
  }

  .final-cta {
    padding-bottom: 76px;
  }

  .final-cta-box {
    min-height: 0;
    padding: 38px 24px;
    border-radius: 28px;
  }

  .final-cta-pattern {
    right: 4%;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-contact a {
    font-size: 1.3rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
