/* =========================================================
   BRIGHTFISH LABEL STYLESHEET
   Organized into:
   1. Tokens + Base
   2. Shared Layout + Navigation
   3. Shared Components
   4. Home / Products / Quote styles
   5. About page
   6. Contact page
   7. Industries page
   ========================================================= */
/**
* @license
*
* Font Family: General Sans
* Designed by: Frode Helland
* URL: https://www.fontshare.com/fonts/general-sans
* © 2026 Indian Type Foundry
*
* General Sans Extralight 
* General Sans ExtralightItalic 
* General Sans Light 
* General Sans LightItalic 
* General Sans Regular 
* General Sans Italic 
* General Sans Medium 
* General Sans MediumItalic 
* General Sans Semibold 
* General Sans SemiboldItalic 
* General Sans Bold 
* General Sans BoldItalic 
* General Sans Variable (Variable font)
* General Sans VariableItalic (Variable font)

*
*/

@font-face {
  font-family: 'GeneralSans-Regular';
  src: url('../fonts/GeneralSans-Regular.woff2') format('woff2'),
       url('../fonts/GeneralSans-Regular.woff') format('woff'),
       url('../fonts/GeneralSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-Italic';
  src: url('../fonts/GeneralSans-Italic.woff2') format('woff2'),
       url('../fonts/GeneralSans-Italic.woff') format('woff'),
       url('../fonts/GeneralSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans-Medium';
  src: url('../fonts/GeneralSans-Medium.woff2') format('woff2'),
       url('../fonts/GeneralSans-Medium.woff') format('woff'),
       url('../fonts/GeneralSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-MediumItalic';
  src: url('../fonts/GeneralSans-MediumItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-MediumItalic.woff') format('woff'),
       url('../fonts/GeneralSans-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans-Semibold';
  src: url('../fonts/GeneralSans-Semibold.woff2') format('woff2'),
       url('../fonts/GeneralSans-Semibold.woff') format('woff'),
       url('../fonts/GeneralSans-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-SemiboldItalic';
  src: url('../fonts/GeneralSans-SemiboldItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-SemiboldItalic.woff') format('woff'),
       url('../fonts/GeneralSans-SemiboldItalic.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'GeneralSans-Bold';
  src: url('../fonts/GeneralSans-Bold.woff2') format('woff2'),
       url('../fonts/GeneralSans-Bold.woff') format('woff'),
       url('../fonts/GeneralSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'GeneralSans-BoldItalic';
  src: url('../fonts/GeneralSans-BoldItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-BoldItalic.woff') format('woff'),
       url('../fonts/GeneralSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 700.0;
*
* available axes:
'wght' (range from 200.0 to 700.0
*/
@font-face {
  font-family: 'GeneralSans-Variable';
  src: url('../fonts/GeneralSans-Variable.woff2') format('woff2'),
       url('../fonts/GeneralSans-Variable.woff') format('woff'),
       url('../fonts/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 700.0;
*
* available axes:
'wght' (range from 200.0 to 700.0
*/
@font-face {
  font-family: 'GeneralSans-VariableItalic';
  src: url('../fonts/GeneralSans-VariableItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-VariableItalic.woff') format('woff'),
       url('../fonts/GeneralSans-VariableItalic.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: italic;
}

:root {
  --blue: #003767;
  --blue-2: #3c94e0;
  --blue-3: #f2f9fe;
  --line: #d0dde2;
  --lime: #c1d82f;
  --lime-dark: #a3ba1b;
  --white: #ffffff;
  --footer-line: rgba(255,255,255,.15);
  --radius-xl: 2rem;
  --radius-lg: 1rem;
  --text: 'GeneralSans-Medium', "Inter", Arial, sans-serif;
  --display: "Anton", Impact, sans-serif;
  --h1-size: clamp(2.75rem, 0.294rem + 10.48vw, 6rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--text);
  color: var(--blue);
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.site-shell { min-height: 100vh; overflow-x: hidden; }
.section-spacing { padding: 5rem 2.5rem; overflow-x: hidden; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 2.5rem;
}
.brand-logo { width: 230px; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: auto;
}
.desktop-nav a:not(.pill-button) {
  font-weight: 500;
  font-size: 1.125rem;
  transition: opacity .2s ease;
}
.desktop-nav a[aria-current="page"] { opacity: 1; }
.desktop-nav a:not(.pill-button):hover { opacity: .7; }
.pill-button,
.footer-cta,
.cta-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  width: fit-content;
  border-radius: 999px;
  transition: transform .2s ease, background-color .2s ease;
  color: var(--blue);
  text-wrap: nowrap;
}
.pill-button {
  padding: .9rem 1rem;
  background: var(--lime);
  font-weight: 600;
}
.pill-button:hover,
.footer-cta:hover,
.cta-with-arrow:hover { transform: translateY(-1px); }
.mobile-menu-trigger,
.close-drawer { display: none; }
.icon-button {
  border: 0;
  background-color: transparent;
  padding: .5rem;
  cursor: pointer;
}
.mobile-menu-trigger,.close-drawer{
display: flex;
width: 2.5rem;
height: 2.5rem;
justify-content: center;
align-items: center;
height: 100%;
}
.close-drawer span {

  color: white;
height: 100%;
}
.drawer-head-brand{
  display: flex;
}
.mobile-brand{
  display: flex; flex-direction: row; gap: 1rem;
  align-items: center;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 40;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--blue);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 50;
  padding: 1rem ;
  display: flex;
  flex-direction: column;

   /* SVG background */
  background-image: url('img/brightfish-label-icon.svg');

  background-repeat: no-repeat;

  /* Position bottom-right corner */
  background-position: right -40px bottom -40px;

  /* Control size */
  background-size: 320px;

  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 50;

  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.mobile-drawer {
  background-position: right -80px bottom -80px;
  transition:
    transform .35s cubic-bezier(.4,0,.2,1),
    background-position .6s ease;
}

.drawer-open .mobile-drawer {
  background-position: right -40px bottom -40px;
}

.drawer-open .mobile-drawer { transform: translateX(0); }
.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.drawer-logo  { width: 160px; }
.drawer-nav {
  display: flex;
  flex-direction: column;

}
.drawer-nav a {
  padding: 1rem 0;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
}
.drawer-cta { margin-top: 2rem; justify-content: center; }

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.hero-copy h1,
.hero-highlight,
.tabs-copy h2,
.markets-copy h2,
.value-copy h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: .98;
  text-wrap: balance;
}
.hero-copy h1,
.hero-highlight { font-size: var(--h1-size); }
.hero-highlight {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: .1em .12em;
}
.hero-text {
  max-width: 410px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}
.hero-banner { max-width: 100%; position: relative; }
.hero-banner img {
  width: 100%;
  height: min(600px, 55vw);
  object-fit: cover;
  border-radius: 0 0 60px 60px;
  position: relative;
}
#myVideo { aspect-ratio: 16 / 9; max-width: 100%; width: 100%; display: block; }
.tabs-section,
.markets-section,
.value-section {
  display: grid;
  gap: 3rem;
}
.tabs-section { grid-template-columns: minmax(280px, 371px) 1fr; align-items: stretch; overflow-x: hidden;}
.carousel-spacing{padding: 5rem 0rem 5rem 2.5rem}
.markets-section,
.value-section { grid-template-columns: 1fr 1fr; align-items: center; }
.tabs-copy,
.markets-copy,
.value-copy { display: flex; flex-direction: column; gap: 2rem; }
.tabs-copy h2,
.markets-copy h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
.value-copy h2 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); }
.tabs-copy p,
.markets-copy p,
.value-copy p {
  margin: .75rem 0 0;
  font-size: 1.125rem;
  line-height: 1.56;
  font-weight: 500;
  text-wrap: balance;
}
.tab-list { display: flex; flex-direction: column; gap: .8rem; }
.tab-item {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  width: fit-content;
}
.tab-index {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-3);
  color: var(--blue-2);
  font-size: .875rem;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease;
}
.tab-label {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.25rem;
  opacity: .5;
  transition: opacity .2s ease;
  color: var(--blue);
}
.tab-item.active .tab-index { background: var(--blue-2); color: #fff; }
.tab-item.active .tab-label { color: var(--blue); opacity: 1; }
.cta-with-arrow,
.footer-cta {
  padding: .5rem .55rem .5rem 1.3rem;
  background: var(--lime);
  font-weight: 600;
}
.cta-with-arrow span,
.footer-cta span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.35);
  font-size: 1rem;

  /* Start rotated */
  transform: rotate(-40deg);

  /* Smooth animation */
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}


/* Rotate arrow back to 0deg on hover */
.cta-with-arrow:hover span,
.footer-cta:hover span {
  transform: rotate(0deg);
}


/* Background hover effect (unchanged behavior) */
.cta-with-arrow:hover,
.footer-cta:hover,
.pill-button:hover {
  background: var(--lime-dark);
}


/* Your existing carousel styles (unchanged) */
.card-carousel {
  display: flex;
  gap: .75rem;

  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  -ms-overflow-style: none;

  padding-right: 2rem;


    margin-left: calc(-2.5rem);
    margin-right: calc(-2.5rem);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.card-carousel::-webkit-scrollbar { height: 10px; }
.card-carousel::-webkit-scrollbar-thumb { background: #c2d8ea; border-radius: 999px; }

/* Static HTML tab panels */
.tab-panels {
  min-width: 0;
}

.tab-panel[hidden],
.tab-panel:not(.is-active) {
  display: none !important;
}

.tab-panel.is-active.is-standard-cards {
  display: flex;
}

.tab-panel.is-active.is-finish-layout {
  display: block;
}


.card-carousel.is-standard-cards {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  padding-right: 2rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.card-carousel.is-finish-layout {
  display: block;
  overflow: visible;
  padding-right: 2.5rem;
  padding-bottom: 0;
  padding-left: 0rem;
}

.finish-panel {
  width: 100%;
}

.finish-hero {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;

  margin-bottom: 1rem;
}

.finish-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

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

.finish-card {
  min-height: 4.375rem;
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #dfe4e8;
  border-radius: 1rem;
text-transform:uppercase;

flex-direction: column;
justify-content: center;
align-items: flex-start;

justify-self: stretch;
}

.finish-card span {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.product-card {
  min-width: 320px;
  width: 320px;
  flex: 0 0 auto;
  background: var(--blue-3);
  border-radius: 1rem;
  padding: .5rem .5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform .2s ease;
}
/*.product-card:hover { transform: translateY(-8px); }*/
.product-card-image {
  aspect-ratio: 1 / 1;
  border-radius: .5rem;
  overflow: hidden;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-title {
  padding: 0 .5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
  height: 56px;
    display: flex;
    align-content: stretch;
    justify-content: center;
    align-items: center;

}
.content-image img {
  width: 100%;
  border-radius: 1.125rem;
  object-fit: cover;
  aspect-ratio: 5/4;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.market-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.market-card img {
  border-radius: .5rem;
  width: 100%;
  aspect-ratio: 167 / 180;
  object-fit: cover;
}
.market-card span { font-weight: 600; font-size: 1.125rem; text-transform: capitalize; }
.value-list { width: 100%; }
.value-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem .75rem;
  border-bottom: 1px solid var(--line);
}
.value-row:first-child { border-top: 1px solid var(--line); }
.value-row img { width: 1.75rem; flex: 0 0 auto; }
.value-row span {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.3;
  font-weight: 500;
}

.value-icon{
  color:   var(--blue-2)
}
/* =========================
   SHARED INNER PAGE PATTERNS
========================= */

.about-hero-heading h1,
.about-hero-highlight,
.industries-hero-copy h1,
.industries-hero-highlight,
.contact-intro-copy h1,
.contact-form-head h2,
.contact-info-head h2,
.about-logos-copy h2,
.about-brand-story-copy h2, .about-process-head h2{
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
}

.about-process-head h2, .about-process-head p {
  color: white!important;
  text-wrap: balance;
}
.about-hero-heading h1,
.about-hero-highlight,
.industries-hero-copy h1,
.industries-hero-highlight {
  font-size: var(--h1-size);
  line-height: .98;
}

.contact-intro-copy h1,
.product-hero-copy h1,
.product-hero-highlight,
.product-hero-word,
.quote-intro h1 {
  font-size: var(--h1-size);
}

.about-logos-copy h2,
.about-brand-story-copy h2,
.about-process-head h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: .98;
}

.contact-intro-copy p,
.about-logos-copy p,
.about-brand-story-copy p,
.about-process-head p,
.contact-info-item p,
.contact-info-item a {
  color: var(--blue);
  font-weight: 500;
}

.contact-info-item p{
margin:0px
}

.about-logos-copy p,
.about-brand-story-copy p,
.about-process-head p,
.contact-intro-copy p {
  font-size: 1.125rem;
  line-height: 1.56;
}

.about-feature-scroller,
.about-process-scroller,
.about-logo-grid {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-feature-scroller::-webkit-scrollbar,
.about-process-scroller::-webkit-scrollbar,
.about-logo-grid::-webkit-scrollbar {
  display: none;
}
span.about-cta-icon{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.testimonial-section { display: flex; flex-direction: column; justify-content: center; overflow-x:hidden; align-items: center}
.testimonial-shell {
  position: relative;
  width: min(100%, 1100px);
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card {
  width: min(100%, 840px);
  background: var(--lime);
  border-radius: 2rem;
  padding: 3.75rem;
  padding: 5rem 7rem;
  text-align: left;
  position: relative;
}
.quote-mark { margin: 0rem 0rem 2rem;}
.testimonial-quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
  text-wrap: balance;

}
.testimonial-name { font-size: 1.5rem; font-weight: 600; }
.float-shot {
  position: absolute;
  border-radius: .625rem;
  object-fit: cover;
  aspect-ratio: 5/4;
  transform: translate(-50%,-50%);
}
.shot-1 { left: 0%; top: 20%; width: 139px; }
.shot-2 { left: 100%; top: 100%; width: 223px; }
.shot-3 { left: 0%; top: 100%; width: 220px; }
.shot-4 { left: 95%; top: 0%; width: 230px; }
.site-footer {
  position: relative;
  padding: 3.75rem 2.5rem 2.5rem;
  background: var(--blue);
  color: #fff;
}
.site-footer h2 { font-size: clamp(2.75rem, 6vw, 4.375rem); }
.footer-top { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-divider { height: 1px; background: rgba(33,91,149,1); margin: 2.5rem 0; }
.footer-divider.subtle { opacity: .2; margin: 0 0 1.25rem; }
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-logo-wrap {
  position: relative;
  width: 14rem;
  height: 128px;
  flex: 0 0 auto;
}
.footer-logo-wrap img { width: 100%; max-width: 100%; }
.footer-logo-label { position: absolute; right: 4px; top: 4px; width: 115px; }
.footer-columns {
  display: flex;
  gap: 5rem;
}
.footer-columns div { display: flex; flex-direction: column; gap: 1rem; max-width: 210px; }
.footer-columns h3,
.mobile-footer-accordions .footer-accordion-trigger {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.3rem;
}
.footer-columns a,
.footer-columns p,
.footer-meta span,
.footer-meta a,
.footer-accordion-panel a,
.footer-accordion-panel p {
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.5;
}
.footer-bottom { margin-top: 2rem; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-meta span { font-size: .75rem; opacity: .7; }
.footer-meta a { text-transform: uppercase; font-size: .875rem; }
.footer-badge {
  position: absolute;
  right: 2.5rem;
  top: -75px;
  width: 150px;
}
.mobile-footer-accordions { display: none; width: 100%; }
.footer-accordion-item { border-top: 1px solid var(--footer-line); }
.footer-accordion-item:last-child { border-bottom: 1px solid var(--footer-line); }
.footer-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 0;
  color: white;
  padding: 1rem 0;
  cursor: pointer;
}
.footer-accordion-trigger span { transition: transform .25s ease; }
.footer-accordion-item.open .footer-accordion-trigger span { transform: rotate(180deg); }
.footer-accordion-panel {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: max-height .3s ease;
}
.footer-accordion-item.open .footer-accordion-panel { max-height: 300px; padding-bottom: 1.25rem; }
.mobile-only { display: none; }
.product-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 5rem
;
}
.products-sticker.sticker-top-left {
top: 8%;
left: 0%;
width: 10rem;
}
.product-hero-copy h1,
.product-hero-highlight,
.product-hero-word {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: .98;
  font-weight: 400;
  font-size: var(--h1-size);
}
.product-hero-highlight-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}
.product-hero-highlight {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: .08em .14em;
}
.product-category-section { padding-top: 0; }
.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.product-feature-card {
  background: var(--lime);
  border-radius: 1rem;
  padding: .5rem .5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product-feature-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: .625rem;
}
.product-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.product-feature-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 .5rem;
}
.product-feature-copy h2 {
  margin: 0 0 .5rem;
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.product-feature-copy p { margin: 0; font-weight: 500; line-height: 1.55; }
.product-feature-list { border-top: 1px solid rgba(255,255,255,.45); }
.product-feature-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.product-feature-bullet {
  flex: 0 0 auto;
}
.product-feature-row span:last-child {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.product-feature-band-inner {
  background: var(--blue-2);
  color: #e0f0fd;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
}
.product-feature-band-inner h2 {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: .98;
}
.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
.product-icon-card { display: flex; flex-direction: column; gap: 1rem; }
.product-icon-box {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: .95rem;
  border: 1.5px solid rgba(224,240,253,.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon-box img { width: 1.75rem; }
.product-icon-card h3 {
  margin: 0 0 .5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #e0f0fd;
}
.product-icon-card p { margin: 0; color: #e0f0fd; line-height: 1.55; }
.product-market-grid .market-card img { aspect-ratio: 1 / 1; }
.product-standout-section { padding-top: 0; }
.product-standout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.product-standout-card {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.product-standout-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: .5rem;
}
.product-standout-card span { font-weight: 600; font-size: 1.05rem; }
@media (max-width: 1024px) {
   .contact-info-head {
    flex-direction: row;
  }
  .site-header { padding: 1rem; }
  .desktop-nav { display: none; }
  .mobile-menu-trigger,
  .close-drawer { display: inline-flex; }
  .brand-logo { width: 160px; }
  .section-spacing { padding: 4rem 2.5rem; }
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }
  .hero-text { max-width: none; font-size: 1.0625rem; }
  .hero-banner img {
    height: 260px;
    border-radius: 0 0 28px 28px;
  }

  .markets-section{ grid-template-columns: 1fr; gap: 5em; }
      .tabs-section,.value-section { grid-template-columns: 1fr; gap: 1.75rem; }
       .tabs-section {  padding: 4rem 2.5rem}
  .market-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card { min-width: 220px; width: 220px; }
    .product-card-title { height: auto;}
    .product-category-section { padding-top: 0; }
  .card-carousel.is-finish-layout { padding: 0rem 2.5rem; }
  .finish-hero { border-radius: 1rem; }
  .finish-hero img { height: 260px; }
  .finish-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem; }
  .finish-card { min-height: 120px; padding: 1rem; border-radius: 1rem; }
  .finish-card span { font-size: 1rem; line-height: 1.2; }
  .desktop-only { display: none; }
  .mobile-only { display: inline-flex; }
  .value-row span { font-size: 1.25rem; }
  .testimonial-section{ gap: 1rem}
  .testimonial-shell { min-height: auto; }
  .testimonial-card { padding: 2.5rem 2rem; border-radius: 1rem }
    .float-shot-container{
     display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: .5rem;
  align-items: stretch;
  }
  .float-shot { position: static; transform: none;   width: 100%; height: 100%;
 aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: .75rem;
 }

  .site-footer { padding: 3rem 1.25rem 2rem;      }
  .footer-main { flex-direction: column; gap: 1.5rem; }
  .footer-logo-wrap {
 
  width: 10rem;

}
  .desktop-footer { display: none; }
  .mobile-footer-accordions { display: block; }
  .footer-badge { width: 5.74188rem;
height: 5.74188rem;
right: 1.19563rem;
top: -2.875rem;}
  .product-hero {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
  .product-category-grid,
  .product-feature-grid,
  .product-standout-grid { grid-template-columns: 1fr; }
  .product-feature-grid{        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem .75rem;}
        .product-feature-brand{
          padding: 0px !important;
        }
  .product-feature-band-inner { padding: 2rem 1.25rem; }
  
 
}
@media (max-width: 700px) {
  .hero-banner {
    padding: 0 1rem;
  }
  #myVideo {
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;

    object-fit: cover;
    object-position: center;

    border-radius: 1rem; /* matches your rounded mobile card */
  }
  .products-sticker.sticker-top-left {
top: 8%;
left: 10%;
width: 8rem;
}
}
@media (max-width: 700px) {
    .section-spacing { padding: 3rem 1rem; }
  .market-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: .75rem;
  }
  .market-card {
    display: flex;
    flex-direction: row;
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
    align-items: center;
    gap: 0.75rem;
    align-self: stretch;

border: 1px solid #F2F2F5;
    border-radius: .75rem;
  }
    .market-card span { font-size: 1rem; flex-direction: row;}

  .market-card img {
    width: 8rem;
    max-width: 8rem;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
  }
  .market-card span { font-size: 1rem; text-transform: capitalize}
  .product-hero-highlight-row { align-items: flex-start; }
  .product-category-section { padding-top: 0; }

  .finish-hero img { height: 220px; }
  .finish-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
  .finish-card { min-height: 96px; padding: 1rem 1rem; }
  .finish-card span { font-size: .95rem; }

}

/* quote page additions built on top of styles(3).css */
.quote-page {
  background: var(--blue-3);
}

.quote-main {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 5rem;
align-items: start;
}

.quote-intro h1,
.quote-section h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: .98;
  color: var(--blue);
}

.quote-intro h1 {
  font-size: var(--h1-size);
}

.quote-intro p {
  margin: 1.5rem 0 0;
  max-width: 24rem;
  font-size: 1.125rem;
  line-height: 1.56;
  font-weight: 500;
}

.quote-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  padding: 1.875rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.quote-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.quote-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.quote-grid {
  display: grid;
  gap: 1.5rem;
}

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

.quote-subsection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue);
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.quote-field label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  font-family: var(--text);
  width: 100%;
  min-height: 3.5rem;
  padding: 0 1rem;
  border: 1px solid #e2e8f0;
  border-radius: .5rem;
  background: #fff;
  color: var(--blue);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.quote-field textarea {
  min-height: 9.5rem;
  padding: .9rem 1rem;
  resize: vertical;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,55,103,.12);
}

.quote-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}



.shape-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: .75rem;
}

.shape-option {
  width: 100%;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: .75rem;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease;
  justify-content: space-between;
}

.shape-option .material-symbols-outlined{
  font-size: 2.5rem;
    color: #215B95;
}

.shape-option img{
  width: 3rem;

}
.shape-option span {
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--blue);
}

.shape-option.is-selected {
  border: 2px solid var(--blue);
  box-shadow: 0 0 0 3px rgba(0,55,103,.08);
}

.unit-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.unit-option {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  cursor: pointer;
  position: relative;
  color: var(--blue);
}

.unit-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.unit-indicator {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid #c8d2dc;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.unit-option input:checked + .unit-indicator {
  border: 2px solid var(--blue);
}

.unit-option input:checked + .unit-indicator::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--blue);
}

.quote-submit {
  cursor: pointer;
  border: 0;
  margin-top: .5rem;
}

@media (max-width: 1024px) {
  .quote-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .quote-card {
    padding: 1.5rem 1.25rem;
  }

  .quote-grid-two {
    grid-template-columns: 1fr;
  }
      .tab-list{
    flex-direction: row;
    -ms-flex-direction: row;
    align-items: flex-start;
gap: 2rem;
align-self: stretch;
  }
}

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

@media (max-width: 375px) {
    .products-sticker.sticker-top-left {
    top: 0;
    left: 30%;
width: 7rem;
}
}


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

/* about page additions */
.about-page {
  background: #fff;
}

.about-hero {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  overflow: hidden;
}

.about-hero-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}

.about-hero-fish {
  position: absolute;
  right: 0;
  top: 3.75rem;
  width: 4.75rem;
  height: 5.125rem;
  z-index: 0;
  pointer-events: none;
}

.about-hero-fish img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 62rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}


.about-hero-highlight {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: .08em .14em;
}


.about-sticker.sticker-top-left{
    top: -10%;
    left: -4%;
    transform: translate(-50%, -50%);
}
.about-sticker.sticker-bottom-right{
      top: 80%;
    left: 110%;
    transform: translate(-50%, -50%) ;
}

.about-hero-copy p {
  max-width: 40rem;
  margin: 0;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.about-feature-scroller {
  width: 100%;
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  padding: 0 2.5rem .625rem;
  box-sizing: border-box;
  justify-content: space-between;
}

.about-feature-item {
  flex: 0 0 clamp(11.25rem, 28vw, 17.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.about-feature-icon {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--blue-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon img {
  width: 1rem;
  height: 1rem;
}

.about-feature-item h3 {
  margin: 0 0 .5rem;
  color: var(--blue);
  font-size: 1.25rem;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

.about-feature-item p {
  margin: 0;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.about-logos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-logos-copy {
  max-width: 42rem;
}

.about-logos-copy p,
.about-brand-story-copy p,
.about-process-head p {
  margin: .875rem 0 0;
}

.about-logos{
  padding: 3rem 0rem 6rem;
}
.about-logo-grid {
  /*display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;*/
  display: flex;
transform: rotate(-2.286deg);
padding: 0.90906rem 0.68181rem;
align-items: center;
gap: 0.68181rem;
background: #DCF1FF;
overflow: auto;
 scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-logo-card {
  min-height: 10rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  aspect-ratio: 1 / 1;
width:100%;}

.about-logo-card img {
  max-width: 10.5rem;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-logo-card.is-orange { background: rgba(228, 145, 75, 1); }
.about-logo-card.is-blue { background: rgba(99, 172, 233, 1); }
.about-logo-card.is-pink { background: rgba(216, 140, 173, 1); }
.about-logo-card.is-lime { background: rgba(193, 216, 47, 1); }
.about-logo-card.is-purple { background: rgba(113, 100, 183, 1); }

.about-brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-brand-story-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 1.125rem;
}

.about-brand-story-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-brand-story-copy p {
  margin-top: 0;
}

.about-brand-story-copy .cta-with-arrow {
  margin-top: .5rem;
}

.about-process {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  color: white;
  background: #187ED3;
}

.about-process-scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .625rem;

    margin-left: calc(-3rem);
    margin-right: calc(-3rem);
    padding-left: 3rem;
    padding-right: 3rem;
}

.about-process-scroller::-webkit-scrollbar {
  display: none;
}

.about-step-card,
.about-cta-card {
  flex: 0 0 auto;
  border-radius: .75rem;
  padding: 2rem 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24rem;
}

.about-step-card {
  background: var(--blue-3);
  overflow: hidden;
      gap: 1.75rem;
}
.about-step-upper{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.about-step-image {
  aspect-ratio: 1 / 1;
  width: 9rem;
}

.about-step-image img {
  max-width: 100%;
  width: 100%;
  height: 100%;

  display: flex;
justify-content: start;
align-items: center;
}

.about-step-body {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.about-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue-2);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
}

.about-step-body h3,
.about-cta-copy h3 {
  margin: 0;
  color: var(--blue);
  font-size: 2rem;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
}
.about-cta-copy h3 {
  font-size: 3rem;
  text-wrap: balance;
}

.about-step-body p,
.about-cta-copy p {
  margin: 0;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.about-cta-card {
  background: var(--lime);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
}

.about-cta-copy {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  align-self: flex-start;
  padding: .5rem .5rem .5rem 1.25rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, background-color .2s ease;
}

.about-cta-button:hover {
  transform: translateY(-1px);
  background: #0a4276;
}

.about-cta-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .about-hero {
    gap: 2rem;
  }

  .about-hero-inner {
    padding-top: 0;
  }

  .about-hero-fish {
    right: 1rem;
    top: 1rem;
    width: 3.75rem;
    height: 4rem;
  }
  .about-sticker{
    width: 4rem;
  }


.about-sticker.sticker-top-left{
    top: 0%;
    width: 4rem
}

  .about-sticker.sticker-bottom-right{
      top: 70%;
    left: 110%;
      width: 4rem
}

  .about-hero-copy p {
    max-width: 100%;
    font-size: 1.0625rem;
  }

  .about-feature-scroller {
    gap: 1.75rem;
    padding: 0 1.25rem .625rem;
        
  }

  .about-feature-item {
    flex-basis: clamp(11rem, 52vw, 15rem);
    gap: 1rem;
  }

  .about-logo-grid,
  .about-brand-story {
    grid-template-columns: 1fr;
  }

  .about-logo-card {
    min-height: 8.5rem;
  }
  .about-process{
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 700px) {


.about-sticker.sticker-top-left{
    top: 0%;
    width: 3rem
}

  .about-sticker.sticker-bottom-right{
      top: 70%;
    left: 110%;
      width: 3rem
}

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

  .about-logo-card {
    padding: 1.5rem 1rem;
    min-height: 7rem;
  }

  .about-logo-card img {
    max-width: 8.5rem;
  }

  .about-step-card,
  .about-cta-card {
    min-width: 13.75rem;

  }

  .about-step-body h3,
  .about-cta-copy h3 {
    font-size: 1.75rem;
  }
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

/* contact page additions */


.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 43rem);
  gap: 5.5rem;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  min-width: 0;
}

.contact-right {
  min-width: 0;
}

.contact-intro-copy h1 {
  font-size: var(--h1-size);
}

.contact-intro-copy p {
 
  max-width: 42rem;
}

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

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.contact-info-head {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: .875rem;
}

.contact-info-head h2 {
  font-size: 2rem;
}

.contact-info-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #1691e4;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contact-info-badge img {
  width: 1rem;
  height: 1rem;
}

.contact-map-wrap {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}

.contact-map-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 688 / 286;
  object-fit: cover;
}

.contact-form {
  gap: 1.75rem;
}

.contact-form-head h2 {
  font-size: clamp(2.75rem, 4vw, 4rem);
}

.contact-form .quote-grid {
  gap: .875rem;
}

.contact-form .quote-field {
  gap: .625rem;
}

.contact-form .quote-field input,
.contact-form .quote-field textarea {
  min-height: 3.5rem;
  border-radius: .625rem;
  background: transparent;
  color: #6f816f;
  border-color: #e5e5e5;
}

.contact-form .quote-field textarea {
  min-height: 11.5rem;
  padding-top: .875rem;
  padding-bottom: .875rem;
  resize: none;
}

.contact-form .quote-field input::placeholder,
.contact-form .quote-field textarea::placeholder {
  color: #6f816f;
}

.contact-submit {
  border: 0;
  cursor: pointer;
  margin-top: .5rem;
  align-self: flex-start;
}

.contact-submit span:last-child {
  transition: transform .2s ease;
}

.contact-submit:hover span:last-child {
  transform: rotate(45deg);
}

@media (max-width: 1200px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-right {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .contact-main {
    gap: 2.5rem;
  }

  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }


  .contact-form-head h2 {
    font-size: 3rem;
  }
    .contact-info-head {
    flex-direction: row;
            align-items: center;
  }
}

@media (max-width: 700px) {
  .contact-main {
    gap: 2.25rem;
  }

  .contact-left {
    gap: 2rem;
  }


  .contact-intro-copy p {
    font-size: 1rem;
    max-width: none;
  }

  .contact-info-head h2 {
    font-size: 1.9rem;
  }

  .contact-map-wrap img {
    aspect-ratio: 688 / 360;
  }

  .contact-form .quote-grid-two {
    grid-template-columns: 1fr;
  }

  .contact-form-head h2 {
    font-size: 3rem;
  }
 
}


/* =========================================================
   INDUSTRIES PAGE
   ========================================================= */

/* industries page additions */
.industries-page { background: #fff; }
.industries-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.industries-hero-inner {
  width: 100%;
  max-width: 1440px;
  /*padding: 0 2.5rem;*/
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.industries-hero-copy {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0 3.75rem;
  padding-top: 0rem;
  gap: 1.5rem;
  text-align: center;
}

.sticker-wrapper{position:relative;}

.sticker, .about-sticker, .products-sticker {
  position: absolute;
  pointer-events: none; /* prevents blocking clicks */
  z-index: 2;
}
.sticker-top-left {
top: 8%;
    left: 0%;
    transform: translate(-50%, -50%);

}
.sticker-bottom-right {
    top: 90%;
    left: 90%;
    transform: translate(-50%, -50%) ;
}


.industries-hero-highlight-wrap {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: .875rem 1.375rem;
}
.industries-hero-copy p {
  max-width: 41.75rem;
  margin: .5rem 0 0;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.015em;
  position: relative;
  text-wrap: balance;
  z-index: 1;
}
.industries-marquee {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin-left: -50vw;
  margin-right: -50vw;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.industries-marquee.is-visible { opacity: 1; transform: translateY(0); }
.industries-marquee-track {
  display: flex;
  gap: 2.5rem;
  padding: 1.25rem 0;
  white-space: nowrap;
  width: max-content;
  animation: industries-marquee-scroll 28s linear infinite;
}
.industries-marquee-track:hover { animation-play-state: paused; }
.industries-marquee-group {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.industries-marquee-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.industries-marquee-label {
  color: var(--blue);
  font-size: 3.1875rem;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  text-align: center;
  white-space: nowrap;
}
.industries-marquee-icon-circle {
  width: 3.75rem;
  height: 3.75rem;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.industries-marquee-icon {
  z-index: 1;
  object-fit: contain;
  font-size: 2rem!important;
}


.industries-grid-section { width: 100%; }
.industries-grid-wrap {
  width: 100%;
  max-width: 1440px;
  padding: 0 2.5rem 5rem;
  box-sizing: border-box;
  margin: 0 auto;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-content: center;
}
.industry-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem .5rem 1.5rem;
  gap: 1.5rem;
  border: 1px solid rgba(242, 242, 245, 1);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}
.industry-card-image {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  border-radius: .5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.industry-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
}
.industry-card-body {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}
.industry-card-body h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.5rem;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}
.industry-card-body p {
  margin: 0;
  color: var(--blue);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.56;
}

@keyframes industries-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (min-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1023px) {
  /*.industries-hero-inner { padding: 0 1.25rem; }*/
  .industries-hero-copy { padding: 0rem 0rem 3rem;}
  .industries-hero-highlight-wrap {
    padding: .625rem .875rem;
  }
  .sticker-top-left {
  width: 6rem; /* adjust to match asset */

}
.sticker-bottom-right {
    top: 90%;
    left: 90%;
    width: 3rem
}
  .industries-hero-copy p {
    max-width: 100%;
    font-size: 1.0625rem;
    line-height: 1.45;
    margin-top: 1rem;
  }

  .industries-marquee-track,
  .industries-marquee-group { gap: 1.5rem; }
  .industries-marquee-item { gap: .875rem; }
  .industries-marquee-label { font-size: 2.125rem; line-height: 1; }
  .industries-marquee-icon-circle { width: 3rem; height: 3rem; }
  .industries-marquee-icon { font-size: 1.5rem!important}
  .industries-grid-wrap { padding: 0 1.25rem 3.75rem; }
  .industries-grid { grid-template-columns: 1fr; }
   .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-card-body h2 { font-size: 1.75rem; line-height: 1; }
  .industry-card-body p { font-size: 1rem; line-height: 1.5; }
}
@media (max-width: 700px) {
      .sticker-top-left {
  width: 5.5rem; /* adjust to match asset */

}
.sticker-bottom-right {
    top: 90%;
    right: 0%;
    width: 2rem
}
     .industries-grid { grid-template-columns: repeat(1, 1fr);}
    .tabs-copy p, .markets-copy p, .value-copy p {font-size: 1rem}
      .site-header a.pill-button.mobile-only, .mobile-drawer a.pill-button.mobile-only{
    font-size:.875rem;
    padding: .9rem 1rem;
            text-wrap: nowrap;
             height: 3rem;


  }
  .site-header a.pill-button, .mobile-drawer .pill-button{
 font-size:.875rem;
 height: 3rem;
  }
}


@media (max-width: 375px) {
  .tab-list { display: flex; flex-direction: column; gap: .8rem; }


}



/* =========================================================
   MOBILE HEADER + DRAWER ALIGNMENT FIX
   ========================================================= */

.mobile-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
}

.mobile-menu-trigger,
.close-drawer {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0;
}

.mobile-menu-trigger .material-symbols-outlined,
.close-drawer .material-symbols-outlined {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.mobile-menu-trigger .material-symbols-outlined {
  color: var(--blue);
}

.close-drawer .material-symbols-outlined {
  color: var(--white);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.brand-link,
.drawer-head .mobile-brand {
  display: flex;
  align-items: center;
}

.brand-logo,
.drawer-logo {
  width: 160px;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .mobile-menu-trigger,
  .close-drawer {
    display: inline-flex;
  }

  .brand-logo,
  .drawer-logo {
    width: 160px;
  }
}


/* request a quote selected shape enhancement */
.shape-option.is-selected .material-symbols-outlined,
.shape-option.is-selected img {
  transform: scale(1.04);
}

.shape-option .material-symbols-outlined,
.shape-option img {
  transition: transform .2s ease;
}


.grid-fluid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}



.grid-4-to-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.grid-4-to-2 > * {
  height: 100%;
}

/* Break to 2x2 layout */
@media (max-width: 1024px) {
  .grid-4-to-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================
   FORM SUCCESS STATES
========================= */

.form-success-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem 0 0;
}

.form-success-message[hidden] {
  display: none !important;
}

.form-success-message h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: .98;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.form-success-message p {
  margin: 0;
  color: var(--blue);
  font-size: 1.125rem;
  line-height: 1.56;
  font-weight: 500;
  max-width: 34rem;
}

.form-success-badge {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-success-badge .material-symbols-outlined {
  color: var(--blue);
  font-size: 2rem;
}

.contact-right.is-success .contact-form,
.quote-card.is-success .quote-form {
  display: none;
}

.contact-right.is-success,
.quote-card.is-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 24rem;
}

.quote-card.is-success {
  padding: 1.875rem;
}



/* =========================
   FORM SUCCESS STATES
========================= */

/* Placeholder color */
.quote-field input::placeholder,
.quote-field textarea::placeholder {
  color: rgba(0,55,103,.45);
}

/* Default text color */
.quote-field input,
.quote-field textarea,
.quote-field select {
  color: var(--blue);
  font-size: 1rem;
}

/* Focus state */
.quote-field input:focus,
.quote-field textarea:focus,
.quote-field select:focus {
  color: var(--blue);

  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,55,103,.12);
}

/* Filled state */
.quote-field input:not(:placeholder-shown),
.quote-field textarea:not(:placeholder-shown) {
  color: var(--blue);
}
/* =========================================================
   FORM CLEANUP + VALIDATION STATES
   ========================================================= */

:root {
  --form-bg: #ffffff;
  --form-border: #dbe5ec;
  --form-border-hover: #b9cad8;
  --form-text: var(--blue);
  --form-placeholder: rgba(0, 55, 103, .45);
  --form-focus-ring: rgba(0, 55, 103, .12);
  --form-error: #c83232;
  --form-error-bg: #fff5f5;
  --form-error-ring: rgba(200, 50, 50, .14);
}

.quote-form,
.contact-form {
  width: 100%;
}

.quote-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.quote-field label,
.form-label {
  color: var(--blue);
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2;
}

.quote-field input,
.quote-field select,
.quote-field textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 3.125rem;
  padding: 0 1rem;
  border: 1px solid var(--form-border);
  border-radius: .625rem;
  background-color: var(--form-bg);
  color: var(--form-text);
  font-family: var(--text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.quote-field textarea,
.contact-form textarea,
.quote-form textarea {
  min-height: 9.5rem;
  padding-top: .875rem;
  padding-bottom: .875rem;
  resize: vertical;
}

.quote-field select,
.contact-form select,
.quote-form select {
  appearance: none;
  padding-right: 2.75rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--form-placeholder);
}

.quote-field input:hover,
.quote-field select:hover,
.quote-field textarea:hover,
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
  border-color: var(--form-border-hover);
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--form-focus-ring);
  color: var(--blue);
}

.quote-field input:not(:placeholder-shown),
.quote-field textarea:not(:placeholder-shown),
.contact-form input:not(:placeholder-shown),
.contact-form textarea:not(:placeholder-shown),
.quote-form input:not(:placeholder-shown),
.quote-form textarea:not(:placeholder-shown) {
  color: var(--blue);
}

.quote-field.has-error input,
.quote-field.has-error select,
.quote-field.has-error textarea {
  border-color: var(--form-error);
  background-color: var(--form-error-bg);
  box-shadow: 0 0 0 3px var(--form-error-ring);
}

.quote-field.has-error label {
  color: var(--form-error);
}

.form-error-message {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin: .125rem 0 0;
  color: var(--form-error);
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-error-message::before {
  content: "!";
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--form-error);
  color: #fff;
  font-size: .7rem;
  line-height: 1;
}

.form-error-summary {
  display: none;
  padding: .875rem 1rem;
  border: 1px solid var(--form-error);
  border-radius: .75rem;
  background: var(--form-error-bg);
  color: var(--form-error);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-error-summary.is-visible {
  display: block;
}

@media (max-width: 700px) {
  .quote-field input,
  .quote-field select,
  .quote-field textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 1rem;
  }
}


/* =========================
   STRONGER ALL-FIELD ERROR STATES
========================= */

.quote-field.has-error input,
.quote-field.has-error select,
.quote-field.has-error textarea {
  border-color: var(--form-error) !important;
  background-color: var(--form-error-bg) !important;
  color: var(--form-error) !important;
  box-shadow: 0 0 0 3px var(--form-error-ring) !important;
}

.quote-field.has-error input::placeholder,
.quote-field.has-error textarea::placeholder {
  color: rgba(200, 50, 50, .58);
}

.quote-field.has-error label {
  color: var(--form-error) !important;
}

.form-error-summary.is-visible {
  display: block;
  margin-bottom: .5rem;
}

.form-error-summary ul {
  margin: .5rem 0 0;
  padding-left: 1.25rem;
}

.form-error-summary li {
  margin: .2rem 0;
}


/* =========================
   FRIENDLY REQUIRED FIELD STATES
========================= */

.quote-field.is-required label::after {
  content: " *";
  color: var(--form-error);
}

.quote-field.is-required.is-empty input,
.quote-field.is-required.is-empty select,
.quote-field.is-required.is-empty textarea {
  border-color: var(--form-error);
}

.form-error-summary.is-visible {
  border-color: var(--form-error);
  background: var(--form-error-bg);
}

.form-error-summary strong {
  display: block;
  margin-bottom: .25rem;
}

.form-error-summary .error-summary-note {
  display: block;
  font-weight: 600;
}

.form-error-summary ul {
  margin-top: .65rem;
}


/* =========================
   FINAL FORM VALIDATION BEHAVIOR
   Error styles only appear after submit attempt.
========================= */

/* Do not highlight empty required fields on initial page load */
.quote-field.is-required.is-empty input,
.quote-field.is-required.is-empty select,
.quote-field.is-required.is-empty textarea {
  border-color: var(--form-border);
  background-color: var(--form-bg);
  color: var(--form-text);
  box-shadow: none;
}

/* Only show red states after JS adds .form-has-errors to the form */
.form-has-errors .quote-field.has-error input,
.form-has-errors .quote-field.has-error select,
.form-has-errors .quote-field.has-error textarea {
  border-color: var(--form-error) !important;
  background-color: var(--form-error-bg) !important;
  color: var(--form-error) !important;
  box-shadow: 0 0 0 3px var(--form-error-ring) !important;
}

.form-has-errors .quote-field.has-error input::placeholder,
.form-has-errors .quote-field.has-error textarea::placeholder {
  color: rgba(200, 50, 50, .58);
}

.form-has-errors .quote-field.has-error label {
  color: var(--form-error) !important;
}

.form-has-errors .form-error-message {
  display: flex;
}

/* Keep field-level messages hidden before submit */
.form-error-message {
  display: none;
}

/* Summary only appears after submit attempt */
.form-error-summary {
  display: none;
}

.form-error-summary.is-visible {
  display: block;
}


/* =========================
   COFFEECUP DYNAMIC IFRAME
========================= */

.coffee-form-frame-wrap {
  width: 100%;
  min-width: 0;
}

.coffee-form-iframe {
  display: block;
  width: 100%;
  min-height: 850px;
  border: 0;
  overflow: hidden;
  background: transparent;
}

#quoteCoffeeForm {
  min-height: 1300px;
}

#contactCoffeeForm {
  min-height: 850px;
}

@media (max-width: 700px) {
  .coffee-form-iframe {
    min-height: 1000px;
  }

  #quoteCoffeeForm {
    min-height: 1500px;
  }
}
