:root {
  --ink: #111;
  --paper: #fff;
  --cream: #e5e5e5;
  --line: rgba(17, 17, 17, .18);
  --white: #fff;
  --accent: #d0d0d0;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
html.ds-content-booting body:not(.admin-page) {
  opacity: 0;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: .3s ease;
}
.site-header.scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 11px; letter-spacing: .12em; }
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}
.brand-mark img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  border-radius: 50%;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 13px; }
.brand small { margin-top: 3px; font-size: 8px; }
.brand.has-image-logo { height: 48px; max-width: 240px; letter-spacing: 0; }
.brand-logo-image { width: auto; max-width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.footer-brand.has-image-logo { height: 54px; }
.nav { display: flex; align-items: center; gap: 48px; font-size: 14px; letter-spacing: .055em; }
.nav a { position: relative; }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.nav a:hover::after { right: 0; }
.nav a.active:not(.nav-cta)::after { right: 0; }
.nav-cta { padding: 14px 23px; border: 1px solid currentColor; border-radius: 100px; }
.nav-cta.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.menu-button { display: none; border: 0; background: transparent; }
.menu-text { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: clamp(760px, 72vh, 900px);
  color: var(--white);
  overflow: hidden;
}
.hero-image { height: 100%; object-fit: cover; object-position: 68% center; filter: saturate(.78); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,18,14,.8) 0%, rgba(8,18,14,.45) 48%, rgba(8,18,14,.1) 100%);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: max(5vw, calc((100vw - var(--max))/2));
  width: min(780px, 84vw);
  transform: translateY(-48%);
}
.eyebrow {
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #66736d; }
h1, h2 { margin: 0; font-weight: 400; letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(56px, 7.5vw, 112px); }
h1 em { color: #d0d0d0; font-family: Georgia, serif; font-weight: 400; }
.hero-copy { max-width: 570px; margin: 30px 0; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button { display: inline-flex; justify-content: center; padding: 16px 24px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.button-light { color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.text-link { font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.55); padding: 8px 0; }
.text-link span { margin-left: 10px; }
.hero-proof {
  position: absolute;
  left: max(5vw, calc((100vw - var(--max))/2));
  right: max(5vw, calc((100vw - var(--max))/2));
  bottom: 28px;
  display: flex;
  gap: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.28);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-proof b { margin-right: 5px; font-size: 18px; font-weight: 400; letter-spacing: -.02em; }

.section { width: min(var(--max), 90vw); margin: 0 auto; padding: 130px 0; }
h2 { font-size: clamp(44px, 5.2vw, 76px); }
body:not(.inner-page) main h2 { font-size: clamp(38px, 4vw, 60px); }
.intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12vw; }
.intro-copy { padding-top: 38px; font-size: 17px; line-height: 1.75; color: #52605a; }
.intro-copy p { margin: 0 0 20px; }
.arrow-link { display: inline-flex; gap: 30px; margin-top: 20px; padding-bottom: 8px; color: var(--ink); border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; }

.products { padding-top: 40px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 55px; }
.section-heading > p { width: 370px; margin: 0 0 5px; line-height: 1.7; color: #66736d; }
.section-heading-action { width: 370px; }
.section-heading-action p { margin: 0; line-height: 1.7; color: #66736d; }
.section-heading-action .arrow-link { margin-top: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { min-height: 420px; position: relative; overflow: hidden; color: var(--white); background: #27322d; }
.product-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.product-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,18,15,.78), rgba(10,18,15,.02) 68%); }
.product-card:hover img { transform: scale(1.035); }
.product-card div { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 26px; }
.product-card div > span { font-size: 11px; color: rgba(255,255,255,.68); }
.product-card h3 { margin: auto 0 8px; font-size: 22px; font-weight: 400; }
.product-card p { margin: 0; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.74); }
.product-card.featured { grid-column: span 2; }
.product-card:nth-child(3) img { object-position: center 42%; }
.product-card:nth-child(6) img,
.product-card:nth-child(7) img { object-position: center 38%; }

.categories { width: min(1600px, 92vw); max-width: none; padding: 120px 0 135px; overflow: visible; color: var(--ink); background: #fff; border-bottom: 1px solid var(--line); }
.categories .section-heading { width: 100%; margin: 0 0 68px; padding-top: 34px; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); align-items: end; text-align: left; border-top: 1px solid var(--ink); }
.categories .section-heading .eyebrow { margin-bottom: 22px; color: #66736d; }
.categories .section-heading h2 { max-width: 850px; font-size: clamp(45px, 4.4vw, 72px); }
.categories .section-heading > p { width: auto; max-width: 470px; margin: 0 0 7px auto; color: #66736d; font-size: 16px; line-height: 1.8; }
.category-grid { width: 100%; position: static; transform: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.25vw, 24px); }
.category-card { width: auto; height: clamp(430px, 31vw, 560px); padding: clamp(24px, 2vw, 34px); position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: var(--white); background: #202822; box-shadow: 0 1px 0 rgba(17,28,23,.08); transition: transform .45s ease, box-shadow .45s ease; }
.category-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.65,.3,1), filter .45s ease; }
.category-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(7,13,10,.02) 30%, rgba(7,13,10,.78) 100%); transition: background .45s ease; }
.category-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(17,28,23,.18); }
.category-card:hover img { transform: scale(1.055); filter: saturate(.9); }
.category-card:hover::after { background: linear-gradient(180deg, rgba(7,13,10,.03) 22%, rgba(7,13,10,.86) 100%); }
.category-card span { display: none; }
.category-card h3 { position: relative; z-index: 1; margin: 0; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.58); font-size: clamp(21px, 1.55vw, 28px); font-weight: 400; letter-spacing: -.025em; }
.category-card h3::after { content: "↗"; width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 16px; transition: color .3s ease, background .3s ease, transform .3s ease; }
.category-card:hover h3::after { color: var(--ink); background: var(--white); transform: rotate(45deg); }
.category-view-all { width: fit-content; margin: 52px auto 0; padding: 16px 30px; display: block; border: 1px solid #111; border-radius: 100px; color: #fff; background: #111; font-size: 12px; font-weight: 700; letter-spacing: .04em; transition: .25s ease; }
.category-view-all:hover { color: #111; background: #fff; }

.company-overview { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 8vw; }
.company-copy > p:not(.eyebrow) { max-width: 620px; margin: 30px 0; color: #59665f; font-size: 16px; line-height: 1.8; }
.company-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 35px 0 10px; border-top: 1px solid var(--line); }
.company-facts span { padding: 22px 14px 22px 0; color: #7a857f; font-size: 11px; }
.company-facts b { display: block; margin-bottom: 7px; color: var(--ink); font-size: 19px; font-weight: 400; }
.video-placeholder { min-height: 0; aspect-ratio: 16 / 9; position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.video-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-placeholder video,.video-placeholder iframe { position: absolute; inset: 0; width: 100%; height: 100%; border:0; object-fit: contain; background: #0d1713; }
.video-placeholder.has-video .video-shade,
.video-placeholder.has-video .video-label { display: none; }
.video-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,17,13,.76), rgba(8,17,13,.12)); }
.video-label { position: absolute; z-index: 1; left: 38px; bottom: 36px; display: grid; gap: 7px; }
.play-mark { width: 58px; height: 58px; margin-bottom: 12px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; font-size: 14px; }
.video-label small { text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.65); }
.video-label strong { font-size: 25px; font-weight: 400; }

.custom { width: 100%; max-width: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--white); }
.custom-image img { height: 100%; object-fit: cover; }
.custom-content { padding: clamp(70px, 8vw, 130px); }
.custom-content > p:not(.eyebrow) { max-width: 570px; margin: 28px 0 45px; color: rgba(255,255,255,.64); line-height: 1.7; }
.process { list-style: none; margin: 0; padding: 0; }
.process li { display: grid; grid-template-columns: 55px 1fr; gap: 15px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process b { font-size: 11px; color: #aabdac; }
.process span { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.5; }
.process strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 16px; font-weight: 400; }

.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.capability-card { position: relative; min-height: 440px; overflow: hidden; color: var(--white); }
.capability-card.wide { grid-column: span 2; min-height: 600px; }
.capability-card img { height: 100%; position: absolute; object-fit: cover; transition: transform .7s ease; }
.capability-card:hover img { transform: scale(1.025); }
.capability-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,20,17,.76), transparent 58%); }
.capability-card div { position: absolute; z-index: 1; left: 32px; right: 32px; bottom: 28px; }
.capability-card small { text-transform: uppercase; letter-spacing: .15em; opacity: .68; }
.capability-card h3 { margin: 8px 0; font-size: 30px; font-weight: 400; }
.capability-card p { max-width: 520px; color: rgba(255,255,255,.68); line-height: 1.6; }

.factory-showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 340px); gap: 16px; }
.factory-showcase-card { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.factory-showcase-card.main { grid-row: auto; }
.factory-showcase-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.factory-showcase-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,17,13,.78), rgba(8,17,13,.04) 68%); }
.factory-showcase-card:hover img { transform: scale(1.035); }
.factory-showcase-card div { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 28px; }
.factory-showcase-card small { color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .12em; }
.factory-showcase-card h3 { margin: 9px 0 0; font-size: 26px; font-weight: 400; }

.cleanroom { position: relative; height: 720px; color: var(--white); }
.cleanroom > img { height: 100%; object-fit: cover; }
.cleanroom::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,20,16,.82), rgba(9,20,16,.08)); }
.cleanroom-copy { position: absolute; z-index: 1; left: max(5vw, calc((100vw - var(--max))/2)); top: 50%; transform: translateY(-50%); width: min(580px, 82vw); }
.cleanroom-copy p:last-child { max-width: 530px; margin-top: 28px; color: rgba(255,255,255,.68); line-height: 1.7; }

.numbers { display: grid; grid-template-columns: repeat(4, 1fr); padding: 90px 0; border-bottom: 1px solid var(--line); }
.numbers div { padding: 0 30px; border-right: 1px solid var(--line); }
.numbers div:first-child { padding-left: 0; }
.numbers div:last-child { border: 0; }
.numbers strong { display: block; margin-bottom: 12px; font-size: clamp(42px, 5vw, 72px); font-weight: 400; letter-spacing: -.06em; }
.numbers span { color: #68756f; font-size: 12px; }

.factory-story { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 8vw; }
.factory-copy p:not(.eyebrow) { margin: 28px 0 10px; color: #68756f; line-height: 1.75; }
.factory-story img { min-height: 570px; object-fit: cover; }

.site-footer { padding: 80px max(5vw, calc((100vw - var(--max))/2)) 30px; background: #0e1814; color: rgba(255,255,255,.55); font-size: 12px; }
.footer-main { display: grid; grid-template-columns: 1.6fr .7fr 1fr 1.2fr; gap: 6vw; padding-bottom: 65px; }
.footer-about p { max-width: 330px; margin: 25px 0 0; line-height: 1.75; }
.footer-brand { color: var(--white); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-column h3 { margin: 0 0 10px; color: var(--white); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.footer-column a:hover { color: var(--white); }
.footer-contact p { max-width: 290px; margin: 4px 0 0; line-height: 1.65; }
.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; }

.inner-page { padding-top: 70px; }
.inner-page .site-header { color: var(--ink); background: rgba(255,255,255,.97); border-color: var(--line); }
.page-hero {
  position: relative;
  min-height: 620px;
  padding: 120px max(5vw, calc((100vw - var(--max))/2));
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.page-hero > div:not(.page-hero-shade) { position: relative; z-index: 2; max-width: 920px; }
.page-hero h1, .contact-page-hero h1 { font-size: clamp(55px, 7vw, 100px); }
.page-hero h1 em, .contact-page-hero h1 em { color: #d0d0d0; font-family: Georgia, serif; font-weight: 400; }
.page-hero p:last-child, .contact-page-hero > div > p:last-child { max-width: 610px; margin-top: 30px; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.7; }
.product-hero { background-color: var(--ink); }
.product-hero > img,
.contact-page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-hero::after {
  content: ""; position: absolute; width: 390px; height: 500px; right: 10vw; bottom: -160px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 42px 42px 80px 80px;
  background: linear-gradient(115deg, rgba(255,255,255,.03), rgba(255,255,255,.12), transparent);
  transform: rotate(12deg);
}
.factory-hero { min-height: 720px; }
.factory-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,18,14,.84), rgba(8,18,14,.2)); }
.page-products { padding-top: 110px; }
.catalog-shell { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: clamp(45px, 6vw, 90px); border-top: 1px solid var(--line); }
.page-products .catalog-category-intro { display: none; }
.catalog-tabs { padding-top: 24px; display: flex; flex-direction: column; align-items: stretch; }
.catalog-tabs button {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #7c8781;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color .25s ease;
}
.catalog-tabs button::before { content: ""; width: 0; height: 1px; flex: 0 0 auto; background: var(--ink); transition: width .25s ease; }
.catalog-tabs button:hover,
.catalog-tabs button.active { color: var(--ink); }
.catalog-tabs button.active::before { width: 24px; }
.catalog-tabs small { margin-left: auto; color: #9aa39e; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.catalog-content { min-width: 0; padding-top: 45px; }
.catalog-category-intro { margin-bottom: 35px; display: grid; grid-template-columns: 1fr minmax(260px, 430px); align-items: end; gap: 50px; }
.catalog-category-intro .eyebrow { margin-bottom: 14px; }
.catalog-category-intro h3 { margin: 0; font-size: clamp(34px, 4vw, 54px); font-weight: 400; letter-spacing: -.04em; }
.catalog-category-intro > p { margin: 0; color: #69756f; line-height: 1.7; }
.subcategory-tabs { margin: 0 0 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.subcategory-tabs[hidden] { display: none; }
.subcategory-tabs button { padding: 13px 17px; display: inline-flex; align-items: center; gap: 14px; color: #66736d; background: #fff; border: 1px solid var(--line); cursor: pointer; transition: .25s ease; }
.subcategory-tabs button:hover,
.subcategory-tabs button.active { color: #fff; background: var(--ink); border-color: var(--ink); }
.subcategory-tabs small { color: #9aa39e; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.subcategory-tabs button.active small { color: rgba(255,255,255,.62); }
.model-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.model-card { min-width: 0; padding: 0; display: flex; flex-direction: column; text-align: left; background: #fff; border: 1px solid var(--line); cursor: pointer; transition: transform .3s ease, box-shadow .3s ease; }
.model-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(24,37,31,.1); }
.model-card-image { height: 300px; overflow: hidden; background: #eef0ed; }
.model-card-image img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.model-card:hover .model-card-image img { transform: scale(1.035); }
.model-card-copy { min-height: 180px; padding: 21px 23px; display: flex; flex-direction: column; gap: 13px; }
.model-card-field { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.model-card-field small { color: #78847e; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.model-card-field strong { overflow-wrap: anywhere; font-size: 18px; font-weight: 400; line-height: 1.25; }
.model-card-field:nth-child(2) strong { font-size: 14px; line-height: 1.35; }
.model-card-copy > b { width: 100%; margin-top: auto; padding-top: 18px; display: flex; justify-content: space-between; color: var(--ink); border-top: 1px solid var(--line); font-size: 11px; }
.product-pagination { margin-top: 42px; padding-top: 25px; display: flex; align-items: center; justify-content: center; gap: 8px; border-top: 1px solid var(--line); }
.product-pagination[hidden] { display: none; }
.product-pagination button { width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: #fff; border: 1px solid var(--line); cursor: pointer; transition: .2s ease; }
.product-pagination button:hover,
.product-pagination button.active { color: #fff; background: var(--ink); border-color: var(--ink); }
.product-pagination button:disabled { opacity: .3; cursor: default; }
.product-pagination span { margin-left: 10px; color: #78847e; font-size: 11px; }
.catalog-empty { grid-column: 1 / -1; padding: 65px; color: #69756f; text-align: center; background: #f5f6f4; }
.catalog-empty h3 { margin: 0 0 10px; color: var(--ink); font-size: 28px; font-weight: 400; }
.catalog-empty p { margin: 0; }
.model-modal { position: fixed; z-index: 50; inset: 0; display: none; }
.model-modal.open { display: block; }
.model-modal-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0,0,0,.72); cursor: pointer; }
.model-modal-panel { position: absolute; top: 50%; left: 50%; width: min(1480px, 96vw); max-height: 94vh; overflow: auto; background: #f2f2f2; transform: translate(-50%, -50%); }
.model-modal-close { position: absolute; z-index: 2; top: 16px; right: 18px; width: 42px; height: 42px; color: var(--ink); background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 50%; font-size: 25px; cursor: pointer; }
.modal-back-mobile { display: none; }
.model-modal-content { padding: clamp(28px, 4vw, 58px); }
.model-modal-meta { width: 100%; margin: 0 auto 28px; padding: 0 58px 18px 0; display: grid; grid-template-columns: minmax(160px,.7fr) minmax(240px,1.3fr) auto; align-items: end; gap: 30px; border-bottom: 1px solid var(--line); }
.model-modal-meta div { min-width: 0; display: grid; gap: 5px; }
.model-modal-meta small { color: #777; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.model-modal-meta strong { overflow-wrap: anywhere; color: #111; font-size: 17px; font-weight: 400; line-height: 1.35; }
.model-modal-meta span { color: #888; font-size: 9px; letter-spacing: .12em; white-space: nowrap; }
.model-image-viewer[hidden] { display: none; }
.model-image-viewer { position: absolute; z-index: 4; inset: 0; overflow: auto; background: #111; }
.model-image-viewer img { width: 100%; height: auto; display: block; object-fit: contain; }
.model-gallery-loading { padding: 80px 20px; color:#777; text-align:center; background:#e9e9e9; }
.orientation-gallery-list { display:grid; gap:34px; }
.orientation-gallery { min-width:0; }
.orientation-gallery > header { margin-bottom:12px; display:flex; align-items:center; justify-content:space-between; color:#777; font-size:9px; letter-spacing:.14em; }
.orientation-gallery > header small { font-size:9px; }
.orientation-gallery-shell { position:relative; }
.orientation-gallery-viewport { overflow-x:auto; overscroll-behavior:contain; scroll-behavior:smooth; scroll-snap-type:x mandatory; scrollbar-width:thin; scrollbar-color:#888 #ddd; }
.orientation-gallery-track { width:max-content; min-width:100%; display:flex; align-items:center; gap:16px; padding-bottom:12px; }
.orientation-gallery-item { height:clamp(320px,31vw,460px); width:auto; margin:0; flex:0 0 auto; overflow:hidden; background:#ededed; border:1px solid #ddd; scroll-snap-align:start; }
.orientation-gallery-item img { width:100%; height:100%; object-fit:contain; background:#ededed; }
.orientation-gallery-arrow { position:absolute; z-index:2; top:50%; width:46px; height:46px; display:grid; place-items:center; color:#111; background:rgba(255,255,255,.94); border:1px solid var(--line); border-radius:50%; font-size:18px; cursor:pointer; transform:translateY(-60%); box-shadow:0 8px 25px rgba(0,0,0,.12); }
.orientation-gallery-arrow.previous { left:10px; }
.orientation-gallery-arrow.next { right:10px; }
.modal-open { overflow: hidden; }
.page-cta {
  padding: 100px max(5vw, calc((100vw - var(--max))/2));
  display: flex; align-items: end; justify-content: space-between; gap: 50px;
  color: var(--white); background: var(--ink);
}
.page-cta h2 { max-width: 760px; }
.factory-numbers { padding-top: 90px; }
.factory-cleanroom { margin-top: 20px; }
.contact-page-hero {
  position: relative;
  min-height: 650px;
  padding: 125px max(5vw, calc((100vw - var(--max))/2));
  display: flex; align-items: center;
  color: var(--white); background-color: var(--ink); overflow: hidden;
}
.contact-page-hero > div:not(.page-hero-shade) { position: relative; z-index: 2; max-width: 940px; }
.contact-details { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12vw; }
.brief-list h2 { max-width: 650px; }
.brief-list ol { margin: 55px 0 0; padding: 0; list-style: none; }
.brief-list li { display: grid; grid-template-columns: 55px 1fr; padding: 22px 0; border-top: 1px solid var(--line); }
.brief-list li b { color: #839087; font-size: 11px; }
.brief-list li span { font-size: 16px; }
.direct-contact { padding-top: 10px; }
.contact-block { padding: 25px 0; border-top: 1px solid var(--line); }
.contact-block small { display: block; margin-bottom: 12px; color: #76837d; text-transform: uppercase; letter-spacing: .12em; }
.contact-block > span { display: block; font-size: 22px; }
.contact-block p { max-width: 470px; margin: 0; line-height: 1.7; color: #59665f; }
.contact-qr-code {
  width: 180px;
  min-height: 180px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #777;
  background: #eee;
  border: 1px solid var(--line);
}
.contact-qr-code img { width: 100%; height: 100%; max-height: 220px; object-fit: contain; }
.contact-qr-code span { padding: 20px; text-align: center; font-size: 12px; line-height: 1.5; }
.contact-image { position: relative; height: 680px; color: var(--white); }
.contact-image img { height: 100%; object-fit: cover; filter: brightness(.48); }
.contact-image > div { position: absolute; left: max(5vw, calc((100vw - var(--max))/2)); top: 50%; transform: translateY(-50%); max-width: 650px; }
.contact-image p:last-child { max-width: 530px; line-height: 1.7; color: rgba(255,255,255,.68); }

/* Monochrome interface palette. Product photography remains in color. */
.hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.46) 48%, rgba(0,0,0,.12) 100%); }
.eyebrow.dark,
.section-heading > p,
.section-heading-action p,
.categories .section-heading .eyebrow,
.categories .section-heading > p,
.company-copy > p:not(.eyebrow),
.company-facts span,
.numbers span,
.factory-copy p:not(.eyebrow),
.catalog-tabs button,
.catalog-category-intro > p,
.subcategory-tabs button,
.product-pagination span,
.contact-block small,
.contact-block p { color: #666; }
.product-card { background: #222; }
.category-card { background: #222; }
.video-placeholder video { background: #111; }
.process b { color: #bbb; }
.site-footer { background: #0d0d0d; }
.page-hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.22)); }
.model-card-image,
.catalog-empty,
.orientation-gallery-item { background: #ededed; }

@media (min-width: 1600px) {
  :root { --max: 1440px; }
}

@media (min-width: 2560px) {
  :root { --max: 1600px; }
  .product-card { min-height: 460px; }
  .category-card { height: 560px; }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .category-card { height: clamp(410px, 42vw, 520px); }
}

@media (max-width: 900px) {
  .site-header { height: 70px; }
  .menu-button {
    min-width: 72px;
    height: 34px;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 14px;
    align-items: center;
    gap: 7px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
  }
  .menu-button .menu-text { display: block; height: auto; background: transparent; font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
  .menu-button span:not(.menu-text) { grid-column: 2; display: block; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-button span:nth-child(2) { grid-row: 1; transform: translateY(-3px); }
  .menu-button span:nth-child(3) { grid-row: 1; transform: translateY(3px); }
  .menu-button.open span:nth-child(2) { transform: rotate(45deg); }
  .menu-button.open span:nth-child(3) { transform: rotate(-45deg); }
  .nav {
    position: fixed;
    inset: 70px 0 auto;
    padding: 18px 5vw 24px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    color: var(--ink);
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(0,0,0,.10);
    font-size: 14px;
    letter-spacing: .02em;
  }
  .nav.open { display: grid; }
  .nav a,
  .nav-cta {
    min-height: 54px;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    background: #f5f5f5;
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .nav a::before { content: "Open"; color: #888; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; order: 2; }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav a.active,
  .nav-cta.active { color: #fff; background: var(--ink); border-color: var(--ink); }
  body.nav-open main,
  body.nav-open footer { filter: blur(1px); }
  .hero { min-height: 720px; }
  .hero-content { width: 90vw; }
  .hero-proof { gap: 18px; justify-content: space-between; }
  .hero-proof span { display: grid; gap: 4px; }
  .hero-proof b { font-size: 16px; }
  .section { padding: 90px 0; }
  .intro, .factory-story { grid-template-columns: 1fr; gap: 45px; }
  .intro-copy { padding-top: 0; }
  .section-heading { display: block; }
  .section-heading > p { width: auto; margin-top: 28px; }
  .section-heading-action { width: auto; margin-top: 28px; }
  .categories { width: 95vw; margin-left: 5vw; padding-top: 85px; padding-bottom: 90px; }
  .categories .section-heading { display: block; }
  .categories .section-heading > p { width: auto; margin-top: 24px; }
  .category-grid { width: calc(100vw - 5vw); display: flex; justify-content: flex-start; padding: 0 5vw 15px 0; overflow-x: auto; scrollbar-width: none; }
  .category-grid::-webkit-scrollbar { display: none; }
  .category-card { width: min(68vw, 390px); height: min(92vw, 520px); flex: 0 0 min(68vw, 390px); }
  .company-overview { grid-template-columns: 1fr; gap: 55px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 55px 10vw; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card.featured { grid-column: span 2; }
  .catalog-shell { grid-template-columns: 1fr; gap: 35px; }
  .catalog-tabs { padding: 0 0 6px; flex-direction: row; gap: 8px; overflow-x: auto; }
  .catalog-tabs button { padding: 12px 16px; flex: 0 0 auto; border: 1px solid var(--line); }
  .catalog-tabs button::before,
  .catalog-tabs small { display: none; }
  .catalog-tabs button.active { color: #fff; background: var(--ink); border-color: var(--ink); }
  .catalog-content { padding-top: 0; }
  .catalog-category-intro { grid-template-columns: 1fr; gap: 18px; }
  .subcategory-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .subcategory-tabs::-webkit-scrollbar { display: none; }
  .subcategory-tabs button { flex: 0 0 auto; }
  .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .model-modal-meta { grid-template-columns: 1fr 1.4fr; }
  .model-modal-meta > span { display: none; }
  .orientation-gallery-item { height:clamp(300px,42vw,420px); }
  .custom { grid-template-columns: 1fr; }
  .custom-image { height: 480px; }
  .capability-card.wide { min-height: 500px; }
  .factory-showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 480px 330px; }
  .factory-showcase-card.main { grid-column: span 2; grid-row: auto; }
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 45px 0; }
  .numbers div:nth-child(2) { border-right: 0; }
  .factory-story img { min-height: 440px; }
  .page-cta { align-items: flex-start; flex-direction: column; }
  .contact-details { grid-template-columns: 1fr; gap: 70px; }
}

@media (max-width: 760px) {
  h1 { font-size: 38px; line-height: 1.02; }
  h2 { font-size: 30px; line-height: 1.04; }
  body:not(.inner-page) main h2 { font-size: 29px; }
  .site-header,
  .site-header.scrolled { height: 62px; padding: 0 18px; }
  .brand-mark { width: 31px; height: 31px; font-size: 9px; }
  .brand strong { font-size: 11px; }
  .brand small { font-size: 7px; }
  .brand.has-image-logo { height: 39px; max-width: 190px; }
  .menu-button { min-width: 66px; height: 32px; padding: 0 9px; gap: 6px; }
  .nav { inset: 62px 0 auto; padding: 14px 18px 18px; gap: 8px; font-size: 13px; }
  .nav a,
  .nav-cta { min-height: 48px; padding: 13px 12px; border-radius: 10px; }
  .eyebrow { margin-bottom: 15px; font-size: 9px; }
  .hero { min-height: 620px; height: 74vh; max-height: 690px; }
  .hero-content { top: 47%; width: 88vw; }
  .hero-image { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,18,14,.84), rgba(8,18,14,.35)); }
  .hero-copy { margin: 20px 0; max-width: 330px; font-size: 14px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .button { padding: 13px 19px; font-size: 10px; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-proof { bottom: 38px; }
  .hero-proof span { font-size: 8px; }
  .hero-proof b { font-size: 14px; }
  .section { width: 92vw; padding: 62px 0; }
  .section-heading { margin-bottom: 28px; }
  .section-heading > p,
  .section-heading-action { margin-top: 16px; font-size: 13px; }
  .intro-copy,
  .company-copy > p:not(.eyebrow) { font-size: 14px; line-height: 1.65; }
  .company-overview { gap: 24px; padding-top: 48px; padding-bottom: 32px; }
  .company-copy { position: relative; padding-bottom: 40px; }
  .company-copy > p:not(.eyebrow) { margin: 20px 0; }
  .company-copy > .arrow-link { position: absolute; right: 0; bottom: 0; margin: 0; gap: 22px; font-size: 11px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .product-card.featured { grid-column: auto; min-height: 150px; }
  .product-card { min-height: 150px; }
  .product-card div { left: 10px; right: 10px; bottom: 10px; }
  .product-card h3 { margin-bottom: 3px; font-size: 12px; }
  .product-card p,
  .product-card div > span { display: none; }
  .page-products { padding-top: 52px; }
  .page-products .section-heading { margin-bottom: 40px; }
  .catalog-shell { gap: 22px; }
  .catalog-tabs { gap: 6px; }
  .catalog-tabs button { padding: 9px 11px; font-size: 11px; }
  .catalog-category-intro { margin-bottom: 22px; }
  .catalog-category-intro h3 { font-size: 29px; }
  .catalog-category-intro > p { font-size: 12px; line-height: 1.55; }
  .subcategory-tabs { margin-bottom: 20px; gap: 6px; }
  .subcategory-tabs button { padding: 9px 11px; gap: 8px; font-size: 10px; }
  .model-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .model-card-image { height: auto; aspect-ratio: 1 / 1; }
  .model-card-copy { min-height: 108px; padding: 10px 8px; gap: 7px; }
  .model-card-field { gap: 2px; }
  .model-card-field small { font-size: 7px; letter-spacing: .08em; }
  .model-card-field strong { font-size: 12px; line-height: 1.15; }
  .model-card-field:nth-child(2) strong { max-height: 28px; overflow: hidden; font-size: 9px; line-height: 1.35; }
  .model-card-copy > b { padding-top: 7px; font-size: 8px; }
  .model-card-copy > b span { display: none; }
  .product-pagination { margin-top: 25px; padding-top: 18px; gap: 5px; }
  .product-pagination button { width: 34px; height: 34px; font-size: 11px; }
  .model-modal { background: #f2f2f2; }
  .model-modal-backdrop { display: none; }
  .model-modal-panel {
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
    transform: none;
  }
  .model-modal-content { min-height: 100%; padding: 0 0 18px; }
  .model-modal-meta {
    position: sticky;
    z-index: 3;
    top: 0;
    width:100%;
    margin: 0;
    padding: 13px 14px 12px 60px;
    grid-template-columns: 1fr 1.35fr;
    gap: 8px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
  }
  .model-modal-meta small { font-size: 7px; }
  .model-modal-meta strong { font-size: 11px; }
  .model-gallery-loading { display: none; }
  .orientation-gallery-list { display: block; padding: 12px; }
  .orientation-gallery > header { margin: 0 0 9px; font-size: 8px; }
  .orientation-gallery-viewport {
    overflow: visible;
    scroll-snap-type: none;
    scrollbar-width: none;
    touch-action: pan-y;
  }
  .orientation-gallery-viewport::-webkit-scrollbar { display: none; }
  .orientation-gallery-track {
    width: 100%;
    min-width: 0;
    display: grid;
    align-items: start;
    gap: 12px;
    padding-bottom: 0;
  }
  .orientation-gallery-item {
    width: 100%;
    height: auto;
    min-height: 0;
    flex: none;
    background: #e9e9e9;
    scroll-snap-align: none;
    cursor: zoom-in;
  }
  .orientation-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .orientation-gallery-arrow { display: none; }
  .model-modal-close {
    position: fixed;
    z-index: 5;
    top: 8px;
    left: 12px;
    right: auto;
    width: 38px;
    height: 38px;
    font-family: Arial, sans-serif;
    font-size: 30px;
    line-height: 1;
  }
  .modal-close-desktop { display: none; }
  .modal-back-mobile { display: inline; }
  .model-modal.image-view-open .model-modal-close { color: #fff; background: rgba(0,0,0,.58); border-color: rgba(255,255,255,.38); }
  .model-image-viewer {
    position: fixed;
    inset: 0;
    padding: 58px 0 24px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #111;
    -webkit-overflow-scrolling: touch;
    cursor: zoom-out;
  }
  .model-image-viewer img { width: 100%; max-width: none; min-height: 0; margin: 0; cursor: zoom-out; }
  .custom.section { padding: 0; }
  .custom-image { height: 285px; }
  .custom-content { padding: 34px 5vw 30px; }
  .custom-content .eyebrow { margin-bottom: 11px; }
  .custom-content h2 { font-size: 27px; line-height: 1.04; }
  .custom-content > p:not(.eyebrow) { margin: 14px 0 20px; font-size: 13px; line-height: 1.55; }
  .process { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; }
  .process li { min-width: 0; padding: 11px 0; grid-template-columns: 25px 1fr; gap: 5px; }
  .process b { font-size: 10px; }
  .process span { font-size: 11px; line-height: 1.4; }
  .process strong { font-size: 13px; line-height: 1.25; }
  .capabilities .section-heading h2 { max-width: 310px; font-size: 25px; }
  .capabilities .section-heading > p { margin-top: 12px; font-size: 11px; line-height: 1.55; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .capability-card { grid-column: auto; min-height: 190px; }
  .capability-card.wide { grid-column: span 2; min-height: 230px; }
  .capability-card div { left: 13px; right: 13px; bottom: 12px; }
  .capability-card small { font-size: 7px; letter-spacing: .13em; }
  .capability-card h3 { margin: 5px 0 0; font-size: 14px; line-height: 1.15; }
  .capability-card p { margin: 7px 0 0; font-size: 9px; line-height: 1.4; }
  .factory-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, 190px); gap: 8px; }
  .factory-showcase-card,
  .factory-showcase-card.main { grid-column: auto; grid-row: auto; min-height: 190px; }
  .factory-showcase-card div { left: 13px; right: 13px; bottom: 13px; }
  .factory-showcase-card small { font-size: 8px; }
  .factory-showcase-card h3 { margin-top: 5px; font-size: 14px; line-height: 1.15; }
  .cleanroom { height: 480px; }
  .factory-numbers { padding-top: 38px; }
  .numbers { gap: 0; padding: 22px 0; }
  .numbers div {
    min-height: 100px;
    padding: 16px 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .numbers div:first-child,
  .numbers div:nth-child(3) { padding-left: 13px; }
  .numbers div:nth-child(odd) { border-right: 1px solid var(--line); }
  .numbers div:nth-last-child(-n + 2) { border-bottom: 0; }
  .numbers strong { margin-bottom: 7px; font-size: 31px; letter-spacing: -.045em; }
  .numbers span { font-size: 9px; line-height: 1.35; }
  .categories { width: 92vw; margin-left: 4vw; padding-top: 58px; padding-bottom: 62px; }
  .categories .section-heading { margin-bottom: 28px; padding-top: 22px; }
  .categories .section-heading h2 { font-size: 29px; }
  .categories .section-heading > p { margin-top: 15px; font-size: 13px; }
  .category-grid { width: 100%; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; overflow: visible; }
  .category-card { width: auto; height: 155px; max-height: none; padding: 10px; flex-basis: auto; }
  .category-card h3 { padding-top: 8px; gap: 5px; font-size: 11px; line-height: 1.2; }
  .category-card h3::after { display: none; }
  .category-view-all { margin-top: 25px; padding: 12px 21px; font-size: 10px; }
  .company-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 20px 0 0; }
  .company-facts span { min-width: 0; padding: 12px 6px 12px 0; border-right: 1px solid var(--line); border-bottom: 0; font-size: 10px; }
  .company-facts span:last-child { border-right: 0; }
  .company-facts b { margin-bottom: 4px; overflow-wrap: anywhere; font-size: 14px; }
  .site-footer { padding: 50px 5vw 24px; font-size: 10px; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 24px; padding-bottom: 38px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-about p { max-width: 500px; margin-top: 16px; line-height: 1.55; }
  .footer-column { gap: 9px; }
  .footer-column h3 { margin-bottom: 5px; font-size: 10px; }
  .footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 10px 20px; }
  .footer-contact h3 { grid-column: 1 / -1; }
  .footer-contact p { grid-column: 1 / -1; max-width: 100%; line-height: 1.5; }
  .footer-bottom { padding-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: 9px; line-height: 1.45; }
  .page-hero, .contact-page-hero { min-height: 490px; padding: 90px 5vw 55px; }
  .page-hero h1, .contact-page-hero h1 { font-size: 38px; }
  .page-hero p:last-child, .contact-page-hero > div > p:last-child { margin-top: 20px; font-size: 13px; }
  .factory-hero { min-height: 520px; }
  .page-cta {
    min-height: 0;
    padding: 32px 5vw;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
  }
  .page-cta .eyebrow { margin-bottom: 8px; font-size: 8px; }
  .page-cta h2 { max-width: 235px; font-size: 21px; line-height: 1.08; }
  .page-cta .button { max-width: 125px; padding: 11px 13px; text-align: center; font-size: 8px; line-height: 1.3; }
  .contact-details { gap: 42px; }
  .brief-list h2 { font-size: 25px; }
  .brief-list ol { margin-top: 28px; }
  .brief-list li { grid-template-columns: 34px 1fr; padding: 14px 0; }
  .brief-list li b { font-size: 8px; }
  .brief-list li span { font-size: 12px; line-height: 1.4; }
  .direct-contact {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }
  .direct-contact > .eyebrow { grid-column: 1 / -1; }
  .contact-block { min-width: 0; padding: 16px 0; }
  .contact-block small { margin-bottom: 8px; font-size: 8px; }
  .contact-block > span { font-size: 13px; line-height: 1.35; overflow-wrap: anywhere; }
  .contact-block p { font-size: 10px; line-height: 1.5; }
  .contact-qr-code { width: 100%; min-height: 0; max-width: 145px; aspect-ratio: 1 / 1; }
  .contact-qr-code span { padding: 10px; font-size: 9px; }
  .contact-image { height: 460px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
