:root {
  --ink: #14181c;
  --steel: #2a4054;
  --steel-soft: #4a6478;
  --paper: #eef1f4;
  --paper-deep: #d7dde4;
  --sand: #c5b8a4;
  --amber: #c8891a;
  --amber-deep: #a36c0f;
  --white: #ffffff;
  --line: rgba(20, 24, 28, 0.12);
  --shadow: 0 18px 40px rgba(20, 24, 28, 0.14);
  --radius: 6px;
  --wrap: 1180px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(42, 64, 84, 0.12), transparent 60%),
    linear-gradient(180deg, #f7f8fa 0%, var(--paper) 45%, #e9edf1 100%);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.brand-lockup,
.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 18ch;
}

h3 {
  font-size: 1.6rem;
}

p {
  margin: 0;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(760px, calc(100% - 2rem));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 248, 250, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand-logo {
  width: min(220px, 52vw);
  height: auto;
  background: transparent;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  color: var(--steel);
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  display: grid;
  gap: 0.85rem;
  padding: 0 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 250, 0.96);
}

.mobile-nav a {
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav[hidden] {
  display: none;
}

.hero {
  position: relative;
}

.hero-slider {
  position: relative;
  min-height: min(92vh, 900px);
  overflow: hidden;
  background: #1b242c;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.hero.is-message-slide .hero-copy {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.hero.is-message-slide .hero-slide[data-kind="message"] .hero-slide-link {
  cursor: pointer;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--wrap), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 14vh, 8rem) 0 clamp(6rem, 12vh, 8rem);
  color: var(--white);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 0;
  width: min(640px, 100%);
  height: 84%;
  background: linear-gradient(120deg, rgba(12, 16, 20, 0.72), rgba(12, 16, 20, 0.18) 70%, transparent);
  z-index: -1;
  pointer-events: none;
}

.brand-lockup {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #f2d089;
  margin-bottom: 0.6rem;
}

.hero-support {
  margin-top: 1rem;
  max-width: 34ch;
  font-size: 1.08rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 12, 14, 0.45);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
}

.hero-controls button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #f2d089;
  width: 22px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--amber-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost.light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 720px;
}

.section-head p:last-child,
.split-copy > p,
.about-copy > p,
.impact-copy > p,
.about-more p {
  color: var(--steel-soft);
  margin-top: 0.9rem;
}

.eyebrow {
  color: var(--amber-deep);
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.eyebrow.light {
  color: #f2d089;
}

.trust-strip {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--steel);
}

.trust-item .icon,
.icon-list .icon {
  width: 42px;
  height: 42px;
  color: var(--steel);
  flex: 0 0 auto;
}

.trust-item .icon svg,
.icon-list .icon svg {
  width: 100%;
  height: 100%;
}

.promo-band {
  padding: 1.5rem 0 0;
}

.promo-grid {
  display: grid;
  gap: 1rem;
}

.promo-tile {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.promo-tile:hover {
  transform: translateY(-4px);
}

.promo-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-layout,
.split-layout,
.impact-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.policy-block .about-media img {
  aspect-ratio: 16 / 10;
}

.about-media,
.split-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img,
.split-media img,
.impact-gallery img,
.process-step img,
.creative-grid img,
.rollup-row img,
.product-card img {
  width: 100%;
  object-fit: cover;
}

.about-media img,
.split-media img {
  aspect-ratio: 4 / 3;
}

.about-copy .btn,
.split-copy .btn,
.impact-copy .btn {
  margin-top: 1.4rem;
}

.icon-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.icon-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.icon-list strong {
  display: block;
  font-weight: 700;
}

.icon-list span {
  color: var(--steel-soft);
  font-size: 0.98rem;
}

.categories {
  padding-bottom: 0;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.category-tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--steel);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.category-tab:hover {
  border-color: var(--steel);
  color: var(--ink);
}

.category-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.category-desc {
  margin-top: 1rem;
  color: var(--steel-soft);
  max-width: 60ch;
}

.product-gallery {
  background: #d9dee4;
}

.product-main {
  overflow: hidden;
}

.product-main-img,
.product-card img.product-main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 0.35rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  max-height: 150px;
  overflow-y: auto;
}

.gallery-thumb {
  border: 2px solid transparent;
  padding: 0;
  background: #cfd6dd;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border-color: var(--amber);
}

.product-cat {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.35rem;
}

.gallery-count {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steel);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  aspect-ratio: 4 / 3;
  background: #d9dee4;
}

.gallery-thumb img {
  aspect-ratio: 1;
}

.product-card-body {
  padding: 1.1rem 1.15rem 1.3rem;
}

.product-card-body h3 {
  margin-bottom: 0.35rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0 0.9rem;
}

.product-meta span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--steel);
  background: var(--paper-deep);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
}

.product-card p {
  color: var(--steel-soft);
  font-size: 0.98rem;
}

.product-card .btn {
  margin-top: 1rem;
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.shop-teaser-grid {
  margin-top: 0.5rem;
}

.shop-hero {
  min-height: 42vh;
}

.process-grid {
  display: grid;
  gap: 1.1rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step img {
  aspect-ratio: 16 / 10;
}

.process-step h3,
.process-step p {
  padding-inline: 1rem;
}

.process-step h3 {
  margin-top: 0.95rem;
}

.process-step p {
  color: var(--steel-soft);
  padding-bottom: 1.1rem;
  margin-top: 0.4rem;
}

.impact {
  background:
    linear-gradient(135deg, rgba(42, 64, 84, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.4);
}

.impact-gallery {
  display: grid;
  gap: 1rem;
}

.impact-gallery img {
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
}

.creatives {
  background: linear-gradient(180deg, transparent, rgba(42, 64, 84, 0.06));
}

.creative-grid,
.rollup-row {
  display: grid;
  gap: 1rem;
}

.creative-grid figure,
.rollup-row figure {
  margin: 0;
}

.creative-grid img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rollup-row {
  margin-top: 1.25rem;
}

.rollup-row img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

.creative-grid figcaption,
.rollup-row figcaption {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: var(--steel-soft);
  font-weight: 500;
}

.about-more {
  border-top: 1px solid var(--line);
}

.cta-band {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    linear-gradient(120deg, rgba(20, 24, 28, 0.88), rgba(42, 64, 84, 0.82)),
    url("homepage/11-port-dusk.jpg") center / cover;
  color: var(--white);
}

.cta-band-inner {
  display: grid;
  gap: 1.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 0.75rem;
  max-width: 46ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: start;
}

.site-footer {
  background: #101418;
  color: rgba(255, 255, 255, 0.86);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.footer-logo {
  width: min(200px, 70%);
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
}

.footer-grid h3 {
  margin-bottom: 0.7rem;
  color: #f2d089;
}

.footer-grid a {
  display: block;
  text-decoration: none;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 720px) {
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr;
  }
}

@media (min-width: 960px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .about-layout,
  .split-layout,
  .impact-layout,
  .cta-band-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .about-layout.reverse .about-copy {
    order: 2;
  }

  .about-layout.reverse .about-media {
    order: 1;
  }

  .split-section.reverse .split-layout {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split-section.reverse .split-media {
    order: 2;
  }

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

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide,
  .btn,
  .promo-tile,
  .product-card {
    transition: none;
  }

  .brand-logo,
  .hero-copy > *,
  .trust-item,
  .reveal,
  .reveal-stagger > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* —— Homepage motion —— */
@keyframes logo-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes amber-grow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.site-header .brand-logo {
  animation: logo-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > * {
  opacity: 0;
  animation: rise-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy .brand-lockup {
  animation-delay: 0.15s;
}

.hero-copy h1 {
  animation-delay: 0.28s;
}

.hero-copy .hero-support {
  animation-delay: 0.42s;
}

.hero-copy .hero-actions {
  animation-delay: 0.55s;
}

.hero-copy .brand-lockup::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 3px;
  margin-top: 0.55rem;
  background: var(--amber);
  transform-origin: left center;
  animation: amber-grow 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.trust-item .icon {
  animation: soft-float 4.5s ease-in-out infinite;
}

.trust-item:nth-child(2) .icon {
  animation-delay: 0.4s;
}

.trust-item:nth-child(3) .icon {
  animation-delay: 0.8s;
}

.trust-item:nth-child(4) .icon {
  animation-delay: 1.2s;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.28s;
}
.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.36s;
}
.reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 0.44s;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.hero.is-message-slide .hero-copy > * {
  animation: none;
  opacity: 0;
}

/* —— Visual identity: banners, flyers, roll-ups —— */
.hero-slide img.fit-contain {
  object-fit: contain;
  background: #0b0e11;
}

.hero-slide[data-kind="flyer"] img,
.hero-slide[data-kind="rollup"] img,
.hero-slide[data-kind="ad"] img {
  object-fit: contain;
  background:
    repeating-linear-gradient(
      90deg,
      #12161b 0 10px,
      #171c22 10px 20px
    );
}

.section-title {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.05;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 18ch;
  margin: 0;
}

.section-lead {
  margin-top: 0.75rem;
  color: var(--steel-soft);
  font-size: 1.1rem;
  max-width: 40ch;
}

.identity-banners {
  padding: 2.5rem 0 1rem;
}

.banner-rail {
  display: grid;
  gap: 0.9rem;
  width: min(1280px, calc(100% - 1.5rem));
  margin-inline: auto;
}

.identity-banner {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}

.identity-banner:hover {
  transform: translateY(-5px);
}

.identity-banner img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.flyer-section {
  background:
    linear-gradient(180deg, transparent, rgba(42, 64, 84, 0.06)),
    url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v2H0z' fill='%232a405414'/%3E%3C/svg%3E");
}

.flyer-wall {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: end;
}

.flyer-tile {
  position: relative;
  display: block;
  text-decoration: none;
  transition: transform 0.45s ease;
}

.flyer-tile img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #fff;
}

.flyer-tile span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(20, 24, 28, 0.88);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  padding: 0.45rem 0.75rem;
}

.flyer-tile.tilt-1 { transform: rotate(-1.2deg); }
.flyer-tile.tilt-2 { transform: rotate(1deg); }
.flyer-tile:hover { transform: translateY(-8px) rotate(0deg); }

.rollup-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(200, 137, 26, 0.12), transparent 60%),
    linear-gradient(160deg, #101418 0%, #1a222a 55%, #0d1115 100%);
  color: #fff;
}

.light-head .eyebrow { color: #f2d089; }
.light-head h2 { color: #fff; max-width: 16ch; }
.light-head p { color: rgba(255,255,255,0.72); }

.rollup-stage {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.rollup-stand {
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.rollup-frame {
  background: linear-gradient(180deg, #2a323a, #171c22);
  padding: 1rem 1rem 1.4rem;
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  position: relative;
}

.rollup-frame::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -10px;
  height: 12px;
  background: #0a0c0e;
  border-radius: 0 0 6px 6px;
}

.rollup-frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  background: #fff;
}

.rollup-stand span {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  color: #f2d089;
}

.mid-cta-visual {
  padding: 0;
}

.mid-cta-visual a {
  display: block;
}

.mid-cta-visual img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  font-weight: 600;
  background: transparent;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.stacked-media {
  position: relative;
}

.stacked-media .about-flyer,
.stacked-media .about-inset {
  position: absolute;
  width: 42%;
  right: -4%;
  bottom: -8%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  z-index: 2;
  border-radius: var(--radius);
}

.visual-stack {
  position: relative;
}

.split-overlay-ad {
  position: absolute;
  width: 38%;
  right: 0.75rem;
  bottom: 0.75rem;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.campaign-mosaic {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

.campaign-mosaic a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.campaign-mosaic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.campaign-mosaic a:hover img {
  transform: scale(1.04);
}

.campaign-mosaic span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(20, 24, 28, 0.9);
  color: #f2d089;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  padding: 0.4rem 0.7rem;
  font-size: 1.1rem;
}

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

.campaign-mosaic .mosaic-wide img {
  aspect-ratio: 21 / 9;
}

.page-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  align-items: end;
  background: #12161b;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--wrap), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 3rem;
  color: #fff;
}

.page-hero-copy h1 {
  max-width: 14ch;
}

.page-hero-copy p {
  margin-top: 0.8rem;
  max-width: 40ch;
  color: rgba(255,255,255,0.88);
}

.creative-board {
  display: grid;
  gap: 1.25rem;
}

.creative-board.banners {
  grid-template-columns: 1fr;
}

.creative-board.flyers,
.creative-board.rollups {
  grid-template-columns: 1fr;
}

.board-item {
  margin: 0;
}

.board-item img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.board-item figcaption {
  margin-top: 0.55rem;
  color: var(--steel-soft);
  font-weight: 500;
}

@media (min-width: 720px) {
  .banner-rail {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .creative-board.flyers,
  .creative-board.rollups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .campaign-mosaic {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .campaign-mosaic .mosaic-wide {
    grid-column: auto;
  }

  .campaign-mosaic .mosaic-wide:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .campaign-mosaic .mosaic-wide:first-child img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 420px;
  }

  .campaign-mosaic .mosaic-wide:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .banner-rail {
    grid-template-columns: 1.3fr 1fr;
  }

  .identity-banner:first-child {
    grid-row: span 2;
  }

  .identity-banner:first-child img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 360px;
  }
}

/* —— Financing page —— */
.finance-icon-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.finance-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: 0 10px 28px rgba(20, 24, 28, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.finance-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.finance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.85rem;
  color: var(--amber-deep);
  background:
    linear-gradient(145deg, rgba(200, 137, 26, 0.14), rgba(42, 64, 84, 0.08));
  border: 1px solid rgba(200, 137, 26, 0.28);
  border-radius: 14px;
}

.finance-icon svg {
  width: 34px;
  height: 34px;
}

.finance-icon.sm {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 0.7rem;
}

.finance-icon.sm svg {
  width: 28px;
  height: 28px;
}

.finance-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
}

.finance-card p {
  color: var(--steel-soft);
  font-size: 0.98rem;
}

.finance-steps-band {
  background:
    linear-gradient(160deg, #1b242c 0%, #2a4054 55%, #1b242c 100%);
  color: #fff;
}

.finance-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.finance-step {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.35rem;
}

.finance-step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: rgba(242, 208, 137, 0.45);
  line-height: 1;
}

.finance-step .finance-icon {
  color: #f2d089;
  background: rgba(242, 208, 137, 0.1);
  border-color: rgba(242, 208, 137, 0.28);
}

.finance-step h3 {
  font-size: 1.4rem;
  color: #fff;
}

.finance-step p {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.finance-checklist {
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.finance-checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.finance-check-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: var(--amber-deep);
}

.finance-check-icon svg {
  width: 100%;
  height: 100%;
}

.finance-checklist strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
}

.finance-checklist span {
  display: block;
  color: var(--steel-soft);
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.finance-use-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.finance-use {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.finance-use h3 {
  font-size: 1.35rem;
}

.finance-use p {
  margin-top: 0.35rem;
  color: var(--steel-soft);
  font-size: 0.96rem;
}

.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 700px) {
  .finance-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 1000px) {
  .finance-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

/* —— Staff branded clothing —— */
.staff-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(231, 236, 241, 0.65));
}

.staff-feature {
  margin: 1.5rem 0 0;
  max-width: 920px;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  background: #1b242c;
}

.staff-feature img {
  width: 100%;
  height: clamp(260px, 48vw, 480px);
  object-fit: cover;
  display: block;
}

.staff-feature figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  background: #1b242c;
}

.staff-gallery {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.staff-shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #1b242c;
}

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

.staff-shot.tall img {
  aspect-ratio: 3 / 4;
}

.staff-shot figcaption {
  padding: 0.7rem 0.9rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  background: #1b242c;
}

@media (min-width: 800px) {
  .staff-gallery {
    grid-template-columns: 1.15fr 0.85fr 1.15fr;
    align-items: stretch;
  }

  .staff-shot.tall img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 360px;
  }
}

/* —— Google-style reviews —— */
.reviews-section {
  background:
    radial-gradient(900px 420px at 90% 0%, rgba(66, 133, 244, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.55);
}

.reviews-head {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.reviews-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.google-mark {
  margin-top: 0.35rem;
  flex: 0 0 auto;
}

.reviews-summary {
  display: grid;
  gap: 0.25rem;
  justify-items: start;
}

.reviews-score {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.star-row {
  display: inline-flex;
  gap: 0.12rem;
  color: #e8eaed;
  font-size: 1.15rem;
  line-height: 1;
}

.star.filled {
  color: #fbbc04;
}

.reviews-count {
  color: var(--steel-soft);
  font-size: 0.95rem;
}

.google-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--steel);
  box-shadow: 0 6px 16px rgba(20, 24, 28, 0.06);
}

.google-pill:hover {
  color: var(--ink);
  border-color: rgba(66, 133, 244, 0.35);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.15rem 1rem;
  box-shadow: 0 10px 28px rgba(20, 24, 28, 0.06);
}

.review-card-photo {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.review-photo {
  margin: 0;
  background: #1b242c;
}

.review-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.review-body {
  padding: 1.1rem 1.15rem 1.05rem;
}

.review-card-head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  background: var(--paper-deep);
}

.review-name-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.review-name-row strong {
  font-weight: 600;
  color: var(--ink);
}

.google-mini {
  opacity: 0.95;
}

.review-loc {
  display: block;
  font-size: 0.86rem;
  color: var(--steel-soft);
  margin-top: 0.1rem;
}

.review-card .star-row {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.review-text {
  color: var(--steel);
  font-size: 0.98rem;
  line-height: 1.55;
}

.review-foot {
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--steel-soft);
  font-weight: 500;
}

@media (min-width: 700px) {
  .reviews-head {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
  }

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

@media (min-width: 1040px) {
  .reviews-grid:not(.reviews-grid-two) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}


.reviews-verified {
  margin-top: 0.45rem;
  max-width: 42ch;
  color: var(--steel-soft);
  font-size: 0.95rem;
}

.reviews-more {
  margin-top: 1.5rem;
}

.reviews-score.compact {
  font-size: 2.4rem;
  margin: 0;
}

.reviews-trust {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

.reviews-trust-grid {
  display: grid;
  gap: 1rem;
}

.reviews-trust-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem;
  box-shadow: 0 10px 24px rgba(20,24,28,0.05);
}

.reviews-trust-card h3 {
  margin-top: 0.45rem;
  font-size: 1.35rem;
}

.reviews-trust-card p {
  margin-top: 0.35rem;
  color: var(--steel-soft);
  font-size: 0.95rem;
}

.reviews-page .reviews-grid {
  margin-top: 0.5rem;
}

@media (min-width: 800px) {
  .reviews-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Contact form */
.contact-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact-aside h2 {
  max-width: none;
}

.contact-aside > p {
  color: var(--steel-soft);
  margin-top: 0.85rem;
}

.contact-details {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-details li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.contact-details strong {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

.contact-details a {
  color: var(--amber-deep);
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label,
.form-fieldset legend {
  font-weight: 600;
  color: var(--steel);
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(200, 137, 26, 0.45);
  outline-offset: 1px;
  border-color: var(--amber);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

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

.form-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.65rem;
}

.option-grid {
  display: grid;
  gap: 0.65rem;
}

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

.option-chip,
.color-chip {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.option-chip input,
.color-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.option-chip input:checked + span,
.option-chip:hover span {
  border-color: var(--amber);
  background: rgba(200, 137, 26, 0.1);
}

.option-chip input:focus-visible + span,
.color-chip input:focus-visible + .swatch {
  outline: 2px solid rgba(200, 137, 26, 0.55);
  outline-offset: 2px;
}

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

.color-chip {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.color-chip .swatch {
  width: 100%;
  aspect-ratio: 1;
  max-width: 52px;
  border-radius: 999px;
  background: var(--swatch);
  border: 2px solid rgba(20, 24, 28, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-chip .color-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--steel-soft);
  text-align: center;
}

.color-chip input:checked + .swatch {
  transform: scale(1.06);
  box-shadow:
    0 0 0 3px var(--white),
    0 0 0 5px var(--amber);
}

.color-chip:hover .swatch {
  transform: scale(1.04);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.35rem;
}

.form-actions .btn-outline {
  color: var(--steel);
  border-color: var(--line);
}

.form-status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-ok {
  background: rgba(61, 107, 58, 0.12);
  color: #2f5a2c;
}

.form-status.is-error {
  background: rgba(180, 35, 24, 0.1);
  color: #8f1c14;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem;
  }

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

@media (max-width: 640px) {
  .color-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .color-chip .color-name {
    font-size: 0.68rem;
  }
}

/* Tracking */
.link-btn {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--amber-deep);
  cursor: pointer;
  text-align: left;
}

.link-btn:hover {
  text-decoration: underline;
}

.tracking-panel {
  display: grid;
  gap: 1.5rem;
}

.tracking-result,
.tracking-empty {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.tracking-result-head h2,
.tracking-empty h2 {
  max-width: none;
  margin-top: 0.2rem;
}

.tracking-result-head p:last-child,
.tracking-empty > p {
  color: var(--steel-soft);
  margin-top: 0.75rem;
}

.tracking-meta {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tracking-meta div {
  display: grid;
  gap: 0.15rem;
}

.tracking-meta dt {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-soft);
  font-weight: 600;
}

.tracking-meta dd {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.tracking-timeline {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.tracking-step {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.9rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.tracking-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 1.15rem;
  bottom: 0;
  width: 2px;
  background: var(--paper-deep);
}

.tracking-step.is-done:not(:last-child)::before {
  background: rgba(200, 137, 26, 0.55);
}

.tracking-step-marker {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 2px solid var(--paper-deep);
  background: var(--white);
  margin-top: 0.15rem;
  z-index: 1;
}

.tracking-step.is-done .tracking-step-marker {
  border-color: var(--amber);
  background: var(--amber);
  box-shadow: inset 0 0 0 3px var(--white);
}

.tracking-step.is-current .tracking-step-marker {
  border-color: var(--amber-deep);
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(200, 137, 26, 0.22);
}

.tracking-step-body {
  display: grid;
  gap: 0.15rem;
}

.tracking-step-body strong {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  font-weight: 400;
}

.tracking-step-body span,
.tracking-step-body time {
  color: var(--steel-soft);
  font-size: 0.95rem;
}

.tracking-step-body time {
  font-weight: 600;
  color: var(--steel);
}

.tracking-result-actions {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 700px) {
  .tracking-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Footer brand + logo */
.footer-brand {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-tagline {
  margin: 0;
  max-width: 28ch;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
  margin: 0;
}

.footer-logo {
  width: min(220px, 78%);
  height: auto;
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
}

.footer-grid .footer-brand + div a[aria-current="page"] {
  color: #f2d089;
}

/* Stylish FAQ */
.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(200, 137, 26, 0.16), transparent 55%),
    radial-gradient(700px 380px at 100% 30%, rgba(42, 64, 84, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(231, 236, 241, 0.9));
  border-top: 1px solid var(--line);
}

.faq-wrap {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.faq-intro h2 {
  max-width: 12ch;
}

.faq-intro > p:last-child {
  color: var(--steel-soft);
  margin-top: 0.85rem;
  max-width: 36ch;
}

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

.faq-item {
  margin: 0;
  border: 1px solid rgba(20, 24, 28, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(20, 24, 28, 0.05);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(200, 137, 26, 0.35);
  transform: translateY(-1px);
}

.faq-item[open] {
  border-color: rgba(200, 137, 26, 0.55);
  box-shadow: 0 16px 36px rgba(20, 24, 28, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  border: 1.5px solid rgba(20, 24, 28, 0.18);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.25s ease, border-color 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.55rem;
  height: 1.5px;
  background: var(--steel);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: var(--ink);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
}

.faq-a {
  padding: 0 1.15rem 1.15rem;
}

.faq-a p {
  margin: 0;
  color: var(--steel-soft);
  max-width: 62ch;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(20, 24, 28, 0.08);
  padding-top: 0.85rem;
}

@media (min-width: 900px) {
  .faq-wrap {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem;
  }
}

/* Google reviews badge — header + footer */
.header-reviews {
  display: flex;
  flex: 0 1 auto;
  margin-left: auto;
  margin-right: 0.35rem;
  min-width: 0;
}

.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  box-shadow: 0 6px 16px rgba(20, 24, 28, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.google-reviews-badge:hover {
  border-color: rgba(66, 133, 244, 0.4);
  box-shadow: 0 10px 22px rgba(20, 24, 28, 0.1);
  transform: translateY(-1px);
}

.google-reviews-badge__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.google-reviews-badge__meta {
  display: grid;
  gap: 0.05rem;
  line-height: 1.15;
}

.google-reviews-badge__top {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.google-reviews-badge__score {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.google-reviews-badge__stars {
  color: #fbbc04;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.google-reviews-badge__count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--steel-soft);
  white-space: nowrap;
}

.google-reviews-badge--footer {
  width: fit-content;
  margin-top: 0.15rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.google-reviews-badge--footer .google-reviews-badge__count {
  color: var(--steel);
}

.reviews-summary-google {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.reviews-summary-google .google-mark {
  margin-top: 0;
}

.reviews-summary-label {
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.02em;
}

.reviews-count strong {
  color: var(--ink);
  font-size: 1.05rem;
}

@media (min-width: 720px) {
  .header-inner {
    gap: 0.75rem;
  }

  .header-reviews {
    order: 2;
  }

  .header-inner .nav {
    order: 3;
  }

  .header-inner .brand {
    order: 1;
  }
}

@media (min-width: 1100px) {
  .google-reviews-badge--header {
    padding-right: 0.9rem;
  }

  .google-reviews-badge__count {
    font-size: 0.78rem;
  }
}

@media (max-width: 719px) {
  .header-reviews {
    margin-right: 0.2rem;
  }

  .google-reviews-badge--header {
    gap: 0.4rem;
    padding: 0.28rem 0.55rem 0.28rem 0.3rem;
  }

  .google-reviews-badge--header .google-reviews-badge__stars {
    display: none;
  }

  .google-reviews-badge--header .google-reviews-badge__count {
    font-size: 0.65rem;
  }

  .footer-brand .google-reviews-badge {
    display: inline-flex;
  }
}

/* Product detail page (PDP) */
.product-card-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.product-card-title-row .product-cat {
  margin: 0;
}

.product-price {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink, #1a1a1a);
  letter-spacing: 0.01em;
}

.product-card-body h3 a {
  text-decoration: none;
  color: inherit;
}

.product-card-body h3 a:hover {
  color: var(--amber-deep);
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.product-gallery-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pdp-reviews-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem 0.28rem 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(20, 24, 28, 0.05);
  white-space: nowrap;
}

.pdp-reviews-chip img {
  width: 18px;
  height: 18px;
}

.pdp-reviews-chip__stars {
  color: #fbbc04;
  letter-spacing: 0.02em;
  font-size: 0.72rem;
}

.pdp-reviews-chip__score {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.pdp-reviews-chip__count {
  color: var(--steel-soft);
}

.pdp-top {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  background: #fff;
}

.pdp-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.pdp-media-col {
  display: grid;
  gap: 1.75rem;
  min-width: 0;
}

.pdp-gallery {
  display: grid;
  gap: 0.75rem;
}

.pdp-main {
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: #1b242c;
  box-shadow: var(--shadow);
}

.pdp-main .product-main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.pdp-buybox {
  min-width: 0;
}

.pdp-buybox .pdp-col-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 0.65rem;
}

.pdp-buybox h1 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.pdp-title-row {
  display: grid;
  gap: 0.75rem;
  margin: 0.6rem 0 0.85rem;
}

.pdp-buybox .pdp-description {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  margin-bottom: 0;
  max-width: none;
}

.pdp-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--steel-soft);
}

.pdp-crumbs a {
  color: var(--steel);
  text-decoration: none;
}

.pdp-crumbs a:hover {
  color: var(--amber-deep);
}

.pdp-meta {
  margin-bottom: 0.75rem;
}

.pdp-lead {
  color: var(--steel-soft);
  margin-bottom: 1.1rem;
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pdp-trust {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
  color: var(--steel);
  font-weight: 600;
  font-size: 0.95rem;
}

.pdp-trust li {
  position: relative;
  padding-left: 1.15rem;
}

.pdp-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--amber);
}

.pdp-details {
  background: #fff;
  border-top: 1px solid #eee;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.pdp-description {
  margin-bottom: 0;
  max-width: none;
}

.pdp-description h2 {
  max-width: none;
  font-family: var(--font-body);
  font-size: 1.35rem;
  letter-spacing: 0;
  font-weight: 700;
}

.pdp-longcopy {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.85rem;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.65;
}

.pdp-longcopy a {
  color: #111;
  text-decoration: underline;
}

.pdp-split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  padding-top: 0.25rem;
}

.pdp-info {
  min-width: 0;
}

.pdp-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  border-bottom: 1px solid #e6e6e6;
}

.pdp-tab {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #b0b0b0;
  padding: 0 0 0.7rem;
  margin: 0 0 -1px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  line-height: 1.2;
}

.pdp-tab:hover {
  color: #666;
}

.pdp-tab.is-active {
  color: #111;
  font-weight: 700;
  border-bottom-color: #111;
}

.pdp-panels {
  padding-top: 1.25rem;
}

.pdp-panel-copy {
  display: grid;
  gap: 0.95rem;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 62ch;
}

.pdp-panel-copy h3 {
  margin: 0.2rem 0 0;
  color: #111;
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: 0;
  font-weight: 700;
}

.pdp-bullet-list,
.pdp-check-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: #555;
}

.pdp-bullet-list li,
.pdp-check-list li {
  padding-left: 0.15rem;
}

.pdp-bullet-list li::marker,
.pdp-check-list li::marker {
  color: #111;
}

.pdp-specs {
  display: grid;
  gap: 0;
  margin: 0;
  max-width: 480px;
}

.pdp-specs > div {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #eee;
}

.pdp-specs dt {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.pdp-specs dd {
  margin: 0;
  color: #111;
  font-weight: 500;
}

.pdp-note {
  font-size: 0.9rem;
  color: #888;
}

.pdp-ratings {
  min-width: 0;
}

.pdp-ratings-sources {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.25rem;
  border-bottom: 1px solid #e6e6e6;
}

.pdp-ratings-source {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: #b0b0b0;
  padding: 0 0 0.7rem;
  margin: 0 0 -1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 2px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
}

.pdp-ratings-source img {
  width: 14px;
  height: 14px;
  display: block;
}

.pdp-ratings-source.is-active {
  color: #111;
  font-weight: 700;
  border-bottom-color: #111;
}

.pdp-ratings-body {
  padding-top: 1.75rem;
  text-align: center;
}

.pdp-ratings-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: #111;
  margin: 0 0 0.65rem;
  letter-spacing: 0;
}

.pdp-ratings-scoreline {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
}

.pdp-ratings-score {
  font-family: var(--font-body);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1;
  color: #111;
  letter-spacing: -0.02em;
}

.pdp-ratings-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  line-height: 1;
}

.pdp-star-svg {
  display: block;
  flex: 0 0 auto;
}

.pdp-ratings-count {
  color: #b0b0b0;
  font-size: 0.95rem;
  font-weight: 500;
}

.pdp-related-grid {
  display: grid;
  gap: 1rem;
}

.pdp-related-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.85rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 20px rgba(20, 24, 28, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pdp-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 137, 26, 0.45);
}

.pdp-related-card img {
  width: 110px;
  height: 82px;
  object-fit: cover;
  border-radius: 4px;
}

.pdp-related-card strong {
  display: block;
  font-size: 1rem;
}

.pdp-related-card span {
  display: block;
  margin-top: 0.2rem;
  color: var(--steel-soft);
  font-size: 0.88rem;
}

@media (min-width: 900px) {
  .pdp-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
    gap: 2.5rem;
    align-items: start;
  }

  .pdp-title-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .pdp-split {
    grid-template-columns: minmax(0, 1.55fr) minmax(200px, 0.85fr);
    column-gap: 2rem;
    row-gap: 1.25rem;
  }

  .pdp-buybox {
    position: sticky;
    top: 5.5rem;
  }

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

@media (max-width: 640px) {
  .pdp-tablist,
  .pdp-ratings-sources {
    gap: 1rem;
  }

  .pdp-tab,
  .pdp-ratings-source {
    font-size: 0.9rem;
  }

  .pdp-specs > div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}

@media (min-width: 1100px) {
  .pdp-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pdp-related-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .pdp-related-card img {
    width: 100%;
    height: 150px;
  }
}
