/* =====================================================================
   NYES Protect — Inner Page Styles
   ===================================================================== */

/* =====================================================================
   INNER LAYOUT WRAPPER
   ===================================================================== */
.inner-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.site-main {
  min-height: 60vh;
}

/* =====================================================================
   PAGE HERO — shared across all inner pages
   ===================================================================== */
.page-hero {
  background: var(--dark);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(119, 152, 192, .2);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(119, 152, 192, .07) 0%, transparent 65%);
  pointer-events: none;
}

/* =====================================================================
   BREADCRUMB
   ===================================================================== */
.breadcrumb {
  font-family: var(--font-body);
  font-size: .9rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .35);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--blue-light);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, .2);
}

.breadcrumb-current {
  color: var(--blue-light);
}

/* =====================================================================
   PAGE HERO — typography
   ===================================================================== */
.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--blue-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--blue-light);
  flex-shrink: 0;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(60px, 7.5vw, 108px);
  line-height: .88;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.page-hero-title span {
  color: var(--blue);
  line-height: .88;
}

.page-hero-sub {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  max-width: 560px;
  line-height: 1.6;
}

.page-hero-desc {
  font-family: var(--font-body);
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .75rem;
  max-width: 500px;
  line-height: 1.7;
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.page-hero-count {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue-light);
}

/* =====================================================================
   SINGLE PRODUCT
   ===================================================================== */
.product-single-section {
  background: var(--white);
  padding: 5rem 0 6rem;
}

.product-single-grid {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 2rem;
  align-items: start;
}

.product-single-image {
  position: sticky;
  top: 100px;
}

.product-single-image-wrap {
  background: #ffffff;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.product-single-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-single-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-single-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: rgba(119, 152, 192, .35);
}

.product-single-details {
  padding-top: .5rem;
}

.product-single-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.2rem;
}

.product-cat-badge {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue);
  background: rgba(119, 152, 192, .1);
  padding: .3rem .75rem;
  border: 1px solid rgba(119, 152, 192, .3);
  transition: background var(--transition);
}

.product-cat-badge:hover {
  background: rgba(119, 152, 192, .2);
}

.product-single-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: .5rem;
}

.product-single-variant {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.product-single-divider {
  height: 1px;
  background: var(--gray-light);
  margin-bottom: 2rem;
}

.product-single-features-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(0, 0, 0, .35);
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.product-single-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.product-single-features li {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  line-height: 1.5;
}

.product-single-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
}

.product-single-qty {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(0, 0, 0, .45);
  margin-bottom: 2rem;
}

.product-single-qty strong {
  color: var(--dark);
  font-weight: 700;
}

.product-single-sku {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(0, 0, 0, .45);
  margin-bottom: 2rem;
}

.product-single-sku strong {
  color: var(--dark);
  font-weight: 700;
}

.product-single-section-heading {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--blue);
  text-transform: uppercase;
  margin: 2rem 0 .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.product-single-features + .product-single-section-heading,
.product-single-section-heading:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.product-single-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.product-made-to-order {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.product-single-content {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}

/* Related Products */
.related-products-section {
  background: #f8fafc;
  padding: 5rem 0;
  border-top: 1px solid var(--gray-light);
}

.related-products-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 58px);
  color: var(--dark);
  line-height: .9;
  margin-bottom: .5rem;
}

.related-products-heading span {
  color: var(--blue);
}

.related-products-sub {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: rgba(0, 0, 0, .4);
  margin-bottom: 2.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: rgba(0, 0, 0, .06);
}

/* =====================================================================
   PRODUCTS ARCHIVE & CATEGORY
   ===================================================================== */
.products-archive-section {
  background: var(--dark);
  padding: 2rem 0 6rem;
}

.products-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.products-filter-tabs {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.products-filter-tab {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: all var(--transition);
}

.products-filter-tab:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
}

.products-filter-tab.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ---- Archive filter bar (all-products page) ---- */
.archive-filter-bar {
  background: var(--blue);
  padding: 1.3rem 0;
}

.archive-filter-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.archive-filter-tab {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .6rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, .45);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.archive-filter-tab:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .15);
}

.archive-filter-tab.is-active {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.archive-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--dark);
}

.archive-no-results {
  padding: 4rem 2rem;
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255, 255, 255, .35);
  background: var(--dark);
}


/* Pagination */
.inner-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.inner-pagination .nav-links {
  display: flex;
  gap: .4rem;
  align-items: center;
}

.inner-pagination .page-numbers {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .5rem .9rem;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .45);
  transition: all var(--transition);
}

.inner-pagination .page-numbers:hover,
.inner-pagination .page-numbers.current {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* =====================================================================
   INSIGHTS ARCHIVE
   ===================================================================== */
.insights-archive-section {
  background: var(--off-white);
  padding: 3rem 0 6rem;
}

.insights-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.insights-archive-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.insights-archive-card:hover {
  transform: translateY(-4px);
}

.insights-archive-card-image-wrap {
  display: block;
  overflow: hidden;
}

.insights-archive-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.insights-archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.insights-archive-card:hover .insights-archive-card-image img {
  transform: scale(1.04);
}

.insights-archive-card-image--placeholder {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--navy) 100%);
  aspect-ratio: 16 / 9;
}

.insights-archive-card-body {
  padding: 2rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.insights-archive-card-meta {
  font-family: var(--font-body);
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: .04em;
}

.insights-archive-card-cat {
  font-weight: 700;
  color: var(--blue);
}

.insights-archive-card-sep {
  color: var(--gray-light);
}

.insights-archive-card-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
}

.insights-archive-card-title a {
  color: inherit;
  transition: color var(--transition);
}

.insights-archive-card-title a:hover {
  color: var(--blue);
}

.insights-archive-card-excerpt {
  font-family: var(--font-body);
  font-size: .88rem;
  color: #555;
  line-height: 1.7;
  flex: 1;
}

.insights-archive-card-btn {
  align-self: flex-start;
  margin-top: .5rem;
  font-size: .78rem;
  padding: .7rem 1.6rem;
}

.insights-archive-empty {
  text-align: center;
  padding: 5rem 2rem;
  font-family: var(--font-body);
  color: var(--gray);
}

/* =====================================================================
   GENERIC PAGE
   ===================================================================== */
.page-content-section {
  background: var(--white);
  padding: 5rem 0 6rem;
}

.page-content-body {
  max-width: 820px;
}

.page-content-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--dark);
  margin: 2.5rem 0 .9rem;
  line-height: .95;
  letter-spacing: .01em;
}

.page-content-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin: 2rem 0 .75rem;
}

.page-content-body h4 {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--dark);
  margin: 1.5rem 0 .5rem;
}

.page-content-body p {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, .68);
  margin-bottom: 1.25rem;
}

.page-content-body ul,
.page-content-body ol {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, .68);
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.page-content-body ol {
  list-style: decimal;
}

.page-content-body li {
  margin-bottom: .4rem;
}

.page-content-body a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(119, 152, 192, .4);
  transition: color var(--transition);
}

.page-content-body a:hover {
  color: var(--dark);
}

.page-content-body blockquote {
  border-left: 3px solid var(--blue);
  padding: .5rem 0 .5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(0, 0, 0, .55);
}

.page-content-body img {
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

.page-content-body hr {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 2.5rem 0;
}

/* =====================================================================
   BLOG SINGLE POST
   ===================================================================== */
.post-single-section {
  background: var(--white);
  padding: 5rem 0 6rem;
}

.post-single-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 5rem;
  align-items: start;
}

.post-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 3rem;
  display: block;
}

/* Sidebar */
.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .02em;
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--blue);
}

.sidebar-post-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sidebar-post-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}

.sidebar-post-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: cover;
  background: #e8edf2;
  display: block;
}

.sidebar-post-thumb-placeholder {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #c8ddf0, #e8f2fb);
}

.sidebar-post-title {
  font-family: var(--font-serif);
  font-size: .9rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: .25rem;
}

.sidebar-post-title a {
  color: inherit;
  transition: color var(--transition);
}

.sidebar-post-title a:hover {
  color: var(--blue);
}

.sidebar-post-date {
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(0, 0, 0, .38);
  font-family: var(--font-body);
}

.sidebar-cta-box {
  background: var(--dark);
  padding: 2rem 1.5rem;
  text-align: center;
}

.sidebar-cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: .95;
  margin-bottom: .6rem;
}

.sidebar-cta-title span {
  color: var(--blue);
}

.sidebar-cta-sub {
  font-family: var(--font-serif);
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

/* =====================================================================
   SOLUTIONS PAGE
   ===================================================================== */

/* Hero */
.solutions-hero {
  background: var(--dark);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(119, 152, 192, .2);
}

.solutions-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(119, 152, 192, .08) 0%, transparent 65%);
  pointer-events: none;
}

.solutions-hero-inner {
  position: relative;
  z-index: 1;
}

.solutions-hero-eyebrow {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--blue-light);
  margin-bottom: 1.4rem;
}

.solutions-hero-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 110px);
  line-height: .88;
  letter-spacing: .01em;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.solutions-hero-heading span {
  color: var(--blue);
}

.solutions-hero-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.solutions-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust / cert bar */
.solutions-trust-bar {
  background: #c8ddf0;
  padding: 1rem 0;
}

.solutions-trust-inner {
  max-width: 100%;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(.6rem, 1.8vw, 2.5rem);
  overflow: hidden;
}

.solutions-trust-label {
  font-family: var(--font-body);
  font-size: clamp(.5rem, 1vw, .85rem);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--dark);
  flex-shrink: 0;
}

.solutions-trust-agency {
  font-family: var(--font-body);
  font-size: clamp(.5rem, 1.1vw, .9rem);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Agencies section */
.solutions-agencies-section {
  background: #fff;
  padding: 6rem 0;
}

.solutions-agencies-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.solutions-section-eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--blue);
  margin-bottom: 1rem;
  display: block;
}

.solutions-section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 115px);
  line-height: .9;
  letter-spacing: .02em;
  color: var(--dark);
  white-space: nowrap;
}

.solutions-section-heading span {
  color: var(--blue);
}

.solutions-section-heading--light {
  color: var(--white);
}

.solutions-agencies-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-right: 1px solid var(--blue);

}

/* Flip-up animation shared state */
.flip-up {
  opacity: 0;
  transform: perspective(600px) rotateX(12deg) translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22, 1, .36, 1),
    transform 0.65s cubic-bezier(.22, 1, .36, 1);
  transform-origin: bottom center;
  will-change: transform, opacity;
}

.flip-up.is-visible {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg) translateY(0);
}

/* Stagger delay for siblings */
.flip-up:nth-child(2) {
  transition-delay: 0.08s;
}

.flip-up:nth-child(3) {
  transition-delay: 0.16s;
}

.flip-up:nth-child(4) {
  transition-delay: 0.24s;
}

.flip-up:nth-child(5) {
  transition-delay: 0.32s;
}

.flip-up:nth-child(6) {
  transition-delay: 0.40s;
}

.flip-up:nth-child(7) {
  transition-delay: 0.48s;
}

.solutions-agency-card {
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  transition: background var(--transition);
  border: 1px solid var(--blue);
  border-right: 0;
}

.solutions-agency-card:hover {
  background: #fff;
}

.solutions-agency-shield {
  width: 36px;
  height: 36px;
  color: var(--blue);
  margin-bottom: .2rem;
}

.solutions-agency-abbr {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  -webkit-text-stroke: 0.3px var(--dark);
  line-height: 1;
  letter-spacing: .03em;
}

.solutions-agency-name {
  font-family: var(--font-body);
  font-size: .68rem;
  line-height: 1.45;
  color: rgba(0, 0, 0, .4);
}

/* Process / How to work */
.solutions-process-section {
  background: #7798c0;
  padding: 6rem 0;
}

.solutions-process-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.solutions-process-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 115px);
  line-height: .9;
  letter-spacing: .02em;
  color: var(--white);
  white-space: nowrap;
}

.solutions-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solutions-step {
  background: #fff;
  padding: 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  border-radius: 4px;
}

.solutions-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #7798c0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  line-height: 2;
  flex-shrink: 0;
  margin-bottom: .25rem;
}

.solutions-step-title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  -webkit-text-stroke: 0.3px var(--dark);
}

.solutions-step-body {
  font-family: var(--font-body);
  font-size: .85rem;
  line-height: 1.7;
  color: var(--dark);
  text-align: center;
}

/* Sub-pages grid */
.solutions-sub-section {
  background: var(--dark);
  padding: 6rem 0;
  border-top: 1px solid rgba(119, 152, 192, .15);
}

.solutions-sub-header {
  margin-bottom: 3.5rem;
}

.solutions-sub-desc {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .5);
  max-width: 500px;
  margin-top: 1rem;
  line-height: 1.65;
}

.solutions-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, .07);
}

.solutions-sub-card {
  background: var(--dark-2);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: background var(--transition);
  position: relative;
}

.solutions-sub-card:hover {
  background: #1a2540;
}

.solutions-sub-number {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--blue-light);
  letter-spacing: .1em;
}

.solutions-sub-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: .95;
  letter-spacing: .02em;
}

.solutions-sub-body {
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  max-width: 400px;
  flex: 1;
}

.solutions-sub-arrow {
  font-size: 1.2rem;
  color: var(--blue-light);
  transition: transform var(--transition);
}

.solutions-sub-card:hover .solutions-sub-arrow {
  transform: translateX(6px);
}

/* CTA */
.solutions-cta-section {
  background: #0a0e18;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solutions-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(119, 152, 192, .08) 0%, transparent 65%);
  pointer-events: none;
}

.solutions-cta-inner {
  position: relative;
  z-index: 1;
}

.solutions-cta-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .88;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.solutions-cta-heading span {
  color: var(--blue);
}

.solutions-cta-sub {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 2.5rem;
}

.solutions-cta-section .solutions-hero-actions {
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .solutions-agencies-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .solutions-hero-sub {
    white-space: normal;
  }
}

@media (max-width: 768px) {

  /* Solutions hero */
  .solutions-hero {
    padding: 4rem 0 3.5rem;
  }

  .solutions-hero-heading {
    font-size: clamp(52px, 12vw, 80px);
  }

  .solutions-hero-sub {
    white-space: normal;
    font-size: 1rem;
  }

  .solutions-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Trust bar */
  .solutions-trust-inner {
    padding: 0 1.5rem;
  }

  /* Agencies */
  .solutions-agencies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-agencies-section {
    padding: 3rem 0;
  }

  .solutions-section-heading {
    white-space: normal;
    font-size: clamp(48px, 10vw, 72px);
  }

  /* Process */
  .solutions-process-grid,
  .solutions-sub-grid {
    grid-template-columns: 1fr;
  }

  .solutions-process-section {
    padding: 3rem 0;
  }

  .solutions-process-heading {
    white-space: normal;
    font-size: clamp(48px, 10vw, 72px);
  }
}

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */

/* Shared heading */
.about-section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .88;
  letter-spacing: .01em;
  color: var(--white);
  margin-bottom: 1.8rem;
}

.about-section-heading span {
  color: var(--blue);
}

.about-section-heading--dark {
  color: var(--dark);
}

.about-section-heading--dark span {
  color: var(--blue);
}

/* ── OUR STORY ─────────────────────────────────────────────── */
.about-story-section {
  background-color: var(--dark);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 5rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.about-story-left {
  min-width: 0;
}

.about-story-content {
  margin-top: 1.5rem;
}

.about-story-section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* RIGHT: media slot */
.about-story-right {
  min-width: 0;
}

.about-story-media {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, .04);
}

.about-story-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-media-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(119, 152, 192, .12);
}

/* ---- About Trust Bar ---- */
.about-trust-bar {
  background: var(--blue);
  padding: .85rem 0;
}

.about-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.5rem;
  padding: 0 3rem;
}

.about-trust-item {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
}

.about-trust-dot {
  color: rgba(255, 255, 255, .3);
  font-size: .7rem;
}

.about-story-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--blue) !important;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.about-story-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 5.5vw, 96px);
  line-height: .9;
  letter-spacing: .01em;
  color: var(--white);
  margin-bottom: 0;
}

.about-story-heading span {
  display: block;
  color: var(--blue);
}

.about-story-content p {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1.2rem;
}

.about-story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}

.about-badge {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue-light);
  border: 1px solid rgba(119, 152, 192, .35);
  padding: .35rem .85rem;
}

/* ── INNOVATION & TECHNOLOGY ───────────────────────────────── */
.about-innovation-section {
  background: #fff;
  padding: 6rem 0;
}

.about-innovation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-innovation-eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.about-innovation-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(57px, 7.5vw, 105px);
  line-height: .9;
  color: var(--dark);
  letter-spacing: .01em;
  margin-bottom: 1.6rem;
}

.about-innovation-body {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, .8);
  max-width: 480px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--blue) 1px solid;
}

.about-stat {
  background: #fff;
  padding: 0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .7rem;
  border: 1px solid var(--blue);
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1;
  color: var(--blue);
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat-sup {
  font-size: 1em;
  color: var(--blue);
  vertical-align: baseline;
  line-height: 1;
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--dark);
  text-transform: uppercase;
}

/* ── NYES ORIGINAL PRODUCTS ────────────────────────────────── */
.about-products-section {
  background: var(--blue);
  padding: 6rem 0;
}

.about-products-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.about-products-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.about-products-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(57px, 7.5vw, 105px);
  line-height: .88;
  letter-spacing: .01em;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.about-products-heading span {
  display: block;
  color: var(--white);
}

.about-products-sub {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
}

.about-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.about-product-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}

.about-product-image {
  height: 260px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.about-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  display: block;
  transition: transform .5s ease;
}

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

.about-product-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #b8d0ea 0%, #d8eaf8 50%, #e8f4fb 100%);
  position: relative;
  overflow: hidden;
}

.about-product-body {
  padding: 1.4rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-product-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .6rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-product-title a {
  color: inherit;
  transition: color var(--transition);
}

.about-product-title a:hover {
  color: var(--blue);
}

.about-product-desc {
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, .55);
  margin-bottom: 1.2rem;
  flex: 1;
}

.about-product-link {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--blue);
  transition: color var(--transition), letter-spacing var(--transition);
  margin-top: auto;
}

.about-product-link:hover {
  letter-spacing: .18em;
  color: var(--dark);
}

.about-products-cta {
  text-align: center;
}

/* ── LEARN MORE CTA ─────────────────────────────────────────── */
.about-cta-section {
  background: #fff;
  padding: 6rem 0;
  text-align: center;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
}

.about-cta-eyebrow {
  display: none;
}

.about-cta-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(57px, 7.5vw, 105px);
  line-height: .88;
  letter-spacing: .01em;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.about-cta-heading span {
  color: var(--blue);
}

.about-cta-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(0, 0, 0, .75);
  max-width: 400px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.about-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .product-single-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-single-image {
    position: static;
  }

  .post-single-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .post-sidebar {
    position: static;
  }

  .related-grid,
  .archive-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-innovation-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* General */
  .page-hero {
    padding: 3.5rem 0 3rem;
  }

  .inner-wrap {
    padding: 0 1.5rem;
  }

  .related-grid,
  .archive-products-grid {
    grid-template-columns: 1fr;
  }

  .products-filter-tabs {
    overflow-x: auto;
    padding-bottom: .4rem;
    flex-wrap: nowrap;
  }

  .product-single-section,
  .related-products-section,
  .products-archive-section,
  .page-content-section,
  .post-single-section {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  /* About — hero */
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .about-story-right {
    order: -1;
  }

  .about-story-media {
    aspect-ratio: 16 / 9;
  }

  .about-story-heading {
    font-size: clamp(52px, 12vw, 80px);
  }

  /* About — trust bar */
  .about-trust-inner {
    gap: 1rem 2rem;
    padding: 0 1.5rem;
  }

  /* About — innovation */
  .about-innovation-section {
    padding: 3.5rem 0;
  }

  .about-innovation-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-innovation-heading {
    white-space: normal;
    font-size: clamp(48px, 10vw, 72px);
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stat {
    min-height: 140px;
  }

  /* About — original products */
  .about-products-section {
    padding: 3.5rem 0;
  }

  .about-products-grid {
    grid-template-columns: 1fr;
  }

  .about-products-heading {
    font-size: clamp(48px, 10vw, 72px);
  }

  /* About — CTA */
  .about-cta-section {
    padding: 3.5rem 0;
  }

  .about-cta-heading {
    font-size: clamp(48px, 10vw, 72px);
  }
}

@media (max-width: 480px) {

  /* Solutions */
  .solutions-agencies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-hero-eyebrow {
    font-size: .85rem;
    letter-spacing: .1em;
  }


  /* About */
  .about-trust-inner {
    gap: .6rem 1.2rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-story-heading,
  .about-innovation-heading,
  .about-products-heading,
  .about-cta-heading {
    font-size: clamp(40px, 11vw, 60px);
  }
}

/* =====================================================================
   LOCATIONS PAGE
   ===================================================================== */

/* Icon used in location detail rows */
.loc-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: .2rem;
  color: var(--blue-light);
  opacity: .65;
}

/* ── Location Cards Section ── */
.locations-cards-section {
  background: #eef4fb;
  padding: 5rem 0 6rem;
}

.locations-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Individual card */
.locations-loc-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dark);
  overflow: hidden;
}

/* Card header — dark */
.locations-loc-head {
  background: var(--dark);
  padding: 2.5rem 2.5rem 2rem;
  border-bottom: 3px solid var(--blue);
}

.locations-loc-head--studio {
  background: var(--dark);
  border-bottom-color: var(--blue-pale);
}

.locations-loc-type {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--blue-light);
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.locations-loc-type::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--blue-light);
  flex-shrink: 0;
}

.locations-loc-head--studio .locations-loc-type {
  color: var(--blue-pale);
}

.locations-loc-head--studio .locations-loc-type::before {
  background: var(--blue-pale);
}

.locations-loc-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: .92;
  letter-spacing: .01em;
  color: var(--white);
  margin: 0;
}

/* Card body — light */
.locations-loc-body {
  background: var(--white);
  padding: 2rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* Contact detail rows */
.locations-loc-detail {
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, .65);
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.locations-loc-detail a {
  color: inherit;
  transition: color var(--transition);
}

.locations-loc-detail a:hover {
  color: var(--blue);
}

/* Specs list */
.locations-loc-specs {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: .75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  border-top: 1px solid rgba(119, 152, 192, .2);
}

.locations-loc-specs li {
  font-family: var(--font-body);
  font-size: .85rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, .6);
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.locations-loc-specs li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .42rem;
}

/* Studio description paragraph */
.locations-loc-studio-desc {
  font-family: var(--font-serif);
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, .6);
  margin: .75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(119, 152, 192, .2);
}

/* Capability chips */
.locations-loc-chips {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.locations-loc-chips li {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  color: #deeaf7;
  background: var(--dark-2);
  border: 1px solid rgba(119, 152, 192, .2);
  padding: .4rem .9rem;
}

/* Stats footer — Brooklyn */
.locations-loc-stats {
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(119, 152, 192, .15);
}

.locations-loc-stat {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(119, 152, 192, .12);
}

.locations-loc-stat:last-child {
  border-right: none;
}

.locations-loc-stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1;
  color: var(--blue-light);
  letter-spacing: .01em;
}

.locations-loc-stat-label {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  margin-top: .35rem;
}

/* Responsive */
@media (max-width: 900px) {
  .locations-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .locations-loc-head,
  .locations-loc-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .locations-loc-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-loc-stat:nth-child(2) {
    border-right: none;
  }

  .locations-loc-stat:nth-child(3) {
    border-top: 1px solid rgba(119, 152, 192, .12);
    border-right: 1px solid rgba(119, 152, 192, .12);
  }

  .locations-loc-stat:nth-child(4) {
    border-top: 1px solid rgba(119, 152, 192, .12);
    border-right: none;
  }
}

/* =====================================================================
   CERTIFICATIONS PAGE
   ===================================================================== */
.page-template-page-certifications .page-hero {
  padding-bottom: 4rem;
}

.cert-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .9;
  color: var(--white);
  margin-bottom: .75rem;
  letter-spacing: .01em;
}

.cert-hero-sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, .6);
  max-width: 600px;
}

.cert-hero-body {
  font-family: var(--font-body);
  font-size: .97rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .4);
  max-width: 680px;
  margin-top: 1.25rem;
}

.cert-body-section {
  background: var(--white);
  padding: 4rem 0 5rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cert-card {
  border: 1px solid rgba(119, 152, 192, .3);
  border-radius: 6px;
  padding: 2.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cert-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(119, 152, 192, .12);
}

.cert-card-icon {
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-card-name {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--dark);
  text-transform: uppercase;
}

.cert-cta-section {
  background: #f3f7fb;
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid rgba(119, 152, 192, .15);
}

.cert-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.cert-cta-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 62px);
  line-height: .9;
  color: var(--dark);
  letter-spacing: .01em;
  margin-bottom: .25rem;
}

.cert-cta-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(0, 0, 0, .55);
  margin-bottom: 1rem;
}

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

  .cert-body-section {
    padding: 3rem 0 3.5rem;
  }

  .cert-cta-section {
    padding: 3.5rem 0;
  }
}

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

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-section {
  padding: 5rem 0 6rem;
  background: var(--white);
}

.contact-section--dark {
  background: var(--dark);
  padding: 0 0 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

/* Tabs */
.contact-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(119, 152, 192, .2);
  margin-bottom: 3rem;
  padding-top: 2.5rem;
}

.contact-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: .9rem 1.75rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  margin-bottom: -1px;
}

.contact-tab:hover {
  color: rgba(255, 255, 255, .75);
}

.contact-tab.is-active {
  color: var(--blue-light);
  border-bottom-color: var(--blue-light);
}

/* Panels */
.contact-panel {
  display: none;
}

.contact-panel.is-active {
  display: block;
}

.contact-col-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: .75rem;
}

.contact-section--dark .contact-col-heading {
  color: var(--white);
}

.contact-col-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-section--dark .contact-col-sub {
  color: rgba(255, 255, 255, .5);
}

/* Info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: .5rem;
}

.contact-info-block {
  border-left: 3px solid var(--blue);
  padding-left: 1.25rem;
}

.contact-info-heading {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}

.contact-info-block p,
.contact-info-block a {
  font-size: .95rem;
  color: #444;
  line-height: 1.7;
}

.contact-section--dark .contact-info-block p,
.contact-section--dark .contact-info-block a {
  color: rgba(255, 255, 255, .6);
}

.contact-info-block a:hover {
  color: var(--blue);
}

.contact-section--dark .contact-info-block a:hover {
  color: var(--blue-pale);
}

.contact-cert-list li {
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
}

.contact-section--dark .contact-cert-list li {
  color: rgba(255, 255, 255, .5);
}

/* =====================================================================
   SHARED FORM STYLES
   ===================================================================== */
.nyes-form-wrap {
  width: 100%;
}

.nyes-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nyes-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.nyes-form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.nyes-form-field label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
}

.nyes-form--dark .nyes-form-field label {
  color: rgba(255, 255, 255, .7);
}

.nyes-form-field label span {
  color: var(--blue);
}

.nyes-form-field input,
.nyes-form-field select,
.nyes-form-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.nyes-form--dark .nyes-form-field input,
.nyes-form--dark .nyes-form-field select,
.nyes-form--dark .nyes-form-field textarea {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(119, 152, 192, .25);
  color: var(--white);
}

.nyes-form--dark .nyes-form-field input::placeholder,
.nyes-form--dark .nyes-form-field textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.nyes-form--dark .nyes-form-field select option {
  background: var(--dark);
  color: var(--white);
}

.nyes-form-field input:focus,
.nyes-form-field select:focus,
.nyes-form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(119, 152, 192, .15);
}

.nyes-form--dark .nyes-form-field input:focus,
.nyes-form--dark .nyes-form-field select:focus,
.nyes-form--dark .nyes-form-field textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(119, 152, 192, .2);
}

.nyes-form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.nyes-form-submit {
  align-self: flex-start;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.nyes-form-submit:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.nyes-form-notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .95rem;
  margin-bottom: .5rem;
}

.nyes-form-notice--success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.nyes-form-notice--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nyes-form-row {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   GRAVITY FORMS — match nyes-form styling
   ===================================================================== */

/* Hide GF title/description (tab headings serve that purpose) */
.gform_wrapper .gform_heading {
  display: none;
}

/* Form body — flex column with same gap as .nyes-form */
.gform_wrapper .gform_body {
  width: 100%;
}

/* Field list — 2-col grid matching .nyes-form-row */
.gform_wrapper ul.gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
  row-gap: .75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Full-width fields span both columns */
.gform_wrapper .gfield--width-full,
.gform_wrapper .gfield.gfield--width-full {
  grid-column: 1 / -1;
}

/* Half-width fields stay in one column (default in 2-col grid) */
.gform_wrapper .gfield--width-half {
  grid-column: span 1;
}

/* Individual field — matches .nyes-form-field */
.gform_wrapper .gfield {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin: 0 !important;
  padding: 0 !important;
}

/* Input containers — force full width (GF constrains these by default) */
.gform_wrapper .ginput_container,
.gform_wrapper .ginput_container_text,
.gform_wrapper .ginput_container_email,
.gform_wrapper .ginput_container_phone,
.gform_wrapper .ginput_container_select,
.gform_wrapper .ginput_container_textarea {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Force inputs inside containers to fill their column */
.gform_wrapper .ginput_container input[type="text"],
.gform_wrapper .ginput_container input[type="email"],
.gform_wrapper .ginput_container input[type="tel"],
.gform_wrapper .ginput_container input[type="number"],
.gform_wrapper .ginput_container input[type="url"] {
  width: 100% !important;
  max-width: none !important;
}

/* Name field — override GF's composite layout */
.gform_wrapper .ginput_complex.ginput_container_name {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
}

.gform_wrapper .ginput_complex.ginput_container_name .name_first,
.gform_wrapper .ginput_complex.ginput_container_name .name_last,
.gform_wrapper .ginput_complex.ginput_container_name .ginput_left,
.gform_wrapper .ginput_complex.ginput_container_name .ginput_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin: 0;
  padding: 0;
  width: auto !important;
}

.gform_wrapper .ginput_complex.ginput_container_name input[type="text"] {
  width: 100% !important;
}

/* Sub-labels (First / Last) */
.gform_wrapper .ginput_complex label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .35);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
}

/* Label — matches .nyes-form-field label */
.gform_wrapper .gfield_label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
}

/* Required asterisk — matches label span */
.gform_wrapper .gfield_required,
.gform_wrapper .gfield_required_asterisk {
  color: var(--blue);
}

/* Inputs, selects, textareas */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  box-sizing: border-box;
  margin: 0;
}

/* Focus state */
.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(119, 152, 192, .15);
}

/* Textarea */
.gform_wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button — matches .nyes-form-submit */
.gform_wrapper .gform_footer {
  margin-top: 0;
  padding: 0;
}

.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"].gform_button {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  width: auto;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"].gform_button:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

/* Validation error on field */
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea {
  border-color: #fca5a5;
}

.gform_wrapper .validation_message,
.gform_wrapper .gfield_description.validation_message {
  font-size: .8rem;
  color: #991b1b;
  margin: 0;
}

/* Form-level validation error banner */
.gform_wrapper .gform_validation_errors {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .95rem;
  margin-bottom: 1rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Confirmation / success message */
.gform_confirmation_wrapper .gform_confirmation_message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .95rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

/* ── Dark context (inside .contact-section--dark) ── */
.contact-section--dark .gform_wrapper .gfield_label {
  color: rgba(255, 255, 255, .7);
}

.contact-section--dark .gform_wrapper input[type="text"],
.contact-section--dark .gform_wrapper input[type="email"],
.contact-section--dark .gform_wrapper input[type="tel"],
.contact-section--dark .gform_wrapper input[type="number"],
.contact-section--dark .gform_wrapper input[type="url"],
.contact-section--dark .gform_wrapper select,
.contact-section--dark .gform_wrapper textarea {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(119, 152, 192, .25);
  color: var(--white);
}

.contact-section--dark .gform_wrapper input[type="text"]::placeholder,
.contact-section--dark .gform_wrapper input[type="email"]::placeholder,
.contact-section--dark .gform_wrapper input[type="tel"]::placeholder,
.contact-section--dark .gform_wrapper input[type="url"]::placeholder,
.contact-section--dark .gform_wrapper textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.contact-section--dark .gform_wrapper select option {
  background: var(--dark);
  color: var(--white);
}

.contact-section--dark .gform_wrapper input[type="text"]:focus,
.contact-section--dark .gform_wrapper input[type="email"]:focus,
.contact-section--dark .gform_wrapper input[type="tel"]:focus,
.contact-section--dark .gform_wrapper input[type="number"]:focus,
.contact-section--dark .gform_wrapper input[type="url"]:focus,
.contact-section--dark .gform_wrapper select:focus,
.contact-section--dark .gform_wrapper textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(119, 152, 192, .2);
}

/* Responsive — stack to 1 column */
@media (max-width: 900px) {
  .gform_wrapper ul.gform_fields {
    grid-template-columns: 1fr;
  }

  .gform_wrapper .gfield--width-half,
  .gform_wrapper .gfield--width-full {
    grid-column: 1 / -1;
  }
}

/* =====================================================================
   SUSTAINABILITY PAGE
   ===================================================================== */

/* ── Hero: dark left column / cream right column ── */
.sustain-hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.sustain-hero-left {
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 5rem 0;
  padding-bottom: 8rem;
  padding-left: max(3rem, calc((100vw - 1400px) / 2 + 3rem));
  padding-right: 4rem;
}

.sustain-hero-left-inner {
  max-width: 600px;
}

.sustain-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .18em;
  color: var(--blue-light);
  margin-bottom: 1.2rem;
  display: block;
}

.sustain-heading {
  display: flex;
  flex-direction: column;
  line-height: .9;
  margin-bottom: .8rem;
}

.sustain-heading-white {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 9vw, 128px);
  color: var(--white);
  letter-spacing: 0;
  line-height: .88;
}

.sustain-heading-blue {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 9vw, 128px);
  color: var(--blue);
  letter-spacing: 0;
  line-height: .88;
}

.sustain-sub {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .9rem;
}

.sustain-desc {
  font-size: .92rem;
  color: rgba(255, 255, 255, .7);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sustain-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cream right panel — mirrors homepage hero-image treatment */
.sustain-hero-right {
  background: #f7f0e8;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sustain-hero-right-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 3rem;
}

.sustain-hero-leaf {
  width: 72%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(30, 80, 160, .18));
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sustain-hero {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sustain-hero {
    grid-template-columns: 1fr;
  }

  .sustain-hero-left {
    padding: 4rem 2rem 3rem;
  }

  .sustain-hero-right {
    min-height: 260px;
    padding: 2rem;
  }

  .sustain-hero-leaf { max-width: 200px; }
}

@media (max-width: 768px) {
  .insights-archive-grid {
    grid-template-columns: 1fr;
  }
}
}