  :root {
    --color-bark: #003a91;
    --color-bark-light: #0047b3;
    --color-oak: #005adf;
    --color-oak-light: #7facef;
    --color-cream: #f0f4ff;
    --color-linen: #e8f0ff;
    --color-sand: #d0ddf0;
    --color-charcoal: #1a1a2e;
    --color-slate: #4a4a6a;
    --color-white: #FFFFFF;
    --color-accent: #005adf;
    --color-green: #003a91;
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 4px;
    --max-width: 1280px;
    --transition: 0.3s ease;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  /* ── TOP BAR ── */
  .top-bar {
    background: var(--color-bark);
    color: var(--color-sand);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  .top-bar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .top-bar__contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  .top-bar__contact a {
    color: var(--color-sand);
    transition: color var(--transition);
  }
  .top-bar__contact a:hover { color: var(--color-oak-light); }
  .top-bar__contact svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }
  .top-bar__social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }
  .top-bar__social a {
    color: var(--color-sand);
    transition: color var(--transition);
    display: flex;
  }
  .top-bar__social a:hover { color: var(--color-oak-light); }
  .top-bar__social svg { width: 16px; height: 16px; }

  /* ── HEADER ── */
  .header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-sand);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .header__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .header__logo-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .header__logo-icon svg { width: 28px; height: 28px; }
  .header__logo-img {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
  }
  .header__logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-bark);
    line-height: 1.1;
  }
  .header__logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-slate);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .header__nav { display: flex; align-items: center; gap: 0; }
  .header__nav a {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-charcoal);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
  }
  .header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-oak);
    transition: width var(--transition);
  }
  .header__nav a:hover { color: var(--color-oak); }
  .header__nav a:hover::after { width: 60%; }
  .header__nav a.active { color: var(--color-oak); }
  .header__nav a.active::after { width: 60%; }

  .header__cta {
    background: var(--color-oak);
    color: var(--color-white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius);
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    transition: background var(--transition) !important;
  }
  .header__cta::after { display: none !important; }
  .header__cta:hover { background: var(--color-bark) !important; color: var(--color-white) !important; }

  /* Mobile toggle */
  .header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  .header__toggle svg { width: 28px; height: 28px; color: var(--color-bark); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bark);
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(0,58,145,0.92) 0%, rgba(0,58,145,0.6) 50%, rgba(0,58,145,0.3) 100%),
      var(--hero-bg) center/cover no-repeat;
  }
  .hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
  }
  .hero__badge {
    display: inline-block;
    background: rgba(0,90,223,0.15);
    border: 1px solid rgba(0,90,223,0.3);
    color: var(--color-oak-light);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
  }
  .hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--color-white);
    line-height: 1.15;
    max-width: 700px;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.6s ease 0.1s both;
  }
  .hero__sub {
    font-size: 1.1rem;
    color: var(--color-sand);
    max-width: 560px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
  }
  .hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
  }
  .btn--primary {
    background: var(--color-oak);
    color: var(--color-white);
    border-color: var(--color-oak);
  }
  .btn--primary:hover {
    background: var(--color-oak-light);
    border-color: var(--color-oak-light);
  }
  .btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
  }
  .btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
  }
  .btn svg { width: 16px; height: 16px; }

  /* ── SECTION UTILITIES ── */
  .section {
    padding: 5rem 2rem;
  }
  .section--alt { background: var(--color-cream); }
  .section--dark { background: var(--color-bark); color: var(--color-white); }
  .section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .section__header {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-oak);
    margin-bottom: 0.75rem;
  }
  .section--dark .section__label { color: var(--color-oak-light); }
  .section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-bark);
    margin-bottom: 0.75rem;
  }
  .section--dark .section__title { color: var(--color-white); }
  .section__desc {
    font-size: 1.05rem;
    color: var(--color-slate);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 300;
  }
  .section--dark .section__desc { color: var(--color-sand); }

  /* ── ABOUT / WELCOME ── */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .about__image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .about__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }
  .about__image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--color-bark);
    color: var(--color-oak-light);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
  }
  .about__content {}
  .about__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-oak);
    margin-bottom: 0.75rem;
  }
  .about__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--color-bark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
  }
  .about__text {
    color: var(--color-slate);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  .about__text strong {
    font-weight: 600;
    color: var(--color-charcoal);
  }
  .about__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-sand);
  }
  .about__stat {}
  .about__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-oak);
    line-height: 1;
  }
  .about__stat-label {
    font-size: 0.8rem;
    color: var(--color-slate);
    margin-top: 0.25rem;
    font-weight: 400;
  }

  /* ── PRODUCT CATEGORIES GRID ── */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    group: true;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .product-card__image {
    height: 200px;
    overflow: hidden;
    background: var(--color-linen);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-card__image img {
    transform: scale(1.06);
  }
  .product-card__body {
    padding: 1.25rem;
    text-align: center;
  }
  .product-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-bark);
    margin-bottom: 0.35rem;
  }
  .product-card__desc {
    font-size: 0.82rem;
    color: var(--color-slate);
    font-weight: 300;
  }
  .product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,58,145,0.85) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
  }
  .product-card:hover .product-card__overlay { opacity: 1; }
  .product-card__overlay-text {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .product-card__overlay-text svg { width: 14px; height: 14px; }

  /* ── FEATURES / SERVICES STRIP ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .feature {
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .feature__icon {
    width: 56px;
    height: 56px;
    background: rgba(0,90,223,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
  }
  .feature__icon svg { width: 26px; height: 26px; color: var(--color-oak); }
  .section--dark .feature__icon { background: rgba(0,90,223,0.15); }
  .section--dark .feature__icon svg { color: var(--color-oak-light); }
  .feature__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }
  .feature__text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-slate);
  }
  .section--dark .feature__text { color: var(--color-sand); }

  /* ── STORY / SPLIT SECTION ── */
  .story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .story--reverse { direction: rtl; }
  .story--reverse > * { direction: ltr; }
  .story__image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .story__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .story__content {}
  .story__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-oak);
    margin-bottom: 0.75rem;
  }
  .story__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-bark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
  }
  .story__text {
    color: var(--color-slate);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  /* ── WPMA BANNER ── */
  .membership-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-linen);
    border-radius: var(--radius);
    max-width: 700px;
    margin: 3rem auto 0;
    border: 1px solid var(--color-sand);
  }
  .membership-banner__logo {
    width: 100px;
    height: auto;
    flex-shrink: 0;
  }
  .membership-banner__text {
    font-size: 0.95rem;
    color: var(--color-slate);
    font-weight: 300;
  }
  .membership-banner__text strong {
    font-weight: 600;
    color: var(--color-charcoal);
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    background:
      linear-gradient(135deg, rgba(0,58,145,0.93), rgba(0,70,179,0.9)),
      url('https://images.unsplash.com/photo-1504148455328-c376907d081c?w=1200&q=80') center/cover no-repeat;
    padding: 5rem 2rem;
    text-align: center;
  }
  .cta-banner__inner {
    max-width: 700px;
    margin: 0 auto;
  }
  .cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: 1rem;
  }
  .cta-banner__text {
    color: var(--color-sand);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.7;
  }
  .cta-banner__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-banner .btn--primary {
    background: var(--color-oak-light);
    border-color: var(--color-oak-light);
  }
  .cta-banner .btn--primary:hover {
    background: var(--color-white);
    color: var(--color-bark);
    border-color: var(--color-white);
  }

  /* ── FOOTER ── */
  .footer {
    background: var(--color-charcoal);
    color: var(--color-sand);
    padding: 4rem 2rem 2rem;
  }
  .footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__brand {}
  .footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
  }
  .footer__brand-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
  }
  .footer__brand-text {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: #999;
    margin-bottom: 1.5rem;
  }
  .footer__brand-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-oak-light);
    margin-bottom: 0.35rem;
  }
  .footer__brand-phone svg { width: 18px; height: 18px; }
  .footer__brand-phonesub {
    font-size: 0.8rem;
    color: #888;
    font-weight: 300;
  }
  .footer__col {}
  .footer__col-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.25rem;
  }
  .footer__col a {
    display: block;
    font-size: 0.88rem;
    color: #999;
    font-weight: 300;
    padding: 0.3rem 0;
    transition: color var(--transition);
  }
  .footer__col a:hover { color: var(--color-oak-light); }
  .footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer__copy {
    font-size: 0.82rem;
    color: #777;
    font-weight: 300;
  }
  .footer__bottom-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer__bottom-links a {
    font-size: 0.82rem;
    color: #777;
    font-weight: 300;
    transition: color var(--transition);
  }
  .footer__bottom-links a:hover { color: var(--color-oak-light); }

  /* ── CONTACT FORM ── */
  .contact-input {
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-sand);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--color-white);
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
  }
  .contact-input:focus { border-color: var(--color-oak); }
  textarea.contact-input { resize: vertical; }

  /* ── ANIMATIONS ── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }

  @media (max-width: 768px) {
    .header__nav { display: none; }
    .header__toggle { display: block; }
    .header__nav.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      background: var(--color-white);
      box-shadow: var(--shadow-lg);
      padding: 1rem 0;
      z-index: 99;
    }
    .header__nav.open a {
      padding: 0.75rem 2rem;
      border-bottom: 1px solid var(--color-sand);
    }
    .header__nav.open a::after { display: none; }
    .header__cta { border-radius: 0 !important; margin: 0 !important; }

    .hero { min-height: 400px; }
    .hero__inner { padding: 3rem 1.5rem; }

    .about, .story, .story--reverse {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .story--reverse { direction: ltr; }

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

    .section { padding: 3rem 1.5rem; }

    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

    .top-bar__inner { justify-content: center; }
    .top-bar__contact { font-size: 0.78rem; }

    .membership-banner { flex-direction: column; text-align: center; }
  }

  @media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .about__stats { flex-direction: column; gap: 1rem; }
    .hero__actions { flex-direction: column; }
    .btn { justify-content: center; }
  }

  /* ── CUSTOM PAGE STYLES ── */
  .page-hero {
    background: linear-gradient(135deg, #003a91 0%, #0047b3 100%);
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 5rem 2rem 4rem;
    min-height: 280px;
    display: flex;
    align-items: center;
  }
  .page-hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
  }
  .page-hero__breadcrumb {
    font-size: 0.85rem;
    color: var(--color-oak-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.03em;
  }
  .page-hero__breadcrumb a {
    color: var(--color-oak-light);
    transition: color 0.3s;
  }
  .page-hero__breadcrumb a:hover { color: var(--color-white); }
  .page-hero__breadcrumb span:not(:last-child) { opacity: 0.5; }
  .page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
    line-height: 1.15;
  }
  .page-hero__sub {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 720px;
    color: var(--color-sand);
    line-height: 1.6;
  }
  .page-content {
    background: var(--color-white);
  }
  .page-article {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-slate);
  }
  .page-article h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-bark);
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
  }
  .page-article h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-bark);
    margin: 2rem 0 0.75rem;
  }
  .page-article p { margin-bottom: 1.25rem; }
  .page-article ul, .page-article ol { margin: 0 0 1.25rem 1.5rem; }
  .page-article li { margin-bottom: 0.5rem; }
  .page-article a {
    color: var(--color-oak);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .page-article a:hover { color: var(--color-bark); }
  .page-article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
  }
  .page-article blockquote {
    border-left: 4px solid var(--color-oak);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--color-charcoal);
  }
  .page-article strong { color: var(--color-charcoal); }
