:root {
  --ink: #183027;
  --pine: #17382c;
  --pine-deep: #0f2b21;
  --cream: #f7f1e6;
  --paper: #fffdf8;
  --coral: #d9573e;
  --gold: #dcaa54;
  --line: rgba(24, 48, 39, 0.16);
  --muted: #68766e;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--pine);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(24, 48, 39, 0.1);
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.65rem;
  text-decoration: none;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand img {
  width: 142px;
  height: 62px;
  object-fit: contain;
}

.brand span {
  padding-bottom: 0.9rem;
}

.main-nav {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--pine);
  background: transparent;
  cursor: pointer;
}

.mobile-contact-link {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--pine);
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.mobile-contact-link:hover,
.mobile-contact-link:focus-visible {
  border-color: var(--pine);
  color: white;
  background: var(--pine);
}

.menu-toggle span {
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.main-nav a,
.text-link {
  position: relative;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--pine);
  border-radius: 999px;
  color: #fff;
  background: var(--pine);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--pine);
  background: transparent;
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 1.15rem;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 158px 0 92px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 20%, rgba(220, 170, 84, 0.22), transparent 25%), var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  width: 450px;
  aspect-ratio: 1;
  top: 110px;
  right: -260px;
  border: 1px solid rgba(23, 56, 44, 0.12);
  border-radius: 48% 52% 63% 37%;
  transform: rotate(26deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.7rem;
  font-size: clamp(3.8rem, 6.3vw, 6.4rem);
  line-height: 0.9;
}

h1 em {
  color: var(--coral);
  font-weight: inherit;
}

.hero-lead {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-factory-image,
.hero-material-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(37, 48, 37, 0.17);
}

.hero-factory-image img,
.hero-material-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-factory-image {
  inset: 42px 0 12px 54px;
  border: 1px solid rgba(24, 48, 39, 0.12);
  border-radius: 1.1rem 1.1rem 5.5rem 1.1rem;
}

.hero-factory-image img {
  object-position: center;
}

.hero-factory-image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 8.6rem 0.85rem 1rem;
  border-radius: 0.55rem 0.55rem 3.7rem 0.55rem;
  color: white;
  background: rgba(15, 43, 33, 0.9);
  backdrop-filter: blur(8px);
}

.hero-factory-image figcaption span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-factory-image figcaption strong {
  font-size: 0.72rem;
}

.hero-material-image {
  width: 165px;
  height: 205px;
  top: 0;
  left: 0;
  border: 8px solid var(--cream);
  border-radius: 0.8rem 0.8rem 3.5rem 0.8rem;
}

.hero-established {
  position: absolute;
  right: -14px;
  bottom: -10px;
  width: 132px;
  min-height: 112px;
  display: grid;
  place-content: center;
  padding: 1rem;
  color: white;
  background: var(--coral);
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.hero-established strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
}

.hero-established span {
  margin-top: 0.35rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-grid p {
  margin: 0;
  padding: 1.6rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line);
}

.fact-grid p:first-child {
  padding-left: 0;
}

.fact-grid p:last-child {
  border-right: 0;
}

.fact-grid strong,
.fact-grid span {
  display: block;
}

.fact-grid strong {
  margin-bottom: 0.3rem;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.fact-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.95;
}

.section-heading > p {
  margin-bottom: 0.25rem;
  color: var(--muted);
  line-height: 1.8;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  margin: -0.5rem 0 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-bar button {
  flex: 0 0 auto;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.filter-bar button:hover,
.filter-bar button:focus-visible {
  border-color: var(--pine);
  color: var(--pine);
}

.filter-bar button[aria-pressed="true"] {
  border-color: var(--pine);
  color: white;
  background: var(--pine);
}

.product-card {
  position: relative;
  min-height: 470px;
  display: block;
  overflow: hidden;
  border-radius: 1.1rem;
  color: white;
  background: var(--pine);
  text-decoration: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(5, 20, 14, 0.86));
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
}

.product-card p {
  margin-bottom: 0.65rem;
  color: #f4c66f;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.product-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.product-card small {
  display: block;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.product-note {
  max-width: 47rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.product-note a {
  color: var(--pine);
  font-weight: 800;
}

.section-compact {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.families {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.families-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.families h2,
.capabilities h2,
.about h2,
.certifications h2,
.contact h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 5.3vw, 5.25rem);
  line-height: 0.94;
}

.families-intro {
  max-width: 31rem;
  color: var(--muted);
  line-height: 1.8;
}

.family-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.family-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 69px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.family-list b {
  margin-left: auto;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
}

.family-list li:nth-child(odd) {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.family-list li:nth-child(even) {
  padding-left: 1.4rem;
}

.family-list span {
  color: var(--coral);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.capabilities {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--pine);
}

.capabilities::after {
  content: "";
  position: absolute;
  width: 510px;
  aspect-ratio: 1;
  right: -330px;
  bottom: -330px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 43% 57% 61% 39%;
  transform: rotate(18deg);
}

.capability-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.capability-copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.text-link-light {
  color: #f2bd65;
}

.document-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  border-left: 1px solid rgba(255, 255, 255, 0.19);
}

.document-grid article {
  min-height: 215px;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border-right: 1px solid rgba(255, 255, 255, 0.19);
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.document-grid span {
  color: #f2bd65;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.document-grid h3 {
  margin: 2.2rem 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.document-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.65;
}

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

.process-heading {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

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

.process-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem clamp(1rem, 2.5vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.process-grid article:first-child {
  padding-left: 0;
}

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

.process-grid article > span {
  color: var(--coral);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-grid h3 {
  margin-bottom: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.process-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.process-action p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.process-action .button {
  gap: 0.6rem;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.about-image {
  position: relative;
  min-height: 590px;
  margin: 0;
}

.about-image img {
  width: 100%;
  height: 590px;
  border-radius: 1rem 1rem 6.5rem 1rem;
  object-fit: cover;
  object-position: center;
}

.about-image figcaption {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  max-width: 240px;
  padding: 1.5rem;
  color: white;
  background: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.45;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.about-lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.5;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  color: var(--muted);
  line-height: 1.8;
}

.about-details {
  display: grid;
  gap: 0;
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.about-details > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.about-details dt {
  color: var(--coral);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-details dd {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.certifications {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.certifications-heading {
  margin-bottom: 3.2rem;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.certificate-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--cream);
}

.certificate-preview {
  display: block;
  padding: 1rem 1rem 0;
  color: var(--pine);
  background: #ebe7df;
  text-decoration: none;
}

.certificate-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 210 / 297;
  border: 1px solid rgba(24, 48, 39, 0.1);
  background: white;
  box-shadow: 0 1.2rem 2.8rem rgba(24, 48, 39, 0.11);
  object-fit: contain;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.certificate-preview > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.15rem 0.95rem;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.certificate-preview b {
  font-size: 1rem;
  font-weight: 500;
}

.certificate-preview:hover img,
.certificate-preview:focus-visible img {
  box-shadow: 0 1.5rem 3.2rem rgba(24, 48, 39, 0.17);
  transform: translateY(-4px);
}

.certificate-copy {
  padding: 1.65rem;
  border-top: 1px solid var(--line);
}

.certificate-kicker {
  margin-bottom: 0.65rem;
  color: var(--coral);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.certificate-copy h3 {
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.certificate-copy dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.certificate-copy dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.75rem;
}

.certificate-copy dt {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.certificate-copy dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.certificate-note {
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.contact {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  color: white;
  background: var(--pine);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: clamp(3.5rem, 7vw, 7rem);
}

.contact-intro {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-intro .eyebrow {
  margin-bottom: 0.85rem;
}

.contact h2 {
  margin-bottom: 1.05rem;
  font-size: clamp(2.65rem, 4.2vw, 4.15rem);
  line-height: 0.96;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-methods {
  display: grid;
  margin: auto 0 1.35rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-methods a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  text-decoration: none;
}

.contact-methods a:hover strong,
.contact-methods a:focus-visible strong {
  color: #f2bd65;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 0.84rem;
  transition: color 180ms ease;
}

.contact-whatsapp-link strong {
  position: relative;
  padding-bottom: 0.22rem;
}

.contact-whatsapp-link strong::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 180ms ease;
}

.contact-whatsapp-link:hover strong::after,
.contact-whatsapp-link:focus-visible strong::after {
  transform: scaleX(1);
}

.contact-whatsapp-link b {
  margin-left: 0.2rem;
  font-size: 1rem;
  font-weight: 500;
}

.contact address {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.6;
}

.inquiry-form {
  width: 100%;
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
  border-radius: 1rem;
  color: var(--ink);
  background: var(--cream);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.05rem;
}

.form-heading p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.form-context {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin: -0.2rem 0 1.15rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(24, 48, 39, 0.18);
  border-bottom: 1px solid rgba(24, 48, 39, 0.18);
}

.form-context span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.form-context strong {
  overflow-wrap: anywhere;
  font-size: 0.8rem;
}

.form-context b {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  color: white;
  background: var(--coral);
  font-size: 0.61rem;
  letter-spacing: 0.04em;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.inquiry-form label {
  display: block;
  margin-bottom: 0.75rem;
}

.inquiry-form label > span {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(24, 48, 39, 0.25);
  border-radius: 0;
  padding: 0.42rem 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  outline: none;
}

.inquiry-form textarea {
  height: 76px;
  min-height: 76px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 1px 0 var(--coral);
}

.inquiry-form textarea::placeholder {
  color: #929b95;
}

.button-form {
  width: 100%;
  gap: 0.6rem;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-status {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.5;
  text-align: center;
  color: var(--pine);
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.eyebrow-light {
  color: #f2bd65;
}

footer {
  color: rgba(255, 255, 255, 0.64);
  background: var(--pine-deep);
  font-size: 0.72rem;
}

.footer-inner {
  min-height: 130px;
}

.brand-footer {
  color: white;
}

.brand-footer img {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-inner nav {
  display: flex;
  gap: 1.5rem;
}

.footer-inner nav a {
  text-decoration: none;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
  color: white;
}

.footer-inner p {
  margin: 0;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(220, 170, 84, 0.18), transparent 28rem),
    var(--pine-deep);
}

.not-found {
  width: min(560px, 100%);
  text-align: center;
}

.not-found .brand {
  justify-content: center;
  margin-bottom: 3rem;
  color: white;
}

.not-found .brand img {
  filter: brightness(0) invert(1);
}

.not-found h1 {
  max-width: none;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
}

.not-found > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.not-found .button {
  border-color: white;
  color: var(--pine);
  background: white;
}

.not-found .button:hover,
.not-found .button:focus-visible {
  color: white;
  background: transparent;
}

@media (min-width: 901px) {
  .header-inner {
    display: flex;
  }

  .menu-toggle,
  .mobile-contact-link {
    display: none;
  }

  .header-inner > .brand,
  .header-inner > .button {
    flex: 0 0 auto;
  }

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

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0.75rem;
  }

  .menu-toggle {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin: 0;
  }

  .header-inner > .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .mobile-contact-link {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 0.8rem 24px 1.2rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    width: 100%;
    padding: 0.75rem 0;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-inner > .button {
    display: none;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-grid p:nth-child(2) {
    border-right: 0;
  }

  .fact-grid p:first-child {
    padding-left: clamp(1rem, 2.5vw, 2rem);
  }

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

  .preview-grid .product-card:last-child {
    grid-column: 1 / -1;
  }

  .families-grid,
  .capability-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .families-grid,
  .capability-grid,
  .about-grid,
  .contact-grid {
    gap: 3.5rem;
  }

  .contact-grid {
    grid-auto-rows: 1fr;
    gap: 2.5rem;
  }

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

  .process-grid article,
  .process-grid article:first-child {
    min-height: 0;
    display: grid;
    grid-template-columns: 65px 1fr;
    padding: 1.7rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .about-image,
  .about-image img {
    min-height: 0;
    height: min(72vw, 620px);
  }

  .about-image figcaption {
    right: 1rem;
  }

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

  .certificate-card {
    display: block;
  }

  .certificate-copy {
    display: block;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-inner {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding-block: 2rem;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

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

  .brand img {
    width: 112px;
    height: 50px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 120px 0 70px;
  }

  .hero-grid {
    gap: 3rem;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-factory-image {
    inset: 24px 0 8px 28px;
    border-radius: 0.85rem 0.85rem 4rem 0.85rem;
  }

  .hero-factory-image figcaption {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.12rem;
    padding: 0.65rem 0.75rem;
  }

  .hero-material-image {
    width: 112px;
    height: 148px;
    border-width: 6px;
  }

  .hero-established {
    right: -4px;
    bottom: -10px;
    width: 104px;
    min-height: 88px;
  }

  .hero-established strong {
    font-size: 1.8rem;
  }

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

  .fact-grid p {
    padding: 1rem 0.75rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .fact-grid p:first-child {
    padding-left: 0.75rem;
  }

  .fact-grid p:nth-child(even) {
    border-right: 0;
  }

  .fact-grid p:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .fact-grid p:last-child {
    border-right: 0;
  }

  .fact-grid strong {
    font-size: 1rem;
  }

  .fact-grid span {
    font-size: 0.6rem;
    line-height: 1.45;
  }

  .section-heading {
    gap: 1.4rem;
  }

  .section-heading h2,
  .families h2,
  .capabilities h2,
  .about h2,
  .certifications h2,
  .contact h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .product-card,
  .preview-grid .product-card:last-child {
    min-height: 410px;
    grid-column: auto;
  }

  .family-list,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .family-list li:nth-child(odd),
  .family-list li:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .process-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-action .button {
    width: 100%;
  }

  .about-image,
  .about-image img {
    height: 95vw;
    max-height: 460px;
  }

  .about-image figcaption {
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: 210px;
  }

  .about-details > div {
    grid-template-columns: 75px 1fr;
  }

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

  .certificate-card {
    display: block;
    min-width: 0;
  }

  .certificate-preview {
    display: block;
    min-width: 0;
    padding: 0.55rem 0.55rem 0;
  }

  .certificate-preview img {
    height: auto;
    aspect-ratio: 210 / 297;
    box-shadow: 0 0.7rem 1.4rem rgba(24, 48, 39, 0.1);
  }

  .certificate-preview > span {
    gap: 0.3rem;
    padding: 0.6rem 0.05rem 0.65rem;
    font-size: 0;
    letter-spacing: 0.035em;
  }

  .certificate-preview > span::before {
    content: "Open PDF";
    font-size: 0.55rem;
  }

  .certificate-preview b {
    font-size: 0.75rem;
  }

  .certificate-copy {
    display: block;
    min-width: 0;
    padding: 0.85rem 0.7rem 0.95rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .certificate-kicker {
    margin-bottom: 0.45rem;
    min-height: 2.7em;
    font-size: 0.5rem;
    line-height: 1.35;
  }

  .certificate-copy h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
  }

  .certificate-copy dl {
    gap: 0.6rem;
  }

  .certificate-copy dl > div {
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }

  .certificate-copy dt {
    font-size: 0.5rem;
  }

  .certificate-copy dd {
    overflow-wrap: anywhere;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .contact-methods a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .contact {
    padding: 2.75rem 0;
  }

  .contact-grid {
    gap: 1.75rem;
  }

  .inquiry-form {
    padding: 1rem 0.9rem;
    border-radius: 0.85rem;
  }

  .contact-intro .eyebrow {
    margin-bottom: 0.65rem;
  }

  .contact h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(2.35rem, 10.5vw, 3.1rem);
  }

  .contact-intro > p:not(.eyebrow) {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .contact-methods {
    margin-bottom: 1.15rem;
    padding-top: 1.1rem;
  }

  .contact-methods a {
    padding: 0.75rem 0;
  }

  .contact address {
    font-size: 0.7rem;
  }

  .form-heading {
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }

  .form-heading p {
    font-size: 1.4rem;
  }

  .inquiry-form label {
    margin-bottom: 0.58rem;
  }

  .inquiry-form textarea {
    height: 68px;
    min-height: 68px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .form-context {
    grid-template-columns: 1fr auto;
  }

  .form-context span {
    grid-column: 1 / -1;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }
}

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

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