:root {
  --deep: #09291d;
  --leaf: #1f5d40;
  --amber: #d99735;
  --cream: #fbf5ea;
  --paper: #fffaf0;
  --muted: #627064;
  --line: rgba(9, 41, 29, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--deep);
  background: linear-gradient(180deg, #fbf5ea, #f1e3cb);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 244, 232, .78);
  border-bottom: 1px solid rgba(9, 41, 29, .1);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { font-size: 24px; font-weight: 900; }

.links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #394b40;
  font-size: 14px;
}

.links a {
  position: relative;
  padding: 8px 0;
}

.links a.active {
  color: var(--deep);
  font-weight: 800;
}

.links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--amber);
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--deep);
  color: white;
  font-weight: 800;
}

.btn.light {
  background: #f4c36d;
  color: var(--deep);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid rgba(9, 41, 29, .16);
  border-radius: 999px;
  background: rgba(255, 250, 240, .74);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

.language-switcher button {
  min-width: 42px;
  min-height: 30px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2f463a;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--deep);
  color: #fff;
}

.hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 112px 0 68px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251,245,234,.98) 0%, rgba(251,245,234,.78) 45%, rgba(251,245,234,.22) 100%),
    var(--hero-image, none) center / cover;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 830px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .94;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: #536258;
  font-size: 17px;
  line-height: 1.72;
}

.section { padding: 78px 0; }
.section.soft { background: rgba(255, 250, 240, .62); }
.section.dark { background: var(--deep); color: white; }
.section.dark p, .section.dark .lead { color: #dce7df; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section.dark .section-head p { color: #dce7df; }

.line-list { border-top: 1px solid var(--line); }
.section.dark .line-list { border-top-color: rgba(255,255,255,.18); }

.line-row {
  display: grid;
  grid-template-columns: 150px 1fr 1.15fr;
  gap: 28px;
  align-items: center;
  min-height: 126px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.section.dark .line-row { border-bottom-color: rgba(255,255,255,.18); }
.line-row .num { color: var(--amber); font-weight: 900; }
.line-row h3 { margin-bottom: 0; font-size: 26px; }
.line-row p { margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.section.dark .line-row p { color: #dce7df; }

.contact-info-list .line-row {
  grid-template-columns: 120px .72fr 1.28fr;
  min-height: 138px;
}

.contact-info-list .line-row p {
  max-width: 620px;
  color: #24493b;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.42;
  font-weight: 700;
}

.contact-info-list .line-row h3 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.contact-info-list .num {
  font-size: 18px;
}

.map-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 42px;
  align-items: center;
}

.map-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
}

.map-copy .btn {
  margin-top: 12px;
}

.map-frame {
  min-height: 460px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,195,109,.2), transparent 30%),
    rgba(255,250,240,.82);
  box-shadow: 0 24px 70px rgba(9, 41, 29, .12);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  filter: saturate(.9) contrast(.96);
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.catalog-shell {
  min-height: 980px;
  background: linear-gradient(180deg, rgba(251,245,234,.01), rgba(251,245,234,.78));
}

.catalog-shell.is-loading {
  opacity: .01;
}

.catalog-shell.is-ready {
  opacity: 1;
  transition: opacity 180ms ease;
}

.product-item {
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255,250,240,.82);
  overflow: hidden;
}

.product-item > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
  background: #f8fbf5;
  transition: filter .35s ease;
}
.product-item:hover > img { filter: saturate(1.04) contrast(1.02); }
.product-item div { padding: 20px; }
.product-item h3 { margin-bottom: 8px; font-size: 21px; }
.product-item p { margin-bottom: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }

.editorial-band {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.editorial-photo {
  min-height: 460px;
  overflow: hidden;
}

.editorial-copy {
  padding: 24px 0;
}

.editorial-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(255,255,255,.16);
}

.proof-grid div {
  min-height: 150px;
  padding: 28px;
  background: rgba(255,255,255,.06);
}

.proof-grid b {
  display: block;
  margin-bottom: 12px;
  color: #f4c36d;
  font-size: clamp(32px, 4vw, 52px);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1px;
  background: var(--line);
}

.photo-strip .large { min-height: 460px; }
.photo-strip .stack { display: grid; gap: 1px; }
.photo-strip .small { min-height: 229px; }

.spec-rail {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.spec-rail span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3f5146;
  background: rgba(255,250,240,.72);
  font-weight: 800;
  font-size: 13px;
}

.family-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.family-intro {
  position: sticky;
  top: 110px;
}

.family-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
}

.family-intro p {
  max-width: 430px;
  color: #dce7df;
  line-height: 1.7;
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
}

.family-item {
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.family-item span {
  color: #f4c36d;
  font-size: 13px;
  font-weight: 900;
}

.family-item h3 {
  margin: 20px 0 10px;
  color: white;
  font-size: 25px;
}

.family-item p {
  margin: 0;
  color: #dce7df;
  line-height: 1.6;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.process-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-block {
  min-height: 250px;
  padding: 26px;
  background: rgba(255,250,240,.82);
}

.process-block .num {
  display: block;
  margin-bottom: 34px;
  color: var(--amber);
  font-weight: 900;
}

.process-block h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.process-block p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.image-runway {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1px;
  background: var(--line);
}

.image-runway .photo-main {
  min-height: 520px;
}

.image-runway .photo-column {
  display: grid;
  gap: 1px;
}

.image-runway .photo-small {
  min-height: 259px;
}

.factory-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 0;
}

.factory-notes div {
  min-height: 118px;
  padding: 22px;
  background: rgba(255,250,240,.82);
}

.factory-notes b {
  display: block;
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 18px;
}

.factory-notes span {
  color: var(--muted);
  line-height: 1.6;
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.logistics-grid figure {
  min-height: 360px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: rgba(255,250,240,.82);
}

.logistics-grid figure:first-child { min-height: 460px; }

.logistics-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(9, 41, 29, .82);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.quality-matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.quality-step {
  min-height: 240px;
  padding: 24px;
  background: rgba(255,250,240,.84);
}

.quality-step b {
  color: var(--amber);
  font-size: 13px;
}

.quality-step h3 {
  margin: 28px 0 12px;
  font-size: 23px;
}

.quality-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 58px;
  align-items: start;
}

.contact-lead {
  position: sticky;
  top: 108px;
}

.contact-lead h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: white;
  font-weight: 900;
}

.social-links i,
.channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #f4c36d;
  color: var(--deep);
  font-style: normal;
  font-size: 16px;
  font-weight: 900;
}

.contact-hero {
  min-height: 500px;
}

.contact-hub {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: center;
  min-height: 520px;
  padding: 56px;
  background:
    radial-gradient(circle at 82% 16%, rgba(244,195,109,.2), transparent 28%),
    linear-gradient(135deg, #09291d, #174a34);
  color: white;
}

.contact-copy,
.channel-grid {
  background: transparent;
}

.contact-copy {
  padding: 0;
}

.contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
}

.contact-copy p,
.contact-copy .lead {
  color: #dce7df;
  max-width: 560px;
}

.channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.channel {
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  transition: transform .2s ease, background .2s ease;
}

.channel:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.13);
}

.channel h3 {
  margin: 0 0 4px;
  color: white;
  font-size: 22px;
}

.channel p {
  margin: 0;
  color: #dce7df;
  line-height: 1.45;
}

.channel::after {
  content: ">";
  color: #f4c36d;
  font-weight: 900;
}

.inquiry-steps {
  border-top: 1px solid var(--line);
}

.inquiry-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.inquiry-step b {
  color: var(--amber);
}

.inquiry-step h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.inquiry-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  padding: 46px 0 28px;
  background: #071f16;
  color: #dce7df;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-brand {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 25px;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 8px;
  color: #dce7df;
  line-height: 1.65;
}

.footer b {
  display: block;
  margin-bottom: 12px;
  color: #f4c36d;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(220,231,223,.75);
  font-size: 13px;
}

.detail-hero {
  padding: 42px 0 70px;
  background:
    radial-gradient(circle at 75% 18%, rgba(217, 151, 53, .18), transparent 30%),
    linear-gradient(180deg, rgba(255,250,240,.84), rgba(251,245,234,.98));
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  color: #627064;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb span { color: var(--amber); }

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.34fr) minmax(340px, .66fr);
  gap: 46px;
  align-items: center;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.thumb-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  order: 2;
}

.thumb-stack img {
  height: 108px;
  min-height: 0;
  border: 1px solid var(--line);
  background: rgba(255,250,240,.78);
  object-fit: cover;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, opacity .2s ease;
}

.thumb-stack img:hover {
  transform: translateY(-4px);
  border-color: rgba(217,151,53,.58);
  opacity: .9;
}

.detail-main-photo {
  order: 1;
  min-height: 580px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(244,195,109,.18), transparent 44%),
    rgba(255,250,240,.9);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(9,41,29,.13);
}

.detail-main-photo img {
  object-fit: contain;
  padding: 0;
  transition: transform .9s ease;
}

.detail-main-photo:hover img {
  transform: scale(1.045);
}

.detail-copy h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 30px;
}

.detail-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.quick-spec {
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,250,240,.74);
}

.quick-spec b {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 12px;
  text-transform: uppercase;
}

.quick-spec span {
  color: var(--deep);
  font-weight: 900;
}

.detail-section {
  padding: 74px 0;
}

.detail-split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 58px;
  align-items: start;
}

.detail-split > * {
  min-width: 0;
}

.sticky-title {
  position: sticky;
  top: 112px;
}

.sticky-title h2,
.spec-sheet-title {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
}

.spec-table {
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row b {
  color: var(--deep);
}

.spec-row span,
.detail-rich p,
.detail-rich li {
  color: var(--muted);
  line-height: 1.7;
}

.detail-rich {
  display: grid;
  gap: 24px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.16);
}

.feature-band article {
  min-height: 220px;
  padding: 28px;
  background: rgba(255,255,255,.07);
}

.feature-band b {
  color: #f4c36d;
  font-size: 13px;
}

.feature-band h3 {
  margin: 24px 0 12px;
  color: white;
  font-size: 24px;
}

.feature-band p {
  margin: 0;
  color: #dce7df;
  line-height: 1.62;
}

.packing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.packing-card {
  min-height: 250px;
  padding: 26px;
  background: rgba(255,250,240,.82);
}

.packing-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.packing-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.related-card {
  display: grid;
  grid-template-rows: 230px auto;
  background: rgba(255,250,240,.82);
}

.related-card div {
  padding: 20px;
}

.related-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.catalog-block:nth-child(even) {
  background: rgba(255, 250, 240, .62);
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 920px) {
  .nav-inner {
    min-height: 92px;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px 18px;
    padding: 10px 0;
  }
  .links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 16px;
    overflow: visible;
    padding: 2px 0 4px;
    scrollbar-width: none;
    white-space: normal;
  }
  .links::-webkit-scrollbar { display: none; }
  .language-switcher { margin-left: auto; }
  .section-head, .editorial-band, .line-row, .inquiry-panel, .image-runway, .contact-layout, .inquiry-step, .contact-hub, .detail-hero-grid, .detail-split, .map-section, .footer-grid { grid-template-columns: 1fr; }
  .contact-info-list .line-row { grid-template-columns: 1fr; gap: 10px; }
  .family-panel { grid-template-columns: 1fr; }
  .family-intro { position: static; }
  .contact-lead { position: static; }
  .contact-hub { padding: 34px; }
  .sticky-title { position: static; }
  .product-showcase, .proof-grid, .process-map, .quality-matrix, .feature-band, .packing-grid, .related-products, .factory-notes, .logistics-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: 1fr; }
  .detail-main-photo { min-height: 520px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 24px, 1160px); }
  .nav {
    backdrop-filter: none;
    background: rgba(255, 250, 240, .96);
  }
  .nav-inner {
    min-height: 82px;
    gap: 8px 12px;
  }
  .brand { font-size: 23px; }
  .language-switcher {
    transform: scale(.92);
    transform-origin: right center;
  }
  .nav .btn { display: none; }
  .links {
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    white-space: nowrap;
    font-size: 12px;
  }
  .product-showcase, .proof-grid, .process-map, .quality-matrix, .feature-band, .packing-grid, .related-products, .detail-quick-specs, .factory-notes, .logistics-grid { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr; }
  .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .channel-grid { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr; }
  .map-frame,
  .map-frame iframe { min-height: 360px; height: 360px; }
  .hero { min-height: 470px; padding-top: 118px; }
  h1 { font-size: 40px; line-height: .98; }
  .detail-hero { padding: 28px 0 44px; }
  .detail-main-photo {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 10px;
    box-shadow: 0 16px 36px rgba(9,41,29,.1);
  }
  .detail-main-photo img {
    max-height: 100%;
  }
  .thumb-stack {
    gap: 8px;
  }
  .thumb-stack img {
    height: 78px;
  }
  .hero h1,
  .section-head h2,
  .contact-copy h2,
  .contact-lead h2,
  .detail-copy h1 {
    overflow-wrap: anywhere;
  }
}
