:root {
  --bg: #e9eaec;
  --bg-soft: #f7f7f8;
  --surface: #ffffff;
  --surface-alt: #eff0f2;
  --surface-dark: #1f1918;
  --line: rgba(88, 92, 102, 0.12);
  --line-strong: rgba(88, 92, 102, 0.22);
  --text: #252427;
  --muted: #66666d;
  --accent: #c71f32;
  --accent-deep: #941524;
  --accent-soft: rgba(199, 31, 50, 0.1);
  --paper: #eceef1;
  --shadow-soft: 0 18px 50px rgba(89, 20, 24, 0.08);
  --shadow-strong: 0 40px 90px rgba(74, 19, 24, 0.2);
  --radius: 8px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 24%),
    linear-gradient(132deg, #fafafb 0%, #f1f2f4 34%, #e4e6ea 68%, #f3f4f6 100%);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.page-shell {
  overflow-x: hidden;
}

.hero-content,
.section-shell,
.page-hero-inner,
.site-footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  width: 100%;
  min-height: 92px;
  padding: 0 clamp(18px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(88, 92, 102, 0.08);
  box-shadow: 0 10px 26px rgba(44, 47, 56, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(44, 47, 56, 0.08));
}

.desktop-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(10px, 1.15vw, 18px);
  min-width: 0;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a.active {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after,
.mobile-nav a:hover::after,
.mobile-nav a:focus-visible::after,
.mobile-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact,
.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-contact {
  color: var(--accent);
  border: 1px solid rgba(199, 31, 50, 0.16);
  background: rgba(199, 31, 50, 0.06);
}

.header-quote {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 24px rgba(191, 33, 54, 0.16);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(199, 31, 50, 0.12);
  background: rgba(255, 255, 255, 0.94);
}

.lang-switch button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-switch button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--accent-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(15, 11, 10, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 49;
  display: grid;
  align-content: start;
  gap: 24px;
  width: min(360px, 100%);
  height: 100svh;
  padding: 28px 24px 24px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 245, 0.98));
  box-shadow: var(--shadow-strong);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

body.menu-open .menu-scrim {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-drawer {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--text);
  background: rgba(180, 32, 52, 0.08);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.mobile-nav {
  display: grid;
  gap: 18px;
}

.mobile-nav a {
  width: fit-content;
  font-size: 1.05rem;
  font-weight: 700;
}

.drawer-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.drawer-contact {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.drawer-contact a {
  color: var(--accent);
  font-weight: 800;
}

.hero {
  position: relative;
  padding: 20px 0 56px;
  min-height: calc(100svh - 86px);
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 20, 18, 0.56) 0%, rgba(26, 20, 18, 0.26) 34%, rgba(255, 255, 255, 0.08) 68%, rgba(255, 255, 255, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(26, 20, 18, 0.18));
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: end;
  min-height: calc(100svh - 150px);
}

.hero-content-minimal {
  grid-template-columns: 1fr;
  place-items: center;
  align-items: center;
}

.hero-copy {
  padding: 56px 0 30px;
  color: rgba(255, 248, 241, 0.94);
}

.hero-copy-minimal {
  display: grid;
  justify-items: center;
  padding: 32px 0;
}

.hero-brand-lockup {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-copy-minimal .hero-brand-lockup {
  justify-items: center;
  margin-bottom: 0;
}

.hero-brand-mark {
  width: clamp(164px, 24vw, 250px);
  height: auto;
  padding: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 235, 238, 0.84);
  filter: drop-shadow(0 18px 34px rgba(108, 18, 28, 0.2));
}

.hero-slogan {
  margin: 0;
}

.hero-copy-minimal .hero-brand-mark {
  width: clamp(250px, 30vw, 390px);
}

.hero-copy-minimal .hero-slogan {
  justify-content: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.showcase-copy h2,
.catalog-intro h2,
.cta-block h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-weight: 600;
  line-height: 0.96;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff8f1;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 6vw, 5rem);
}

.slogan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 10px 16px;
  border: 1px solid rgba(255, 245, 246, 0.32);
  background: rgba(255, 247, 248, 0.16);
  color: #fff9f9;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.slogan::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(180deg, rgba(247, 247, 248, 0.99), rgba(231, 233, 236, 0.98));
  transition: opacity 700ms ease, visibility 700ms ease;
}

.site-intro.is-complete {
  opacity: 0;
  visibility: hidden;
}

.site-intro-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  animation: introRise 900ms ease both;
}

.site-intro-logo {
  width: min(240px, 52vw);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(54, 27, 22, 0.12));
}

.site-intro-slogan {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes introRise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lead,
.hero-copy p,
.section-copy p,
.showcase-copy p,
.feature-card p,
.contact-card p,
.catalog-card p,
.product-card p,
.timeline-card p,
.process-card p,
.sector-card p,
.references-card p,
.placeholder-note p,
.form-note,
.info-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.78;
}

.hero-copy .lead,
.hero-copy p {
  color: rgba(255, 244, 237, 0.8);
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 34px rgba(191, 33, 54, 0.22);
}

.button.secondary {
  color: #fff6ef;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.button.ghost {
  color: var(--accent);
  background: rgba(191, 33, 54, 0.06);
  border-color: rgba(191, 33, 54, 0.12);
}

.hero-media-stack {
  position: relative;
  display: grid;
  gap: 18px;
  padding-bottom: 18px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 650px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(17, 12, 10, 0.38));
}

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

.hero-panel-grid {
  position: absolute;
  right: -20px;
  bottom: 22px;
  display: grid;
  grid-template-columns: minmax(180px, 0.84fr) minmax(220px, 1fr);
  gap: 14px;
  width: min(500px, calc(100% - 24px));
}

.hero-panel,
.hero-mini-frame,
.stat-band article,
.feature-card,
.product-card,
.catalog-card,
.timeline-card,
.process-card,
.sector-card,
.references-card,
.contact-card,
.info-panel,
.quote-panel,
.placeholder-note,
.page-hero-art img {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(53, 57, 66, 0.08);
}

.hero-panel {
  padding: 18px 18px 20px;
  backdrop-filter: blur(12px);
  background: rgba(255, 247, 239, 0.92);
}

.hero-panel span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-mini-frame {
  overflow: hidden;
  min-height: 220px;
}

.hero-mini-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-shortcuts .feature-card {
  display: grid;
  align-content: start;
}

.home-shortcuts .hero-actions {
  margin-top: 18px;
}

.hero-panel strong,
.stat-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.hero-panel p,
.stat-band span,
.catalog-meta span,
.contact-list span,
.footer-links a {
  color: var(--muted);
}

.card-actions {
  margin-top: 20px;
}

.hero-signature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  max-width: 620px;
}

.hero-signature-list div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-signature-list span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 226, 217, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-signature-list strong {
  color: #fff7f0;
  font-size: 1rem;
  line-height: 1.55;
}

.stat-band,
.section-shell,
.site-footer {
  padding: 96px 0;
}

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

.stat-band article {
  padding: 22px;
}

.stat-band strong {
  font-size: 1.38rem;
}

.section-shell {
  display: grid;
  gap: 34px;
}

.section-shell.compact {
  gap: 24px;
}

.section-shell.tight {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-shell.paper {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(239, 240, 243, 0.58)),
    linear-gradient(180deg, rgba(88, 92, 102, 0.03), rgba(88, 92, 102, 0.012));
}

.home-signature-band {
  padding-top: 24px;
}

.home-priority-shell {
  padding-top: 28px;
}

.signature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 26px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(28, 21, 19, 0.98), rgba(48, 28, 24, 0.92)),
    linear-gradient(180deg, rgba(180, 32, 52, 0.18), rgba(180, 32, 52, 0));
  box-shadow: var(--shadow-strong);
}

.signature-band .eyebrow,
.signature-band h2,
.signature-band p,
.signature-band strong,
.signature-band span {
  color: #fff6ef;
}

.signature-band .eyebrow {
  color: rgba(255, 223, 213, 0.76);
}

.signature-band-copy {
  display: grid;
  gap: 16px;
}

.signature-band-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.signature-band-copy p {
  max-width: 560px;
  color: rgba(255, 241, 235, 0.74);
}

.signature-band-stats {
  display: grid;
  gap: 14px;
}

.signature-band-stats article {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.signature-band-stats span {
  color: rgba(255, 241, 235, 0.7);
}

.home-gallery-shell {
  gap: 28px;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 20px;
}

.editorial-card {
  display: grid;
  align-content: start;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.editorial-card:hover,
.editorial-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(55, 29, 22, 0.16);
}

.editorial-card-large {
  grid-row: span 2;
}

.editorial-media {
  overflow: hidden;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.editorial-media.portrait img {
  aspect-ratio: 4 / 5;
}

.editorial-card:hover .editorial-media img {
  transform: scale(1.03);
}

.editorial-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.editorial-label {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-copy h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.24;
}

.editorial-copy p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-story {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: center;
}

.section-story.reverse {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.section-story-copy {
  display: grid;
  gap: 16px;
}

.section-story-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-weight: 600;
  line-height: 0.96;
}

.section-story-text {
  display: grid;
  gap: 16px;
}

.section-story-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.section-story-art {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.section-story-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.section-heading h2,
.showcase-copy h2,
.catalog-intro h2,
.cta-block h2 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 5vw, 4.35rem);
}

.section-kicker {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.78;
}

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

.split-copy,
.promise-grid,
.product-grid,
.catalog-grid,
.sectors-grid,
.references-grid,
.contact-grid,
.timeline-grid,
.process-grid,
.overview-grid {
  display: grid;
  gap: 20px;
}

.split-copy {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 28px;
  border-top: 1px solid rgba(127, 52, 34, 0.1);
}

.promise-grid,
.sectors-grid,
.references-grid,
.contact-grid,
.overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

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

.feature-card,
.product-card,
.catalog-card,
.timeline-card,
.process-card,
.sector-card,
.references-card,
.contact-card,
.info-panel {
  padding: 28px 24px;
  border-radius: var(--radius);
}

.feature-card h3,
.product-card h3,
.catalog-card h3,
.timeline-card h3,
.process-card h3,
.sector-card h3,
.references-card h3,
.contact-card h3,
.info-panel h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}

.feature-index,
.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card img,
.catalog-card img {
  width: calc(100% + 48px);
  margin: -28px -24px 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 34px;
  align-items: center;
}

.family-gallery-list {
  display: grid;
  gap: 28px;
}

.family-gallery {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 244, 245, 0.74));
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
}

.family-gallery-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.family-gallery-copy .eyebrow {
  margin-bottom: 0;
}

.family-gallery-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-weight: 600;
  line-height: 0.98;
}

.family-gallery-copy p:last-child {
  margin: 0;
}

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

.family-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(113, 33, 33, 0.08);
  background: #fff;
  border-radius: var(--radius);
}

.family-shot.lead {
  grid-column: span 2;
  grid-row: span 2;
}

.family-shot img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms ease;
}

.family-shot.lead img {
  min-height: 374px;
}

.family-shot:hover img {
  transform: scale(1.02);
}

.showcase.reverse {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
}

.showcase.reverse .showcase-media {
  order: 2;
}

.showcase.reverse .showcase-copy {
  order: 1;
}

.showcase-media img,
.page-hero-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.showcase-copy {
  display: grid;
  gap: 18px;
}

.detail-list,
.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li,
.contact-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(127, 52, 34, 0.1);
  color: var(--muted);
}

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

.mini-callout article {
  padding: 20px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.52);
}

.page-hero {
  padding: 28px 0 20px;
}

.page-hero-inner {
  padding: 18px 0 0;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  gap: 30px;
  align-items: end;
}

.page-hero-copy {
  padding: 34px 0 18px;
}

.page-hero-art {
  align-self: stretch;
}

.page-hero-art img {
  height: 100%;
}

.catalog-intro {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.catalog-card img {
  border-radius: 0;
  margin-bottom: 20px;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.catalog-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(233, 235, 239, 0.82);
  font-size: 0.82rem;
}

.placeholder-note {
  padding: 24px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: start;
}

.quote-panel {
  padding: 28px 24px;
  border-radius: var(--radius);
}

.quote-form .hero-actions {
  margin-top: 26px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(94, 48, 39, 0.15);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(199, 31, 50, 0.48);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(199, 31, 50, 0.1);
}

.field textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
  line-height: 1.55;
}

.inline-link {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgba(88, 92, 102, 0.08);
  background: linear-gradient(180deg, rgba(244, 245, 247, 0.92), rgba(229, 231, 235, 0.94));
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  font-size: 0.92rem;
}

.footer-signature {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-contact,
.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer-contact a,
.footer-seo-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-contact a:first-child,
.footer-seo-links a:hover {
  color: var(--accent);
}

.footer-seo-links {
  width: min(calc(100% - 40px), var(--max));
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(88, 92, 102, 0.1);
}

.contact-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(88, 92, 102, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(44, 47, 56, 0.14);
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.menu-open .contact-dock,
body.menu-open .kk-chat {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.contact-dock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-dock a + a {
  color: var(--accent);
  background: rgba(199, 31, 50, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-nav,
  .header-contact,
  .header-quote {
    display: none;
  }

  .hero-content,
  .page-hero-inner,
  .showcase,
  .showcase.reverse,
  .quote-layout,
  .signature-band,
  .family-gallery,
  .section-story,
  .section-story.reverse {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-image {
    min-height: 520px;
  }

  .hero-panel-grid {
    position: static;
    width: 100%;
  }

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

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

  .editorial-card-large {
    grid-row: span 1;
    grid-column: 1 / -1;
  }

  .stat-band,
  .timeline-grid,
  .process-grid,
  .product-grid.three,
  .catalog-grid,
  .promise-grid,
  .sectors-grid,
  .references-grid,
  .contact-grid,
  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-content,
  .section-shell,
  .page-hero-inner,
  .site-footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding-inline: 18px;
  }

  .page-hero {
    padding-top: 20px;
  }

  .page-hero-inner {
    gap: 20px;
    align-items: start;
  }

  .page-hero-art img {
    max-height: 420px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .page-hero h1,
  .section-heading h2,
  .showcase-copy h2,
  .catalog-intro h2,
  .cta-block h2 {
    max-width: 100%;
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .split-copy,
  .stat-band,
  .timeline-grid,
  .process-grid,
  .product-grid,
  .product-grid.three,
  .catalog-grid,
  .promise-grid,
  .sectors-grid,
  .references-grid,
  .contact-grid,
  .overview-grid,
  .family-gallery-grid,
  .mini-callout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .family-shot.lead {
    grid-column: span 1;
    grid-row: span 1;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    padding: 24px 18px;
  }

  .quote-form .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quote-form .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 82px;
  }

  .brand-logo {
    width: 76px;
    height: 76px;
  }

  .contact-dock {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    justify-content: center;
  }

  .contact-dock a {
    flex: 1;
    min-width: 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy,
  .page-hero-copy {
    padding-top: 20px;
  }

  .hero-copy-minimal {
    padding-top: 0;
  }

  .hero-copy-minimal .hero-brand-mark {
    width: min(250px, 74vw);
  }

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

  .hero-image {
    min-height: 440px;
  }

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

  .editorial-gallery {
    grid-template-columns: 1fr;
  }

  .stat-band,
  .section-shell,
  .site-footer {
    padding: 72px 0;
  }

  .mobile-drawer {
    width: min(340px, 100%);
    max-width: 100%;
    overflow-y: auto;
    padding-inline: 20px;
  }

  .mobile-nav {
    gap: 12px;
  }

  .mobile-nav a {
    width: 100%;
    padding: 8px 0;
  }

  .hero-actions .button {
    width: 100%;
  }
}
