.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg, #ffffff);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}
.topbar {
  background: var(--topbar-bg, #2f302d);
  color: var(--topbar-text, #f5f3ef);
  border-bottom: 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 38px;
  padding-block: 0;
}

.topbar-copy {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--topbar-text, rgba(255, 255, 255, 0.92));
  text-align: center;
  white-space: nowrap;
}

.topbar-accent {
  margin: 0 0.4rem;
  color: var(--color-primary);
}

.topbar-right {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.payment-strip {
  display: block;
  /* Width bumped from 90px → 120.4px when the strip went from 3
     cards (viewBox 132) to 4 cards (viewBox 176.6 — Visa, MC, Amex,
     PayPal). 120.4 = 90 × 176.6/132 keeps each card the same
     rendered size as before. UPSTREAM SYNC NOTE: matching change
     needed in ~/Sites/printvine/assets/css/layout.css. */
  width: 120.4px;
  height: auto;
  opacity: 0.92;
}

@media (max-width: 768px) {
  .topbar-copy {
    font-size: 0.8rem;
  }

  .payment-strip {
    /* 96px → 128.4px under the same 176.6/132 scale-up. */
    width: 128.4px;
  }
}

.nav-wrapper {
  /* Falls through to --header-bg so the nav bar and the sticky
     header share a background unless the operator overrides each
     independently. */
  background: var(--header-bg, #ffffff);
  position: relative;
}

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

.nav-logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--color-heading);
  width: 176px;
  text-transform: none;
}

.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 4px;
}

.nav-primary {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: static;
}

.nav-menu > li > a,
.nav-menu > li > .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding: 1.5rem 0;
  border: 0;
  background: transparent;
  color: var(--nav-text, var(--color-heading));
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.nav-menu > li > a:hover,
.nav-menu > li > .dropdown-toggle:hover,
.nav-menu > li > a:focus-visible,
.nav-menu > li > .dropdown-toggle:focus-visible {
  color: var(--nav-text-hover, var(--color-primary));
}

.dropdown,
.menu-backdrop,
.mobile-menu,
.mobile-menu-inner,
.mobile-header,
.mobile-dropdown,
.mobile-cta {
  display: none;
}

@media (max-width: 860px) {
  .menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 200;
  }

  .menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(88vw, 400px);
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 210;
    overflow: hidden;
    box-shadow: 0 0 40px -10px rgba(15, 23, 42, 0.2);
  }

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

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 56px;
  }

  .mobile-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--color-heading);
    cursor: pointer;
    border-radius: 10px;
    z-index: 2;
  }

  .mobile-close svg {
    width: 22px;
    height: 22px;
  }

  .mobile-close:hover,
  .mobile-close:focus-visible {
    background: rgba(15, 23, 42, 0.05);
  }

  .mobile-panels {
    position: relative;
    flex: 1;
    overflow: hidden;
  }

  .mobile-panel {
    position: absolute;
    inset: 0;
    padding: 0.25rem 0.75rem 1.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s;
    background: #ffffff;
  }

  .mobile-panel.is-active {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-panel.is-previous {
    transform: translateX(-22%);
    visibility: visible;
    pointer-events: none;
    opacity: 0;
  }

  .mobile-panel.is-next {
    transform: translateX(100%);
    visibility: hidden;
  }

  .mobile-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 0.5rem;
    margin: 0 0 0.4rem -0.25rem;
    border: none;
    background: transparent;
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
  }

  .mobile-back svg {
    width: 18px;
    height: 18px;
  }

  .mobile-back:hover,
  .mobile-back:focus-visible {
    background: rgba(15, 23, 42, 0.05);
    color: var(--color-heading);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
  }

  .mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 0.75rem;
    border: none;
    background: transparent;
    color: var(--color-heading);
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
  }

  .mobile-row svg {
    width: 18px;
    height: 18px;
    color: rgba(15, 23, 42, 0.4);
    flex-shrink: 0;
  }

  .mobile-row:hover,
  .mobile-row:focus-visible {
    background: rgba(15, 23, 42, 0.04);
  }

  .mobile-row:hover svg,
  .mobile-row:focus-visible svg {
    color: var(--color-heading);
  }

  .mobile-row--lead {
    color: var(--color-primary);
    font-weight: 700;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0.35rem;
    padding-bottom: 1rem;
  }
}

.nav-menu li.has-dropdown .mega-dropdown {
  display: block;
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 1rem;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
  z-index: 30;
  pointer-events: none;
}

.nav-menu li.has-dropdown.is-open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: hover) {
  .nav-menu li.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.mega-dropdown-inner {
  width: min(var(--container-lg), calc(100% - 2rem));
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: var(--megamenu-bg, #ffffff);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 48px -16px rgba(15, 23, 42, 0.18), 0 8px 16px -8px rgba(15, 23, 42, 0.08);
}

.mega-content {
  display: flex;
  justify-content: center;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 1.75rem;
  width: 100%;
}

.mega-column {
  min-width: 0;
}

.mega-category {
  display: flex;
  flex-direction: column;
}

.mega-category-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--megamenu-title, var(--color-heading));
}

.mega-category-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.mega-category-title a:hover,
.mega-category-title a:focus-visible {
  color: var(--megamenu-link-hover, var(--color-primary));
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-link {
  display: block;
  padding: 0;
  color: var(--megamenu-link, var(--color-text));
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.15s ease;
}

.mega-link:hover,
.mega-link:focus-visible {
  color: var(--megamenu-link-hover, var(--color-primary));
}

/* Product-first mega-menu (28 May 2026 — Unit-2 cleanup) */
.mega-grid--products {
  /* Five product columns — Print / Stationery / Signage / Display / Other.
     The generic .mega-grid base ships with 4 columns (from when the
     mega-menu was 6 sectors in a 4×2 grid); the products variant needs 5
     on wide viewports so the Other column doesn't wrap to row 2. */
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 1.5rem;
}
.mega-grid--products .mega-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.mega-link__price {
  color: var(--megamenu-price, var(--color-text-muted));
  font-size: 0.82em;
  font-weight: 400;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1200px) {
  .mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }
}

@media (max-width: 980px) {
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-dropdown-inner {
    padding: 1.5rem 1.2rem;
  }
}

@media (max-width: 640px) {
  .mega-grid {
    grid-template-columns: 1fr;
  }
}

.dropdown-toggle::after {
  content: '▾';
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.75rem;
  transition: transform 0.22s ease, color 0.22s ease;
  opacity: 0.7;
}

.nav-menu li.has-dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu li.has-dropdown.is-open > .dropdown-toggle,
.nav-menu li.has-dropdown:hover > .dropdown-toggle {
  color: var(--nav-text-hover, var(--color-primary));
}

.nav-menu li.has-dropdown.is-open > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--cart-icon-bg, #ffffff);
  color: var(--cart-icon-text, var(--color-heading));
}

.icon-link:hover {
  background: var(--cart-icon-hover-bg, rgba(15, 23, 42, 0.05));
}

@media (min-width: 861px) and (max-width: 1180px) {
  .nav-inner {
    gap: 1rem;
  }

  .nav-logo {
    width: 150px;
    flex-shrink: 0;
  }

  .nav-menu {
    gap: 1.25rem;
  }

  .nav-menu > li > a,
  .nav-menu > li > .dropdown-toggle {
    font-size: 0.94rem;
  }

  .icon-link {
    width: 38px;
    height: 38px;
  }

  .btn.portal-btn {
    min-height: 38px;
    padding-inline: 0.7rem;
    font-size: 0.86rem;
  }
}

@media (min-width: 861px) and (max-width: 1040px) {
  .nav-logo {
    width: 136px;
  }

  .nav-menu {
    gap: 1rem;
  }

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

  .btn.portal-btn {
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    padding: 0;
  }
}



.nav-burger {
  display: none;
}

.hero-section {
  background: #bef264;
  padding: 0;
}

.hero-grid {
  --hero-gap: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--hero-gap);
  align-items: stretch;
}

.hero-copy {
  max-width: 46rem;
  padding: 3.45rem 0 3rem;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--color-hero-text, var(--color-heading));
}

.eyebrow-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: var(--text-hero, clamp(3.2rem, 4.8vw, 5rem));
  line-height: 1.03;
  letter-spacing: 0.008em;
  color: var(--color-hero-text, var(--color-heading));
}

.hero-accent {
  color: #ec4899;
}

.intro-copy {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--color-hero-text, var(--color-heading));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.6rem;
  margin: 1.5rem 0 0;
}

.hero-benefits > div {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--hero-benefit-bg, rgba(255, 255, 255, 0.75));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  flex: 0 0 auto;
  max-width: none;
}

.hero-benefits > div strong {
  white-space: nowrap;
}

.hero-benefit-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0;
  color: var(--color-heading);
}

.hero-benefit-text {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
}

.hero-benefits strong {
  display: inline;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  color: var(--hero-benefit-text, var(--color-heading));
}

.hero-benefits span {
  display: none;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
}

.hero-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  background: #dbe6ea;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

@media (min-width: 861px) {
  .hero-grid {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--container-lg)) / 2));
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-card {
    transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@media (min-width: 1200px) {
  .hero-card {
    clip-path: polygon(0 0, 100% 0, 86% 50%, 100% 100%, 0 100%, 14% 50%);
  }
}

.hero-carousel .hero-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.75s ease;
}

.hero-carousel .hero-card__image.is-active {
  opacity: 1;
}

.hero-carousel:not([data-carousel-ready="true"]) .hero-card__image {
  animation: heroImageFallback 13.5s ease-in-out infinite;
}

.hero-carousel:not([data-carousel-ready="true"]) .hero-card__image:nth-child(2) {
  animation-delay: 4.5s;
}

.hero-carousel:not([data-carousel-ready="true"]) .hero-card__image:nth-child(3) {
  animation-delay: 9s;
}

@keyframes heroImageFallback {
  0%,
  28% {
    opacity: 1;
  }

  34%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel:not([data-carousel-ready="true"]) .hero-card__image {
    animation: none;
  }
}

.section-category,
.section-about,
.section-content-tabs,
.section-recent,
.faq-section,
.section-trust,
.section-services,
.section-process,
.section-cta,
.section-usp {
  padding: 4rem 0;
}

.section-category {
  background: var(--color-bg);
  padding-top: 5.25rem;
}

.artwork-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.artwork-heading h2 {
  font-size: clamp(1.85rem, 2.6vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: 0.008em;
  margin-bottom: 0.65rem;
}

.artwork-heading p {
  margin-bottom: 0;
}

.stripe-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-height: 32px;
  padding: 0.25rem 0 0.25rem 0.85rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.stripe-note__icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.stripe-wordmark {
  display: inline-flex;
  align-items: center;
  color: #635bff;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.payment-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
}

.payment-icons .payment-strip {
  display: block;
  /* 4-card strip: 90px → 120.4px. See base .payment-strip rule. */
  width: 120.4px;
  height: auto;
  opacity: 1;
}

.section-about {
  background: #ffffff;
}

.section-recent {
  background: var(--color-bg);
}

.faq-section {
  background: var(--color-surface-4, #eff6ff);
}

.section-content-tabs {
  background: var(--color-surface-3, #f7fee7);
}

.section-usp {
  background: #f7fee7;
  padding: 0 0 1.25rem;
  border-top: 1px solid #ecfccb;
  border-bottom: 1px solid #ecfccb;
}

.content-tabs {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

.content-tab-list {
  display: grid;
  gap: 0.65rem;
  padding: 0.5rem;
  background: #ecfccb;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  position: sticky;
  top: calc(var(--topbar-height, 0px) + var(--nav-height, 0px) + 1rem);
}

.content-tab {
  appearance: none;
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--color-heading);
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.content-tab:hover,
.content-tab:focus-visible {
  background: #ffffff;
  border-color: #d9d9d4;
  outline: none;
}

.content-tab.is-active {
  background: #ffffff;
  border-color: rgba(47, 195, 122, 0.32);
  color: var(--color-heading);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.content-tab-panels {
  min-width: 0;
}

.content-tab-panel {
  padding: clamp(1.5rem, 2vw, 2.25rem);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.content-tab-panel h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.008em;
}

.content-tab-panel p {
  max-width: 840px;
  margin-bottom: 1rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text);
}

.mobile-read-more {
  display: none;
}

.content-tab-panel .btn {
  margin-top: 0.75rem;
}

.section-content-tabs .section-heading h2,
.section-recent .section-heading h2,
.faq-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  line-height: 1.16;
  letter-spacing: 0.006em;
}

.section-recent .eyebrow {
  display: none;
}

.section-recent .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--color-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--color-primary);
}

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

.category-card {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.category-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.42rem;
  letter-spacing: 0.012em;
  color: var(--color-heading);
}

.category-card__toggle {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
}

.price-list {
  display: grid;
  gap: 0.16rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  min-width: 0;
}

.service-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 30px;
  margin: 0;
  padding: 0.06rem 0.16rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.98rem;
  color: var(--color-heading);
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.service-option:hover,
.service-option:focus-within {
  background: #ffffff;
  border-color: var(--color-border);
}

.service-option:has(input:checked),
.service-option.is-selected {
  background: var(--color-primary-soft);
  border-color: rgba(47, 195, 122, 0.42);
}

.service-option input {
  width: 0.9rem;
  height: 0.9rem;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* POA rows render a span in place of the checkbox so the 3-col grid
   (auto | 1fr | auto) keeps name + price aligned with selectable rows.
   Width matches .service-option input width above so the columns line
   up pixel-for-pixel. */
.service-option__spacer {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
}

.service-option span {
  min-width: 0;
}

/* "View N more" / "View less" toggle injected by
   public/assets/js/grid-expand.js as the last <li> of each
   .price-list when the category has > 5 services. Lives inside
   the <ul> so it collapses with the card on mobile (the existing
   `.category-card.is-open .price-list { max-height }` accordion). */
.price-list .price-list__toggle-wrap {
  list-style: none;
  border-top: 0;
  margin-top: 0.35rem;
  padding: 0.25rem 0 0;
}
.price-list__toggle {
  display: inline-block;
  padding: 0.2rem 0;
  background: transparent;
  border: 0;
  color: var(--color-primary);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.price-list__toggle:hover,
.price-list__toggle:focus-visible {
  color: var(--color-primary-hover, var(--color-primary));
  outline: none;
}

.price-list strong {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-heading);
}

.selection-bar {
  /* Flush footer (option B): full-width strip flush to the viewport
     bottom, white background, soft top-only shadow, no border / no
     green stripe / no scrim. Standard "X selected → Continue"
     pattern that doesn't dim the grid behind. */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* Padding-inline uses max(calc) so the bar background spans the
     full viewport width while the inner content (count / Clear /
     Continue) is centred against the site container width — lines
     up with the grid above. Falls back to a 24px gutter on
     narrow viewports. Block padding gives the bar comfortable
     height so the Continue button doesn't feel cramped. */
  padding: 1.15rem max(24px, calc((100vw - var(--container-lg, 1280px)) / 2));
  background: #ffffff;
  color: var(--color-heading);
  border: 0;
  border-radius: 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

@media (max-width: 640px) {
  .selection-bar {
    padding-inline: 1rem;
    padding-block: 1.1rem;
  }
}

.selection-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.selection-bar__summary {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.selection-bar__summary strong {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading);
}

.selection-bar__summary span {
  display: block;
  max-width: 52rem;
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selection-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.selection-bar__clear {
  appearance: none;
  min-height: 42px;
  padding: 0 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: transparent;
  color: var(--color-heading);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.selection-bar .btn {
  min-height: 42px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.value-grid {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  display: block;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.value-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  color: var(--color-heading);
}

.value-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.recent-work-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.8rem;
  list-style: none;
  padding: 0;
}

.recent-card {
  position: relative;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.recent-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 0;
}

.recent-card > a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.recent-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 0;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  background: #f3f3f1;
}

.recent-card__meta {
  position: absolute;
  inset: auto 0 0;
  padding: 2.4rem 0.85rem 0.85rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.76) 100%);
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.recent-card:hover .recent-card__meta,
.recent-card:focus-visible .recent-card__meta,
.recent-card:focus-within .recent-card__meta {
  opacity: 1;
  transform: translateY(0);
}

.recent-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.recent-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: inherit;
}

.recent-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.4;
}

@media (hover: none) {
  .recent-card__meta {
    opacity: 1;
    transform: none;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  max-width: 1040px;
  margin: 1.6rem auto 0;
}

.faq-card {
  padding: 1rem 1.25rem;
  /* Literal pin — operator's Surface pick should NOT recolour
     individual FAQ cards. Per founder direction. */
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: none;
  transition: transform 0.24s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.faq-card:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 195, 122, 0.24);
}

.faq-card:focus-visible {
  outline: 3px solid rgba(47, 195, 122, 0.18);
  outline-offset: 3px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  /* Literal pin — operator's Surface alt pick should NOT recolour
     the FAQ +/- toggle pill. Per founder direction. */
  background: #f1f2ef;
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-card.is-open .faq-toggle {
  transform: rotate(45deg);
  background: var(--color-primary-soft);
}

/* Grid-rows trick: animate the row track between 0fr and 1fr so the
   answer slides to its NATURAL height — no max-height cap (which
   makes short answers snap open while long ones close slowly), no
   <p>-margin leak when collapsed. Markup is the outer .faq-answer
   grid container + an inner .faq-answer__copy that holds the visible
   text styling and clips its own overflow. */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0;
  transition: grid-template-rows 280ms ease, margin-top 280ms ease;
}

.faq-answer__copy {
  min-height: 0;
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.faq-card.is-open {
  border-color: rgba(47, 195, 122, 0.28);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.faq-card.is-open .faq-answer {
  grid-template-rows: 1fr;
  margin-top: 1rem;
}

.faq-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-heading);
}

.faq-show-more {
  display: none;
}

.cta-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.35rem 1.75rem;
  background: #eef6f1;
  border: 1px solid #d7e8dd;
  border-radius: 0;
}

.cta-panel h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: 0.006em;
  color: var(--color-heading);
}

.cta-panel p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.5;
}

.usp-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 2rem;
  padding-block: 1.35rem;
}

.usp-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.usp-item + .usp-item {
  padding-left: 2rem;
  border-left: 1px solid #d9f99d;
}

.usp-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ecfccb;
  color: var(--color-primary);
  border: 1px solid #bef264;
}

.usp-icon svg {
  width: 22px;
  height: 22px;
}

.usp-item strong {
  display: block;
  margin-bottom: 0.1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.25;
  color: var(--color-heading);
}

.usp-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.site-footer {
  /* No upstream background; body bg shows through. Var lets the
     operator paint the footer independently via Site CSS → Sections. */
  background: var(--footer-bg, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(130px, 0.75fr)) minmax(260px, 1.15fr);
  gap: 2.4rem;
  padding-block: 4rem 3rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-heading);
}

.footer-brand p,
.footer-note,
.footer-copy {
  color: var(--color-muted);
  line-height: 1.65;
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-note {
  display: none;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-social li {
  display: contents;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-heading);
  font-size: 0;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--color-primary);
  border-color: rgba(47, 195, 122, 0.45);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-column h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-heading);
}

.footer-column a {
  color: var(--footer-text, var(--color-text));
  font-size: 0.98rem;
  display: block;
  margin-bottom: 0.55rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--footer-text-hover, var(--color-primary));
}

.newsletter-form {
  position: relative;
  display: block;
  margin-top: 1rem;
  width: min(100%, 230px);
  min-width: 0;
}

.newsletter-form .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;
}

.newsletter-form input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0.1rem 0.8;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  font-size: 0.82rem;
}

.newsletter-form .btn {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 999px;
  font-size: 0;
  transform: translateY(-50%);
}

.newsletter-form .btn::before {
  content: "→";
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
}

.newsletter-form .btn:has(svg)::before {
  content: none;
}

.newsletter-form .btn svg {
  width: 15px;
  height: 15px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2rem;

  text-align: right;
}
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-toggle {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
  padding: 0.15rem 0;
  font: inherit;
  color: var(--color-heading);
  cursor: pointer;
}

.footer-toggle:hover,
.footer-toggle:focus-visible {
  color: var(--color-primary);
  outline: 2px solid rgba(99, 91, 255, 0.45);
  outline-offset: 3px;
}

.footer-toggle-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.24s ease;
}

.footer-group.is-open .footer-toggle-icon {
  transform: rotate(180deg);
}

.footer-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.32s ease, opacity 0.24s ease;
}

.footer-group.is-open .footer-panel {
  max-height: 1200px;
  opacity: 1;
  visibility: visible;
}

.footer-panel > a,
.footer-panel > p,
.footer-panel > form {
  display: block;
}

.footer-panel > a {
  margin-bottom: 0.7rem;
}

/* P13 of #PV-2026-0007 — footer full-layout breakpoint moved
   from 1451px → 1200px. Pre-P13 the 1451 threshold was an
   outlier (every other breakpoint in this file is ≤1200px), so
   standard laptops (1366 / 1440) still got the collapsed
   single-column accordion footer. 1200px puts the full 4-column
   footer in scope for every viewport above a small laptop. The
   inner desktop-only rules (toggle inert, chevron hidden, hover
   reset, .footer-right contents flatten) are unchanged; only
   the @media threshold moved. */
@media (min-width: 1200px) {
  .footer-panel {
    max-height: none;
    opacity: 1;
    visibility: visible;
  }
  .footer-toggle {
    cursor: default;
  }
  .footer-toggle-icon {
    opacity: 0.6;
    transform: rotate(0deg);
    display: none;
  }
  /* P12 of #PV-2026-0007 smoke-test sweep — desktop hover/focus
     reset. On the full-layout breakpoint the accordion toggle is
     inert (cursor: default + chevron hidden), so the base
     `.footer-toggle:hover/:focus-visible` rule painting the
     heading lime + adding a violet outline was the "weird
     hover" the founder reported on the footer "Popular For"
     heading. Matches the mobile reset pattern at ~1903 below. */
  .footer-toggle:hover,
  .footer-toggle:focus-visible {
    color: var(--color-heading);
    outline: none;
  }
  /* Flatten the wrapper so children become grid items and restore original columns */
  .footer-right {
    display: contents;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding-block: 3rem 2.25rem;
  }
  .footer-column {
    width: 100%;
  }
  .newsletter-form {
    width: 100%;
  }
  .newsletter-form .btn {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 0.75rem;
  }
}

/* Keep the outer footer split at mid-range while stacking accordion
   groups inside the right panel. Upper bound was 1450px until P13
   commit B; the panel/toggle rule below moved to (min-width:1200px),
   so this collapse rule's upper bound moves to 1199px to match —
   without it, the 2-col split persists from 1200–1450px while the
   panel rule says the base 6-col layout should apply, leaving the
   footer in a half-state at standard laptop widths. The 901px
   lower bound is preserved deliberately: the (max-width:900px)
   stack rule above is a same-specificity sibling, so dropping the
   lower bound here would let this 2-col rule override the mobile
   stack on cascade-order (later rule wins). */
@media (min-width: 901px) and (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: minmax(220px, 1.25fr) 1.35fr;
    gap: 2rem;
    padding-block: 2.5rem 1.75rem;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-column {
    width: 100%;
  }

  .footer-group {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .footer-group:last-child {
    border-bottom: 0;
  }

  .footer-toggle {
    padding: 0.85rem 0;
  }
}

/* Reduce hover/tacky effects on mobile and tighten spacing */
@media (max-width: 900px) {
  .footer-column a {
    transition: none;
    color: var(--color-text);
    padding: 6px 0;
    margin-bottom: 0.45rem;
  }

  .footer-toggle:hover,
  .footer-toggle:focus-visible {
    color: var(--color-heading);
    outline: none;
  }

  .footer-grid {
    gap: 1rem;
  }
}

/* Footer smallprint row (below the footer-bar): trader trading-name
   disclosure + the "Cookie preferences" trigger. Sized to match the
   copyright line above (.footer-copy = 0.85rem on desktop, 0.9rem on
   mobile) so the smallprint reads as smallprint, not as body text. */
.footer-fineprint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0 0 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.footer-fineprint__disclosure {
  margin: 0;
  font-size: inherit;
  color: inherit;
}

.footer-fineprint__cookie-btn {
  all: unset;
  font: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.18);
  text-underline-offset: 0.25em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-fineprint__cookie-btn:hover,
.footer-fineprint__cookie-btn:focus-visible {
  color: var(--color-heading);
  text-decoration-color: currentColor;
  outline: none;
}

.footer-fineprint__cookie-btn:focus-visible {
  outline: 2px solid rgba(99, 91, 255, 0.45);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .footer-fineprint {
    justify-content: center;
    text-align: center;
    padding-bottom: 1.25rem;
    font-size: 0.9rem;
  }
}

/* Footer bottom bar improvements: keep one row on desktop and tablet, wrap only on mobile */
.footer-bar {
  flex-wrap: nowrap;
  align-items: center;
}

@media (max-width: 900px) {
  .footer-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.25rem 0 1.75rem;
  }
  .footer-copy {
    width: 100%;
    font-size: 0.9rem;
  }
  .footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.35rem;
    font-size: 0.95rem;
  }
  .payment-icons {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0;
    border: none;
    background: transparent;
  }
  .payment-icons .payment-strip {
    /* 4-card strip: 72px → 96.3px (72 × 176.6/132). */
    width: 96.3px;
    opacity: 1;
  }
}

.footer-meta p {
  margin: 0;
}

.footer-meta strong {
  color: #635bff;
  font-weight: 800;
}

.payment-icons span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.55rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: #ffffff;
  color: var(--color-heading);
  font-size: 0.76rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-grid,
  .content-tabs,
  .usp-strip,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .section-usp {
    padding-bottom: 0;
  }

  .usp-strip {
    position: relative;
    display: block;
    min-height: 92px;
    padding-block: 1rem;
    overflow: hidden;
  }

  .usp-item {
    position: absolute;
    inset: 1rem 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    opacity: 0;
    transform: translateY(10px);
    animation: mobileUspRotate 12s ease-in-out infinite;
  }

  .usp-item + .usp-item {
    padding-left: 0;
    border-left: 0;
  }

  .usp-item:nth-child(1) {
    animation-delay: 0s;
  }

  .usp-item:nth-child(2) {
    animation-delay: 4s;
  }

  .usp-item:nth-child(3) {
    animation-delay: 8s;
  }

  @keyframes mobileUspRotate {
    0%,
    8% {
      opacity: 0;
      transform: translateY(10px);
    }

    14%,
    28% {
      opacity: 1;
      transform: translateY(0);
    }

    36%,
    100% {
      opacity: 0;
      transform: translateY(-8px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .usp-item {
      animation: none;
      display: none;
      opacity: 1;
      transform: none;
    }

    .usp-item:first-child {
      display: grid;
    }
  }

  .content-tab-list {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    position: static;
    scrollbar-width: thin;
  }

  .content-tab {
    flex: 0 0 auto;
    width: auto;
    min-width: 148px;
    white-space: nowrap;
  }

  .nav-primary {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-primary,
  .header-action {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: -0.4rem;
    padding: 0;
    border: none;
    background: none;
    color: var(--color-heading);
  }

  .nav-inner {
    min-height: 68px;
    gap: 0.5rem;
  }

  .nav-logo {
    width: 136px;
    margin-right: auto;
    margin-left: 0.25rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .icon-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .btn.btn-secondary.portal-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 10px;
    gap: 0;
  }

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

  .portal-btn__icon {
    width: 20px;
    height: 20px;
  }

  .hero-section {
    padding: 0;
  }

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

  .hero-copy {
    padding: 1.75rem 0 1.5rem;
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero-copy h1 {
    max-width: min(100%, 11.5em);
    font-size: var(--text-hero, clamp(2.45rem, 10vw, 3.65rem));
    line-height: 1.02;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
  }

  .intro-copy {
    max-width: 36rem;
    font-size: 1.02rem;
    line-height: 1.45;
    margin-bottom: 1rem;
  }

  .hero-benefits {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .hero-benefits > div {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.36rem 0.7rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    max-width: none;
    flex: 0 0 auto;
  }

  .hero-benefit-icon {
    width: 17px;
    height: 17px;
    margin-top: 0;
  }

  .hero-benefits strong {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .hero-benefits span {
    display: none;
  }

  .hero-actions {
    margin-top: 1.2rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: none;
    min-height: 52px;
  }

  .hero-card {
    min-height: min(68vw, 340px);
    margin-inline: -16px;
    width: calc(100% + 32px);
  }

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

  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-recent .section-heading {
    align-items: center;
  }

  .recent-work-grid {
    display: flex;
    gap: 0.55rem;
    margin-top: 1rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .recent-work-grid::-webkit-scrollbar {
    display: none;
  }

  .recent-card {
    flex: 0 0 min(42vw, 170px);
    scroll-snap-align: start;
  }

  .recent-card img {
    aspect-ratio: 4 / 5;
  }

  .artwork-heading {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1rem;
  }

  .section-category {
    padding-top: 2.35rem;
    padding-bottom: 2.75rem;
  }

  .artwork-heading h2 {
    max-width: min(100%, 12.5em);
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    line-height: 1.08;
    margin-bottom: 0.38rem;
  }

  .artwork-heading p {
    max-width: 30rem;
    font-size: 1rem;
    line-height: 1.42;
  }

  .stripe-note {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.4rem;
    min-height: 0;
    padding: 0.65rem 0;
    font-size: 0.84rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .stripe-note__icon {
    width: 1rem;
    height: 1rem;
  }

  .stripe-wordmark {
    font-size: 0.9rem;
  }

  .stripe-note .payment-icons {
    justify-content: flex-start;
    width: auto;
    margin-top: 0;
    padding: 0;
  }

  .stripe-note .payment-strip {
    width: 66px;
  }

  .category-grid {
    display: grid;
    gap: 0.5rem;
  }

  .category-card:nth-child(3) {
    order: -1;
  }

  .category-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
  }

  .category-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.1;
  }

  .category-card__toggle {
    position: relative;
    min-height: 54px;
    padding: 0.95rem 3rem 0.95rem 1rem;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
  }

  .category-card__toggle:hover,
  .category-card__toggle:focus-visible,
  .category-card.is-open .category-card__toggle {
    background: #ecfccb;
    outline: none;
  }

  .category-card__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.05rem;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .category-card.is-open .category-card__toggle::after {
    transform: translateY(-35%) rotate(225deg);
  }

  .price-list {
    max-height: 0;
    overflow: hidden;
    padding: 0 0.7rem;
    border-top: 1px solid transparent;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease, border-color 0.2s ease;
  }

  .category-card.is-open .price-list {
    max-height: 420px;
    padding: 0.35rem 1.25rem 0.7rem 0.95rem;
    border-top-color: var(--color-border);
    opacity: 1;
  }

  .price-list li + li {
    border-top: 1px solid rgba(17, 24, 39, 0.08);
  }

  .content-tab-panel {
    padding: 1.2rem;
  }

  .content-tab-panel h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.08;
  }

  .content-tab-panel p {
    margin-bottom: 0.85rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .section-content-tabs {
    padding-top: 2.9rem;
    padding-bottom: 3rem;
  }

  .section-content-tabs .section-heading {
    margin-bottom: 1.3rem;
  }

  .section-content-tabs .section-heading .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 1rem;
  }

  .section-content-tabs .section-heading h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.16;
  }

  .content-tabs {
    margin-top: 0;
    gap: 1.1rem;
  }

  .content-tab-list {
    margin-inline: -0.25rem;
  }

  .mobile-read-more__extra {
    display: none;
  }

  .content-tab-panel__copy.is-expanded .mobile-read-more__extra {
    display: block;
  }

  .mobile-read-more {
    appearance: none;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 0.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-heading);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    cursor: pointer;
  }

  .mobile-read-more:hover,
  .mobile-read-more:focus-visible {
    color: var(--color-primary);
  }

  .faq-grid {
    margin-top: 1.15rem;
  }

  .faq-grid:not(.is-expanded) .faq-card:nth-child(n + 4) {
    display: none;
  }

  .faq-show-more {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    min-height: 32px;
    margin-top: 0.75rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-heading);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    cursor: pointer;
  }

  .faq-show-more:hover,
  .faq-show-more:focus-visible {
    color: var(--color-primary);
  }

  .service-option {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.6rem;
    min-height: 40px;
    padding: 0.38rem 0.75rem 0.38rem 0.55rem;
    border-radius: 6px;
    font-size: 0.94rem;
  }

  .service-option:hover,
  .service-option:focus-within,
  .service-option:has(input:checked),
  .service-option.is-selected {
    background: #f7fee7;
    border-color: #d9f99d;
  }

  .service-option strong {
    grid-column: auto;
    padding-left: 0.45rem;
    font-size: 0.84rem;
    color: var(--color-text-muted);
    white-space: nowrap;
  }

  .service-option input {
    width: 1rem;
    height: 1rem;
  }

  .selection-bar {
    align-items: stretch;
    flex-direction: column;
    bottom: 0.75rem;
  }

  .selection-bar__summary span {
    white-space: normal;
  }

  .selection-bar__actions {
    justify-content: space-between;
  }

  .cta-panel {
    align-items: start;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-icons,
  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: var(--text-hero, clamp(2.35rem, 12vw, 3.2rem));
  }
}
