@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink: #18201d;
  --ink-soft: #33413b;
  --forest: #244d3e;
  --forest-deep: #17392e;
  --terracotta: #a84f32;
  --paper: #f7f6f2;
  --white: #ffffff;
  --mist: #e7ece8;
  --line: #d4d9d5;
  --muted: #66706b;
  --focus: #f2b84b;
  --shadow: 0 16px 40px rgba(24, 32, 29, 0.12);
  --content: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.estimator-page {
  background: var(--paper);
}

a {
  color: inherit;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.site-header.is-solid,
.estimator-page .site-header {
  position: sticky;
  background: var(--white);
  color: var(--ink);
  border-bottom-color: var(--line);
}

.header-inner {
  width: var(--content);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: url("/assets/images/logo-marbre-bahia.svg") center / cover no-repeat;
  color: transparent;
  font-size: 0;
}

.site-header.is-solid .brand-mark,
.estimator-page .brand-mark {
  border-color: rgba(24, 32, 29, 0.18);
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.language-switch {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:not(.button):hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.language-links {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.language-links a {
  min-width: 27px;
  padding: 5px 4px;
  border-bottom: 1px solid transparent;
  text-align: center;
}

.language-links a[aria-current="page"] {
  border-bottom-color: currentColor;
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: #8f3f28;
}

.button.secondary {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  background: var(--forest);
}

.button.dark:hover {
  background: var(--forest-deep);
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
}

.arrow {
  font-size: 19px;
  line-height: 1;
}

.menu-button {
  width: 44px;
  height: 44px;
  margin-left: auto;
  display: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 84svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: #4a514c url("../images/hero-kitchen.jpg") center center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 20, 17, 0.82) 0%, rgba(11, 20, 17, 0.48) 38%, rgba(11, 20, 17, 0.05) 70%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 150px 0 84px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f6b59e;
}

.arabic-calligraphy-mark {
  width: min(230px, 58vw);
  margin: -2px 0 14px;
}

.arabic-calligraphy-mark img {
  width: 100%;
  height: auto;
  display: block;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 400;
  line-height: 0.98;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 19px;
  line-height: 1.55;
}

.service-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.service-signature span {
  color: #f6b59e;
}

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

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.trust-band {
  background: var(--forest);
  color: var(--white);
}

.trust-list {
  width: var(--content);
  min-height: 94px;
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}

.trust-item {
  min-width: 0;
  min-height: 54px;
  padding-left: 66px;
  position: relative;
  border-left: 2px solid #db8b6d;
}

.trust-icon {
  position: absolute;
  top: 2px;
  left: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #f6b59e;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 15px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.section {
  padding: 94px 0;
}

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

.section.dark-section {
  background: var(--ink);
  color: var(--white);
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.content-title {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.06;
}

.section-heading p,
.content-lead {
  color: var(--muted);
  font-size: 18px;
}

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

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

.project-shortcuts {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-shortcut {
  min-width: 0;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 16px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.project-shortcut:first-child {
  border-right: 1px solid var(--line);
}

.project-shortcut-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  background: #f2e6e0;
  border-radius: 50%;
}

.project-shortcut-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}

.project-shortcut strong,
.project-shortcut span {
  display: block;
}

.project-shortcut strong {
  margin-bottom: 3px;
  font-size: 17px;
}

.project-shortcut-copy span {
  color: var(--muted);
  font-size: 13px;
}

.project-shortcut .arrow {
  color: var(--terracotta);
  font-size: 22px;
}

.service-card {
  min-height: 470px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-soft);
  color: var(--white);
  text-decoration: none;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 16, 14, 0.84), rgba(10, 16, 14, 0.02) 68%);
  content: "";
}

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

.service-card-copy {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

.service-card p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.level {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.level:last-child {
  border-right: 0;
}

.level-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  background: #f2e6e0;
  border-radius: 50%;
}

.level-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.level-number {
  width: 34px;
  height: 34px;
  margin-bottom: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  font-weight: 700;
}

.level h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

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

.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  padding: 0 0 30px 68px;
}

.method-step-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
}

.method-step-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}

.method-steps li::after {
  position: absolute;
  top: 48px;
  bottom: 4px;
  left: 21px;
  width: 1px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
}

.method-steps li:last-child::after {
  display: none;
}

.method-steps strong,
.method-steps span {
  display: block;
}

.method-steps span {
  color: rgba(255, 255, 255, 0.68);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.material {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.material-swatch {
  width: 100%;
  height: 74px;
  margin-bottom: 26px;
  border: 1px solid rgba(24, 32, 29, 0.14);
  background-color: #d8d8d2;
}

.swatch-granite {
  background-image: radial-gradient(circle at 20% 30%, #767773 0 2px, transparent 3px), radial-gradient(circle at 70% 60%, #2d312f 0 2px, transparent 3px), linear-gradient(135deg, #a9aaa5, #d5d5cf);
}

.swatch-quartz {
  background-image: linear-gradient(105deg, transparent 40%, rgba(103, 106, 103, 0.34) 41%, transparent 43%), linear-gradient(145deg, #f0efea, #dcdedb);
}

.swatch-marble {
  background-image: linear-gradient(118deg, transparent 35%, rgba(91, 105, 99, 0.32) 36%, transparent 38%), linear-gradient(160deg, #f5f4ed, #d9ddd9);
}

.swatch-travertine {
  background-image: repeating-linear-gradient(0deg, #d9d0bc 0 5px, #c7bca3 6px, #e8dfcd 10px);
}

.material h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.material p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.material-visual-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.material-visual-card:hover .material-photo {
  transform: scale(1.025);
}

.material-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-image: url("../images/stone-materials-atlas.jpg");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  transition: transform 220ms ease;
}

.atlas-1 { background-position: 0 0; }
.atlas-2 { background-position: 50% 0; }
.atlas-3 { background-position: 100% 0; }
.atlas-4 { background-position: 0 100%; }
.atlas-5 { background-position: 50% 100%; }
.atlas-6 { background-position: 100% 100%; }

.catalog-atlas {
  background-image: var(--stone-image);
  background-position: var(--stone-position);
  background-size: 500% 400%;
}

.local-a-1,
.local-a-2,
.local-a-3,
.local-a-4,
.local-a-5,
.local-a-6 { background-image: url("../images/marbre-local-clair.jpg"); }

.local-b-1,
.local-b-2,
.local-b-3,
.local-b-4,
.local-b-5,
.local-b-6 { background-image: url("../images/marbre-local-noir-gris.jpg"); }

.local-c-1,
.local-c-2,
.local-c-3,
.local-c-4,
.local-c-5,
.local-c-6 { background-image: url("../images/marbre-local-couleurs.jpg"); }

.local-a-1,
.local-b-1,
.local-c-1 { background-position: 0 0; }

.local-a-2,
.local-b-2,
.local-c-2 { background-position: 50% 0; }

.local-a-3,
.local-b-3,
.local-c-3 { background-position: 100% 0; }

.local-a-4,
.local-b-4,
.local-c-4 { background-position: 0 100%; }

.local-a-5,
.local-b-5,
.local-c-5 { background-position: 50% 100%; }

.local-a-6,
.local-b-6,
.local-c-6 { background-position: 100% 100%; }

.material-visual-copy {
  padding: 20px;
}

.material-visual-copy h3 {
  margin-bottom: 5px;
  font-size: 19px;
}

.material-visual-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-actions {
  margin-top: 28px;
}

.filter-band {
  margin-bottom: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.filter-controls .field select {
  background: var(--white);
}

.filter-result {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.local-promise {
  margin: 0 0 30px;
  padding: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.local-promise strong,
.local-promise span {
  display: block;
}

.local-promise strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.local-promise span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.catalog-overview {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.catalog-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.catalog-category {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.catalog-category > strong {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.catalog-category h2 {
  margin-bottom: 7px;
  font-size: 19px;
}

.catalog-category p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-application-guides {
  margin-bottom: 34px;
}

.catalog-application-guides h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.catalog-application-guides > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-application-guides a {
  min-width: 0;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.catalog-application-guides a:last-child {
  border-right: 0;
}

.catalog-application-guides svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--terracotta);
}

.stone-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stone-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  scroll-margin-top: 96px;
}

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

.stone-card-copy {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.stone-card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.stone-card h2 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.08;
}

.stone-reference {
  flex: 0 0 auto;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
}

.stone-card-copy > p {
  min-height: 66px;
  color: var(--muted);
  font-size: 14px;
}

.stone-card-copy > .stone-applications {
  min-height: 0;
  margin: 0 0 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.stone-applications strong,
.stone-applications span,
.application-fit strong,
.application-fit span {
  display: block;
}

.stone-applications strong,
.application-fit strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 11px;
  text-transform: uppercase;
}

.stone-tags {
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.stone-tags li {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-soft);
  font-size: 11px;
}

.stone-card .button {
  width: 100%;
  margin-top: auto;
}

.stone-card-copy > .arrow-link {
  margin-bottom: 18px;
}

.stone-category {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.gallery-disclaimer {
  margin-top: 34px;
  padding: 18px;
  border-left: 3px solid var(--terracotta);
  background: #f7ebe6;
  color: var(--ink-soft);
  font-size: 14px;
}

.proof-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 46px;
  align-items: center;
}

.proof-stat {
  padding-left: 28px;
  border-left: 3px solid var(--terracotta);
}

.proof-stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1;
}

.proof-stat span {
  color: var(--muted);
}

.cta-band {
  min-height: 520px;
  padding: 92px 0;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--forest-deep) url("/assets/images/project-consultation-v2.webp") center 48% / cover no-repeat;
  color: var(--white);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 28, 23, 0.96) 0%, rgba(13, 28, 23, 0.88) 42%, rgba(13, 28, 23, 0.28) 76%, rgba(13, 28, 23, 0.18) 100%);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  display: block;
}

.cta-copy {
  max-width: 650px;
}

.cta-inner h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
}

.cta-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.cta-inner .button {
  background: var(--terracotta);
  color: var(--white);
}

.cta-reassurance {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.cta-reassurance svg {
  width: 17px;
  height: 17px;
  color: #f6b59e;
}

.site-footer {
  padding: 58px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  width: var(--content);
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 44px;
}

.footer-grid.seo-footer {
  grid-template-columns: 1.15fr 1fr 1fr 0.9fr;
}

.keyword-links {
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.keyword-links a {
  padding: 9px 12px;
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.keyword-links a:hover {
  border-color: var(--forest);
}

.footer-grid > div:first-child::before {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: url("/assets/images/logo-marbre-bahia.svg") center / cover no-repeat;
  content: "";
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  width: var(--content);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
  text-align: right;
}

html[dir="rtl"] .header-inner,
html[dir="rtl"] .desktop-nav,
html[dir="rtl"] .brand,
html[dir="rtl"] .button,
html[dir="rtl"] .cta-reassurance,
html[dir="rtl"] .stone-card-heading,
html[dir="rtl"] .form-actions,
html[dir="rtl"] .estimator-topline,
html[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

html[dir="rtl"] .desktop-nav {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .menu-button {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .guide-fact,
html[dir="rtl"] .trust-item,
html[dir="rtl"] .office-location {
  border-right-color: var(--terracotta);
  border-left-color: transparent;
}

html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  text-align: right;
}

html[dir="rtl"] .arrow {
  display: inline-block;
  transform: scaleX(-1);
}

.page-hero {
  padding: 150px 0 76px;
  background: var(--forest);
  color: var(--white);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: end;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.guide-hero {
  padding: 136px 0 68px;
  background: var(--forest-deep);
  color: var(--white);
}

.guide-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.breadcrumbs {
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.breadcrumbs a {
  text-underline-offset: 4px;
}

.guide-hero h1 {
  max-width: 780px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.04;
}

.guide-hero-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

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

.guide-hero-visual {
  min-width: 0;
}

.guide-hero-visual .material-photo {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.guide-hero-caption {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.guide-intro {
  width: min(820px, 100%);
  margin-bottom: 46px;
}

.guide-intro h2,
.guide-copy h2,
.guide-band h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.12;
}

.guide-intro p,
.guide-copy p {
  color: var(--ink-soft);
}

.guide-fact {
  margin: 30px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--terracotta);
  background: var(--paper);
}

.guide-fact strong {
  display: block;
  margin-bottom: 5px;
}

.guide-fact p {
  margin: 0;
}

.guide-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 70px;
  align-items: start;
}

.guide-copy h3 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.guide-copy ul {
  margin: 18px 0 28px;
  padding-left: 21px;
}

.guide-copy li + li {
  margin-top: 8px;
}

.guide-aside {
  padding: 28px;
  border-top: 4px solid var(--terracotta);
  background: var(--paper);
}

.guide-aside h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.guide-aside p {
  color: var(--muted);
}

.guide-aside .button {
  width: 100%;
  margin-top: 8px;
}

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

.alternative-item {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.alternative-item .material-photo {
  aspect-ratio: 4 / 3;
}

.alternative-copy {
  padding: 20px 0 22px;
}

.alternative-copy h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.alternative-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-band {
  padding: 76px 0;
  background: var(--paper);
}

.guide-band.dark {
  background: var(--forest);
  color: var(--white);
}

.guide-band.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.comparison-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  background: var(--white);
  color: var(--ink);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 17px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--mist);
  font-size: 14px;
}

.faq-list {
  width: min(860px, 100%);
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

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

.guide-card {
  min-height: 210px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid var(--terracotta);
  background: var(--white);
  text-decoration: none;
}

.guide-card:hover {
  box-shadow: var(--shadow);
}

.guide-card span {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-card .arrow-link {
  margin-top: 24px;
  color: var(--forest);
  font-weight: 800;
}

.availability-note {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.content-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.estimator-shell {
  width: min(920px, calc(100% - 32px));
  margin: 42px auto 80px;
}

.estimator-intro {
  margin-bottom: 24px;
}

.estimator-intro h1 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.estimator-topline {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--line);
}

.progress-bar {
  width: 0;
  height: 100%;
  background: var(--terracotta);
  transition: width 180ms ease;
}

.estimator-panel {
  min-height: 560px;
  margin-top: 18px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step {
  display: none;
}

.step[data-active] {
  display: block;
}

.step h1,
.step h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.step-intro {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

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

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

.choice {
  min-width: 0;
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice label {
  min-height: 114px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
}

.choice label:hover {
  border-color: var(--forest);
}

.choice input:checked + label {
  border: 2px solid var(--forest);
  background: var(--mist);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.choice strong {
  font-size: 16px;
}

.choice small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

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

.field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #aeb7b2;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
}

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

.check-option {
  min-height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.check-option input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  accent-color: var(--forest);
}

.file-drop {
  min-height: 150px;
  padding: 28px;
  display: grid;
  place-items: center;
  border: 1px dashed #87938d;
  border-radius: 5px;
  background: var(--paper);
  text-align: center;
}

.file-drop input {
  max-width: 100%;
}

.file-list {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.responsibility-note {
  margin: 22px 0;
  padding: 18px;
  border-left: 3px solid var(--terracotta);
  background: #f7ebe6;
  color: var(--ink-soft);
}

.form-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.back-button {
  min-height: 44px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
  cursor: pointer;
}

.form-error {
  min-height: 24px;
  margin: 14px 0 0;
  color: #9b271d;
  font-size: 14px;
  font-weight: 700;
}

.success-panel {
  padding: 28px;
  border-left: 4px solid var(--forest);
  background: var(--mist);
}

.success-reference {
  margin: 18px 0;
  font-size: 24px;
  font-weight: 700;
}

.summary-list {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 170px 1fr;
  border-top: 1px solid var(--line);
}

.summary-list dt,
.summary-list dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.summary-list dt {
  color: var(--muted);
}

.privacy-line {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.privacy-line input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--forest);
}

.contact-alternative {
  margin: 22px 0 0;
}

.contact-alternative a,
.estimator-topline a {
  color: var(--forest);
  font-weight: 700;
  text-underline-offset: 4px;
}

.contact-page {
  padding: 76px 0 90px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-intro {
  padding-top: 34px;
}

.contact-intro h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 64px);
}

.contact-panel {
  min-height: 0;
  margin: 0;
}

.contact-submit {
  width: 100%;
  margin-top: 8px;
}

.whatsapp-float {
  min-height: 48px;
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: #1f7a51;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(16, 43, 32, 0.28);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #176640;
}

.whatsapp-status {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.application-hero {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.application-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 21, 18, 0.9) 0%, rgba(12, 21, 18, 0.68) 46%, rgba(12, 21, 18, 0.12) 78%);
  content: "";
}

.application-hero-media,
.application-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.application-hero-media img {
  object-fit: cover;
}

.application-hero-copy {
  position: relative;
  z-index: 1;
  padding: 104px 0 72px;
}

.application-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 70px);
}

.application-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.application-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #f6b59e;
}

.application-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}

.application-advice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.application-advice article {
  min-width: 0;
  padding: 30px 28px 32px;
  border-right: 1px solid var(--line);
}

.application-advice article:last-child {
  border-right: 0;
}

.application-advice article > span {
  display: block;
  margin-bottom: 26px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
}

.application-advice h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.application-advice p {
  margin: 0;
  color: var(--muted);
}

.application-caution {
  margin-top: 34px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 18px;
  border-left: 4px solid var(--terracotta);
  background: #f7ebe6;
}

.application-caution > svg {
  width: 25px;
  height: 25px;
  color: var(--terracotta);
}

.application-caution h2 {
  margin-bottom: 6px;
  font-size: 20px;
}

.application-caution p {
  margin: 0;
  color: var(--ink-soft);
}

.application-selection-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}

.application-selection-heading > div {
  max-width: 760px;
}

.application-selection-heading .button {
  flex: 0 0 auto;
}

.application-stone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.application-stone {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.application-stone-image {
  overflow: hidden;
}

.application-stone-image:hover .material-photo {
  transform: scale(1.025);
}

.application-stone-copy {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.application-stone h3 {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

.application-stone h3 a {
  color: var(--ink);
  text-decoration: none;
}

.application-stone .stone-tags {
  margin-top: 10px;
}

.application-fit {
  margin: 0 0 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.stone-reason-label {
  margin-top: 0;
  color: var(--terracotta);
  font-size: 11px;
  text-transform: uppercase;
}

.application-stone-copy > p {
  margin: 5px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.application-stone-copy > .arrow-link {
  margin-top: auto;
}

.arrow-link {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.technical-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.technical-checks article {
  min-width: 0;
  padding: 24px 24px 24px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.technical-checks article:nth-child(odd) {
  margin-right: 28px;
}

.technical-checks svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}

.technical-checks h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.technical-checks p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.application-crosslinks {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.application-crosslinks .container > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.application-crosslinks a {
  min-width: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.application-crosslinks a:last-child {
  border-right: 0;
}

.application-crosslinks svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--terracotta);
}

html[dir="rtl"] .application-advice article,
html[dir="rtl"] .application-crosslinks a {
  border-right: 0;
  border-left: 1px solid var(--line);
}

html[dir="rtl"] .application-caution {
  border-right: 4px solid var(--terracotta);
  border-left: 0;
}

.product-hero {
  padding: 132px 0 72px;
  background: var(--paper);
}

.breadcrumbs {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--forest);
  font-weight: 700;
  text-underline-offset: 3px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 68px;
  align-items: center;
}

.product-hero-copy {
  min-width: 0;
}

.product-hero-copy h1 {
  max-width: 760px;
  margin: 10px 0 24px;
  font-size: 58px;
  line-height: 1.02;
}

.product-lead {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-hero-copy .stone-tags {
  margin: 26px 0;
}

.product-stone-figure {
  margin: 0;
  min-width: 0;
}

.product-stone-image {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(16, 39, 31, 0.14);
}

.product-stone-figure figcaption {
  padding-top: 11px;
  color: var(--muted);
  font-size: 12px;
}

.product-facts {
  padding-top: 34px;
  padding-bottom: 34px;
}

.product-facts dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-facts dl > div {
  min-width: 0;
  padding: 21px 24px;
  border-right: 1px solid var(--line);
}

.product-facts dl > div:last-child {
  border-right: 0;
}

.product-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.narrow-content {
  width: min(860px, var(--content));
}

.product-origin h2,
.product-faq h2 {
  margin: 8px 0 22px;
  font-size: 40px;
}

.product-origin p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.process-grid {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid li {
  min-width: 0;
  padding: 26px 24px 30px;
  border-right: 1px solid var(--line);
}

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

.process-grid li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 22px 0 10px;
  font-size: 19px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px;
}

.pros-cons-grid > div {
  min-width: 0;
  border-top: 3px solid var(--forest);
}

.pros-cons-grid > div:last-child {
  border-color: var(--terracotta);
}

.pros-cons-heading {
  padding: 25px 0 17px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.pros-cons-heading svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.pros-cons-heading.positive svg {
  color: var(--forest);
}

.pros-cons-heading.caution svg {
  color: var(--terracotta);
}

.pros-cons-heading h2 {
  margin: 0;
  font-size: 28px;
}

.pros-cons-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pros-cons-grid li {
  padding: 16px 0 16px 24px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.pros-cons-grid li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 24px;
  left: 0;
  border-radius: 50%;
  background: var(--terracotta);
}

.use-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.use-link-grid a {
  min-height: 92px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.use-link-grid a:nth-child(3n) {
  border-right: 0;
}

.use-link-grid svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--terracotta);
}

.selection-note {
  margin-top: 38px;
  padding: 25px 0 4px 24px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--terracotta);
}

.selection-note h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.selection-note p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
}

.related-stone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.related-stone-grid article {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.related-stone-image {
  display: block;
  overflow: hidden;
}

.related-stone-image .material-photo {
  aspect-ratio: 4 / 3;
}

.related-stone-grid article > div {
  padding: 18px 0 22px;
}

.related-stone-grid h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.related-stone-grid h3 a {
  color: var(--ink);
  text-decoration: none;
}

.related-stone-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
}

.technical-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
}

.stone-card-image-link {
  display: block;
  overflow: hidden;
}

.stone-card-heading h2 a {
  color: var(--ink);
  text-decoration: none;
}

html[dir="rtl"] .product-facts dl > div,
html[dir="rtl"] .process-grid li,
html[dir="rtl"] .use-link-grid a {
  border-right: 0;
  border-left: 1px solid var(--line);
}

html[dir="rtl"] .pros-cons-grid li {
  padding-right: 24px;
  padding-left: 0;
}

html[dir="rtl"] .pros-cons-grid li::before {
  right: 0;
  left: auto;
}

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

@media (max-width: 900px) {
  :root {
    --content: min(100% - 32px, 720px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .product-stone-figure {
    width: min(620px, 100%);
  }

  .product-facts dl,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-facts dl > div:nth-child(even),
  .process-grid li:nth-child(even) {
    border-right: 0;
  }

  html[dir="rtl"] .product-facts dl > div:nth-child(even),
  html[dir="rtl"] .process-grid li:nth-child(even) {
    border-left: 0;
  }

  .pros-cons-grid {
    gap: 34px;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu[data-open] {
    width: 100%;
    padding: 18px 16px 22px;
    display: grid;
    gap: 5px;
    background: var(--white);
    color: var(--ink);
    border-top: 1px solid var(--line);
  }

  .mobile-menu a {
    padding: 12px;
    text-decoration: none;
  }

  .mobile-menu .language-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2px;
  }

  .mobile-menu .language-links a {
    min-width: 0;
    padding: 9px 4px;
  }

  .site-header:has(.mobile-menu[data-open]) {
    background: var(--white);
    color: var(--ink);
  }

  .trust-list,
  .material-grid,
  .stone-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-categories {
    grid-template-columns: 1fr;
  }

  .catalog-application-guides > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .method-grid,
  .proof-band,
  .page-hero .container,
  .guide-hero .container,
  .guide-split,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .guide-hero-visual {
    max-width: 620px;
  }

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

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

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

  .project-shortcut:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .level {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .level:last-child {
    border-bottom: 0;
  }

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

  .footer-grid.seo-footer {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .application-selection-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (min-width: 901px) and (max-width: 1150px) {
  .header-inner,
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav > a:nth-child(4) {
    display: none;
  }

  .header-cta {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 640px) {
  :root {
    --content: calc(100% - 28px);
  }

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

  .brand-name {
    font-size: 13px;
  }

  .hero {
    min-height: 88svh;
    background-position: 61% center;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(11, 20, 17, 0.86), rgba(11, 20, 17, 0.18) 75%);
  }

  .hero-inner {
    padding: 130px 0 56px;
  }

  h1 {
    font-size: 44px;
  }

  .product-hero {
    padding: 96px 0 54px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }

  .product-hero-copy h1 {
    font-size: 40px;
  }

  .product-lead {
    font-size: 16px;
  }

  .product-facts dl,
  .process-grid,
  .pros-cons-grid,
  .use-link-grid,
  .related-stone-grid {
    grid-template-columns: 1fr;
  }

  .product-facts dl > div,
  .product-facts dl > div:nth-child(2),
  .process-grid li,
  .process-grid li:nth-child(2),
  .use-link-grid a,
  .use-link-grid a:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-facts dl > div:last-child,
  .process-grid li:last-child,
  .use-link-grid a:last-child {
    border-bottom: 0;
  }

  .product-origin h2,
  .product-faq h2 {
    font-size: 32px;
  }

  .catalog-category {
    grid-template-columns: 52px 1fr;
  }

  .hero-lead {
    font-size: 17px;
  }

  .arabic-calligraphy-mark {
    width: 220px;
    margin-bottom: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list,
  .service-grid,
  .material-grid,
  .stone-gallery,
  .application-advice,
  .application-stone-grid,
  .technical-checks,
  .application-crosslinks .container > div,
  .catalog-application-guides > div,
  .local-promise,
  .filter-controls,
  .choice-grid,
  .choice-grid.three,
  .form-grid,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-application-guides a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .catalog-application-guides a:last-child {
    border-bottom: 0;
  }

  .application-hero {
    min-height: 720px;
  }

  .application-hero::after {
    background: linear-gradient(0deg, rgba(12, 21, 18, 0.94) 0%, rgba(12, 21, 18, 0.7) 56%, rgba(12, 21, 18, 0.1) 100%);
  }

  .application-hero-copy {
    padding: 180px 0 52px;
  }

  .application-hero-copy h1 {
    font-size: 43px;
  }

  .application-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .application-advice article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .application-advice article:last-child {
    border-bottom: 0;
  }

  .application-caution {
    padding: 20px;
  }

  .application-selection-heading .button {
    width: 100%;
  }

  .technical-checks article,
  .technical-checks article:nth-child(odd) {
    margin-right: 0;
    padding-right: 0;
  }

  .application-crosslinks a,
  html[dir="rtl"] .application-crosslinks a {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .application-crosslinks a:last-child {
    border-bottom: 0;
  }

  .footer-grid.seo-footer {
    grid-template-columns: 1fr;
  }

  .trust-list {
    padding: 26px 0;
  }

  .section {
    padding: 68px 0;
  }

  .service-card {
    min-height: 390px;
  }

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

  .cta-inner .button {
    width: 100%;
  }

  .cta-band {
    min-height: 0;
    padding: 360px 0 64px;
    display: block;
    background-color: var(--forest-deep);
    background-position: 68% top;
    background-size: auto 360px;
    background-repeat: no-repeat;
  }

  .cta-band::before {
    background: linear-gradient(180deg, rgba(13, 28, 23, 0.05) 0%, rgba(13, 28, 23, 0.12) 38%, rgba(13, 28, 23, 0.98) 50%, rgba(13, 28, 23, 1) 100%);
  }

  .page-hero {
    padding: 120px 0 62px;
  }

  .guide-hero {
    padding: 108px 0 58px;
  }

  .guide-hero h1 {
    font-size: 42px;
  }

  .guide-hero-actions .button,
  .alternative-grid,
  .guide-grid {
    width: 100%;
  }

  .alternative-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-band {
    padding: 62px 0;
  }

  .comparison-scroll {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 620px;
  }

  .estimator-shell {
    width: calc(100% - 20px);
    margin-top: 24px;
  }

  .estimator-panel {
    min-height: 0;
    padding: 24px 18px;
  }

  .contact-page {
    padding: 34px 0 68px;
  }

.contact-intro {
  padding-top: 0;
}

.office-location {
  margin: 24px 0 28px;
  padding: 20px;
  border-left: 4px solid var(--terracotta);
  background: var(--paper);
}

.office-location strong,
.office-location span {
  display: block;
}

.office-location span {
  margin: 5px 0 12px;
  color: var(--muted);
}

.office-location a {
  color: var(--forest);
  font-weight: 800;
  text-underline-offset: 4px;
}

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .choice label {
    min-height: 96px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .button {
    width: 100%;
  }

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

  .summary-list dt {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
