:root {
  --bg: #f6f2ef;
  --bg-elevated: #ffffff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-muted: #ebe4de;
  --text: #121212;
  --muted: #514b48;
  --border: rgba(18, 18, 18, 0.12);
  --accent: #b31818;
  --accent-dark: #7a1010;
  --accent-soft: rgba(179, 24, 24, 0.12);
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1380px, calc(100% - 24px));
  --header-height: 84px;
}

body[data-theme="dark"] {
  --bg: #0e0e10;
  --bg-elevated: #16161a;
  --surface: rgba(20, 20, 24, 0.9);
  --surface-strong: #1b1b20;
  --surface-muted: #23232a;
  --text: #f4f1ec;
  --muted: #c1bbb4;
  --border: rgba(255, 255, 255, 0.14);
  --accent: #de3636;
  --accent-dark: #ff7a7a;
  --accent-soft: rgba(222, 54, 54, 0.16);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Fustat", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(182, 29, 29, 0.14), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 92%, black 8%) 100%);
  color: var(--text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

p {
  font-size: 1rem;
  line-height: 1.8;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0 0 8px;
  margin-bottom: calc(var(--header-height) * -1);
  transition: padding 0.25s ease, background-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  padding: 0 0 4px;
}

.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 10px 18px;
  background: color-mix(in srgb, var(--surface-strong) 64%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  background: #fff;
  padding: 6px;
}

.brand__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 12%, var(--surface-strong));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 16%, transparent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.theme-toggle,
.menu-toggle,
.info-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.theme-toggle:hover,
.menu-toggle:hover,
.info-toggle:hover,
.button:hover {
  transform: translateY(-2px);
}

.theme-toggle:hover,
.menu-toggle:hover,
.info-toggle:hover {
  border-color: color-mix(in srgb, var(--accent) 26%, var(--border));
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 0;
  background: #050505;
  isolation: isolate;
}

.hero::before {
  content: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.16) 18%, rgba(5, 5, 5, 0.42) 100%);
  z-index: -1;
}

.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-height) + 72px) 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
}

.hero-copy__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
}

.hero-copy__title {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero__pill,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.section-tag {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--border));
  background: color-mix(in srgb, var(--accent) 11%, var(--surface-strong));
  color: var(--accent);
  width: fit-content;
  align-self: flex-start;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 18px 0 18px;
  max-width: 11ch;
}

.hero p {
  max-width: 760px;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 92%, white 8%), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent) 28%, transparent);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.button--dark {
  background: var(--text);
  color: var(--bg-elevated);
}

.button--line {
  background: transparent;
  border-color: color-mix(in srgb, var(--accent) 24%, var(--border));
  color: var(--text);
  box-shadow: none;
}

.button--line:hover {
  background: var(--accent-soft);
}

.button:hover {
  box-shadow: 0 18px 36px color-mix(in srgb, var(--accent) 34%, transparent);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-stats--compact {
  width: 100%;
  margin-top: 0;
  align-self: end;
}

.hero-stats article,
.glass-card,
.panel,
.cta-card,
.stat-card,
.product-card,
.contact-card,
.brand-card,
.approach-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-stats article {
  padding: 20px 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-process-card {
  padding: 0;
  overflow: hidden;
  min-height: 188px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-process-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-process-card__body {
  padding: 18px 18px 20px;
}

.hero-process-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-process-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: 8px;
}

.section {
  padding: 56px 0;
}

.section--tight {
  padding-top: 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p,
.panel p,
.cta-card p,
.product-card p,
.contact-card p,
.split-copy p,
.timeline-item p,
.approach-step p {
  color: var(--muted);
  line-height: 1.8;
}

.process-grid,
.stats-grid,
.cta-grid,
.brand-grid,
.products-grid,
.contact-grid,
.approach-grid {
  display: grid;
  gap: 22px;
}

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

.process-section--compact {
  padding-top: 12px;
  padding-bottom: 36px;
}

.process-section--compact .process-grid {
  gap: 18px;
}

.process-section--compact .process-card {
  min-height: 250px;
  border-radius: 26px;
}

.process-section--compact .process-card__body {
  padding: 18px;
}

.process-section--compact .process-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.process-section--compact .process-card p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.process-card {
  position: relative;
  min-height: 310px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
}

.process-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.8));
}

.process-card:hover img {
  transform: scale(1.06);
}

.process-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
  color: #fff;
}

.process-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 14px;
  font-weight: 700;
}

.process-card h3,
.split-copy h3,
.cta-card h3,
.product-card h3,
.contact-card h3,
.approach-step h3,
.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.split-layout--reverse .split-media {
  order: 2;
}

.split-layout--reverse .split-copy {
  order: 1;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.split-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.split-copy .section-tag {
  margin: 0;
}

.split-copy h3 {
  margin: 0;
}

.split-copy > p {
  margin: 0;
}

.split-copy .list-clean {
  margin-top: 10px;
}

.split-copy > p,
.offer-strip > p,
.expertise-strip > p,
.quarry-info-content > p,
.quarry-info-card > p,
.brands-showcase__header p,
.contact-card p,
.product-card p,
.timeline-item p {
  max-width: 62ch;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.list-clean li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
}

.list-clean i {
  color: var(--accent);
  margin-top: 5px;
}

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

.stat-card {
  padding: 28px;
}

.stat-card strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 8px;
}

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

.cta-card,
.product-card,
.contact-card,
.approach-step,
.brand-card,
.panel {
  padding: 30px;
}

.cta-card__icon,
.contact-card__icon,
.approach-step__index {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface-strong));
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

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

.brand-card {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--surface-strong) 80%, var(--bg));
}

.brand-card img {
  max-height: 62px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.82;
}

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

.panel .approach-grid {
  margin-top: 12px;
}

.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
  margin-bottom: 22px;
}

.product-card .section-tag {
  margin-bottom: 10px;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.product-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-grid {
  margin-bottom: 26px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 700;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.contact-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-bottom: 10px;
}

.contact-feature__info {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.contact-feature__info h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-feature__info > p {
  color: var(--muted);
  max-width: 56ch;
}

.contact-info-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-strong) 88%, var(--bg));
}

.contact-info-item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.contact-info-item > div:last-child {
  min-width: 0;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info-item a:hover {
  color: var(--accent);
}

.map-panel {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.map-panel h2 {
  margin: 14px 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.google-map-iframe {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.google-map-iframe iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
  color: var(--text);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form__status {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.approach-step__index {
  font-weight: 800;
}

.approach-step {
  padding: 22px;
}

.approach-step h3 {
  margin-bottom: 8px;
}

.approach-step p {
  margin: 0;
  line-height: 1.65;
}

.timeline {
  display: grid;
  gap: 18px;
}

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

.why-choose-grid,
.team-grid,
.benefits-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.why-choose-card,
.team-card,
.benefit-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.why-choose-card__icon,
.benefit-card__icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface-strong));
  margin-bottom: 18px;
}

.why-choose-card__icon img,
.benefit-card__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.why-choose-card h3,
.team-card h3,
.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.why-choose-card p,
.team-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.team-card__media {
  aspect-ratio: 4 / 4.3;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 18px;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card {
  position: relative;
  padding-top: 58px;
}

.benefit-card__no {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.community-section {
  display: grid;
  gap: 26px;
}

.community-slider {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 18px;
  align-items: center;
}

.community-slider__nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.community-slider__nav:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  color: var(--accent);
}

.community-slider__viewport {
  overflow: hidden;
  padding: 10px 0;
}

.community-slider__track {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}

.community-slide {
  flex: 0 0 33.333%;
  padding: 0 12px;
  opacity: 0.5;
  transform: scale(0.86);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.community-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.community-slide img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.timeline-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-strong) 90%, var(--bg));
}

.timeline--cards .timeline-item {
  height: 100%;
}

.site-footer {
  padding: 28px 0 40px;
}

.site-footer__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 34px 32px;
  border-radius: 28px;
  background: color-mix(in srgb, var(--text) 7%, var(--surface-strong));
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.6fr));
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand .brand {
  align-items: center;
}

.footer-brand p,
.footer-links p,
.footer-contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-social {
  display: grid;
  gap: 10px;
  align-content: start;
}

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

.footer-social h3 {
  margin: 4px 0 0;
  font-size: 0.95rem;
}

.footer-links nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 10px 12px;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid color-mix(in srgb, var(--border) 94%, transparent);
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-strong));
}

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

.social-links a {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--border) 94%, transparent);
  background: color-mix(in srgb, var(--surface-strong) 97%, transparent);
  color: var(--text);
  box-shadow: 0 8px 22px rgba(10, 10, 12, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-links i {
  font-size: 0.92rem;
  line-height: 1;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-strong));
}

.info-drawer {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
}

.info-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 14, 0.42);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.info-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent);
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 60px rgba(10, 10, 12, 0.18);
  backdrop-filter: blur(18px) saturate(130%);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.info-drawer__close {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.info-drawer__panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

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

.info-drawer__stack {
  display: grid;
  gap: 12px;
}

.info-drawer__stack a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--border) 94%, transparent);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text);
}

.info-drawer__stack a span {
  color: var(--muted);
  line-height: 1.6;
}

.info-drawer__stack a:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, var(--border));
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-strong));
}

body.info-open {
  overflow: hidden;
}

body.info-open .info-drawer {
  pointer-events: auto;
}

body.info-open .info-drawer::before {
  opacity: 1;
}

body.info-open .info-drawer__panel {
  transform: translateX(0);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 28;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.28);
}

.whatsapp-float i {
  color: #fff;
  font-size: 1.7rem;
}

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

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

  .brands-track {
    animation: none;
  }

}

@media (max-width: 1100px) {
  .hero-stats,
  .stats-grid,
  .brand-grid,
  .products-grid,
  .approach-grid,
  .contact-grid,
  .quarry-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .cta-grid,
  .split-layout,
  .quarry-info-layout,
  .section-heading,
  .contact-panel,
  .contact-feature,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse .split-media,
  .split-layout--reverse .split-copy {
    order: initial;
  }
}

.offer-strip,
.expertise-strip,
.quarry-stat-tile {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.offer-strip h2,
.expertise-strip h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.section-actions .button {
  letter-spacing: -0.01em;
}

.offer-strip p,
.expertise-strip p {
  color: var(--muted);
  line-height: 1.8;
}

.quarry-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.quarry-info-content,
.quarry-info-card,
.brands-showcase {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.quarry-info-content h2,
.brands-showcase h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.quarry-info-content p,
.quarry-info-card p,
.brands-showcase p {
  color: var(--muted);
  line-height: 1.8;
}

.quarry-info-divider {
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 18px;
}

.quarry-info-card {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, var(--surface-strong)), var(--surface));
}

.quarry-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 16%, var(--surface-strong));
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.quarry-info-card h3 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.quarry-card-checklist {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.quarry-card-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.quarry-card-checklist i {
  color: var(--accent);
  margin-top: 4px;
}

.expertise-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 24px;
}

.expertise-metric {
  padding: 20px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface-strong) 80%, var(--bg));
  border: 1px solid var(--border);
}

.expertise-metric strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.quarry-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.quarry-stat-tile {
  text-align: center;
  padding: 28px 22px;
}

.quarry-stat-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 16%, var(--surface-strong));
  color: var(--accent);
  font-size: 1.35rem;
}

.quarry-stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.quarry-stat-value span {
  font-size: 0.48em;
  font-weight: 700;
  color: var(--accent);
}

.quarry-stat-label {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-heading p,
.offer-strip p,
.feature-strip__intro p,
.expertise-strip p,
.quarry-info-content p,
.quarry-info-card p,
.brands-showcase p,
.contact-card p,
.product-card p,
.timeline-item p,
.panel p,
.split-copy p {
  font-size: 1rem;
}

.section-heading h2,
.offer-strip h2,
.expertise-strip h2,
.quarry-info-content h2,
.brands-showcase h2 {
  text-wrap: balance;
}

.brand__title,
.footer-links h3,
.footer-contact h3 {
  letter-spacing: -0.02em;
}

.brands-showcase__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.brands-showcase__badge {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface-strong));
  border: 1px solid var(--border);
}

.brands-showcase__badge img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brands-slider {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.feature-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.feature-triptych__card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-triptych__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-triptych__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-triptych__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 26px;
}

.feature-triptych__body h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.feature-triptych__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-triptych__body .section-actions {
  margin-top: auto;
}

.feature-triptych__body .button {
  min-width: 190px;
  justify-content: center;
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: brands-scroll 34s linear infinite;
}

.brands-logo {
  min-height: 118px;
  min-width: 180px;
  padding: 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--surface-strong) 86%, var(--bg));
  border: 1px solid var(--border);
}

.brands-logo img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 860px) {
  .why-choose-grid,
  .team-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-slider {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 12px;
  }

  .community-slide {
    flex-basis: 50%;
  }

  .site-header__inner {
    align-items: center;
    border-radius: 28px;
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 116px);
  }

  .brand > div {
    min-width: 0;
  }

  .site-nav {
    width: 100%;
    display: none;
    padding-top: 8px;
  }

  body.nav-open .site-nav {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 0;
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 14px 16px;
    background: color-mix(in srgb, var(--surface-strong) 82%, transparent);
    border: 1px solid color-mix(in srgb, var(--border) 92%, transparent);
  }

  .hero {
    min-height: 82vh;
  }

  .hero-stats--compact {
    gap: 12px;
  }

  .hero-process-card {
    min-height: 160px;
  }

  .hero-process-card__body {
    padding: 16px 16px 18px;
  }

  .hero-process-card__body h3 {
    font-size: 1.05rem;
  }

  .hero-process-card__body p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .section {
    padding: 48px 0;
  }

  .section--tight,
  .process-section--compact {
    padding-top: 14px;
    padding-bottom: 30px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  p {
    font-size: 0.98rem;
  }

  .quarry-info-content,
  .quarry-info-card,
  .offer-strip,
  .expertise-strip,
  .brands-showcase,
  .feature-triptych__body,
  .quarry-stat-tile,
  .map-panel,
  .contact-feature__info {
    padding: 24px;
  }

  .feature-triptych {
    grid-template-columns: 1fr;
  }

  .feature-triptych__body .button {
    width: 100%;
    min-width: 0;
  }

  .split-copy,
  .panel,
  .product-card,
  .contact-card,
  .approach-step,
  .timeline-item,
  .why-choose-card,
  .team-card,
  .benefit-card {
    padding: 24px;
  }

  .split-media img {
    min-height: 360px;
  }

  .products-grid,
  .contact-grid,
  .approach-grid,
  .timeline,
  .contact-panel,
  .contact-feature {
    gap: 18px;
  }

  .timeline--cards {
    grid-template-columns: 1fr;
  }

  .contact-feature {
    margin-bottom: 4px;
  }

  .product-card__media {
    margin-bottom: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
  }
}

@media (max-width: 720px) {
  .hero-stats,
  .process-grid,
  .stats-grid,
  .cta-grid,
  .brand-grid,
  .products-grid,
  .contact-grid,
  .approach-grid,
  .quarry-stats-grid,
  .why-choose-grid,
  .team-grid,
  .benefits-grid,
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .community-slider {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .community-slide {
    flex-basis: 100%;
    padding: 0 6px;
    opacity: 1;
    transform: scale(1);
  }

  .community-slide img {
    border-radius: 22px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .split-copy,
  .cta-card,
  .product-card,
  .contact-card,
  .approach-step,
  .brand-card,
  .panel {
    padding: 24px;
  }

  .split-media img {
    min-height: 320px;
  }

  .brands-showcase__header {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 0 0 8px;
  }

  .site-header__inner {
    padding: 12px;
    gap: 12px;
    border-radius: 24px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 96px);
  }

  .header-actions {
    gap: 6px;
  }

  .theme-toggle,
  .menu-toggle,
  .info-toggle {
    width: 38px;
    height: 38px;
    font-size: 0.92rem;
  }

  .info-toggle {
    display: none;
  }

  .theme-toggle {
    display: none;
  }

  body.nav-open .info-toggle,
  body.nav-open .theme-toggle {
    display: inline-flex;
  }

  .brand__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }

  .brand__title {
    font-size: 0.94rem;
    line-height: 1.15;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-copy {
    min-height: 88vh;
    padding-top: calc(var(--header-height) + 86px);
    padding-bottom: 54px;
  }

  .hero-copy__title {
    max-width: 10ch;
  }

  .hero-process-card {
    min-height: 138px;
  }

  .hero-process-card__body {
    padding: 14px 14px 16px;
  }

  .process-section--compact .process-card {
    min-height: 214px;
  }

  .process-section--compact .process-card__body {
    padding: 16px;
  }

  .split-copy,
  .panel,
  .product-card,
  .contact-card,
  .approach-step,
  .timeline-item,
  .quarry-info-content,
  .quarry-info-card,
  .offer-strip,
  .expertise-strip,
  .brands-showcase,
  .quarry-stat-tile,
  .map-panel,
  .contact-feature__info,
  .why-choose-card,
  .team-card,
  .benefit-card {
    padding: 20px;
  }

  .split-layout,
  .quarry-info-layout,
  .contact-panel,
  .contact-feature {
    gap: 16px;
  }

  .quarry-info-layout {
    grid-template-columns: 1fr;
  }

  .quarry-info-content {
    order: 1;
  }

  .quarry-info-card {
    order: 2;
  }

  .contact-feature {
    margin-bottom: 0;
  }

  .split-media img {
    min-height: 260px;
    border-radius: 24px;
  }

  .product-card__media {
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .product-card h3,
  .contact-card h3,
  .approach-step h3,
  .timeline-item h3,
  .split-copy h3 {
    font-size: 1.18rem;
  }

  .timeline {
    gap: 14px;
  }

  .timeline--cards {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .products-grid,
  .approach-grid {
    gap: 14px;
  }

  .approach-step {
    padding: 18px;
  }

  .contact-form textarea {
    min-height: 140px;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 14px;
    padding: 13px 14px;
  }

  .section {
    padding: 40px 0;
  }

  .section--tight,
  .process-section--compact {
    padding-top: 10px;
    padding-bottom: 24px;
  }

  .section-heading h2,
  .quarry-info-content h2,
  .offer-strip h2,
  .expertise-strip h2,
  .brands-showcase h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .process-card h3,
  .split-copy h3,
  .product-card h3,
  .contact-card h3,
  .approach-step h3,
  .timeline-item h3,
  .quarry-info-card h3 {
    font-size: 1.12rem;
    line-height: 1.2;
  }

  .section-tag,
  .hero__pill {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .section-actions,
  .button-row,
  .hero__actions {
    gap: 10px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .section-actions .button,
  .button-row .button,
  .hero__actions .button {
    width: 100%;
  }

  .quarry-stat-value {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .brands-logo {
    min-height: 96px;
    padding: 16px;
  }

  .brands-logo img {
    max-height: 42px;
  }

  .google-map-iframe {
    border-radius: 18px;
  }

  .google-map-iframe iframe {
    height: 320px;
  }

  .site-footer__inner {
    padding: 24px 20px;
    gap: 22px;
  }

  .footer-brand {
    gap: 12px;
  }

  .footer-social {
    margin-top: 2px;
  }

  .footer-social h3 {
    margin: 2px 0 0;
  }

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

  .footer-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-brand p,
  .footer-links p,
  .footer-contact p {
    line-height: 1.65;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background: color-mix(in srgb, var(--surface-strong) 99%, transparent);
  }

  p,
  .section-heading p,
  .offer-strip p,
  .expertise-strip p,
  .quarry-info-content p,
  .quarry-info-card p,
  .brands-showcase p,
  .contact-card p,
  .product-card p,
  .timeline-item p,
  .panel p,
  .split-copy p {
    font-size: 0.95rem;
  }

  .quarry-info-layout {
    gap: 18px;
  }

  .process-section--compact .process-grid {
    grid-template-columns: repeat(3, minmax(74vw, 74vw));
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .process-section--compact .process-card {
    scroll-snap-align: start;
    min-height: 232px;
  }

  .process-section--compact .process-card__body {
    padding: 14px;
  }

  .process-section--compact .process-card h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  .process-section--compact .process-card p {
    display: none;
  }

  .hero-copy {
    width: min(100%, calc(100% - 28px));
    padding-top: calc(var(--header-height) + 88px);
    padding-bottom: 56px;
    gap: 14px;
  }

  .info-drawer__panel {
    width: min(100%, 380px);
    padding: 24px 18px;
  }

  .hero-copy__eyebrow {
    padding: 9px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
  }

  .hero-copy__title {
    max-width: 11ch;
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }
}
