:root {
  --navy: #1f2c3b;
  --navy-soft: #2f4358;
  --kraft: #b08b57;
  --kraft-soft: #e8dcc9;
  --orange: #d98a2f;
  --orange-dark: #b36d20;
  --white: #ffffff;
  --surface: #f5f3ef;
  --surface-strong: #ebe7e0;
  --gray: #66717d;
  --line: #d7d2ca;
  --success: #3c6c49;
  --shadow: 0 18px 60px rgba(31, 44, 59, 0.11);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: var(--navy);
  background: linear-gradient(180deg, #fbfaf8 0%, #ffffff 220px);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.content-flow a,
.section-copy a,
.detail-copy a,
.faq-answer a {
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.content-flow a:hover,
.section-copy a:hover,
.detail-copy a:hover,
.faq-answer a:hover {
  color: var(--orange-dark);
}

p,
li {
  color: #3a4654;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  line-height: 1.15;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.8rem, 4.5vw, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.625rem);
  letter-spacing: -0.03em;
  line-height: 1.14;
}

h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
}

main {
  overflow: hidden;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(176, 139, 87, 0.14);
  color: var(--navy-soft);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--orange);
}

.section-copy {
  max-width: 700px;
  margin-bottom: 2.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 44, 59, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(31, 44, 59, 0.06);
}

.site-header .container {
  width: min(100% - 56px, 1720px);
  padding-left: 10px;
}

.header-row {
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  width: 460px;
  max-width: 460px;
  min-width: 460px;
  margin-right: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.brand-svg {
  width: 100%;
  height: auto;
  display: block;
}

.nav-toggle {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-weight: 600;
  justify-content: flex-start;
  min-width: 0;
  padding-inline: 0;
}

.nav-item {
  position: relative;
}

.site-nav a {
  color: var(--navy-soft);
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-toggle {
  color: var(--navy-soft);
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 0;
  min-height: auto;
  box-shadow: none;
}

.nav-caret {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.site-nav a:hover {
  background: rgba(232, 150, 46, 0.08);
  color: var(--navy);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"],
.nav-item-dropdown:hover .nav-dropdown-toggle,
.nav-item-dropdown:focus-within .nav-dropdown-toggle {
  background: rgba(232, 150, 46, 0.08);
  color: var(--navy);
  transform: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: min(760px, 82vw);
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(31, 44, 59, 0.08);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 42px rgba(31, 44, 59, 0.12);
  display: none;
  z-index: 120;
}

.nav-dropdown-menu.is-open,
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-overview {
  display: block;
  padding: 0.85rem 0.95rem;
  margin-bottom: 0.65rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(31, 44, 59, 0.06);
  font-weight: 700;
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.nav-dropdown-grid a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(31, 44, 59, 0.05);
  background: rgba(248, 250, 252, 0.65);
  white-space: normal;
}

.nav-dropdown-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-dropdown-meta {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0;
  justify-self: end;
}

.button,
button,
input[type="submit"] {
  appearance: none;
  border: 0;
  border-radius: 16px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.1;
  min-height: 48px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px) scale(1.02);
}

.button-primary,
button,
input[type="submit"] {
  background: linear-gradient(135deg, var(--orange), #e0a14d);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(217, 138, 47, 0.26);
}

.button-primary:hover,
button:hover,
input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(31, 44, 59, 0.1);
  box-shadow: 0 10px 20px rgba(31, 44, 59, 0.08);
}

.button-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(31, 44, 59, 0.16);
}

.button-small {
  padding: 0.8rem 1.05rem;
  min-height: 48px;
  font-size: 0.94rem;
}

.button-icon,
.trust-icon,
.support-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  padding: 5.4rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(176, 139, 87, 0.18), transparent 35%),
    radial-gradient(circle at left 20%, rgba(31, 44, 59, 0.09), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-copy p {
  max-width: 520px;
  font-size: 1.02rem;
  margin: 1.45rem 0 0;
}

.hero-copy h1 {
  max-width: 600px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.9rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 44, 59, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.trust-item span {
  display: block;
  font-size: 0.92rem;
  color: #556170;
}

.trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(31, 44, 59, 0.08);
  box-shadow: 0 8px 18px rgba(31, 44, 59, 0.08);
  color: var(--navy);
}

.hero-panel,
.content-card,
.quote-card,
.info-card,
.table-card,
.cta-strip,
.gallery-card,
.faq-card,
.contact-panel {
  background: var(--white);
  border: 1px solid rgba(31, 44, 59, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  width: 620px;
  max-width: 100%;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(31, 44, 59, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-showcase {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.6fr 1fr;
  align-items: stretch;
}

.hero-main-image,
.hero-side-stack img,
.category-card img,
.product-card img,
.gallery-grid img,
.split-image img,
.feature-media img,
.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}

.hero-main-image {
  height: 420px;
  max-height: 420px;
  aspect-ratio: auto;
  object-fit: contain;
  width: 100%;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 22px 24px rgba(27, 39, 52, 0.18));
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
  grid-template-rows: repeat(2, 250px);
}

.hero-side-stack img {
  height: 185px;
  max-height: 185px;
  object-fit: contain;
  width: 100%;
  padding: 0;
  background: transparent;
}

.hero-spotlight {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 520px;
  height: 520px;
  padding: 14px 18px 18px;
  border-radius: 22px;
  background: #ecfcfb;
  border: 1px solid rgba(31, 44, 59, 0.06);
}

.hero-visual-stage {
  position: relative;
  min-height: 406px;
  height: 406px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-3d {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  transform: scale(1.28) rotate(-2deg) translateY(4px);
  box-shadow: none;
  transition: transform 0.28s ease;
}

.hero-mini-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  transform: translateZ(0);
  box-shadow: 0 16px 36px rgba(31, 44, 59, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  min-height: 250px;
  height: 250px;
  background: #f8fafc;
  border: 1px solid rgba(31, 44, 59, 0.07);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
}

.hero-side-stack .hero-mini-card:last-child {
  background: #f8fafc;
}

.hero-mini-card span {
  position: absolute;
  left: 14px;
  right: auto;
  bottom: 14px;
  display: grid;
  gap: 0.2rem;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(23, 33, 44, 0.86);
  color: var(--white);
  width: calc(100% - 28px);
  max-width: calc(100% - 28px);
  min-height: 62px;
}

.hero-mini-card span strong {
  font-size: 0.82rem;
  line-height: 1.2;
}

.hero-mini-card span small {
  font-size: 0.71rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-support-card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(31, 44, 59, 0.07);
  box-shadow: 0 12px 28px rgba(31, 44, 59, 0.1);
  z-index: 3;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  width: 100%;
  max-width: none;
  min-height: 92px;
}

.hero-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(31, 44, 59, 0.14);
}

.hero-panel:hover .hero-main-3d {
  transform: scale(1.28) rotate(-2deg) translateY(1px);
}

.hero-panel:hover .hero-mini-card {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(31, 44, 59, 0.13);
}

.hero-panel:hover .hero-support-card {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(31, 44, 59, 0.14);
}

.support-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--orange-dark);
  margin-top: 0.1rem;
  flex: 0 0 auto;
}

.hero-support-card strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.3;
}

.hero-support-card span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #667381;
}

.grid-2,
.grid-3,
.grid-4,
.info-grid,
.category-grid,
.product-grid,
.gallery-grid,
.benefit-grid,
.footer-grid,
.shop-layout,
.split-grid,
.cta-grid,
.table-grid {
  display: grid;
  gap: 1.3rem;
}

.grid-2,
.split-grid,
.shop-layout,
.cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

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

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

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

.category-card,
.product-card,
.info-card,
.table-card,
.content-card,
.gallery-card,
.faq-card {
  padding: 1.25rem;
}

.category-card,
.product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(31, 44, 59, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 243, 0.98));
  box-shadow: 0 18px 40px rgba(31, 44, 59, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.category-card img,
.product-card img,
.gallery-grid img {
  aspect-ratio: 1 / 1;
  min-height: 240px;
  transition: transform 0.28s ease;
}

.gallery-grid img {
  object-fit: contain;
  background: linear-gradient(180deg, rgba(248, 249, 251, 0.96), rgba(255, 255, 255, 0.98));
  padding: 0.9rem;
}

.product-inline-gallery {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.product-inline-gallery .gallery-card {
  padding: 0.9rem;
  border-radius: 22px;
  border: 1px solid rgba(31, 44, 59, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.96));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.product-inline-gallery .gallery-card:first-child img {
  min-height: 320px;
  max-height: 320px;
  background: #f8fafc;
}

.product-inline-gallery .gallery-card:not(:first-child) img {
  min-height: 220px;
  max-height: 220px;
  background: #f8fafc;
}

.product-inline-gallery .gallery-card img {
  width: 100%;
  display: block;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.product-feature-card {
  min-height: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(31, 44, 59, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.96));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-feature-card img {
  width: 100%;
  max-width: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: contain;
  display: block;
  background: #f8fafc;
  border-radius: 18px;
  padding: 1rem;
  opacity: 1;
  filter: none;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(31, 44, 59, 0.13);
  border-color: rgba(232, 150, 46, 0.18);
}

.category-card:hover img,
.product-card:hover img {
  transform: scale(1.04);
}

.category-card > div,
.product-card > div {
  display: grid;
  gap: 0.5rem;
}

.category-card .button,
.product-card .button {
  margin-top: auto;
}

.product-card ul,
.category-card ul,
.content-card ul,
.quote-card ul,
.contact-panel ul {
  padding-left: 1.1rem;
  margin: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill {
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  background: rgba(176, 139, 87, 0.14);
  color: var(--navy-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumbs {
  padding-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--gray);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs li::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(102, 113, 125, 0.55);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.page-hero {
  padding: 3rem 0 3.4rem;
}

.page-hero-grid,
.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.product-hero-image img {
  aspect-ratio: 1 / 1;
}

.quote-card,
.contact-panel {
  padding: 1.8rem;
}

.quote-card {
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.quote-card h3,
.contact-panel h3 {
  margin-bottom: 0.35rem;
  font-size: 1.65rem;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.quote-form > button[type="submit"] {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
}

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

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-soft);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--navy);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(217, 138, 47, 0.7);
  box-shadow: 0 0 0 4px rgba(217, 138, 47, 0.14);
}

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

.helper-text {
  font-size: 0.9rem;
  color: var(--gray);
}

.benefit-item {
  padding: 1.3rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 239, 0.96));
  border: 1px solid rgba(31, 44, 59, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.95rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  border-color: rgba(232, 150, 46, 0.16);
}

.benefit-item p {
  max-width: 16rem;
  margin: 0;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(232, 150, 46, 0.12);
  color: var(--orange-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.benefit-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.1rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(31, 44, 59, 0.08);
}

.comparison-table th {
  color: var(--navy);
  font-size: 0.95rem;
  background: rgba(31, 44, 59, 0.04);
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(31, 44, 59, 0.03);
}

.cta-strip {
  padding: 1.85rem 2.1rem;
  background: linear-gradient(135deg, #1a2735, #223447 58%, #2a3d52);
  color: var(--white);
  overflow: hidden;
  border-radius: 28px;
}

.cta-strip .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.cta-strip .eyebrow::before {
  background: var(--orange);
}

.cta-strip h2,
.cta-strip p {
  color: inherit;
}

.cta-strip .button-icon {
  width: 1rem;
  height: 1rem;
}

.cta-strip .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.cta-strip .button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cta-strip .button-row {
  margin-top: 0;
  align-items: center;
  justify-content: flex-start;
  align-self: center;
}

.cta-strip .button-row .button {
  flex: 0 0 auto;
  width: auto;
  min-width: 190px;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
}

.faq-list {
  display: grid;
  gap: 1.15rem;
}

.faq-item {
  border: 1px solid rgba(31, 44, 59, 0.08);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: var(--navy);
  padding: 1.2rem 1.3rem;
}

.faq-question:hover {
  transform: none;
  background: rgba(176, 139, 87, 0.06);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.3rem 0;
  transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.22s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
  opacity: 1;
  padding: 0 1.3rem 1.3rem;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-item:hover {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.07);
  border-color: rgba(217, 138, 47, 0.16);
  transform: translateY(-2px);
}

.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(217, 138, 47, 0.12);
  color: var(--orange-dark);
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.sticky-quote {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  display: none;
}

.site-footer {
  background: linear-gradient(180deg, #223142, #1b2734);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2.2rem;
  margin-top: 4rem;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.7fr 0.7fr 0.9fr;
}

.site-footer h3,
.site-footer h4,
.site-footer a,
.site-footer strong {
  color: #fff;
}

.site-footer p,
.site-footer li,
.footer-bottom {
  font-size: 0.96rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.site-footer a:hover {
  color: #f1c177;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer p {
  max-width: 360px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.address-box {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.trust-badge {
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: rgba(31, 44, 59, 0.05);
  color: var(--navy-soft);
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  border: 1px solid transparent;
  cursor: default;
}

.trust-badge:hover {
  transform: translateY(-2px);
  background: rgba(232, 150, 46, 0.12);
  color: var(--navy);
  border-color: rgba(232, 150, 46, 0.18);
}

.benefit-dot,
.faq-icon,
.button-icon,
.trust-icon,
.support-icon {
  max-width: 32px;
  max-height: 32px;
}

.benefits-card {
  padding: 1.55rem;
}

.product-hero-copy p {
  max-width: 520px;
}

.kraft-product-hero {
  align-items: stretch;
}

.kraft-hero-copy {
  display: grid;
  align-content: center;
}

.product-subheading {
  max-width: 540px;
  font-size: 1.24rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--navy-soft);
  margin: 0.3rem 0 0.6rem;
}

.hero-check-list {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.hero-check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-soft);
  font-weight: 700;
}

.kraft-product-image {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.kraft-product-image img {
  width: 100%;
  max-width: 520px;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(31, 44, 59, 0.16));
}

.kraft-content-stack {
  display: grid;
  gap: 1.45rem;
}

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

.mini-size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.95rem;
  margin-top: 1rem;
}

.mini-size-card {
  min-height: 84px;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 44, 59, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.96));
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-weight: 800;
  color: var(--navy);
}

.option-card {
  font-weight: 700;
}

.option-grid .mini-size-card {
  min-height: 94px;
}

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

.trust-card h3 {
  margin-bottom: 0.15rem;
}

.trust-card p {
  max-width: none;
}

.wide-size-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.image-section-stack {
  display: grid;
  gap: 1.25rem;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.detail-row-reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.detail-copy {
  padding: 0.3rem 0.1rem;
}

.detail-media {
  display: grid;
  gap: 0.85rem;
}

.image-section-stack .gallery-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 249, 251, 0.96), rgba(255, 255, 255, 0.98));
  padding: 1rem;
  border: 1px solid rgba(31, 44, 59, 0.06);
}

.detail-caption {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--gray);
}

.sub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.response-note {
  margin: -0.1rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--orange-dark);
}

.icon-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-heading-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  color: var(--orange);
}

.benefit-rows {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(31, 44, 59, 0.04);
  border: 1px solid rgba(31, 44, 59, 0.06);
}

.row-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--orange);
  flex: 0 0 auto;
}

.content-soft {
  background: linear-gradient(180deg, rgba(247, 244, 239, 0.92), rgba(255, 255, 255, 0.98));
}

.print-mockup {
  position: relative;
  min-height: 340px;
  margin-bottom: 1.2rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(232, 150, 46, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.98));
  border: 1px solid rgba(31, 44, 59, 0.06);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 22px 50px rgba(31, 44, 59, 0.08);
}

.print-mockup-back,
.print-mockup-front {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(31, 44, 59, 0.08);
  box-shadow: 0 24px 45px rgba(31, 44, 59, 0.12);
}

.print-mockup-back {
  width: 52%;
  height: 72%;
  right: 13%;
  top: 13%;
  transform: rotate(13deg);
  opacity: 0.82;
}

.print-mockup-front {
  width: 58%;
  height: 78%;
  left: 16%;
  top: 11%;
  transform: rotate(-7deg);
}

.print-mockup-back img,
.print-mockup-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-brand-stamp {
  position: absolute;
  left: 10%;
  top: 11%;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 44, 59, 0.78);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mockup-tag {
  position: absolute;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(31, 44, 59, 0.1);
}

.mockup-tag-one {
  top: 14%;
  right: 8%;
}

.mockup-tag-two {
  left: 7%;
  bottom: 20%;
}

.mockup-tag-three {
  right: 10%;
  bottom: 10%;
}

.mockup-tag-four {
  left: 9%;
  top: 52%;
}

.benefits-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.benefits-card li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(31, 44, 59, 0.08);
}

.benefits-card li:last-child {
  border-bottom: 0;
}

.benefit-dot {
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #f0b05c);
  flex-shrink: 0;
}

.quote-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.quote-trust span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(176, 139, 87, 0.12);
  color: var(--navy-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.content-flow > * + * {
  margin-top: 1rem;
}

.text-columns {
  columns: 2;
  gap: 2rem;
}

.map-link {
  color: var(--orange-dark);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

  .hero-grid,
  .page-hero-grid,
  .product-hero,
  .grid-2,
  .split-grid,
  .shop-layout,
  .cta-grid,
  .feature-block {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .category-grid,
  .benefit-grid,
  .grid-4,
  .product-grid,
  .gallery-grid,
  .info-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-row {
    grid-template-columns: 340px minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .brand {
    width: 340px;
    max-width: 340px;
    min-width: 340px;
  }

  .site-nav a {
    font-size: 0.88rem;
    padding-inline: 0.48rem;
  }

  .nav-dropdown-toggle {
    font-size: 0.88rem;
    padding-inline: 0.48rem;
  }

  .header-actions .button {
    padding-inline: 0.9rem;
  }

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

  .detail-row,
  .detail-row-reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .site-header .container {
    width: min(100% - 44px, 1480px);
  }

  .header-row {
    grid-template-columns: 380px minmax(0, 1fr) auto;
    gap: 0.85rem;
  }

  .brand {
    width: 380px;
    max-width: 380px;
    min-width: 380px;
  }

  .site-nav {
    gap: 0.1rem;
  }

  .site-nav a {
    font-size: 0.86rem;
    padding-inline: 0.4rem;
  }

  .nav-dropdown-toggle {
    font-size: 0.86rem;
    padding-inline: 0.4rem;
  }

}

@media (max-width: 820px) {
  .header-row {
    display: flex;
    min-height: 72px;
    gap: 0.85rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid rgba(31, 44, 59, 0.08);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(31, 44, 59, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    font-size: 0.98rem;
  }

  .nav-item,
  .nav-item-dropdown,
  .nav-dropdown-menu,
  .nav-dropdown-grid {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 0.98rem;
    padding: 0.75rem 0;
    border-radius: 0;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.85rem;
    border-radius: 16px;
    box-shadow: none;
    background: rgba(248, 250, 252, 0.95);
  }

  .nav-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .nav-dropdown-grid a,
  .nav-dropdown-overview {
    width: 100%;
  }

  .hero,
  .section {
    padding: 3.4rem 0;
  }

  .hero-trust,
  .field-grid,
  .hero-showcase,
  .grid-3,
  .category-grid,
  .benefit-grid,
  .grid-4,
  .product-grid,
  .gallery-grid,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .text-columns {
    columns: 1;
  }

  .sticky-quote {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .compact-rows,
  .trust-card-grid {
    grid-template-columns: 1fr;
  }

  .kraft-product-image {
    min-height: 0;
  }

  .kraft-product-image img {
    max-height: 340px;
  }

  .brand {
    width: auto;
    flex-basis: auto;
    max-width: 220px;
    margin-right: 0;
    min-width: 0;
  }

  .hero-main-image,
  .hero-side-stack img {
    min-height: 0;
  }

  .hero-panel {
    width: 100%;
    padding: 18px;
  }

  .hero-showcase {
    gap: 16px;
  }

  .hero-support-card {
    position: static;
    margin-top: 0.85rem;
    max-width: none;
  }

  .hero-visual-stage {
    min-height: 0;
    padding-top: 0.25rem;
  }

  .hero-main-3d {
    width: 100%;
    transform: scale(1.02);
    margin: 0;
  }

  .hero-mini-card span {
    max-width: 72%;
  }

  .print-mockup {
    min-height: 300px;
  }
}
