/* dm-sans-latin-ext-wght-normal */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 100 1000;
  src: url("/fonts/dm-sans-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

/* dm-sans-latin-wght-normal */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 100 1000;
  src: url("/fonts/dm-sans-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* manrope-cyrillic-ext-wght-normal */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/fonts/manrope-cyrillic-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* manrope-cyrillic-wght-normal */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/fonts/manrope-cyrillic-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* manrope-greek-wght-normal */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/fonts/manrope-greek-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

/* manrope-vietnamese-wght-normal */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/fonts/manrope-vietnamese-wght-normal.woff2") format("woff2-variations");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301,
    U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* manrope-latin-ext-wght-normal */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/fonts/manrope-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

/* manrope-latin-wght-normal */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --ink: #252a28;
  --muted: #666b67;
  --orange: #e86b2d;
  --line: #dde0db;
  --paper: #f5f6f3;
  --dark: #202522;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}
h3 {
  font-size: 1.45rem;
}
p {
  color: var(--muted);
}
.wrap {
  max-width: 1320px;
  margin: auto;
  padding-left: 54px;
  padding-right: 54px;
}
.topbar {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 9px 54px;
  background: var(--paper);
  color: #666b67;
  font-size: 0.8125rem;
  letter-spacing: 0.025em;
}
.topbar div {
  margin-right: auto;
}
.topbar a:hover {
  color: var(--orange);
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1440px;
  padding: 22px 54px;
  margin: auto;
  background: #fff;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.brand b {
  font-family: Manrope, Arial, sans-serif;
  font-size: 2.8rem;
  letter-spacing: -0.075em;
  font-weight: 800;
}
.brand b span {
  font-size: 1.9rem;
  color: var(--orange);
  margin-left: 5px;
  vertical-align: 6px;
}
.brand small {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  font-weight: 650;
  margin-top: 4px;
}
nav {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 550;
}
nav a {
  padding: 12px 0;
  position: relative;
}
nav a:hover,
nav a.current {
  color: #c45520;
}
nav a.current:after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  background: var(--orange);
}
.contact-btn {
  border: 1px solid #d4d8d3;
  padding: 12px 18px;
  font-size: 0.9rem;
  display: flex;
  gap: 28px;
  align-items: center;
}
.contact-btn:hover {
  background: var(--paper);
}
.hero {
  min-height: 650px;
  background: #292e2b;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 34%;
  background: url("/quartz-hero.jpg") 53% 53% / cover no-repeat;
  filter: brightness(0.79);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #232824 0%,
    rgba(35, 40, 36, 0.96) 28%,
    rgba(35, 40, 36, 0.63) 50%,
    rgba(35, 40, 36, 0.04) 80%
  );
}
.hero-content {
  position: relative;
  width: 100%;
  padding-top: 65px;
  padding-bottom: 120px;
}
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  color: #a2471b;
}
.hero .eyebrow {
  color: #f2ac84;
  font-size: 0.73rem;
}
.hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.55rem);
  line-height: 1.13;
  letter-spacing: -0.055em;
  font-weight: 500;
  max-width: 860px;
}
.hero h1 em {
  font-style: normal;
  color: #f38a51;
}
.hero p {
  margin-top: 26px;
  color: #d1d5d0;
  line-height: 1.8;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--orange);
  color: white;
  padding: 15px 22px;
  font-weight: 550;
  font-size: 0.9rem;
  min-height: 50px;
  transition: background 0.2s;
}
.button:hover {
  background: #b9501d;
}
.text-link {
  font-size: 0.9rem;
  display: flex;
  gap: 23px;
}
.text-link:hover {
  color: #f38a51;
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 54px;
  right: 54px;
  border-top: 1px solid #ffffff35;
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  color: #d5d8d3;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
.hero-bottom a {
  letter-spacing: 0;
  font-size: 0.8rem;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.25fr;
  padding-top: 31px;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--line);
}
.facts > div {
  display: flex;
  gap: 22px;
  align-items: center;
  padding-left: 25px;
  border-right: 1px solid var(--line);
}
.facts > div:first-child {
  padding-left: 0;
}
.facts b {
  font-family: Manrope, sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.07em;
  font-weight: 500;
}
.facts span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.facts > a {
  align-self: center;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  font-size: 0.86rem;
  padding-left: 30px;
}
.facts > a > span {
  font-size: 1.4rem;
  color: var(--orange);
}
.section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 42px;
}
.section-heading .eyebrow {
  margin-bottom: 17px;
}
.section-heading p {
  font-size: 0.93rem;
  max-width: 410px;
  line-height: 1.8;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.sector-card {
  min-height: 243px;
  display: flex;
  flex-direction: column;
  padding: 24px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.sector-card:hover {
  background: #f3f4f0;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a8f89;
  font-size: 0.75rem;
  margin-bottom: 28px;
}
.card-arrow {
  font-size: 1.3rem;
  color: #5f675d;
}
.sector-card:hover .card-arrow {
  color: var(--orange);
}
.sector-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}
.sector-card p {
  font-size: 0.84rem;
  line-height: 1.6;
}
.card-bottom {
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.74rem;
  color: #747a72;
}
.selector {
  background: var(--paper);
}
.band-nav {
  display: flex;
  border-bottom: 1px solid #cdd2c9;
  overflow-x: auto;
}
.band-nav a {
  flex: 1;
  white-space: nowrap;
  text-align: center;
  padding: 19px 20px;
  font-size: 0.9rem;
  font-weight: 550;
  border-bottom: 3px solid transparent;
}
.band-nav a[aria-selected="true"] {
  color: #b14b1c;
  border-color: var(--orange);
  background: #ebece6;
}
.band-nav a:hover {
  background: #e9ece5;
}
.band-panel {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 55px;
  padding: 42px 10px;
  border-bottom: 1px solid var(--line);
}
.band-panel[hidden] {
  display: none;
}
.band-number {
  font-family: Manrope, sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.05em;
  line-height: 1.3;
  align-self: center;
}
.band-number small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 14px;
}
.band-panel h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}
.band-panel p {
  font-size: 0.94rem;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.pill {
  border: 1px solid #cdd3c9;
  display: inline-flex;
  gap: 24px;
  font-size: 0.8rem;
  padding: 9px 14px;
  align-items: center;
  background: #ffffff80;
}
.pill:hover {
  background: #fff;
  border-color: var(--orange);
}
.pill span {
  color: #ab4b20;
}
.note {
  font-size: 0.78rem;
  line-height: 1.7;
  margin-top: 18px;
  color: #71766f;
}
.production-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.production-teaser p {
  margin: 24px 0 30px;
}
.mini-steps a {
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-size: 1rem;
}
.mini-steps a:first-child {
  border-top: 1px solid var(--line);
}
.mini-steps a > span {
  font-size: 0.75rem;
  color: var(--orange);
}
.mini-steps a b {
  margin-left: auto;
  font-weight: 400;
  color: #7a8178;
}
.mini-steps a:hover {
  color: #b14b1c;
}
footer {
  background: var(--dark);
  color: #f1f3ed;
  padding: 65px 54px 0;
}
.footer-main {
  max-width: 1212px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr 1.3fr;
  gap: 45px;
  padding-bottom: 55px;
}
.footer-main h3 {
  font-size: 0.9rem;
  letter-spacing: 0;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-main p,
.footer-main > div > a:not(.brand) {
  font-size: 0.82rem;
  color: #b5bdb3;
  line-height: 1.8;
  display: block;
  margin-top: 7px;
}
.footer-main .brand + p {
  margin-top: 25px;
}
.footer-main a:hover {
  color: #f38a51;
}
.footer-bottom {
  max-width: 1212px;
  margin: auto;
  border-top: 1px solid #ffffff20;
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.73rem;
  color: #9da79c;
}
.pagehead {
  background: var(--paper);
  padding: 35px 0 65px;
  border-bottom: 1px solid var(--line);
}
.crumb {
  font-size: 0.8rem;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 36px;
}
.crumb:after {
  content: " /";
  margin-left: 10px;
}
.pagehead h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  max-width: 950px;
}
.pagehead p {
  max-width: 720px;
  margin-top: 22px;
}
.pagehead .eyebrow {
  margin-bottom: 18px;
}
.data-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.data-layout article h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}
.data-layout article p {
  margin-bottom: 18px;
  line-height: 1.9;
}
.data-layout article h3 {
  margin: 32px 0 18px;
}
.uses {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.95rem;
}
.uses li:before {
  content: "—";
  color: var(--orange);
  margin-right: 10px;
}
.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sizes span {
  padding: 9px 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.85rem;
}
.analysis {
  padding: 32px;
  background: var(--paper);
  border-top: 3px solid var(--orange);
}
.analysis h2 {
  font-size: 1.6rem;
}
.analysis-note {
  font-size: 0.8rem;
  margin: 15px 0 20px;
  color: #9c471f;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}
th,
td {
  text-align: left;
  border-bottom: 1px solid #d7dcd2;
  padding: 14px 0;
}
th {
  font-size: 0.75rem;
  color: #70776b;
  font-weight: 500;
}
th:last-child,
td:last-child {
  text-align: right;
}
td:first-child {
  font-weight: 600;
}
.analysis .button {
  margin-top: 25px;
  width: 100%;
}
.related {
  padding-bottom: 65px;
}
.related h3 {
  font-size: 1.25rem;
}
.steps article {
  display: flex;
  align-items: flex-start;
  gap: 45px;
  border-top: 1px solid var(--line);
  padding: 40px 0;
  scroll-margin-top: 25px;
}
.step-num {
  color: var(--orange);
  font:
    500 2.6rem Manrope,
    sans-serif;
  min-width: 70px;
  letter-spacing: -0.05em;
}
.steps h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.steps p {
  max-width: 650px;
  line-height: 1.85;
}
.step-label {
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #777f72;
  padding-top: 12px;
}
.corporate {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.corporate article p {
  margin-bottom: 24px;
  line-height: 1.9;
}
.corporate .button {
  margin-top: 10px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.contact-grid > div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 35px;
}
.contact-grid h2 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  overflow-wrap: anywhere;
}
.contact-grid p {
  margin-top: 18px;
}
.contact-grid a:hover {
  color: var(--orange);
}
.skip {
  position: absolute;
  top: -100px;
  z-index: 5;
  background: white;
  padding: 14px;
}
.skip:focus {
  top: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1450px) {
  .hero-content {
    padding-top: 90px;
    padding-bottom: 140px;
  }
  .hero {
    min-height: 710px;
  }
  .hero-image {
    background-position: 50% 53%;
  }
}
@media (max-width: 1050px) {
  header,
  .topbar {
    padding-left: 28px;
    padding-right: 28px;
  }
  .wrap {
    padding-left: 30px;
    padding-right: 30px;
  }
  header {
    gap: 20px;
  }
  nav {
    gap: 18px;
    font-size: 0.82rem;
  }
  .contact-btn {
    padding: 11px 13px;
    gap: 12px;
  }
  .brand b {
    font-size: 2.4rem;
  }
  .hero-bottom {
    left: 30px;
    right: 30px;
  }
  .sector-card {
    padding: 22px 18px;
  }
  .sector-card h3 {
    font-size: 1.2rem;
  }
  .facts {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .facts > a {
    grid-column: 1/-1;
    justify-content: center;
    margin-top: 25px;
    padding-left: 0;
  }
  .facts > div:last-of-type {
    border: 0;
  }
  .footer-main {
    gap: 25px;
    grid-template-columns: 1fr 1fr;
  }
  .data-layout {
    gap: 35px;
  }
  .production-teaser {
    gap: 45px;
  }
}
@media (max-width: 720px) {
  .topbar {
    padding: 8px 20px;
    font-size: 0.75rem;
  }
  .topbar div {
    display: none;
  }
  .topbar a:last-child {
    margin-left: auto;
  }
  header {
    padding: 18px 20px 0;
    flex-wrap: wrap;
    gap: 15px;
  }
  .brand b {
    font-size: 2.35rem;
  }
  .brand small {
    font-size: 0.52rem;
  }
  .contact-btn {
    font-size: 0.8rem;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 3px;
    padding-bottom: 6px;
    font-size: 0.79rem;
  }
  .wrap {
    padding-left: 23px;
    padding-right: 23px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-image {
    inset: 0;
    background-position: 65% center;
    opacity: 0.68;
  }
  .hero-shade {
    background: linear-gradient(90deg, rgba(25, 32, 26, 0.91), rgba(25, 32, 26, 0.45));
  }
  .hero-content {
    padding-top: 55px;
    padding-bottom: 115px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 8.5vw, 3.7rem);
    line-height: 1.2;
  }
  .hero .eyebrow {
    font-size: 0.64rem;
    max-width: 240px;
    line-height: 1.9;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero-actions {
    gap: 23px;
    flex-wrap: wrap;
  }
  .hero-bottom {
    left: 23px;
    right: 23px;
    gap: 20px;
  }
  .hero-bottom > span {
    font-size: 0.6rem;
    max-width: 170px;
  }
  .hero-bottom > a {
    font-size: 0.7rem;
    text-align: right;
  }
  .facts {
    padding-top: 25px;
    padding-bottom: 25px;
    gap: 0;
  }
  .facts > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding-left: 20px;
  }
  .facts b {
    font-size: 2rem;
  }
  .facts span {
    font-size: 0.72rem;
  }
  .facts > a {
    font-size: 0.8rem;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading p {
    margin-top: 23px;
  }
  .section-heading p br {
    display: none;
  }
  .eyebrow {
    font-size: 0.68rem;
  }
  h2 {
    font-size: 2.15rem;
  }
  .sector-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sector-card {
    min-height: 220px;
    padding: 20px 17px;
  }
  .sector-card h3 {
    font-size: 1.25rem;
  }
  .sector-card p {
    font-size: 0.8rem;
  }
  .card-top {
    margin-bottom: 23px;
  }
  .band-nav a {
    padding: 15px 18px;
    font-size: 0.82rem;
  }
  .band-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 0;
  }
  .band-number {
    font-size: 2.1rem;
  }
  .band-number small {
    margin-top: 5px;
  }
  .band-panel h3 {
    font-size: 1.35rem;
  }
  .pill {
    font-size: 0.8rem;
  }
  .production-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }
  footer {
    padding: 45px 23px 0;
  }
  .footer-main > div:first-child {
    grid-column: 1/-1;
  }
  .footer-main > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    font-size: 0.7rem;
  }
  .footer-bottom span {
    display: block;
    margin-top: 10px;
  }
  .data-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .analysis {
    padding: 24px;
  }
  .data-layout article h2 {
    font-size: 1.85rem;
  }
  .pagehead {
    padding: 25px 0 45px;
  }
  .pagehead h1 {
    font-size: 2.6rem;
  }
  .crumb {
    margin-bottom: 25px;
  }
  .pagehead p {
    font-size: 0.95rem;
  }
  .steps article {
    gap: 20px;
    position: relative;
    padding: 30px 0;
  }
  .step-num {
    min-width: 40px;
    font-size: 2rem;
  }
  .steps h2 {
    font-size: 1.55rem;
  }
  .steps p {
    font-size: 0.95rem;
  }
  .step-label {
    display: none;
  }
  .corporate,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .corporate h2 {
    font-size: 2rem;
  }
  .desktop {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
/* Metran brand: mineral gold, graphite and clean white. */
:root {
  --ink: #252525;
  --muted: #646464;
  --orange: #f5a000;
  --line: #e2e2e2;
  --paper: #f5f5f5;
  --dark: #202020;
  --gold: #f5a000;
  --gold-ink: #8a5700;
}
body {
  color: var(--ink);
}
h1,
h2,
h3 {
  letter-spacing: -0.035em;
}
p {
  line-height: 1.85;
}
.topbar {
  background: #232323;
  color: #ccc;
  padding-top: 8px;
  padding-bottom: 8px;
  letter-spacing: 0.035em;
}
.topbar a:hover {
  color: #ffb72b;
}
header {
  max-width: 1440px;
  padding-top: 19px;
  padding-bottom: 19px;
  gap: 24px;
}
.brand {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.brand > img {
  width: 61px;
  height: 61px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name {
  display: flex;
  flex-direction: column;
}
.brand b {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  line-height: 1.1;
}
.brand small {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  margin-top: 7px;
}
nav {
  gap: 29px;
  font-size: 0.875rem;
}
nav a:hover,
nav a.current {
  color: var(--ink);
}
nav a.current:after {
  height: 3px;
  bottom: 0;
}
.contact-btn {
  background: #252525;
  border-color: #252525;
  color: #fff;
  min-height: 48px;
  gap: 23px;
}
.contact-btn:hover {
  background: #3a3a3a;
}
.contact-btn span {
  color: var(--gold);
}
.hero {
  margin: 0 20px;
  min-height: 640px;
  background: #202020;
}
.hero-image {
  inset: 0 0 0 42%;
  background-position: 57% 56%;
  filter: grayscale(1) brightness(0.8);
}
.hero-shade {
  background: linear-gradient(
    90deg,
    #202020 0%,
    #202020 29%,
    rgba(32, 32, 32, 0.87) 43%,
    rgba(32, 32, 32, 0.18) 72%
  );
}
.hero-content {
  padding-top: 72px;
  padding-bottom: 130px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #e5e5e5;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.hero .eyebrow:before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.35rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.05em;
  max-width: 860px;
}
.hero h1 em {
  color: #ffb31c;
}
.hero p {
  color: #d3d3d3;
  max-width: 560px;
  font-size: 1rem;
  margin-top: 27px;
}
.hero-actions {
  margin-top: 32px;
  gap: 30px;
}
.button {
  background: var(--gold);
  color: #202020;
  font-weight: 650;
  min-height: 52px;
  font-size: 0.875rem;
  padding: 15px 23px;
}
.button:hover {
  background: #ffb727;
}
.text-link:hover {
  color: #ffb31c;
}
.hero-bottom {
  border-color: #ffffff30;
  font-size: 0.75rem;
  color: #d4d4d4;
  padding: 20px 0;
}
.hero-bottom a {
  font-size: 0.875rem;
}
.facts {
  padding-top: 32px;
  padding-bottom: 32px;
  max-width: 1280px;
}
.facts b {
  font-size: 2.6rem;
  font-weight: 600;
  color: #292929;
}
.facts span {
  font-size: 0.875rem;
  color: #666;
}
.facts > a {
  font-size: 0.875rem;
}
.facts > a > span {
  color: #9e6500;
}
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.eyebrow {
  color: var(--gold-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.section-heading {
  margin-bottom: 44px;
  gap: 50px;
}
.section-heading p {
  font-size: 1rem;
}
.sector-grid {
  gap: 18px;
  border: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sector-card {
  border: 1px solid var(--line);
  min-height: 253px;
  padding: 24px;
  position: relative;
  background: #fff;
  box-shadow: 0 3px 12px #00000002;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.sector-card:after {
  content: "";
  height: 3px;
  width: 35px;
  background: var(--gold);
  position: absolute;
  bottom: -1px;
  left: 24px;
  transition: width 0.2s;
}
.sector-card:hover {
  background: #fff;
  border-color: #d7b474;
  box-shadow: 0 12px 28px #00000009;
  transform: translateY(-4px);
}
.sector-card:hover:after {
  width: calc(100% - 48px);
}
.card-top {
  margin-bottom: 30px;
  font-size: 0.75rem;
  color: #777;
}
.card-arrow {
  border: 1px solid #e5e5e5;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #303030;
  font-size: 1.15rem;
}
.sector-card:hover .card-arrow {
  background: var(--gold);
  color: #222;
  border-color: var(--gold);
}
.sector-card h3 {
  font-size: 1.35rem;
  font-weight: 650;
}
.sector-card p {
  font-size: 0.875rem;
}
.card-bottom {
  font-size: 0.75rem;
  color: #686868;
  padding-top: 24px;
}
.selector {
  background: #242424;
  color: #fff;
  position: relative;
}
.selector .eyebrow {
  color: #ffc14c;
}
.selector .section-heading p {
  color: #c3c3c3;
}
.band-nav {
  border-color: #565656;
  gap: 4px;
}
.band-nav a {
  font-size: 0.875rem;
  padding: 19px 15px;
  color: #d8d8d8;
}
.band-nav a[aria-selected="true"] {
  background: #ffb21b;
  color: #242424;
  border-color: #ffb21b;
}
.band-nav a:hover {
  background: #393939;
  color: #fff;
}
.band-nav a[aria-selected="true"]:hover {
  background: #ffbd40;
  color: #242424;
}
.band-panel {
  padding: 46px 0 30px;
  border-color: #4b4b4b;
  grid-template-columns: 1fr 2fr;
}
.band-number {
  font-size: 2.75rem;
  color: #ffb31c;
  letter-spacing: -0.03em;
}
.band-number small {
  color: #aaa;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}
.band-panel h3 {
  font-size: 1.65rem;
}
.band-panel p {
  color: #c7c7c7;
  font-size: 1rem;
}
.selector .pill {
  background: #303030;
  color: #eee;
  border-color: #555;
  font-size: 0.875rem;
}
.selector .pill span {
  color: #ffb31c;
}
.selector .pill:hover {
  background: #414141;
  border-color: #ffb31c;
}
.selector .note {
  color: #b5b5b5;
  font-size: 0.8125rem;
  max-width: 960px;
}
.pill {
  font-size: 0.875rem;
}
.pill span {
  color: #8a5700;
}
.production-teaser {
  gap: 100px;
}
.production-teaser .button {
  margin-top: 5px;
}
.mini-steps a {
  padding: 20px 0;
  font-size: 1rem;
}
.mini-steps a > span {
  color: #8a5700;
  font-size: 0.8125rem;
}
.mini-steps a:hover {
  color: #8a5700;
}
.mini-steps a b {
  color: #444;
}
footer {
  background: #191919;
  border-top: 4px solid var(--gold);
}
.footer-main {
  gap: 40px;
}
.footer-main .brand {
  color: #fff;
}
.footer-main .brand img {
  width: 62px;
  height: 62px;
}
.footer-main .brand b {
  font-size: 1.6rem;
}
.footer-main p,
.footer-main > div > a:not(.brand) {
  font-size: 0.875rem;
  color: #bebebe;
}
.footer-main h3 {
  font-size: 0.9375rem;
  font-weight: 600;
}
.footer-main a:hover {
  color: #ffbd40;
}
.footer-bottom {
  color: #aaa;
  font-size: 0.75rem;
}
.pagehead {
  background: #252525;
  color: #fff;
  border: 0;
  position: relative;
  padding-bottom: 67px;
}
.pagehead:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 4px;
  background: var(--gold);
}
.pagehead .crumb {
  color: #bdbdbd;
  font-size: 0.875rem;
}
.pagehead .eyebrow {
  color: #ffc04b;
}
.pagehead p {
  color: #c8c8c8;
  font-size: 1rem;
}
.pagehead h1 {
  font-weight: 500;
  letter-spacing: -0.045em;
}
.data-layout article p {
  font-size: 1rem;
}
.analysis {
  border: 1px solid #e2e2e2;
  border-top: 4px solid var(--gold);
  background: #f7f7f7;
  padding: 32px;
}
.analysis-note {
  color: #815500;
  font-size: 0.875rem;
}
.note {
  font-size: 0.8125rem;
}
.analysis h2 {
  line-height: 1.3;
}
.sizes span {
  font-size: 0.875rem;
  background: #f6f6f6;
}
.uses li:before {
  color: #a66b00;
}
th {
  font-size: 0.8125rem;
  color: #666;
}
td {
  font-size: 0.9375rem;
}
.step-num {
  color: #a16a00;
}
.step-label {
  color: #666;
  font-size: 0.75rem;
}
.contact-grid a:hover {
  color: #8a5700;
}
.related h3 {
  font-size: 1.3rem;
}
.related .pill:hover {
  border-color: #9c6a13;
}
.topbar a,
.footer-main a {
  transition: color 0.2s;
}
@media (min-width: 1450px) {
  .hero {
    max-width: 1560px;
    margin: auto;
    min-height: 680px;
  }
  .hero-content {
    padding-top: 85px;
    padding-bottom: 140px;
  }
}
@media (max-width: 1100px) {
  header {
    gap: 18px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .brand > img {
    width: 51px;
    height: 51px;
  }
  .brand b {
    font-size: 1.55rem;
  }
  .brand small {
    font-size: 0.5rem;
  }
  nav {
    gap: 18px;
  }
  .sector-card {
    padding: 20px;
  }
  .sector-card h3 {
    font-size: 1.2rem;
  }
  .hero {
    margin: 0 12px;
  }
  .production-teaser {
    gap: 50px;
  }
}
@media (max-width: 850px) {
  header {
    flex-wrap: wrap;
  }
  .brand small {
    font-size: 0.6rem;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--line);
    padding-top: 8px;
    gap: 30px;
  }
  header > .contact-btn {
    margin-left: auto;
  }
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero h1 {
    font-size: 3.4rem;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .facts span {
    font-size: 0.8125rem;
  }
}
@media (max-width: 720px) {
  header {
    padding: 15px 20px 8px;
    gap: 14px;
  }
  .brand > img {
    width: 48px;
    height: 48px;
  }
  .brand b {
    font-size: 1.42rem;
  }
  .brand small {
    font-size: 0.48rem;
    letter-spacing: 0.025em;
    margin-top: 6px;
  }
  .contact-btn {
    font-size: 0.8125rem;
    padding: 10px 12px;
    min-height: 44px;
    gap: 12px;
  }
  nav {
    gap: 10px;
    justify-content: space-between;
    font-size: 0.8125rem;
    padding-top: 4px;
    padding-bottom: 0;
  }
  nav a {
    padding: 10px 0;
  }
  .topbar {
    font-size: 0.75rem;
  }
  .hero {
    margin: 0 8px;
    min-height: 650px;
  }
  .hero-content {
    padding-top: 55px;
    padding-bottom: 112px;
  }
  .hero-image {
    inset: 0;
    background-position: 62% 50%;
    opacity: 0.6;
  }
  .hero-shade {
    background: linear-gradient(90deg, rgba(28, 28, 28, 0.98), rgba(28, 28, 28, 0.55));
  }
  .hero h1 {
    font-size: clamp(2.25rem, 8.5vw, 3.4rem);
    line-height: 1.2;
  }
  .hero .eyebrow {
    font-size: 0.7rem;
    max-width: 300px;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-bottom > span {
    font-size: 0.7rem;
    max-width: 165px;
  }
  .hero-bottom > a {
    font-size: 0.75rem;
  }
  .hero-actions {
    gap: 24px;
  }
  .facts {
    padding-top: 27px;
    padding-bottom: 27px;
  }
  .facts b {
    font-size: 2rem;
  }
  .facts span {
    font-size: 0.8125rem;
  }
  .facts > a {
    font-size: 0.875rem;
  }
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section-heading p {
    font-size: 1rem;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .sector-grid {
    gap: 12px;
  }
  .sector-card {
    padding: 18px 15px;
    min-height: 235px;
  }
  .sector-card h3 {
    font-size: 1.18rem;
  }
  .sector-card p {
    font-size: 0.875rem;
  }
  .sector-card:after {
    left: 15px;
  }
  .card-top {
    margin-bottom: 22px;
  }
  .card-bottom {
    font-size: 0.75rem;
  }
  .band-panel {
    grid-template-columns: 1fr;
    padding: 30px 0;
    gap: 22px;
  }
  .band-number {
    font-size: 2.3rem;
  }
  .band-panel h3 {
    font-size: 1.4rem;
  }
  .band-nav a {
    padding: 16px;
    font-size: 0.875rem;
  }
  .selector .note {
    font-size: 0.8125rem;
  }
  .production-teaser {
    gap: 35px;
  }
  .footer-main {
    gap: 32px;
  }
  .footer-main .brand b {
    font-size: 1.6rem;
  }
  .footer-main .brand small {
    font-size: 0.55rem;
  }
  .footer-main > div:last-child {
    grid-column: 1/-1;
  }
  .pagehead h1 {
    font-size: 2.5rem;
  }
  .pagehead {
    padding-bottom: 48px;
  }
  .analysis {
    padding: 24px;
  }
  .step-num {
    font-size: 2rem;
  }
  .steps p {
    font-size: 1rem;
  }
  .eyebrow {
    font-size: 0.75rem;
  }
  .band-number small {
    font-size: 0.75rem;
  }
}
@media (max-width: 370px) {
  header {
    padding-left: 14px;
    padding-right: 14px;
  }
  .contact-btn {
    gap: 8px;
    padding: 10px;
    font-size: 0.75rem;
  }
  .brand > img {
    width: 40px;
    height: 40px;
  }
  .brand b {
    font-size: 1.2rem;
  }
  nav {
    font-size: 0.75rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .sector-grid {
    grid-template-columns: 1fr;
  }
  .sector-card {
    min-height: 220px;
  }
}
/* Product navigation and photographic sector stories. */
header {
  position: relative;
  z-index: 30;
}
.mobile-toggle,
.mobile-contact {
  display: none;
}
.sector-menu > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 0;
  font-size: 0.875rem;
  font-weight: 550;
}
.sector-menu > summary::-webkit-details-marker {
  display: none;
}
.sector-menu > summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}
.sector-menu[open] > summary {
  color: #916000;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 28px;
  right: 28px;
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 25px 55px #0002;
  padding: 30px;
  gap: 35px;
  z-index: 40;
}
.mega-intro {
  background: #f4f4f4;
  padding: 27px;
}
.mega-intro h2 {
  font-size: 1.7rem;
  line-height: 1.3;
  margin-bottom: 30px;
}
.mega-intro .eyebrow {
  font-size: 0.7rem;
}
.mega-intro > a {
  font-weight: 600;
  font-size: 0.875rem;
}
.mega-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 25px;
}
.mega-links > a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 3px;
  border-bottom: 1px solid #e9e9e9;
}
.mega-links > a:hover {
  color: #925e00;
}
.mega-links > a > span {
  font-size: 0.75rem;
  color: #906000;
}
.mega-links > a > span:last-child {
  margin-left: auto;
}
.mega-links b {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}
.mega-links small {
  display: block;
  font-size: 0.75rem;
  color: #757575;
  margin-top: 5px;
  line-height: 1.6;
}
.hero {
  min-height: 700px;
}
.hero-image {
  inset: 0 0 0 38%;
  background-position: 62% 61%;
  background-size: cover;
  filter: grayscale(0.6) brightness(0.92);
}
.hero-shade {
  background: linear-gradient(
    90deg,
    #202020 0%,
    rgba(32, 32, 32, 0.97) 32%,
    rgba(32, 32, 32, 0.65) 51%,
    rgba(32, 32, 32, 0.12) 85%
  );
}
.hero-content {
  padding-top: 75px;
  padding-bottom: 155px;
}
.hero-mineral-note {
  position: absolute;
  right: 65px;
  bottom: 115px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
  text-shadow: 0 2px 12px #0006;
}
.hero-mineral-note > span {
  font:
    500 3.5rem Manrope,
    sans-serif;
  letter-spacing: -0.05em;
}
.hero-mineral-note > small {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}
.sector-grid {
  gap: 24px;
}
.sector-card {
  padding: 0 23px 25px;
  overflow: hidden;
  min-height: 350px;
  border: 0;
  box-shadow: none;
  background: #f6f6f6;
}
.sector-photo {
  height: 185px;
  overflow: hidden;
  margin: 0 -23px 23px;
}
.sector-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  filter: saturate(0.65);
}
.sector-card:hover .sector-photo img {
  transform: scale(1.045);
  filter: saturate(1);
}
.sector-card:hover {
  background: #f6f6f6;
  box-shadow: 0 15px 30px #0000000c;
}
.sector-card .card-top {
  margin-bottom: 15px;
}
.card-arrow {
  background: #fff;
  border: 0;
}
.sector-card:after {
  left: 23px;
}
.sector-card .card-bottom {
  font-size: 0.8125rem;
  color: #555;
}
.sector-card h3 {
  font-size: 1.3rem;
}
.sector-card p {
  font-size: 0.875rem;
}
.datasheet-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.datasheet-bar > span {
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.datasheet-bar > div {
  display: flex;
  gap: 28px;
}
.datasheet-bar a {
  font-size: 0.875rem;
  color: #555;
}
.datasheet-bar a:hover {
  color: #895900;
}
.sector-banner {
  margin-top: 35px;
  position: relative;
}
.sector-banner img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  filter: saturate(0.7);
  display: block;
}
.sector-banner figcaption {
  position: absolute;
  bottom: 15px;
  left: 70px;
  background: #252525df;
  color: #fff;
  padding: 7px 12px;
  font-size: 0.75rem;
}
.data-layout {
  padding-top: 55px;
  gap: 65px;
}
.data-layout article h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 30px;
}
.section-num {
  font-size: 0.8125rem;
  color: #986500;
  letter-spacing: 0.03em;
}
.size-help {
  font-size: 0.875rem !important;
}
.sizes a {
  display: inline-flex;
  gap: 23px;
  align-items: center;
  padding: 11px 14px;
  background: #f4f4f4;
  border: 1px solid #ddd;
  font-size: 0.875rem;
}
.sizes a > span {
  padding: 0;
  background: transparent;
  border: 0;
  color: #976000;
}
.sizes a:hover {
  border-color: #b37c19;
  background: #fff7e6;
}
.analysis {
  position: sticky;
  top: 24px;
}
.analysis:before {
  content: "SiO₂";
  display: block;
  font:
    600 2.5rem Manrope,
    sans-serif;
  color: #303030;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
}
.analysis th,
.analysis td {
  padding: 17px 0;
}
.analysis .button {
  justify-content: center;
}
.process-overview {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding-top: 60px;
  padding-bottom: 15px;
  gap: 20px;
}
.process-overview > a {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 10px;
}
.process-overview > a:not(:last-child):after {
  content: "";
  position: absolute;
  left: calc(50% + 37px);
  top: 32px;
  width: calc(100% - 54px);
  height: 1px;
  background: #d4d4d4;
}
.flow-icon {
  background: #f6f6f6;
  border: 1px solid #ddd;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #292929;
}
.flow-icon svg {
  width: 28px;
  height: 28px;
}
.process-overview > a:hover .flow-icon {
  background: #ffb321;
  border-color: #ffb321;
}
.process-overview small {
  font-size: 0.75rem;
  color: #936100;
}
.process-overview b {
  font-size: 0.875rem;
  font-weight: 550;
}
.steps {
  padding-top: 45px;
}
.steps article {
  gap: 35px;
  padding: 40px 0 40px 20px;
  position: relative;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 65px;
}
.step-marker svg {
  color: #8a5b00;
  width: 27px;
  height: 27px;
}
.step-num {
  font-size: 2.5rem;
  color: #b3b3b3;
  min-width: 0;
}
.steps article > div:nth-child(2) {
  padding-top: 3px;
}
.steps article h2 {
  font-size: 1.85rem;
}
.mini-steps a {
  gap: 16px;
}
.mini-icon svg {
  width: 22px;
  height: 22px;
}
.mini-steps a > span.mini-icon {
  color: #555;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 19px;
  background: #1d6545;
  color: #fff;
  border: 1px solid #ffffff30;
  border-radius: 30px;
  box-shadow: 0 7px 25px #0003;
  font-size: 0.875rem;
  font-weight: 600;
}
.whatsapp-float:hover {
  background: #164e35;
}
.whatsapp-float > span:first-child {
  display: flex;
}
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 65px;
  margin-bottom: 100px;
  padding-top: 55px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 30px;
}
.quote-intro h2 {
  font-size: 2.6rem;
  line-height: 1.2;
}
.quote-intro p {
  margin-top: 25px;
  font-size: 1rem;
}
.quote-contact {
  margin-top: 40px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-contact span {
  color: #666;
  font-size: 0.8125rem;
}
.quote-contact a {
  font:
    600 1.5rem Manrope,
    sans-serif;
  letter-spacing: -0.03em;
}
.quote-contact small {
  font-size: 0.8125rem;
  color: #666;
}
#quote-form {
  background: #f5f5f5;
  padding: 30px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 550;
}
label > span {
  font-size: 0.75rem;
  color: #777;
  display: contents;
  font-weight: 400;
}
input,
select,
textarea {
  font:
    400 1rem "DM Sans",
    Arial,
    sans-serif;
  color: #252525;
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  padding: 12px;
  min-height: 48px;
}
textarea {
  resize: vertical;
  line-height: 1.6;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #a16a00;
  outline-offset: 2px;
}
.full {
  grid-column: 1/-1;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.form-actions button {
  cursor: pointer;
  border: 0;
}
.form-actions button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.outline-button {
  border: 1px solid #ccc !important;
  background: #fff;
  color: #292929;
  min-height: 52px;
  padding: 14px 19px;
  font-size: 0.875rem;
  font-weight: 600;
}
.outline-button:hover {
  background: #e9e9e9;
}
#quote-status {
  font-size: 0.875rem;
  color: #654700;
  margin-top: 14px;
}
#quote-form .note {
  line-height: 1.8;
  font-size: 0.8125rem;
}
.contact-grid {
  padding-top: 60px;
  padding-bottom: 60px;
}
footer {
  padding-bottom: 65px;
}
@media (max-width: 1100px) {
  .mega-menu {
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    padding: 20px;
  }
  .mega-intro {
    padding: 20px;
  }
  .mega-intro h2 {
    font-size: 1.45rem;
  }
  .sector-grid {
    gap: 18px;
  }
  .sector-photo {
    height: 155px;
  }
  .quote-wrap {
    gap: 35px;
  }
  .quote-intro h2 {
    font-size: 2.25rem;
  }
  .data-layout {
    gap: 35px;
  }
  .datasheet-bar > div {
    gap: 17px;
  }
  .hero-mineral-note {
    right: 40px;
  }
}
@media (min-width: 851px) {
  .mobile-toggle {
    display: none !important;
  }
  .enhanced-nav #site-nav {
    display: flex !important;
  }
}
@media (max-width: 850px) {
  header.enhanced-nav {
    flex-wrap: wrap;
  }
  .mobile-toggle:not([hidden]) {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 11px 14px;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 0.875rem;
    cursor: pointer;
    margin-left: auto;
  }
  .enhanced-nav #site-nav {
    display: none;
    width: 100%;
    order: 4;
  }
  .enhanced-nav.nav-open #site-nav {
    display: flex;
  }
  .enhanced-nav.nav-open nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  .enhanced-nav.nav-open nav > a {
    padding: 14px 4px;
    border-bottom: 1px solid #eee;
  }
  .enhanced-nav.nav-open .mobile-contact {
    display: block;
  }
  .sector-menu > summary {
    padding: 14px 4px;
    font-size: 1rem;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
  }
  .mega-menu {
    position: static;
    display: block;
    border: 0;
    box-shadow: none;
    padding: 0 0 15px;
  }
  .mega-intro {
    display: none;
  }
  .mega-links {
    gap: 0 20px;
    background: #f7f7f7;
    padding: 8px 15px;
  }
  .mega-links small {
    display: none;
  }
  .mega-links > a {
    padding: 15px 0;
  }
  .mega-links > a > span:last-child {
    display: none;
  }
  header > .contact-btn {
    margin-left: 0;
    font-size: 0.8125rem;
  }
  .hero-mineral-note {
    display: none;
  }
  .hero {
    min-height: 670px;
  }
  .process-overview {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
  .process-overview > a:nth-child(3):after {
    display: none;
  }
  .quote-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .quote-intro h2 br {
    display: none;
  }
  .quote-contact {
    margin-top: 25px;
  }
  .analysis {
    position: static;
  }
  .datasheet-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .sector-banner img {
    height: 230px;
  }
}
@media (max-width: 720px) {
  header {
    gap: 10px;
  }
  .mobile-toggle:not([hidden]) {
    padding: 9px 11px;
    gap: 9px;
    font-size: 0.8125rem;
  }
  header > .contact-btn {
    display: none;
  }
  .hero {
    min-height: 650px;
  }
  .hero-content {
    padding-top: 65px;
    padding-bottom: 130px;
  }
  .hero-image {
    inset: 0;
    opacity: 0.65;
    background-position: 60% center;
  }
  .hero-shade {
    background: linear-gradient(90deg, rgba(25, 25, 25, 0.98), rgba(25, 25, 25, 0.5));
  }
  .sector-grid {
    gap: 18px 12px;
  }
  .sector-card {
    padding: 0 15px 22px;
    min-height: 325px;
  }
  .sector-photo {
    height: 145px;
    margin: 0 -15px 19px;
  }
  .sector-card .card-top {
    margin-bottom: 14px;
  }
  .sector-card h3 {
    font-size: 1.15rem;
  }
  .sector-card p {
    font-size: 0.875rem;
  }
  .sector-card:after {
    left: 15px;
  }
  .sector-card .card-bottom {
    font-size: 0.75rem;
  }
  .sector-banner {
    margin-top: 25px;
  }
  .sector-banner img {
    height: 200px;
  }
  .sector-banner figcaption {
    left: 33px;
    bottom: 10px;
    font-size: 0.7rem;
  }
  .datasheet-bar > div {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .datasheet-bar a {
    font-size: 0.8125rem;
  }
  .data-layout {
    padding-top: 40px;
  }
  .data-layout article h3 {
    font-size: 1.25rem;
  }
  .sizes a {
    font-size: 0.875rem;
  }
  .process-overview {
    padding-top: 38px;
    gap: 24px 15px;
  }
  .flow-icon {
    width: 56px;
    height: 56px;
  }
  .process-overview > a:not(:last-child):after {
    top: 28px;
    left: calc(50% + 30px);
    width: calc(100% - 45px);
  }
  .process-overview > a:nth-child(3):after {
    display: none;
  }
  .process-overview b {
    font-size: 0.8125rem;
  }
  .steps article {
    padding: 30px 0;
    gap: 22px;
  }
  .step-marker {
    min-width: 42px;
  }
  .step-num {
    font-size: 2rem;
  }
  .step-marker svg {
    width: 24px;
  }
  .steps article h2 {
    font-size: 1.55rem;
  }
  .steps p {
    font-size: 1rem;
  }
  .mini-steps a {
    gap: 12px;
    font-size: 0.9375rem;
  }
  .quote-wrap {
    margin-bottom: 65px;
    padding-top: 40px;
  }
  .quote-intro h2 {
    font-size: 2.1rem;
  }
  #quote-form {
    padding: 22px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .form-actions {
    display: grid;
  }
  .form-actions button {
    width: 100%;
    justify-content: center;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 13px 16px;
    font-size: 0.8125rem;
  }
  .contact-grid {
    gap: 30px;
  }
  .mega-links {
    grid-template-columns: 1fr;
  }
  .mega-links > a {
    padding: 12px 0;
  }
  .quote-intro p {
    font-size: 1rem;
  }
}
.photo-credits {
  max-width: 1212px;
  margin: 0 auto 25px;
  border-top: 1px solid #ffffff22;
  padding-top: 18px;
  color: #bbb;
  font-size: 0.75rem;
}
.photo-credits summary {
  cursor: pointer;
  width: fit-content;
}
.photo-credits p {
  max-width: 950px;
  color: #aaa;
  font-size: 0.75rem;
  margin-top: 10px;
  line-height: 1.7;
}
.photo-credits a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #ddd;
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.language-switch span {
  color: #aaa;
}
.language-switch a {
  padding: 8px 2px;
}
.language-switch [aria-current] {
  color: #986000;
  border-bottom: 2px solid var(--gold);
}
header {
  gap: 20px;
}
header nav {
  gap: 23px;
}
.company-story {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 85px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.company-sign {
  background: #f4f4f4;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.company-sign img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}
.company-sign > span {
  font:
    700 1.3rem Manrope,
    sans-serif;
  letter-spacing: 0.15em;
  margin-top: 15px;
}
.company-sign small {
  font-size: 0.7rem;
  color: #777;
  letter-spacing: 0.18em;
  margin-top: 8px;
}
.company-story h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}
.company-story p {
  margin-top: 23px;
  font-size: 1rem;
}
.story-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  font-size: 0.875rem;
}
.size-scale {
  grid-column: 1/-1;
  border-top: 1px solid #484848;
  padding-top: 25px;
}
.scale-title {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  color: #ddd;
}
.size-scale svg {
  display: block;
  width: 100%;
  max-width: 780px;
  margin-top: 5px;
}
.scale-track {
  stroke: #555;
  stroke-width: 12;
  stroke-linecap: round;
}
.scale-active {
  stroke: #ffb31c;
  stroke-width: 12;
  stroke-linecap: round;
}
.scale-ticks line {
  stroke: #777;
  stroke-width: 1;
}
.scale-ticks text {
  fill: #ccc;
  font:
    12px Arial,
    sans-serif;
}
.size-scale p {
  font-size: 0.75rem;
  color: #aaa;
}
.sector-focus {
  padding-top: 38px;
  padding-bottom: 38px;
}
.sector-focus h2 {
  max-width: 780px;
  font-size: 2.3rem;
  margin-bottom: 25px;
}
.sector-focus .focus-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sector-focus .focus-tags > span {
  padding: 9px 15px;
  background: #f5f5f5;
  font-size: 0.875rem;
  border-left: 2px solid var(--gold);
}
[data-sector] .sector-banner img {
  height: 330px;
}
[data-sector] .data-layout {
  padding-top: 30px;
}
[data-sector="cam-sanayi"] .pagehead,
[data-sector="kimya-sanayi"] .pagehead {
  background: #e9f0f2;
  color: #202a30;
}
[data-sector="cam-sanayi"] .pagehead p,
[data-sector="kimya-sanayi"] .pagehead p {
  color: #536168;
}
[data-sector="cam-sanayi"] .pagehead .eyebrow,
[data-sector="kimya-sanayi"] .pagehead .eyebrow {
  color: #78500a;
}
[data-sector="cam-sanayi"] .crumb,
[data-sector="kimya-sanayi"] .crumb {
  color: #56626a;
}
[data-sector="metalurji"] .sector-banner img {
  height: 410px;
}
[data-sector="porselen"] .pagehead,
[data-sector="seramik"] .pagehead {
  background: #f5f5f5;
  color: #252525;
}
[data-sector="porselen"] .pagehead p,
[data-sector="seramik"] .pagehead p {
  color: #666;
}
[data-sector="porselen"] .pagehead .eyebrow,
[data-sector="seramik"] .pagehead .eyebrow {
  color: #916000;
}
[data-sector="porselen"] .crumb,
[data-sector="seramik"] .crumb {
  color: #666;
}
[data-sector="porselen"] .sector-banner img {
  object-fit: contain;
  background: #f8f8f8;
}
[data-sector="kompoze-tas"] .sector-banner img {
  height: 230px;
}
[data-sector="elektronik"] .pagehead {
  background: #19242b;
}
[data-sector="elektronik"] .sector-focus .focus-tags > span {
  font-family: monospace;
  background: #edf1f2;
}
[data-sector="boya-sanayi"] .sector-focus {
  border-bottom: 3px solid var(--gold);
}
@media (max-width: 1100px) {
  header nav {
    gap: 15px;
  }
  .company-story {
    gap: 40px;
  }
  .company-story h2 {
    font-size: 2.1rem;
  }
  .brand b {
    font-size: 1.4rem;
  }
}
@media (max-width: 850px) {
  .language-switch {
    order: 2;
  }
  .mobile-toggle {
    order: 3;
  }
  header > .contact-btn {
    display: none;
  }
  .company-story {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .company-sign {
    min-height: 220px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  .company-sign img {
    width: 150px;
    height: 150px;
  }
  .company-sign small {
    width: 100%;
    text-align: center;
  }
  .sector-focus h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 720px) {
  header {
    gap: 10px;
  }
  .language-switch {
    font-size: 0.75rem;
    gap: 5px;
    margin-left: auto;
  }
  .mobile-toggle:not([hidden]) {
    margin-left: 0;
  }
  .company-story h2 {
    font-size: 2rem;
  }
  .story-links {
    flex-wrap: wrap;
  }
  .sector-focus {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .sector-focus h2 {
    font-size: 1.65rem;
  }
  .sector-focus .focus-tags > span {
    font-size: 0.8125rem;
  }
  [data-sector] .sector-banner img {
    height: 230px;
  }
  [data-sector="metalurji"] .sector-banner img {
    height: 270px;
  }
  .size-scale {
    overflow: visible;
  }
  .size-scale svg {
    min-height: 90px;
  }
  .scale-ticks text {
    font-size: 13px;
  }
  .company-sign > span {
    font-size: 1rem;
  }
}
.size-scale {
  min-width: 0;
  overflow-x: auto;
}
.size-scale svg {
  min-width: 600px;
}
.band-panel > * {
  min-width: 0;
}
html[lang="en"] header nav {
  gap: 16px;
}
html[lang="en"] .hero h1 {
  font-size: clamp(2.4rem, 4.3vw, 4.1rem);
}
html[lang="en"] .company-story h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
@media (max-width: 720px) {
  html[lang="en"] .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
@media (max-width: 400px) {
  header .brand small {
    display: none;
  }
  header .brand > img {
    width: 36px;
    height: 36px;
  }
  header .brand b {
    font-size: 1.12rem;
  }
  header .brand {
    gap: 7px;
  }
  header .language-switch {
    gap: 4px;
  }
  header .mobile-toggle:not([hidden]) {
    padding: 9px;
    font-size: 0.75rem;
    gap: 6px;
  }
}
/* Refined reading rhythm and touch ergonomics. */
:root {
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
.button,
.outline-button,
.contact-btn {
  transition:
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.button:hover,
.contact-btn:hover {
  box-shadow: 0 5px 18px #00000014;
}
.button:active,
.outline-button:active {
  transform: translateY(1px);
}
.sector-card {
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.data-layout article p {
  max-width: 70ch;
  line-height: 1.95;
}
.data-layout article h2 {
  line-height: 1.3;
}
.section-heading h2 {
  line-height: 1.2;
}
.analysis {
  scroll-margin-top: 30px;
}
.analysis table th {
  line-height: 1.5;
}
.analysis table td {
  vertical-align: top;
  line-height: 1.7;
}
.sizes a {
  min-height: 48px;
  justify-content: space-between;
  transition:
    border-color 0.18s,
    background 0.18s;
}
.datasheet-bar a {
  padding: 8px 0;
}
.mega-links a {
  transition:
    background 0.18s,
    color 0.18s;
}
.mega-links a:hover {
  background: #faf8f2;
}
.form-actions button {
  line-height: 1.5;
}
.photo-credits summary {
  min-height: 40px;
  display: list-item;
  align-content: center;
}
.source-paragraphs p + p {
  margin-top: 20px;
}
.mobile-contact-strip {
  display: none;
}
@media (hover: none) {
  .sector-card:hover {
    transform: none;
  }
  .sector-card:hover .sector-photo img {
    transform: none;
  }
}
@media (max-width: 720px) {
  .data-layout {
    gap: 30px;
  }
  .data-layout article h2 {
    font-size: 1.7rem;
  }
  .data-layout article p {
    line-height: 1.85;
  }
  .data-layout article h3 {
    margin-top: 30px;
    padding-top: 22px;
    line-height: 1.45;
  }
  .uses {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .sizes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .sizes a {
    font-size: 0.875rem;
    gap: 8px;
    padding: 12px;
    min-height: 50px;
    overflow-wrap: anywhere;
  }
  .analysis {
    padding: 22px 18px;
  }
  .analysis table {
    table-layout: fixed;
    width: 100%;
  }
  .analysis table th:first-child,
  .analysis table td:first-child {
    width: 36%;
  }
  .analysis table th:last-child,
  .analysis table td:last-child {
    width: 64%;
    overflow-wrap: anywhere;
  }
  .analysis table th,
  .analysis table td {
    padding: 14px 5px;
  }
  .analysis .button {
    white-space: normal;
    text-align: center;
  }
  .band-nav {
    scroll-snap-type: x proximity;
    scroll-padding: 15px;
  }
  .band-nav a {
    scroll-snap-align: start;
    min-height: 50px;
  }
  .pills .pill {
    min-height: 44px;
  }
  .datasheet-bar > div {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    gap: 20px;
  }
  .datasheet-bar a {
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .hero-actions .button {
    min-height: 52px;
  }
  .mobile-contact-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 65;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -4px 20px #00000009;
  }
  .mobile-contact-strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: #f3f3f3;
    color: #222;
  }
  .mobile-contact-strip a:last-child {
    background: var(--gold);
  }
  .mobile-contact-strip a:nth-child(2) {
    background: #1d6545;
    color: #fff;
  }
  .whatsapp-float {
    display: none;
  }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }
  footer {
    padding-bottom: 25px;
  }
  .quote-wrap {
    margin-bottom: 55px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
    min-height: 50px;
  }
  .contact-grid h2 {
    line-height: 1.4;
  }
  .company-story {
    gap: 30px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  @supports (view-transition-name: none) {
    @view-transition {
      navigation: auto;
    }
    ::view-transition-old(root),
    ::view-transition-new(root) {
      animation-duration: 0.16s;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Shared sector alignment: image, copy and labels use the same content edges. */
[data-sector] .sector-banner,
[data-sector] .sector-focus {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
[data-sector] .sector-focus {
  display: block;
  padding-top: 0;
  padding-bottom: 32px;
}
.focus-inner {
  min-width: 0;
  padding-top: 32px;
  padding-bottom: 8px;
}
.sector-focus .eyebrow {
  margin: 0 0 18px;
}
.sector-focus h2 {
  max-width: 100%;
  margin: 0 0 24px;
  font-size: clamp(1.65rem, 2.65vw, 2.3rem);
  line-height: 1.3;
  overflow-wrap: break-word;
}
.sector-focus .focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  min-width: 0;
}
.sector-focus .focus-tags > span {
  line-height: 1.6;
  max-width: 100%;
}

[data-sector="boya-sanayi"] .sector-focus {
  border-bottom: 0;
}
[data-sector="boya-sanayi"] .focus-inner {
  border-bottom: 3px solid var(--gold);
  padding-bottom: 30px;
}
@media (max-width: 720px) {
  [data-sector] .sector-focus {
    padding-bottom: 24px;
  }
  .focus-inner {
    padding-top: 25px;
  }
  .sector-focus h2 {
    margin-bottom: 20px;
  }
  .sector-focus .focus-tags {
    gap: 9px;
  }
  .sector-focus .focus-tags > span {
    font-size: 0.8125rem;
    padding: 9px 12px;
  }
}
/* Facility hero trial — previous quartz image retained in source history. */
.hero-image {
  inset: 0;
  background-image: url("/tesis.jpg");
  background-position: 65% 50%;
  background-size: cover;
  filter: brightness(0.88);
  opacity: 1;
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(22, 24, 23, 0.96) 0%,
    rgba(22, 24, 23, 0.88) 27%,
    rgba(22, 24, 23, 0.56) 48%,
    rgba(22, 24, 23, 0.12) 77%,
    rgba(22, 24, 23, 0.08) 100%
  );
}
.hero-bottom {
  color: #eee;
}
.hero-mineral-note {
  text-shadow: 0 2px 15px #0009;
}
@media (min-width: 1450px) {
  .hero-image {
    background-position: 65% 50%;
  }
}
@media (max-width: 720px) {
  .hero-image {
    inset: 0;
    background-position: 66% 50%;
    filter: brightness(0.8);
    opacity: 1;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(20, 22, 21, 0.92),
      rgba(20, 22, 21, 0.69) 65%,
      rgba(20, 22, 21, 0.48)
    );
  }
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-actions {
  flex-wrap: wrap;
}
.catalogue-product {
  padding: 22px 0;
  border-top: 1px solid #ddd;
}
.catalogue-product h4 {
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 12px;
}
.catalogue-product-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.catalogue-product p {
  font-size: 16px;
}
.mega-links {
  max-height: 65vh;
  overflow: auto;
}

/* Simplified contact summary */
.contact-grid.contact-simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.contact-simple h2 {
  font-size: clamp(20px, 2vw, 28px);
  overflow-wrap: anywhere;
}
@media (max-width: 850px) {
  .contact-grid.contact-simple {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
