:root {
  --navy: #07336f;
  --navy-deep: #061f45;
  --blue: #0967c8;
  --orange: #f56a13;
  --orange-dark: #dd5507;
  --ink: #10213a;
  --muted: #5e6f86;
  --line: #dfe8f2;
  --paper: #ffffff;
  --soft: #f4f8fc;
  --soft-blue: #edf5ff;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 16px 46px rgba(8, 43, 88, 0.11);
  --shadow-hover: 0 22px 56px rgba(8, 43, 88, 0.17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

/* Header */
.topbar { background: var(--navy-deep); color: #fff; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; gap: 18px; padding-block: 7px; }
.topbar b { color: #ffc08c; }
.nav {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(212, 225, 239, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}
.navin { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 26px; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); font-weight: 900; letter-spacing: 0.02em; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brandtext small, .brand small { display: block; color: var(--orange); font-size: 10px; letter-spacing: 0.16em; }
.menu { display: flex; align-items: center; gap: 21px; color: var(--navy-deep); font-size: 14px; font-weight: 750; }
.menu > a:not(.btn) { position: relative; padding-block: 8px; }
.menu > a:not(.btn)::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; background: var(--orange); content: ""; transform: scaleX(0); transition: transform 0.2s ease; }
.menu > a:not(.btn):hover::after, .menu > a:not(.btn):focus-visible::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid #c8d7e8;
  border-radius: 12px;
  color: var(--navy-deep);
  background: #fff;
  font-weight: 850;
  cursor: pointer;
}
.menu-toggle-icon { display: grid; width: 19px; gap: 4px; }
.menu-toggle-icon i { display: block; height: 2px; border-radius: 4px; background: currentColor; transition: 0.2s; }
.menu-toggle.is-open .menu-toggle-icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle-icon i:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle-icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--orange); box-shadow: 0 9px 22px rgba(245, 106, 19, 0.25); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { border-color: #b9cce2; color: var(--navy); background: #fff; }
.btn-secondary:hover { border-color: var(--blue); box-shadow: 0 8px 22px rgba(7, 51, 111, 0.09); }

/* Homepage hero */
.home-hero { position: relative; overflow: hidden; padding: 72px 0 64px; background: linear-gradient(135deg, #fff 0%, #fff 48%, #f0f7ff 100%); }
.home-hero::before { position: absolute; top: -180px; right: -150px; width: 520px; height: 520px; border: 1px solid rgba(9, 103, 200, 0.1); border-radius: 50%; content: ""; }
.home-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr); align-items: center; gap: 54px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.105em;
  line-height: 1.45;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 3px; flex: 0 0 auto; background: var(--orange); content: ""; }
.home-hero h1, h1 {
  margin: 18px 0 23px;
  color: var(--navy-deep);
  font-size: clamp(42px, 5.3vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.home-hero h1 em { color: var(--blue); font-family: Georgia, serif; font-weight: 500; }
.lead { max-width: 680px; color: #4f627b; font-size: 18px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-collage { position: relative; min-height: 570px; }
.hero-banner {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 88%;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(6, 31, 69, 0.19);
}
.hero-banner img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.visual-label { position: absolute; z-index: 3; right: 15px; bottom: 14px; padding: 7px 11px; border-radius: 999px; color: #fff; background: rgba(6, 31, 69, 0.88); font-size: 12px; font-weight: 850; letter-spacing: 0.04em; }
.hero-tile { position: absolute; z-index: 3; overflow: hidden; border: 7px solid #fff; border-radius: 20px; background: #fff; box-shadow: 0 17px 38px rgba(6, 31, 69, 0.2); }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-tile--sticker { bottom: 15px; left: 0; width: 39%; height: 210px; transform: rotate(-2.5deg); }
.hero-tile--invite { bottom: 0; left: 35%; width: 31%; height: 236px; transform: rotate(2deg); }
.hero-tile--card { right: 0; bottom: 26px; width: 35%; height: 200px; transform: rotate(-1deg); }

/* Proof strip */
.quick-proof { position: relative; z-index: 4; margin-top: -1px; padding: 0 0 24px; background: linear-gradient(180deg, transparent 0 38%, #fff 38%); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.proof-card { min-height: 120px; padding: 25px; border-right: 1px solid var(--line); }
.proof-card:last-child { border-right: 0; }
.proof-card b { display: block; color: var(--navy-deep); font-family: Georgia, serif; font-size: 31px; line-height: 1.1; }
.proof-card span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }

/* Shared homepage sections */
.section { padding: 78px 0; }
.section-soft { background: var(--soft); }
.section-heading, .section-head { display: flex; align-items: end; justify-content: space-between; gap: 26px; margin-bottom: 31px; }
.section-heading h2, .section-head h2 { margin: 5px 0 0; color: var(--navy-deep); font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.035em; }
.section-heading p, .section-head p { max-width: 680px; margin: 9px 0 0; color: var(--muted); font-size: 16px; }

.product-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.showcase-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 5px 18px rgba(8, 43, 88, 0.05); transition: transform 0.22s ease, box-shadow 0.22s ease; }
.showcase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.showcase-media { position: relative; overflow: hidden; background: #eef3f8; }
.showcase-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.35s ease; }
.showcase-card:hover .showcase-media img { transform: scale(1.025); }
.showcase-card .card-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.showcase-card h3 { margin: 4px 0 8px; color: var(--navy-deep); font-size: 21px; line-height: 1.25; }
.showcase-card p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.text-link { margin-top: auto; color: var(--blue); font-size: 15px; font-weight: 850; }
.cat-num { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }

.category-browser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-tile { position: relative; min-height: 225px; overflow: hidden; border-radius: 20px; background: var(--navy); color: #fff; box-shadow: 0 10px 28px rgba(6, 31, 69, 0.11); }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.category-tile::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(6, 31, 69, 0.88) 100%); content: ""; }
.category-tile:hover img { transform: scale(1.04); }
.category-title { position: absolute; z-index: 2; right: 16px; bottom: 15px; left: 16px; font-size: 17px; font-weight: 850; line-height: 1.25; }

.process-section { background: var(--navy-deep); color: #fff; }
.process-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr); align-items: center; gap: 52px; }
.process-photo { overflow: hidden; border: 10px solid rgba(255, 255, 255, 0.95); border-radius: 26px; background: #fff; box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25); }
.process-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.process-copy .eyebrow { color: #81c5ff; }
.process-copy h2 { margin: 10px 0 14px; color: #fff; font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -0.035em; }
.process-copy > p { margin: 0 0 26px; color: #c8d6e8; font-size: 17px; }
.process-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.process-step { padding: 17px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; background: rgba(255, 255, 255, 0.075); }
.process-step b { display: block; color: #fff; font-size: 17px; }
.process-step span { display: block; margin-top: 4px; color: #b8c9de; font-size: 14px; line-height: 1.55; }

.more-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.more-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.more-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.more-card img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; }
.more-card span { display: block; padding: 13px 12px 15px; color: var(--navy-deep); font-size: 14px; font-weight: 820; line-height: 1.3; }

.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 19px; background: #eaf0f6; }
.gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item span { position: absolute; right: 11px; bottom: 11px; padding: 6px 10px; border-radius: 999px; color: #fff; background: rgba(6, 31, 69, 0.88); font-size: 12px; font-weight: 850; }

.final-cta { padding: 72px 0; background: #fff; }
.final-cta-card { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 48px; border: 1px solid #d4e2f1; border-radius: 28px; background: linear-gradient(120deg, #edf5ff 0%, #fff 65%); }
.final-cta-card::after { position: absolute; right: -80px; bottom: -100px; width: 260px; height: 260px; border: 38px solid rgba(245, 106, 19, 0.12); border-radius: 50%; content: ""; }
.final-cta-card > * { position: relative; z-index: 1; }
.final-cta h2 { margin: 0 0 8px; color: var(--navy-deep); font-size: clamp(30px, 4vw, 46px); line-height: 1.1; }
.final-cta p { max-width: 700px; margin: 0; color: var(--muted); font-size: 17px; }

/* Catalog and content pages */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card, .product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 3px 12px rgba(14, 45, 84, 0.04); transition: 0.2s; }
.cat-card:hover, .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card img, .product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #f8fafc; }
.card-body { padding: 18px; }
.card-body h3 { margin: 5px 0 7px; color: var(--navy-deep); font-size: 18px; line-height: 1.3; }
.card-body p { margin: 0; color: var(--muted); font-size: 14px; }
.card-meta { margin-top: 10px; color: #6c7f98; font-size: 13px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.feature strong { display: block; margin-bottom: 6px; color: var(--navy-deep); font-size: 18px; }
.feature span { color: var(--muted); font-size: 14px; }
.band { padding: 44px 0; background: var(--navy); color: #fff; }
.bandin { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.band h2 { margin: 0; font-size: 32px; }
.band p { margin: 5px 0 0; color: #c5d3e6; }
.breadcrumb { padding: 18px 0; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: var(--blue); }
.page-hero { padding: 35px 0 46px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fff, #f8fbff); }
.page-hero h1 { margin: 8px 0 12px; font-size: clamp(36px, 5vw, 58px); }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 17px; }
.cat-hero { display: grid; grid-template-columns: 1fr 380px; align-items: center; gap: 38px; }
.cat-cover { padding: 10px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.cat-cover img { aspect-ratio: 4 / 3; border-radius: 15px; object-fit: cover; }
.searchbox { width: min(520px, 100%); padding: 13px 15px; border: 1px solid #cbd8e8; border-radius: 12px; font: inherit; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); align-items: start; gap: 46px; }
.product-visual { padding: 12px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.product-visual img { width: 100%; border-radius: 17px; }
.product-info h1 { margin: 4px 0 15px; font-size: clamp(36px, 5vw, 56px); }
.info-box { padding: 17px 0; border-top: 1px solid var(--line); }
.info-box label { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.info-box div { margin-top: 4px; font-size: 16px; }
.tag { display: inline-block; padding: 5px 9px; border-radius: 999px; color: var(--blue); background: #edf5ff; font-size: 12px; font-weight: 800; }
.legal { max-width: 850px; }
.legal h2 { margin-top: 30px; color: var(--navy-deep); }
.legal p, .legal li { color: #4f6178; }
.search-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.empty { padding: 36px; border: 1px dashed #bfcde0; border-radius: 16px; color: var(--muted); text-align: center; }

/* Needs / compact homepage navigation */
.needs-section { background: #fff; }
.needs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.need-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  min-height: 190px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(8, 43, 88, 0.045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.need-card:hover { transform: translateY(-4px); border-color: #c6d9ee; box-shadow: var(--shadow); }
.need-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
.need-card h3 { margin: 1px 0 8px; color: var(--navy-deep); font-size: 20px; line-height: 1.25; }
.need-card p { margin: 0 0 13px; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* Compact order flow */
.order-section { background: #fff; }
.order-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.order-step {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.order-step > span { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.order-step h3 { margin: 10px 0 7px; color: var(--navy-deep); font-size: 20px; }
.order-step p { margin: 0; color: var(--muted); font-size: 14px; }

/* Homepage gallery teaser */
.gallery-teaser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-teaser-item {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  border-radius: 19px;
  background: #eaf0f6;
  box-shadow: 0 5px 18px rgba(8,43,88,.055);
}
.gallery-teaser-item img { width: 100%; height: 100%; min-height: 245px; object-fit: cover; transition: transform .35s ease; }
.gallery-teaser-item:hover img { transform: scale(1.035); }
.gallery-teaser-item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border-radius: 11px;
  color: #fff;
  background: rgba(6,31,69,.88);
  font-size: 13px;
  font-weight: 850;
}

/* Footer */
.footer { padding: 54px 0 26px; color: #dbe7f5; background: #061a38; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer h3 { color: #fff; }
.footer a { display: block; margin: 7px 0; color: #dbe7f5; }
.footer small { color: #90a5c0; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: #90a5c0; font-size: 13px; }

@media (max-width: 1100px) {
  .menu { gap: 14px; font-size: 13px; }
  .home-hero-grid { gap: 34px; }
  .hero-collage { min-height: 520px; }
  .more-grid { grid-template-columns: repeat(4, 1fr); }
  .more-card:nth-child(n + 5) img { aspect-ratio: 4 / 3; }
}

@media (max-width: 950px) {
  html { scroll-padding-top: 76px; }
  .navin { min-height: 72px; }
  .menu-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: auto;
    grid-template-columns: 1fr;
    gap: 5px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--orange);
    border-radius: 0 0 18px 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(6, 31, 69, 0.16);
    font-size: 16px;
  }
  .menu.is-open { display: grid; }
  .menu a { display: flex; align-items: center; justify-content: flex-start; min-height: 50px; padding: 11px 13px; border-radius: 10px; text-align: left; white-space: normal; }
  .menu a:not(.cta):hover { color: var(--blue); background: #f2f7fd; }
  .menu .cta { grid-column: 1 / -1; justify-content: center; margin-top: 5px; text-align: center; }
  .menu > a:not(.btn)::after { display: none; }
  .home-hero { padding-top: 54px; }
  .home-hero-grid, .process-grid, .cat-hero, .product-detail { grid-template-columns: 1fr; }
  .hero-collage { width: min(720px, 100%); min-height: 590px; margin-inline: auto; }
  .product-showcase, .category-browser, .grid, .needs-grid, .order-grid, .gallery-teaser { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-card:nth-child(2) { border-right: 0; }
  .proof-card:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .process-grid { gap: 34px; }
  .more-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-mosaic { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(6) { grid-column: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-cover { max-width: 520px; }
  .product-detail { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bandin, .final-cta-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  body { font-size: 16px; line-height: 1.68; }
  .container { width: min(100% - 28px, 1180px); }
  .topbar .container { justify-content: center; padding-block: 6px; font-size: 12px; }
  .topbar .container span:first-child { display: none; }
  .navin { min-height: 68px; }
  .brand { gap: 8px; font-size: 15px; }
  .brand img { width: 42px; height: 42px; }
  .brand small { font-size: 8px; }
  .menu-toggle { padding: 9px 12px; font-size: 16px; }
  .menu { right: -2px; left: -2px; grid-template-columns: 1fr; padding: 10px; font-size: 16px; }
  .menu .cta { padding: 12px 16px; font-size: 16px; }
  .home-hero { padding: 39px 0 48px; }
  .home-hero-grid { gap: 34px; }
  .home-hero h1, h1 { margin: 16px 0 20px; font-size: clamp(40px, 11.8vw, 48px); line-height: 1.06; letter-spacing: -0.04em; }
  .eyebrow { font-size: 12px; letter-spacing: 0.08em; }
  .lead, .page-hero p { font-size: 17px; line-height: 1.65; }
  .actions { margin-top: 24px; }
  .actions .btn { width: 100%; min-height: 51px; font-size: 16px; }
  .hero-collage { display: grid; min-height: auto; gap: 10px; }
  .hero-banner { position: relative; width: 100%; border-width: 6px; border-radius: 21px; }
  .hero-banner img { aspect-ratio: 3 / 2; }
  .hero-tile { position: relative; inset: auto; display: block; width: auto; height: auto; border-width: 4px; border-radius: 15px; transform: none; }
  .hero-tile img { aspect-ratio: 1.05 / 1; }
  .hero-tile--sticker, .hero-tile--invite, .hero-tile--card { grid-row: 2; }
  .hero-tile--sticker { grid-column: 1; }
  .hero-tile--invite { grid-column: 2; }
  .hero-tile--card { grid-column: 3; }
  .visual-label { right: 7px; bottom: 7px; padding: 4px 7px; font-size: 10px; }
  .quick-proof { padding-bottom: 10px; }
  .proof-card { min-height: 105px; padding: 19px 16px; }
  .proof-card b { font-size: 26px; }
  .proof-card span { font-size: 13px; line-height: 1.45; }
  .section { padding: 58px 0; }
  .section-heading, .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 25px; }
  .section-heading h2, .section-head h2 { font-size: clamp(31px, 9vw, 39px); }
  .section-heading p, .section-head p { font-size: 16px; }
  .product-showcase {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    margin-right: -14px;
    padding: 2px 14px 18px 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .product-showcase::-webkit-scrollbar { display: none; }
  .showcase-card { min-width: 82%; scroll-snap-align: start; }
  .category-browser { grid-template-columns: 1fr 1fr; gap: 11px; }
  .needs-grid, .order-grid { grid-template-columns: 1fr; gap: 12px; }
  .need-card { min-height: 0; padding: 19px; }
  .order-step { min-height: 0; padding: 19px; }
  .gallery-teaser { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-teaser-item, .gallery-teaser-item img { min-height: 205px; }
  .category-tile { min-height: 180px; }
  .category-title { right: 12px; bottom: 12px; left: 12px; font-size: 15px; }
  .process-photo { border-width: 6px; border-radius: 20px; }
  .process-copy h2 { font-size: 36px; }
  .process-copy > p { font-size: 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step span { font-size: 15px; }
  .more-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-right: -14px;
    padding: 2px 14px 18px 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .more-grid::-webkit-scrollbar { display: none; }
  .more-card { min-width: 48%; scroll-snap-align: start; }
  .more-card img, .more-card:nth-child(n + 5) img { aspect-ratio: 1 / 1.08; }
  .more-card span { font-size: 14px; }
  .gallery-mosaic {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-right: -14px;
    padding: 2px 14px 18px 1px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .gallery-mosaic::-webkit-scrollbar { display: none; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(4), .gallery-item:nth-child(6) { min-width: 83%; height: 330px; scroll-snap-align: start; }
  .final-cta { padding: 55px 0; }
  .final-cta-card { padding: 31px 24px; }
  .final-cta p { font-size: 16px; }
  .final-cta .btn { width: 100%; }
  .page-hero { padding: 30px 0 38px; }
  .page-hero h1, .product-info h1 { font-size: clamp(34px, 10vw, 44px); line-height: 1.08; }
  .grid, .search-results { grid-template-columns: 1fr; gap: 16px; }
  .card-body { padding: 17px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature span { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .band h2 { font-size: 28px; }
  .breadcrumb { overflow-wrap: anywhere; font-size: 14px; }
  .info-box div { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
