:root {
  --ink: #161817;
  --muted: #606a66;
  --paper: #f7f7f2;
  --white: #ffffff;
  --line: #deddd6;
  --soft: #eef1ec;
  --charcoal: #20221f;
  --charcoal-deep: #111412;
  --orange: #f26c21;
  --orange-dark: #a94712;
  --whatsapp: #25d366;
  --whatsapp-ink: #062d1c;
  --sage: #dfe9e2;
  --radius: 8px;
  --shadow: 0 16px 34px rgba(17, 20, 18, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  direction: rtl;
  font-family: Tahoma, Arial, ui-sans-serif, system-ui, sans-serif;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .brand-name,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-brand span,
html[dir="rtl"] [href^="mailto:"],
html[dir="rtl"] [href^="tel:"],
html[dir="rtl"] .brand-logo {
  direction: ltr;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

.content-link {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

section[id] {
  scroll-margin-top: 105px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

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

.layout {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.75rem 0;
  pointer-events: none;
  transition: padding 180ms ease;
}

.site-header.is-scrolled {
  padding: 0.5rem 0;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 70px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(22, 24, 23, 0.08);
  border-radius: 26px 8px 26px 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.55rem 0.7rem 0.55rem 0.85rem;
  box-shadow: 0 12px 26px rgba(17, 20, 18, 0.08);
  pointer-events: auto;
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled .nav,
.site-header.menu-open .nav {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(17, 20, 18, 0.1);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 58px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  line-height: 1;
  white-space: nowrap;
}

.brand-name span,
.footer-brand span span {
  color: var(--orange);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: rgba(22, 24, 23, 0.74);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0;
  color: inherit;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--orange-dark);
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--orange);
}

.nav-links a.is-active::after,
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border: 1px solid rgba(22, 24, 23, 0.12);
  border-radius: var(--radius);
  background: var(--soft);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2rem;
  border-radius: 6px;
  color: rgba(22, 24, 23, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a.is-active {
  background: var(--white);
  color: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(22, 24, 23, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 14px 4px 14px 4px;
  padding: 0.84rem 1.12rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0.68rem 0.95rem;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(242, 108, 33, 0.2);
}

.button-light {
  border-color: rgba(242, 108, 33, 0.28);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(242, 108, 33, 0.16);
}

.button-whatsapp,
a.button[data-whatsapp-link] {
  border-color: rgba(242, 108, 33, 0.28);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(242, 108, 33, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-light:hover,
.button-light:focus-visible,
.button-whatsapp:hover,
.button-whatsapp:focus-visible,
a.button[data-whatsapp-link]:hover,
a.button[data-whatsapp-link]:focus-visible {
  background: var(--orange-dark);
  border-color: rgba(169, 71, 18, 0.34);
}

.wa-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 3.2C8.95 3.2 3.2 8.78 3.2 15.66c0 2.28.64 4.5 1.86 6.43L3.8 28.8l6.88-1.77a13.1 13.1 0 0 0 5.35 1.14c7.08 0 12.84-5.59 12.84-12.47S23.11 3.2 16.03 3.2Zm0 22.7c-1.74 0-3.44-.45-4.94-1.31l-.35-.2-4.08 1.05 1.05-3.9-.23-.37a9.94 9.94 0 0 1-1.52-5.27c0-5.64 4.74-10.23 10.57-10.23 5.82 0 10.56 4.59 10.56 10.23 0 5.65-4.74 10.24-10.56 10.24Zm5.93-7.67c-.33-.16-1.92-.92-2.22-1.02-.3-.11-.52-.16-.74.16-.22.31-.85 1.02-1.04 1.23-.19.21-.38.24-.7.08-.33-.16-1.38-.49-2.62-1.56-.97-.84-1.62-1.88-1.81-2.19-.19-.31-.02-.48.14-.64.15-.15.33-.38.49-.56.16-.19.22-.32.33-.53.11-.21.05-.4-.03-.56-.08-.16-.74-1.74-1.01-2.38-.27-.62-.54-.53-.74-.54h-.63c-.22 0-.57.08-.87.4-.3.32-1.14 1.1-1.14 2.67 0 1.57 1.17 3.09 1.33 3.3.16.21 2.3 3.42 5.57 4.79.78.33 1.39.53 1.86.67.78.24 1.49.21 2.05.13.63-.09 1.92-.77 2.19-1.51.27-.75.27-1.38.19-1.51-.08-.13-.3-.21-.63-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 3.2C8.95 3.2 3.2 8.78 3.2 15.66c0 2.28.64 4.5 1.86 6.43L3.8 28.8l6.88-1.77a13.1 13.1 0 0 0 5.35 1.14c7.08 0 12.84-5.59 12.84-12.47S23.11 3.2 16.03 3.2Zm0 22.7c-1.74 0-3.44-.45-4.94-1.31l-.35-.2-4.08 1.05 1.05-3.9-.23-.37a9.94 9.94 0 0 1-1.52-5.27c0-5.64 4.74-10.23 10.57-10.23 5.82 0 10.56 4.59 10.56 10.23 0 5.65-4.74 10.24-10.56 10.24Zm5.93-7.67c-.33-.16-1.92-.92-2.22-1.02-.3-.11-.52-.16-.74.16-.22.31-.85 1.02-1.04 1.23-.19.21-.38.24-.7.08-.33-.16-1.38-.49-2.62-1.56-.97-.84-1.62-1.88-1.81-2.19-.19-.31-.02-.48.14-.64.15-.15.33-.38.49-.56.16-.19.22-.32.33-.53.11-.21.05-.4-.03-.56-.08-.16-.74-1.74-1.01-2.38-.27-.62-.54-.53-.74-.54h-.63c-.22 0-.57.08-.87.4-.3.32-1.14 1.1-1.14 2.67 0 1.57 1.17 3.09 1.33 3.3.16.21 2.3 3.42 5.57 4.79.78.33 1.39.53 1.86.67.78.24 1.49.21 2.05.13.63-.09 1.92-.77 2.19-1.51.27-.75.27-1.38.19-1.51-.08-.13-.3-.21-.63-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero {
  padding: 9.5rem 0 5.4rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.05fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  font-weight: 700;
  line-height: 0.96;
  max-width: 620px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 3.8vw, 4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-lede {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(22, 24, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.48rem 0.72rem;
  color: rgba(22, 24, 23, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 590px;
  border-radius: 42px 8px 42px 8px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(17, 20, 18, 0.12);
  background: #dfe3dd;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center;
}

.section {
  padding: 5.8rem 0;
}

.section-heading,
.split-heading {
  margin-bottom: 2rem;
}

.section-heading {
  max-width: 790px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: end;
}

.split-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-action {
  margin-top: 1.4rem;
}

.quote-section {
  background: var(--white);
}

.quote-steps,
.type-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quote-steps article,
.type-grid article,
.trust-grid article,
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.2rem;
}

.quote-steps article {
  background: linear-gradient(180deg, #ffffff, #f6f7f2);
}

.quote-steps span,
.service-card span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  background: rgba(242, 108, 33, 0.1);
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.quote-steps p,
.type-grid p,
.trust-grid p,
.service-card p,
.project-card p,
.timeline p,
.footer-about p,
.footer-contact p {
  margin-bottom: 0;
  color: var(--muted);
}

.visual-section {
  background: var(--paper);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(230px, 25vw);
  gap: 1rem;
}

.visual-tile {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.visual-tile-large {
  grid-row: span 2;
}

.visual-tile-wide {
  grid-column: span 2;
}

.visual-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.visual-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(17, 20, 18, 0), rgba(17, 20, 18, 0.7));
  color: var(--white);
  font-weight: 700;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-bottom: 0.65rem;
}

.service-card-featured {
  background: var(--charcoal);
  color: var(--white);
}

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

.service-card-featured span {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd0ad;
}

.service-page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f1 100%);
}

.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-link-card {
  display: grid;
  gap: 0.62rem;
  min-height: 186px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.1rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-link-card:hover,
.service-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 108, 33, 0.26);
  box-shadow: var(--shadow);
}

.service-link-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(242, 108, 33, 0.1);
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-link-card strong {
  font-size: 1.08rem;
  line-height: 1.15;
}

.service-link-card small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-detail-section {
  background: var(--paper);
}

.service-detail-grid {
  display: grid;
  gap: 1.25rem;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(1rem, 2.5vw, 1.6rem);
}

.service-detail:nth-child(even) .service-detail-media {
  order: -1;
}

.service-detail-copy {
  display: grid;
  gap: 1rem;
}

.service-detail-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
}

.service-detail-copy p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(22, 24, 23, 0.78);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--whatsapp);
}

.service-detail-media {
  min-height: 360px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 30px 8px 30px 8px;
  background: var(--soft);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.type-section,
.cost-section,
.faq-section {
  background: var(--white);
}

.type-grid article {
  min-height: 178px;
  background: var(--soft);
}

.projects-section {
  background: var(--charcoal-deep);
  color: var(--white);
}

.projects-section .eyebrow {
  color: #ffd0ad;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4rem 1.1rem 1.1rem;
  background: linear-gradient(180deg, rgba(17, 20, 18, 0), rgba(17, 20, 18, 0.82));
}

.project-card h3 {
  margin-bottom: 0.55rem;
}

.project-card p {
  color: rgba(255, 255, 255, 0.76);
}

.trust-section {
  background: var(--sage);
}

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

.trust-grid article {
  background: rgba(255, 255, 255, 0.74);
}

.cost-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.cost-layout p {
  color: var(--muted);
}

.cost-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.88rem;
}

td:first-child {
  font-weight: 700;
}

tr:last-child td {
  border-bottom: 0;
}

.process-section {
  background: var(--paper);
}

.process-page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f1 100%);
}

.process-overview-section {
  background: var(--white);
}

.process-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-overview-grid article,
.prep-card-grid article,
.approval-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.15rem;
}

.process-overview-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: rgba(242, 108, 33, 0.1);
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.process-overview-grid p,
.prep-layout p,
.prep-card-grid p,
.approval-panel p,
.approval-list p,
.timeline-guide-grid p,
.process-step-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-step-list {
  display: grid;
  gap: 0.9rem;
}

.process-step-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.15rem;
}

.process-step-list span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.process-step-list h3,
.prep-card-grid h3,
.approval-list h3,
.timeline-guide-grid h3 {
  margin-bottom: 0.55rem;
}

.prep-section {
  background: var(--white);
}

.prep-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.prep-layout > div:first-child {
  display: grid;
  gap: 1rem;
}

.prep-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.approval-section {
  background: var(--charcoal-deep);
  color: var(--white);
}

.approval-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.approval-panel .eyebrow {
  color: #ffd0ad;
}

.approval-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.approval-list {
  display: grid;
  gap: 1rem;
}

.approval-list article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.approval-list p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-guide-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline-guide-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.timeline-guide-grid div {
  padding: 1rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline article {
  position: relative;
  min-height: 192px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.2rem;
}

.areas-section {
  background: var(--charcoal-deep);
  color: var(--white);
}

.areas-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
}

.areas-panel .eyebrow {
  color: #ffd0ad;
}

.areas-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-chips span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

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

.faq-item button {
  width: 100%;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 1rem 3.5rem 1rem 1rem;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

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

.final-cta {
  background: var(--white);
}

.final-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(17, 20, 18, 0.88), rgba(17, 20, 18, 0.56)),
    url("../images/project-villa.png") center / cover;
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.final-cta-panel .eyebrow {
  color: #ffd0ad;
}

.final-cta-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 4rem 0 6rem;
  background: var(--charcoal-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.75fr) minmax(220px, 0.9fr);
  gap: 2rem;
}

.footer-brand img {
  width: 62px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.22rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-about p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.68);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.social-icon {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(242, 108, 33, 0.5);
  background: rgba(242, 108, 33, 0.18);
}

.social-icon::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  background: currentColor;
}

.social-icon span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.social-instagram::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 2h9A5.5 5.5 0 0 1 22 7.5v9a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 16.5v-9A5.5 5.5 0 0 1 7.5 2Zm0 2A3.5 3.5 0 0 0 4 7.5v9A3.5 3.5 0 0 0 7.5 20h9a3.5 3.5 0 0 0 3.5-3.5v-9A3.5 3.5 0 0 0 16.5 4h-9ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.25-2.35a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 2h9A5.5 5.5 0 0 1 22 7.5v9a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 16.5v-9A5.5 5.5 0 0 1 7.5 2Zm0 2A3.5 3.5 0 0 0 4 7.5v9A3.5 3.5 0 0 0 7.5 20h9a3.5 3.5 0 0 0 3.5-3.5v-9A3.5 3.5 0 0 0 16.5 4h-9ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm5.25-2.35a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-tiktok::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.75 2c.28 2.28 1.55 3.78 3.75 3.92v3.02a7.28 7.28 0 0 1-3.67-1.1v6.46c0 3.3-2.3 5.7-5.55 5.7-3.02 0-5.28-2.12-5.28-4.98 0-3.18 2.78-5.36 6.05-4.76v3.15c-1.35-.43-2.88.32-2.88 1.6 0 1.03.83 1.78 1.95 1.78 1.3 0 2.2-.77 2.2-2.43V2h3.43Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.75 2c.28 2.28 1.55 3.78 3.75 3.92v3.02a7.28 7.28 0 0 1-3.67-1.1v6.46c0 3.3-2.3 5.7-5.55 5.7-3.02 0-5.28-2.12-5.28-4.98 0-3.18 2.78-5.36 6.05-4.76v3.15c-1.35-.43-2.88.32-2.88 1.6 0 1.03.83 1.78 1.95 1.78 1.3 0 2.2-.77 2.2-2.43V2h3.43Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.social-youtube::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.58 7.18a3 3 0 0 0-2.11-2.12C17.6 4.56 12 4.56 12 4.56s-5.6 0-7.47.5a3 3 0 0 0-2.11 2.12A31.2 31.2 0 0 0 1.92 12c0 1.6.17 3.22.5 4.82a3 3 0 0 0 2.11 2.12c1.87.5 7.47.5 7.47.5s5.6 0 7.47-.5a3 3 0 0 0 2.11-2.12c.33-1.6.5-3.21.5-4.82 0-1.6-.17-3.22-.5-4.82ZM10 15.45v-6.9L16 12l-6 3.45Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.58 7.18a3 3 0 0 0-2.11-2.12C17.6 4.56 12 4.56 12 4.56s-5.6 0-7.47.5a3 3 0 0 0-2.11 2.12A31.2 31.2 0 0 0 1.92 12c0 1.6.17 3.22.5 4.82a3 3 0 0 0 2.11 2.12c1.87.5 7.47.5 7.47.5s5.6 0 7.47-.5a3 3 0 0 0 2.11-2.12c.33-1.6.5-3.21.5-4.82 0-1.6-.17-3.22-.5-4.82ZM10 15.45v-6.9L16 12l-6 3.45Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.footer-links a,
.footer-contact a,
.footer-links p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.mobile-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--whatsapp-ink);
  padding: 0.85rem 1.05rem;
  box-shadow: 0 12px 26px rgba(17, 20, 18, 0.18);
  font-weight: 700;
}

.landing-hero-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.45rem;
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem;
  box-shadow: 0 14px 28px rgba(17, 20, 18, 0.16);
}

.landing-hero-card strong {
  font-size: 1.05rem;
}

.landing-hero-card span,
.landing-hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.price-card-grid,
.package-grid,
.factor-grid,
.before-after-grid,
.gallery-six,
.quick-link-grid {
  display: grid;
  gap: 1rem;
}

.price-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.price-table-wrap {
  margin-top: 1rem;
}

.price-card,
.package-card,
.factor-card,
.quick-link-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.15rem;
}

.price-card {
  display: grid;
  gap: 0.45rem;
  min-height: 146px;
}

.price-card strong {
  color: var(--orange-dark);
  font-size: 1.45rem;
  line-height: 1;
}

.price-card span,
.package-card span,
.factor-card span,
.quick-link-card span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.package-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  gap: 1rem;
}

.package-card-featured {
  background: var(--charcoal);
  color: var(--white);
}

.package-card-featured p,
.package-card-featured li,
.package-card-featured span {
  color: rgba(255, 255, 255, 0.76);
}

.package-card h3 {
  margin-bottom: 0;
}

.package-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.package-card .button {
  margin-top: auto;
}

.factor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.factor-card {
  min-height: 126px;
}

.factor-card strong,
.quick-link-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.before-after-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.before-after-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.before-after-card h3 {
  padding: 1rem 1rem 0;
}

.before-after-card p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.before-after-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.before-after-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: var(--charcoal);
}

.before-after-tile img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.before-after-tile.before img {
  filter: saturate(0.52) contrast(0.88) brightness(0.76);
}

.before-after-tile.after img {
  filter: saturate(1.08) contrast(1.02) brightness(1.04);
}

.before-after-tile span,
.gallery-label {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.gallery-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.2rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(17, 20, 18, 0), rgba(17, 20, 18, 0.76));
  color: var(--white);
  font-weight: 800;
}

.quick-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-link-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-link-card:hover,
.quick-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 108, 33, 0.28);
  box-shadow: var(--shadow);
}

.note-box {
  border-left: 4px solid var(--orange);
  background: rgba(242, 108, 33, 0.08);
  padding: 1rem;
  color: rgba(22, 24, 23, 0.78);
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.trust-strip span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 24, 23, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(22, 24, 23, 0.78);
  padding: 0.55rem 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(242, 108, 33, 0.28);
  box-shadow: var(--shadow);
}

.blog-card-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--charcoal);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-card-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  background: rgba(242, 108, 33, 0.1);
  color: var(--orange-dark);
  padding: 0.34rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-highlights {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-highlights li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(22, 24, 23, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--orange);
}

html[dir="rtl"] .blog-highlights li {
  padding-left: 0;
  padding-right: 1.1rem;
}

html[dir="rtl"] .blog-highlights li::before {
  left: auto;
  right: 0;
}

.bathroom-guide-hero {
  padding: 8.2rem 0 4.6rem;
}

.bathroom-guide-hero .service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  gap: 3.5rem;
  align-items: center;
}

.bathroom-guide-hero .hero-copy {
  max-width: 650px;
}

.bathroom-guide-hero h1 {
  max-width: 680px;
  font-size: 3.75rem;
  line-height: 1;
}

html[dir="rtl"] .bathroom-guide-hero h1 {
  font-size: 3.65rem;
  line-height: 1.08;
}

html[lang^="ru"] .bathroom-guide-hero h1 {
  font-size: 3.35rem;
  line-height: 1.04;
}

.article-hero .hero-lede {
  max-width: 720px;
}

.bathroom-guide-hero .hero-lede {
  max-width: 650px;
}

.bathroom-guide-hero .service-hero-media,
.bathroom-guide-hero .service-hero-media img {
  min-height: 520px;
}

.bathroom-guide-hero .service-hero-media {
  border-radius: 8px;
}

.bathroom-guide-hero .hero-proof-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.32rem;
  width: min(calc(100% - 2rem), 360px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(17, 20, 18, 0.9);
  color: var(--white);
  padding: 1rem 1.05rem;
  box-shadow: 0 12px 28px rgba(17, 20, 18, 0.2);
}

html[dir="rtl"] .bathroom-guide-hero .hero-proof-card {
  right: 1rem;
  left: auto;
}

.bathroom-guide-hero .hero-proof-card strong,
.bathroom-guide-hero .hero-proof-card span,
.bathroom-guide-hero .hero-proof-card p {
  margin: 0;
}

.bathroom-guide-hero .hero-proof-card strong {
  font-size: 1.02rem;
}

.bathroom-guide-hero .hero-proof-card span {
  color: #ffd0ad;
  font-size: 0.82rem;
  font-weight: 800;
}

.bathroom-guide-hero .hero-proof-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.long-form-article h2 {
  max-width: 100%;
  font-size: 3rem;
  line-height: 1.1;
  overflow-wrap: break-word;
}

html[dir="rtl"] .long-form-article h2 {
  line-height: 1.18;
}

.article-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(22, 24, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 0.38rem 0.65rem;
  color: rgba(22, 24, 23, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-intro-section,
.article-finish-section {
  background: var(--white);
}

.article-reading-width {
  max-width: 900px;
}

.article-prose p {
  color: rgba(22, 24, 23, 0.76);
  line-height: 1.82;
}

.article-prose p:last-child {
  margin-bottom: 0;
}

.article-prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
}

.article-prose h3:first-child {
  margin-top: 0;
}

.article-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2rem;
  border-radius: var(--radius);
  background: var(--charcoal-deep);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--white);
}

.article-cta-band strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.article-cta-band p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.article-cta-band .button {
  flex: 0 0 auto;
}

.article-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: 2rem;
}

.article-note {
  border-left: 4px solid var(--orange);
  background: rgba(242, 108, 33, 0.08);
  padding: 1.25rem;
}

html[dir="rtl"] .article-note {
  border-left: 0;
  border-right: 4px solid var(--orange);
}

.article-section-tail {
  margin-top: 2rem;
}

.article-idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.article-idea-grid .service-link-card {
  min-height: 0;
}

.article-media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.article-feature-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.article-feature-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-feature-image figcaption {
  padding: 0.9rem 1rem 1rem;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  line-height: 1.55;
}

.article-mid-cta {
  margin-top: 2.5rem;
}

.article-process-list {
  display: grid;
  gap: 0.9rem;
  max-width: 980px;
}

.article-process-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.15rem;
  min-height: 0;
}

.article-process-list article > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.article-process-list h3 {
  margin-bottom: 0.55rem;
}

.article-process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-approval-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.official-guidance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.official-guidance-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.official-guidance-links a:hover,
.official-guidance-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.article-areas-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.area-section {
  background: var(--charcoal-deep);
  color: var(--white);
}

.article-areas-panel .eyebrow {
  color: #ffd0ad;
}

.article-areas-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.article-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.article-trust-grid article {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 1.2rem;
}

.article-trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

html[dir="rtl"] th,
html[dir="rtl"] td {
  text-align: right;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 0.85rem;
  }

  .article-idea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .cost-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .bathroom-guide-hero .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bathroom-guide-hero .hero-copy {
    max-width: 760px;
  }

  .bathroom-guide-hero h1,
  html[dir="rtl"] .bathroom-guide-hero h1 {
    font-size: 3.55rem;
  }

  html[lang^="ru"] .bathroom-guide-hero h1 {
    font-size: 3.2rem;
  }

  .hero-media,
  .hero-media img {
    min-height: 500px;
  }

  .quote-steps,
  .type-grid,
  .service-nav-grid,
  .process-overview-grid,
  .timeline-guide-grid,
  .price-card-grid,
  .factor-grid,
  .gallery-six,
  .quick-link-grid,
  .blog-card-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .package-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .prep-layout,
  .approval-panel,
  .article-approval-panel,
  .article-media-split {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-detail-media {
    order: 0;
  }

  .visual-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(250px, 36vw);
  }

  .visual-tile-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .visual-tile-wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0.5rem 0;
  }

  .nav {
    border-radius: 20px 8px 20px 8px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 5.85rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 0.2rem;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .services-grid,
  .service-nav-grid,
  .process-overview-grid,
  .prep-card-grid,
  .timeline-guide-grid,
  .package-grid,
  .before-after-grid,
  .quick-link-grid,
  .trust-grid,
  .timeline,
  .areas-panel,
  .article-areas-panel,
  .final-cta-panel,
  .footer-grid,
  .split-heading,
  .article-columns {
    grid-template-columns: 1fr;
  }

  .article-trust-grid {
    grid-template-columns: 1fr;
  }

  .article-cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .article-cta-band .button {
    align-self: flex-start;
  }

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

  .areas-panel {
    padding: 1.5rem;
  }

  .final-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .layout,
  .nav {
    width: min(calc(100% - 1rem), var(--max));
  }

  .article-idea-grid {
    grid-template-columns: 1fr;
  }

  .long-form-article h2,
  html[dir="rtl"] .long-form-article h2 {
    font-size: 2.35rem;
    line-height: 1.16;
  }

  .brand-logo {
    width: 50px;
    height: 38px;
  }

  .brand-name {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.92rem;
  }

  .hero {
    padding: 7.6rem 0 4.2rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .button,
  .section-action .button,
  .final-actions .button {
    width: 100%;
  }

  .hero-points li {
    width: 100%;
    justify-content: center;
  }

  .hero-media,
  .hero-media img {
    min-height: 380px;
  }

  .hero-media {
    border-radius: 28px 8px 28px 8px;
  }

  .bathroom-guide-hero {
    padding: 7.2rem 0 3.6rem;
  }

  .bathroom-guide-hero .service-hero-grid {
    gap: 1.5rem;
  }

  .bathroom-guide-hero h1,
  html[dir="rtl"] .bathroom-guide-hero h1 {
    font-size: 3.05rem;
  }

  html[lang^="ru"] .bathroom-guide-hero h1 {
    font-size: 2.65rem;
  }

  .bathroom-guide-hero .service-hero-media,
  .bathroom-guide-hero .service-hero-media img {
    min-height: 360px;
  }

  .bathroom-guide-hero .service-hero-media {
    border-radius: 8px;
  }

  .bathroom-guide-hero .hero-proof-card {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    padding: 0.85rem;
  }

  .section {
    padding: 4.3rem 0;
  }

  .quote-steps,
  .type-grid,
  .service-nav-grid,
  .process-overview-grid,
  .prep-card-grid,
  .timeline-guide-grid,
  .price-card-grid,
  .factor-grid,
  .visual-grid,
  .gallery-six,
  .blog-card-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-auto-rows: minmax(260px, 72vw);
  }

  .visual-tile-large,
  .visual-tile-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card {
    min-height: auto;
  }

  .service-link-card {
    min-height: auto;
  }

  .service-detail {
    padding: 0.8rem;
  }

  .service-detail-media,
  .service-detail-media img {
    min-height: 280px;
  }

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

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

  .project-card {
    min-height: 360px;
  }

  .before-after-pair {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 250px;
  }

  .area-chips span {
    min-height: 36px;
    font-size: 0.9rem;
  }

  .article-meta span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .article-cta-band .button {
    align-self: stretch;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .mobile-whatsapp {
    left: 0.7rem;
    right: 0.7rem;
    justify-content: center;
  }
}
