:root {
  --ink: #1f2933;
  --ink-2: #294b43;
  --green: #0b3d2e;
  --green-2: #0f5b43;
  --mint: #dff1e9;
  --stone: #f6f4ef;
  --paper: #fffdf8;
  --line: #d9ded6;
  --gold: #b89b5e;
  --muted: #687873;
  --shadow: 0 18px 50px rgba(24, 51, 45, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 250px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
  object-position: center;
}

.brand-text {
  display: grid;
  gap: 8px;
  line-height: 1;
  padding-top: 1px;
}

.brand-name {
  font-family: "Avenir Next", Manrope, Inter, Arial, sans-serif;
  font-weight: 820;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.brand-sub {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 14px;
  font-weight: 720;
  color: var(--ink-2);
}

.nav-links a:hover {
  color: var(--green-2);
}

.mobile-only-link {
  display: none;
}

.nav-product-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(15, 90, 70, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--green);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav.nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.product-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 268px;
  padding: 10px;
  border: 1px solid rgba(15, 90, 70, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 18px 42px rgba(24, 51, 45, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-product-menu:hover .product-dropdown,
.nav-product-menu:focus-within .product-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.product-dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
}

.product-dropdown a:hover {
  background: rgba(15, 90, 70, 0.08);
  color: var(--green);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--green);
  background: var(--green);
  color: white;
  font-weight: 650;
  font-size: 14px;
}

.button.secondary {
  background: transparent;
  color: var(--green);
}

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
}

.hero {
  color: white;
  background:
    radial-gradient(circle at 82% 42%, rgba(248, 247, 242, 0.42) 0%, rgba(248, 247, 242, 0.2) 30%, rgba(248, 247, 242, 0) 58%),
    linear-gradient(112deg, #0b3d2e 0%, #0f5b43 56%, #dfe8e2 100%);
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner,
.section-inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 24px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 244, 239, 0.94));
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.trust-inner div {
  min-height: 86px;
  padding: 14px 22px 14px 0;
  border-right: 1px solid rgba(15, 90, 70, 0.13);
}

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

.trust-inner strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.trust-inner span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.trust-inner div + div {
  padding-left: 24px;
}

.trust-inner div:last-child {
  border-right: 0;
  padding-right: 0;
}

.home-hero {
  min-height: 620px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 74px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 58px;
}

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

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(38px, 4.45vw, 58px);
  line-height: 1.06;
  margin-bottom: 20px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.lead {
  font-size: 19px;
  max-width: 720px;
  color: var(--ink-2);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.88);
}

.section .lead,
.page-hero .lead {
  color: var(--muted);
}

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

.hero-note {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-note div {
  padding: 16px;
  background: rgba(10, 42, 33, 0.42);
}

.hero-note strong {
  display: block;
  font-size: 14px;
}

.hero-note span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.hero-product {
  position: absolute;
  display: block;
}

.hero-product img {
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(7, 31, 24, 0.18));
}

.hero-product-composition {
  width: min(860px, 120%);
  height: 590px;
  right: -18px;
  top: -16px;
  z-index: 1;
}

.hero-capabilities {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.hero-capabilities div {
  min-height: 70px;
  padding: 16px 18px;
  border-left: 1px solid var(--line);
}

.hero-capabilities div:last-child {
  border-right: 1px solid var(--line);
}

.hero-capabilities strong,
.hero-capabilities span {
  display: block;
}

.hero-capabilities strong {
  font-size: 14px;
}

.hero-capabilities span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  border-bottom: 1px solid var(--line);
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-heading.compact {
  align-items: flex-start;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 520px;
  color: var(--muted);
}

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

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

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

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

.editorial-card {
  min-height: 238px;
  padding: 32px;
  border: 1px solid rgba(15, 90, 70, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.9));
  box-shadow: 0 18px 42px rgba(24, 51, 45, 0.06);
}

.editorial-card h3 {
  max-width: 92%;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.24;
}

.editorial-card p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.62;
}

.editorial-card small {
  display: block;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 90, 70, 0.12);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.statement-block {
  margin-bottom: 40px;
  padding: 34px 40px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.36));
}

.statement-block p {
  max-width: 920px;
  margin: 0;
  color: var(--green);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 760;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

.support-main {
  position: sticky;
  top: 110px;
}

.support-main p {
  color: var(--muted);
  font-size: 16px;
}

.support-rows,
.capability-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(15, 90, 70, 0.14);
}

.support-row,
.capability-row {
  padding: 24px 0;
  border-bottom: 1px solid rgba(15, 90, 70, 0.14);
}

.support-row h3,
.capability-row h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 18px;
}

.support-row p,
.capability-row p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.capability-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 42px;
}

.capability-panel {
  min-height: 288px;
  padding: 38px;
  border: 1px solid rgba(15, 90, 70, 0.13);
  border-radius: 10px;
  background:
    radial-gradient(circle at 86% 18%, rgba(184, 155, 94, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.88));
  box-shadow: 0 16px 38px rgba(24, 51, 45, 0.055);
}

.capability-panel h2 {
  max-width: 520px;
  margin-top: 10px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.capability-panel p {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
}

.proof-split,
.image-led-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.image-led-grid {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.proof-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(15, 90, 70, 0.12);
  background: white;
  box-shadow: 0 18px 42px rgba(24, 51, 45, 0.08);
}

.proof-photo img {
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.proof-photo.wide-photo img {
  aspect-ratio: 1.72 / 1;
}

.portrait-photo img,
.about-hero-photo img {
  aspect-ratio: 1.12 / 1;
}

.workflow-photo {
  max-width: 520px;
  justify-self: end;
}

.workflow-photo img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.proof-copy {
  max-width: 560px;
}

.proof-copy .lead {
  font-size: 18px;
}

.proof-points {
  display: grid;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid rgba(15, 90, 70, 0.16);
}

.proof-points span {
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 90, 70, 0.16);
  color: var(--ink-2);
  font-weight: 700;
}

.factory-gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.factory-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-shell {
  position: relative;
}

.factory-gallery figure {
  flex: 0 0 min(520px, 82vw);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 90, 70, 0.12);
  border-radius: 10px;
  background: white;
  box-shadow: 0 12px 28px rgba(24, 51, 45, 0.055);
  scroll-snap-align: start;
}

.factory-gallery img,
.factory-gallery video {
  display: block;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  background: #12251f;
  object-fit: cover;
}

.factory-gallery figcaption {
  padding: 12px 14px 14px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.gallery-arrow {
  position: absolute;
  top: calc(50% - 18px);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 90, 70, 0.16);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: var(--green);
  box-shadow: 0 12px 26px rgba(24, 51, 45, 0.14);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.gallery-arrow.left {
  left: -18px;
}

.gallery-arrow.right {
  right: -18px;
}

.gallery-arrow:hover {
  background: white;
  border-color: rgba(15, 90, 70, 0.32);
}

.production-shell {
  margin-top: 4px;
}

.production-gallery figure {
  flex-basis: min(560px, 84vw);
}

.quality-shell {
  margin-top: 24px;
}

.quality-gallery figure {
  flex-basis: min(520px, 82vw);
}

.other-products-shell {
  margin-top: 8px;
}

.other-products-gallery figure {
  flex-basis: min(520px, 82vw);
}

.art-glass-shell {
  margin-top: 8px;
}

.art-glass-gallery figure {
  flex-basis: min(360px, 78vw);
}

.art-glass-gallery img {
  aspect-ratio: 0.86 / 1;
  background: white;
  object-fit: contain;
}

.quality-heading {
  align-items: flex-start;
}

.quality-heading p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.65;
}

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

.product-family {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(15, 90, 70, 0.12);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.9));
  box-shadow: 0 12px 30px rgba(24, 51, 45, 0.05);
}

.family-image {
  display: block;
  aspect-ratio: 1 / 1;
  padding: 14px;
  border-radius: 8px;
  background: var(--stone);
}

.family-image img {
  object-fit: contain;
}

.family-copy h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.22;
}

.family-copy p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.process-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid rgba(15, 90, 70, 0.14);
}

.process-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 90, 70, 0.14);
}

.process-list span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.process-list strong {
  color: var(--green);
  font-size: 16px;
}

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

.compact-list {
  margin-top: 22px;
}

.compact-list li {
  background: rgba(255, 255, 255, 0.58);
}

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

.compact-showcase {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 0;
}

.compact-showcase .capability-panel {
  min-height: 224px;
}

.two-column-rows {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 38px;
  margin-top: 38px;
}

.category-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(24, 51, 45, 0.05);
}

.category-card .media {
  display: block;
  aspect-ratio: 1 / 0.78;
  background: var(--stone);
}

.category-card .body {
  padding: 18px;
}

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

.series-card .media {
  aspect-ratio: 1 / 0.82;
  padding: 18px;
}

.series-card {
  position: relative;
}

.series-card .media img {
  object-fit: contain;
}

.series-card .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 210px;
  background: white;
  border-top: 1px solid rgba(15, 90, 70, 0.12);
}

.series-card h3 {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.2;
}

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

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

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

.process-grid div,
.capability-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
}

.process-grid span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 15px;
}

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

.capability-grid div {
  color: var(--ink-2);
  font-weight: 700;
  line-height: 1.35;
}

.series-card .series-label {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-weight: 760;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.series-card .series-arrow {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 20px;
}

.spec-list,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.spec-list li,
.check-list li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  color: var(--ink-2);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.image-pair .large,
.image-pair .small {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}

.image-pair .large {
  aspect-ratio: 0.88 / 1;
}

.image-pair .small {
  aspect-ratio: 1 / 1.16;
}

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

.band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  background: var(--stone);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  padding-top: 58px;
  padding-bottom: 48px;
}

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

.product-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.product-item .media {
  aspect-ratio: 1 / 1;
  background: var(--stone);
}

.product-item .caption {
  padding: 13px 14px 15px;
}

.product-item strong {
  display: block;
  font-size: 15px;
}

.product-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 34px;
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

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

.site-footer {
  background: #102720;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.78fr) minmax(220px, 0.86fr);
  gap: 38px;
}

.footer-inner h3 {
  color: white;
  margin-bottom: 14px;
  font-size: 17px;
}

.footer-inner a,
.footer-inner p,
.footer-inner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.footer-company p {
  max-width: 460px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
    order: 1;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-text {
    min-width: 0;
    gap: 5px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-cta {
    order: 2;
  }

  .nav.nav-open .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    z-index: 40;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(15, 90, 70, 0.14);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 18px 42px rgba(24, 51, 45, 0.14);
    order: 4;
  }

  .nav.nav-open .nav-links a,
  .nav.nav-open .nav-product-menu > a {
    display: block;
    padding: 12px 13px;
    border-radius: 6px;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.2;
  }

  .nav.nav-open .nav-links a:hover,
  .nav.nav-open .nav-product-menu > a:hover {
    background: rgba(15, 90, 70, 0.08);
    color: var(--green);
  }

  .nav-product-menu {
    display: block;
    padding: 0;
  }

  .product-dropdown {
    display: none;
  }

  .nav.nav-open .mobile-only-link {
    display: block;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .hero-product-composition {
    width: 108%;
    height: 440px;
    right: -22px;
    top: -6px;
  }

  .hero-capabilities {
    grid-template-columns: 1fr;
  }

  .hero-capabilities div,
  .hero-capabilities div:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-note,
  .category-grid,
  .editorial-grid,
  .about-grid,
  .capability-cards,
  .support-layout,
  .capability-showcase,
  .proof-split,
  .image-led-grid,
  .product-family-list,
  .buyer-support-list,
  .two-column-rows,
  .product-grid,
  .trust-inner,
  .process-grid,
  .capability-grid,
  .split,
  .footer-inner,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner div,
  .editorial-card {
    min-height: auto;
  }

  .trust-inner div,
  .trust-inner div + div,
  .trust-inner div:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 90, 70, 0.13);
  }

  .trust-inner div:last-child {
    border-bottom: 0;
  }

  .support-main {
    position: static;
  }

  .product-family {
    grid-template-columns: 1fr;
  }

  .family-image {
    max-width: 240px;
  }

  .proof-photo img,
  .proof-photo.wide-photo img,
  .portrait-photo img,
  .about-hero-photo img {
    aspect-ratio: 1.25 / 1;
  }

  .workflow-photo {
    max-width: 100%;
    justify-self: stretch;
  }

  .workflow-photo img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .section-heading,
  .band .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-inner,
  .section-inner {
    padding: 52px 18px;
  }
}

@media (max-width: 520px) {
  .nav {
    padding: 9px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

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

  .brand-sub {
    font-size: 9px;
    letter-spacing: 0.05em;
  }

  h1 {
    font-size: 42px;
    line-height: 1;
  }

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

  .hero-product-composition {
    width: 112%;
    height: 350px;
    right: -26px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .nav-cta {
    min-height: 38px;
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .button {
    width: 100%;
  }
}
