
  /* ===== ASTRA THEME OVERRIDES ===== */
  /* These use !important to ensure Tevita styles override Astra defaults */

  body.tevita-home,
  body.tevita-home * {
    box-sizing: border-box;
  }

  /* Reset Astra's heading styles */
  body.tevita-home h1,
  body.tevita-home h2,
  body.tevita-home h3,
  body.tevita-home h4 {
    font-family: var(--font-display) !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
  }

  body.tevita-home p,
  body.tevita-home a,
  body.tevita-home li,
  body.tevita-home span,
  body.tevita-home label,
  body.tevita-home input,
  body.tevita-home select,
  body.tevita-home textarea,
  body.tevita-home button {
    font-family: var(--font-body) !important;
  }

  /* Force hero title colours over Astra */
  body.tevita-home .hero-cinematic-title {
    font-family: var(--font-display) !important;
    color: var(--cream) !important;
    font-weight: 300 !important;
    line-height: 1.08 !important;
  }
  body.tevita-home .hero-cinematic-title em {
    color: var(--cream-dark) !important;
    font-style: italic !important;
  }

  /* Force section titles */
  body.tevita-home .section-title {
    font-family: var(--font-display) !important;
    color: var(--green-deep) !important;
    font-weight: 300 !important;
  }
  body.tevita-home .section-title-light {
    color: var(--cream) !important;
  }

  /* Force service card headings */
  body.tevita-home .service-title {
    font-family: var(--font-display) !important;
    color: var(--cream) !important;
    font-weight: 400 !important;
  }

  /* Force product names */
  body.tevita-home .product-name {
    font-family: var(--font-display) !important;
    color: var(--green-deep) !important;
    font-weight: 400 !important;
  }

  /* Force stat numbers */
  body.tevita-home .stat-number {
    font-family: var(--font-display) !important;
    color: var(--cream) !important;
  }
  body.tevita-home .sustainability-stat-number {
    font-family: var(--font-display) !important;
    color: var(--green-deep) !important;
  }

  /* Force process step titles */
  body.tevita-home .process-step-title {
    font-family: var(--font-display) !important;
    color: var(--green-deep) !important;
  }
  body.tevita-home .process-number {
    font-family: var(--font-display) !important;
    color: var(--cream) !important;
  }

  /* Force icon labels */
  body.tevita-home .icon-label {
    font-family: var(--font-display) !important;
    color: var(--green-deep) !important;
  }

  /* Force ocean banner text */
  body.tevita-home .ocean-banner-text h3 {
    font-family: var(--font-display) !important;
    color: var(--cream) !important;
    font-weight: 300 !important;
    font-style: italic !important;
  }

  /* Force footer heading colours */
  body.tevita-home .footer-col h4 {
    font-family: var(--font-body) !important;
    color: var(--cream) !important;
  }

  /* Force body background */
  body.tevita-home {
    background: var(--cream) !important;
    font-family: var(--font-body) !important;
    color: var(--green-deep) !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* Force link colours in nav */
  body.tevita-home .nav-links a {
    color: var(--cream-light) !important;
  }
  body.tevita-home nav.scrolled .nav-links a {
    color: var(--cream) !important;
  }

  /* Remove Astra's content wrappers */
  body.tevita-home .site-content,
  body.tevita-home .ast-container,
  body.tevita-home #content,
  body.tevita-home #primary,
  body.tevita-home .entry-content,
  body.tevita-home .page-content,
  body.tevita-home main,
  body.tevita-home article {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Hide Astra header/footer on homepage */
  body.tevita-home .site-header,
  body.tevita-home .site-footer,
  body.tevita-home .ast-above-header,
  body.tevita-home .ast-below-header,
  body.tevita-home .ast-mobile-header-wrap,
  body.tevita-home #ast-desktop-header,
  body.tevita-home #masthead,
  body.tevita-home #colophon,
  body.tevita-home .entry-header,
  body.tevita-home .entry-footer,
  body.tevita-home .ast-breadcrumbs-wrapper,
  body.tevita-home .ast-single-post-title,
  body.tevita-home .page-header {
    display: none !important;
  }


  :root {
    --green-deep: #1E3B2C;
    --green-mid: #2A5040;
    --green-light: #3A6B55;
    --green-accent: #4A7D65;
    --cream: #EDE5D5;
    --cream-light: #F5F0E6;
    --cream-dark: #D9CEBC;
    --cream-muted: #B8AE9E;
    --white: #FDFBF7;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--green-deep);
    overflow-x: hidden;
    line-height: 1.7;
  }

  /* ===== NAVIGATION ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 2.5rem;
    background: transparent;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(30, 59, 44, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.6rem 2.5rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  }
  nav.scrolled .nav-links a { color: var(--cream); }
  nav.scrolled .nav-links a:hover { color: var(--cream-dark); }
  nav.scrolled .nav-links a::after { background: var(--cream-dark); }
  nav.scrolled .nav-contact-btn { border-color: var(--cream-dark) !important; }
  nav.scrolled .nav-contact-btn:hover { background: var(--cream) !important; color: var(--green-deep) !important; }
  .nav-logo-img { height: 55px; width: auto; transition: height 0.4s ease; }
  nav.scrolled .nav-logo-img { height: 45px; }
  .nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
  .nav-links a {
    font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-light);
    text-decoration: none; position: relative; transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--cream); transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-links a:hover::after { width: 100%; }
  .nav-contact-btn { border: 1px solid var(--cream-dark) !important; padding: 0.5rem 1.1rem !important; transition: all 0.3s ease !important; }
  .nav-contact-btn:hover { background: var(--cream) !important; color: var(--green-deep) !important; }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--cream-light); transition: all 0.3s; }
  nav.scrolled .nav-toggle span { background: var(--cream); }

  
  /* ===== ASTRA LINK COLOR FIXES ===== */
  /* Astra forces blue on all links - override everything */
  
  body.tevita-home a,
  body.tevita-home a:visited,
  body.tevita-home a:hover,
  body.tevita-home a:active,
  body.tevita-home a:focus {
    color: inherit !important;
    text-decoration: none !important;
  }

  /* Sub-nav links */
  body.tevita-home .sub-nav-card,
  body.tevita-home .sub-nav-card:visited,
  body.tevita-home .sub-nav-title,
  body.tevita-home .sub-nav-arrow {
    color: var(--cream) !important;
  }

  /* Nav links */
  body.tevita-home .nav-links a,
  body.tevita-home .nav-links a:visited {
    color: var(--cream-light) !important;
  }
  body.tevita-home nav.scrolled .nav-links a,
  body.tevita-home nav.scrolled .nav-links a:visited {
    color: var(--cream) !important;
  }

  /* Button links */
  body.tevita-home .btn-cream,
  body.tevita-home .btn-cream:visited {
    color: var(--green-deep) !important;
  }
  body.tevita-home .btn-outline-light,
  body.tevita-home .btn-outline-light:visited {
    color: var(--cream) !important;
  }
  body.tevita-home .btn-green,
  body.tevita-home .btn-green:visited {
    color: var(--cream) !important;
  }
  body.tevita-home .btn-outline-green,
  body.tevita-home .btn-outline-green:visited {
    color: var(--green-deep) !important;
  }
  body.tevita-home .btn-small-green,
  body.tevita-home .btn-small-green:visited {
    color: var(--cream) !important;
  }
  body.tevita-home .btn-small-outline,
  body.tevita-home .btn-small-outline:visited {
    color: var(--green-deep) !important;
  }

  /* Product links */
  body.tevita-home .product-link,
  body.tevita-home .product-link:visited {
    color: var(--green-deep) !important;
  }

  /* Footer links */
  body.tevita-home .footer-col a,
  body.tevita-home .footer-col a:visited {
    color: var(--cream-muted) !important;
  }
  body.tevita-home .footer-col a:hover {
    color: var(--cream) !important;
  }
  body.tevita-home .footer-social a,
  body.tevita-home .footer-social a:visited {
    color: inherit !important;
  }

  /* Contact detail links */
  body.tevita-home .contact-detail-text a,
  body.tevita-home .contact-detail-text a:visited {
    color: var(--green-deep) !important;
    border-bottom: 1px solid rgba(30,59,44,0.2) !important;
  }

  /* CTA section links */
  body.tevita-home .cta-banner a.btn-cream,
  body.tevita-home .cta-banner a.btn-cream:visited {
    color: var(--green-deep) !important;
  }
  body.tevita-home .cta-banner a.btn-outline-light,
  body.tevita-home .cta-banner a.btn-outline-light:visited {
    color: var(--cream) !important;
  }

  /* Force hero to be full viewport height */
  body.tevita-home .hero-cinematic {
    height: 100vh !important;
    min-height: 600px !important;
  }

  /* Force logo visibility */
  body.tevita-home .hero-cinematic-logo {
    width: 270px !important;
    opacity: 0.9 !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body.tevita-home .hero-cinematic-top {
    text-align: center !important;
  }


  /* ===== REMAINING BLUE TEXT FIXES ===== */
  
  /* Contact section email/phone links - these inherit Astra blue */
  body.tevita-home .contact-detail-text a,
  body.tevita-home .contact-detail-text a:link,
  body.tevita-home .contact-detail-text a:visited,
  body.tevita-home .contact-detail-text a:hover,
  body.tevita-home .contact-detail-text a:active {
    color: var(--green-deep) !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(30,59,44,0.2) !important;
  }

  /* Send Enquiry button */
  body.tevita-home .contact-form .btn-green,
  body.tevita-home .contact-form button,
  body.tevita-home .contact-form button.btn,
  body.tevita-home button.btn-green {
    background: var(--green-deep) !important;
    color: var(--cream) !important;
    border: none !important;
  }
  body.tevita-home .contact-form .btn-green:hover,
  body.tevita-home .contact-form button:hover {
    background: var(--green-mid) !important;
  }

  /* Any remaining anchor tags that Astra might colour */
  body.tevita-home a[href^="mailto"],
  body.tevita-home a[href^="mailto"]:visited,
  body.tevita-home a[href^="tel"],
  body.tevita-home a[href^="tel"]:visited {
    color: inherit !important;
    text-decoration: none !important;
  }

  /* Footer email link */
  body.tevita-home footer a[href^="mailto"],
  body.tevita-home footer a[href^="tel"] {
    color: var(--cream-muted) !important;
  }
  body.tevita-home footer a[href^="mailto"]:hover,
  body.tevita-home footer a[href^="tel"]:hover {
    color: var(--cream) !important;
  }


  /* Show full image without cropping */
  body.tevita-home .sustainability-image img {
    object-fit: contain !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
  }
  body.tevita-home .sustainability-image {
    background: var(--cream-light) !important;
  }

/* ===== HERO — CINEMATIC ===== */
  .hero-cinematic {
    position: relative; height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    overflow: hidden; background: var(--green-deep);
  }
  .hero-cinematic-photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 55%;
  }
  .hero-cinematic-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
      rgba(15,31,23,0.3) 0%, rgba(15,31,23,0.1) 30%,
      rgba(15,31,23,0.2) 50%, rgba(15,31,23,0.7) 75%, rgba(15,31,23,0.95) 100%);
  }
  .hero-cinematic-top {
    position: absolute; top: 0; left: 0; right: 0;
    z-index: 2; text-align: center; padding-top: 8rem;
  }
  .hero-cinematic-logo {
    width: 270px; border-radius: 4px; opacity: 0.9;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  }
  .hero-cinematic-content {
    position: relative; z-index: 2;
    padding: 0 4rem 5rem;
    display: grid; grid-template-columns: 1fr auto;
    align-items: end; gap: 4rem;
    max-width: 1400px; width: 100%;
  }
  .hero-cinematic-tagline {
    font-family: var(--font-body); font-size: 0.63rem; font-weight: 600;
    letter-spacing: 5px; text-transform: uppercase; color: var(--cream-dark); margin-bottom: 1rem;
  }
  .hero-cinematic-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300; line-height: 1.08; color: var(--cream); margin-bottom: 1.2rem;
  }
  .hero-cinematic-title em { font-style: italic; color: var(--cream-dark); }
  .hero-cinematic-subtitle {
    font-size: 0.88rem; font-weight: 300; color: var(--cream-muted);
    max-width: 480px; line-height: 1.8;
  }
  .hero-cinematic-actions {
    display: flex; flex-direction: column; gap: 1rem; align-items: flex-end;
  }
  .hero-cinematic-line {
    position: absolute; bottom: 0; left: 4rem;
    width: 1px; height: 80px; background: var(--cream-dark); opacity: 0.3; z-index: 2;
  }

  /* Buttons */
  .btn {
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
    padding: 1rem 2.5rem; transition: all 0.4s ease; cursor: pointer; border: none; display: inline-block;
  }
  .btn-cream { background: var(--cream); color: var(--green-deep); }
  .btn-cream:hover { background: var(--cream-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
  .btn-outline-light { background: transparent; color: var(--cream); border: 1px solid rgba(237,229,213,0.3); }
  .btn-outline-light:hover { border-color: var(--cream); background: rgba(237,229,213,0.08); }
  .btn-green { background: var(--green-deep); color: var(--cream); }
  .btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30,59,44,0.3); }
  .btn-outline-green { background: transparent; color: var(--green-deep); border: 1px solid var(--green-deep); }
  .btn-outline-green:hover { background: var(--green-deep); color: var(--cream); }

  /* ===== SUB-NAV ===== */
  .sub-nav { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--green-mid); }
  .sub-nav-card {
    position: relative; padding: 3rem 2.5rem; text-align: center;
    text-decoration: none; color: var(--cream);
    border-right: 1px solid rgba(237,229,213,0.08); transition: all 0.4s ease; overflow: hidden;
  }
  .sub-nav-card:last-child { border-right: none; }
  .sub-nav-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 2px; background: var(--cream); transform: scaleX(0); transition: transform 0.4s ease;
  }
  .sub-nav-card:hover::before { transform: scaleX(1); }
  .sub-nav-card:hover { background: rgba(237,229,213,0.05); }
  .sub-nav-icon { width: 32px; height: 32px; margin: 0 auto 1rem; opacity: 0.7; }
  .sub-nav-icon svg { width: 100%; height: 100%; stroke: var(--cream-dark); fill: none; stroke-width: 1.5; }
  .sub-nav-title { font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
  .sub-nav-arrow { display: inline-block; margin-left: 0.5rem; transition: transform 0.3s; }
  .sub-nav-card:hover .sub-nav-arrow { transform: translateX(4px); }

  /* ===== INTRO ===== */
  .intro {
    padding: 8rem 4rem; text-align: center; background: var(--cream); position: relative;
  }
  .intro::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 80px; background: linear-gradient(to bottom, var(--green-deep), transparent);
  }
  .section-label {
    font-family: var(--font-body); font-size: 0.63rem; font-weight: 600;
    letter-spacing: 5px; text-transform: uppercase; color: var(--green-accent); margin-bottom: 1.5rem;
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300; line-height: 1.3; color: var(--green-deep); margin-bottom: 1.5rem;
  }
  .section-title-light { color: var(--cream); }
  .section-text { font-size: 0.92rem; font-weight: 300; color: var(--cream-muted); max-width: 580px; margin: 0 auto; line-height: 1.9; }
  .section-text-dark { color: #6B6358; }

  /* ===== OCEAN BANNER ===== */
  .ocean-banner {
    position: relative; width: 100%; height: 450px; overflow: hidden;
  }
  .ocean-banner-text {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 2rem;
  }
  .ocean-banner-text h3 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 0.5rem;
  }
  .ocean-banner-text p {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase; color: var(--cream-dark);
  }

  /* ===== SUSTAINABILITY STORY ===== */
  .sustainability {
    padding: 7rem 4rem; background: var(--cream-light);
  }
  .sustainability-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    max-width: 1100px; margin: 0 auto; align-items: center;
  }
  .sustainability-text {}
  .sustainability-text .section-label { color: var(--green-accent); }
  .sustainability-text .section-title { text-align: left; }
  .sustainability-text p {
    font-size: 0.9rem; font-weight: 300; color: #6B6358; line-height: 1.9; margin-bottom: 1.2rem; text-align: left;
  }
  .sustainability-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem;
  }
  .sustainability-stat {
    border-left: 2px solid var(--green-accent); padding-left: 1.2rem;
  }
  .sustainability-stat-number {
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--green-deep); line-height: 1;
  }
  .sustainability-stat-label {
    font-size: 0.72rem; font-weight: 500; color: var(--cream-muted); letter-spacing: 1px; margin-top: 0.3rem;
  }
  .sustainability-image {
    position: relative; height: 480px; overflow: hidden;
  }
  .sustainability-image img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
  }
  .sustainability-image::before {
    content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px;
    border: 1px solid var(--green-deep); opacity: 0.12; pointer-events: none; z-index: 1;
  }

  /* ===== SERVICES ===== */
  .services { padding: 8rem 4rem; background: var(--green-deep); }
  .services .section-label { color: var(--cream-dark); }
  .services-header { text-align: center; margin-bottom: 5rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 1100px; margin: 0 auto; }
  .service-card {
    text-align: center; padding: 3rem 2rem;
    border: 1px solid rgba(237,229,213,0.08); transition: all 0.4s ease; position: relative;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 2px; background: var(--cream-dark); transition: width 0.3s ease;
  }
  .service-card:hover::before { width: 80px; }
  .service-card:hover { border-color: rgba(237,229,213,0.15); background: rgba(237,229,213,0.03); }
  .service-icon { width: 48px; height: 48px; margin: 0 auto 1.5rem; }
  .service-icon svg { width: 100%; height: 100%; stroke: var(--cream-dark); fill: none; stroke-width: 1.2; }
  .service-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--cream); margin-bottom: 1rem; }
  .service-text { font-size: 0.85rem; font-weight: 300; color: var(--cream-muted); line-height: 1.8; }
  .service-features {
    list-style: none; margin-top: 1.2rem; padding: 0;
  }
  .service-features li {
    font-size: 0.78rem; font-weight: 300; color: var(--cream-dark); padding: 0.3rem 0;
    border-top: 1px solid rgba(237,229,213,0.06);
  }
  .service-features li:first-child { border-top: none; }

  /* ===== PRODUCTS — 2 cards centered ===== */
  .products { padding: 8rem 4rem; background: var(--cream-light); }
  .products-header { text-align: center; margin-bottom: 4rem; }
  .products-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem; max-width: 1000px; margin: 0 auto;
  }
  .product-card {
    position: relative; overflow: hidden; background: var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(30,59,44,0.1); }
  .product-img-wrap {
    width: 100%; height: 360px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream-light); padding: 0;
  }
  .product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transition: transform 0.6s ease;
  }
  .product-card:hover .product-img-wrap img { transform: scale(1.05); }
  .product-info { padding: 1.8rem 2rem 2rem; }
  .product-badge {
    display: inline-block; font-size: 0.55rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; padding: 0.3rem 0.7rem; margin-bottom: 0.8rem;
    background: var(--green-deep); color: var(--cream);
  }
  .product-badge-eco { background: var(--green-deep); }
  .product-category {
    font-size: 0.58rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--green-accent); margin-bottom: 0.5rem;
  }
  .product-name {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
    color: var(--green-deep); margin-bottom: 0.5rem;
  }
  .product-desc {
    font-size: 0.82rem; font-weight: 300; color: #7a7167; line-height: 1.7; margin-bottom: 1rem;
  }
  .product-specs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem;
    margin-bottom: 1.2rem; padding-top: 1rem;
    border-top: 1px solid rgba(30,59,44,0.08);
  }
  .product-spec {
    font-size: 0.7rem; color: #7a7167;
  }
  .product-spec strong {
    font-weight: 600; color: var(--green-deep); display: block; font-size: 0.6rem;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.1rem;
  }
  .product-price {
    font-family: var(--font-display); font-size: 1.3rem; color: var(--green-deep);
    font-weight: 400; margin-bottom: 1rem;
  }
  .product-price span { font-size: 0.75rem; color: var(--cream-muted); font-family: var(--font-body); }
  .product-actions { display: flex; gap: 0.8rem; align-items: center; }
  .btn-small {
    font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
    padding: 0.7rem 1.5rem; transition: all 0.3s ease; cursor: pointer; border: none;
  }
  .btn-small-green { background: var(--green-deep); color: var(--cream); }
  .btn-small-green:hover { background: var(--green-mid); }
  .btn-small-outline { background: transparent; color: var(--green-deep); border: 1px solid rgba(30,59,44,0.2); }
  .btn-small-outline:hover { border-color: var(--green-deep); }

  /* ===== STATS COUNTER ===== */
  .stats-counter {
    padding: 4.5rem 4rem; background: var(--green-mid);
    border-top: 1px solid rgba(237,229,213,0.08);
    border-bottom: 1px solid rgba(237,229,213,0.08);
  }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem; max-width: 1000px; margin: 0 auto; text-align: center;
  }
  .stat-item {}
  .stat-number {
    font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300; color: var(--cream); line-height: 1;
  }
  .stat-label {
    font-size: 0.65rem; font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase; color: var(--cream-muted); margin-top: 0.6rem;
  }
  .stat-divider {
    width: 30px; height: 1px; background: var(--cream-dark); opacity: 0.3;
    margin: 0.8rem auto 0;
  }

  /* ===== SPLIT CONTENT ===== */
  .split { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
  .split-content { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; }
  .split-cream { background: var(--cream); }
  .split-image {
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1E3B2C, #2A5040, #24443A);
    color: var(--cream-muted); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  }
  .split-image img.split-bg-photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
  }
  .split-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,59,44,0.4), rgba(30,59,44,0.15));
    z-index: 1;
  }
  .split-logo-watermark { width: 160px; opacity: 0.25; position: relative; z-index: 2; filter: brightness(10); }

  /* ===== PROCESS STEPS ===== */
  .process { padding: 7rem 4rem; background: var(--cream); }
  .process-header { text-align: center; margin-bottom: 4rem; }
  .process-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    max-width: 1100px; margin: 0 auto; position: relative;
  }
  .process-grid::before {
    content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%;
    height: 1px; background: rgba(30,59,44,0.15);
  }
  .process-step { text-align: center; padding: 0 1.5rem; position: relative; }
  .process-number {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--green-deep); color: var(--cream);
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; position: relative; z-index: 1;
  }
  .process-step-title {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
    color: var(--green-deep); margin-bottom: 0.5rem;
  }
  .process-step-text {
    font-size: 0.8rem; font-weight: 300; color: #7a7167; line-height: 1.7;
  }

  /* ===== ICON ROW ===== */
  .icon-row {
    padding: 5rem 4rem; background: var(--cream);
    border-top: 1px solid rgba(30,59,44,0.08); border-bottom: 1px solid rgba(30,59,44,0.08);
  }
  .icon-row-header { text-align: center; margin-bottom: 3.5rem; }
  .icon-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
  .icon-item { text-align: center; }
  .icon-circle {
    width: 76px; height: 76px; border-radius: 50%;
    border: 1px solid rgba(30,59,44,0.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; transition: all 0.3s ease;
  }
  .icon-circle svg { width: 28px; height: 28px; stroke: var(--green-deep); fill: none; stroke-width: 1.5; }
  .icon-item:hover .icon-circle { background: var(--green-deep); border-color: var(--green-deep); }
  .icon-item:hover .icon-circle svg { stroke: var(--cream); }
  .icon-label { font-family: var(--font-display); font-size: 1rem; font-weight: 400; line-height: 1.4; color: var(--green-deep); }

  /* ===== CONTACT FORM ===== */
  .contact-section { padding: 7rem 4rem; background: var(--cream-light); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
    max-width: 1100px; margin: 0 auto;
  }
  .contact-info {}
  .contact-info .section-title { text-align: left; }
  .contact-detail {
    display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem;
  }
  .contact-detail-icon {
    width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
    border: 1px solid rgba(30,59,44,0.15);
    display: flex; align-items: center; justify-content: center;
  }
  .contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--green-deep); fill: none; stroke-width: 1.5; }
  .contact-detail-text h4 {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--green-deep); margin-bottom: 0.2rem;
  }
  .contact-detail-text p {
    font-size: 0.88rem; font-weight: 300; color: #6B6358; line-height: 1.6;
  }
  .contact-detail-text a {
    color: var(--green-deep); text-decoration: none; border-bottom: 1px solid rgba(30,59,44,0.2);
    transition: border-color 0.3s;
  }
  .contact-detail-text a:hover { border-color: var(--green-deep); }
  .contact-form {}
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label {
    display: block; font-size: 0.63rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--green-deep);
    margin-bottom: 0.5rem;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.9rem 1rem; font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 300; color: var(--green-deep);
    background: var(--white); border: 1px solid rgba(30,59,44,0.12);
    transition: border-color 0.3s; outline: none;
    line-height: 1.5;
  }
  .form-group select {
    height: auto; min-height: 48px;
    padding-top: 0.75rem; padding-bottom: 0.75rem;
    -webkit-appearance: menulist; appearance: menulist;
    cursor: pointer;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green-deep);
  }
  .form-group textarea { min-height: 120px; resize: vertical; }

  /* ===== CTA ===== */
  .cta-banner {
    padding: 7rem 4rem; text-align: center; background: var(--green-deep);
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 160%; background: radial-gradient(ellipse, rgba(237,229,213,0.04), transparent 60%);
  }
  .cta-banner .section-label { color: var(--cream-dark); }
  .cta-banner .section-title { margin-bottom: 1rem; }
  .cta-banner .section-text { margin-bottom: 2.8rem; }

  /* ===== FOOTER ===== */
  footer { background: var(--green-deep); border-top: 1px solid rgba(237,229,213,0.08); }
  .footer-main {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem; padding: 5rem 4rem 3rem; max-width: 1200px; margin: 0 auto;
  }
  .footer-logo-img { height: 80px; width: auto; margin-bottom: 1.5rem; border-radius: 4px; }
  .footer-brand p { font-size: 0.85rem; font-weight: 300; color: var(--cream-muted); line-height: 1.8; margin-bottom: 1.5rem; }
  .footer-social { display: flex; gap: 0.8rem; }
  .footer-social a {
    width: 36px; height: 36px; border: 1px solid rgba(237,229,213,0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s;
  }
  .footer-social a svg { width: 14px; height: 14px; stroke: var(--cream-muted); fill: none; stroke-width: 2; }
  .footer-social a:hover { border-color: var(--cream); background: rgba(237,229,213,0.08); }
  .footer-social a:hover svg { stroke: var(--cream); }
  .footer-col h4 {
    font-family: var(--font-body); font-size: 0.63rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--cream); margin-bottom: 1.5rem;
  }
  .footer-col a { display: block; font-size: 0.85rem; font-weight: 300; color: var(--cream-muted); text-decoration: none; margin-bottom: 0.7rem; transition: color 0.3s; }
  .footer-col a:hover { color: var(--cream); }
  .footer-bottom {
    padding: 1.5rem 4rem; border-top: 1px solid rgba(237,229,213,0.06);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.72rem; color: var(--cream-muted); letter-spacing: 1px;
  }
  .footer-bottom-tagline { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-delay-1 { transition-delay: 0.15s; }
  .fade-in-delay-2 { transition-delay: 0.3s; }
  .fade-in-delay-3 { transition-delay: 0.45s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .icon-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .process-grid::before { display: none; }
  }
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.6rem 1.5rem; }
    .nav-logo-img { height: 42px; }
    nav.scrolled .nav-logo-img { height: 36px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero-cinematic-content { grid-template-columns: 1fr; gap: 2rem; padding: 0 2rem 4rem; }
    .hero-cinematic-actions { flex-direction: row; align-items: center; }
    .hero-cinematic-top { padding-top: 6rem; }
    .hero-cinematic-line { display: none; }
    .sub-nav { grid-template-columns: 1fr; }
    .sub-nav-card { padding: 2rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(237,229,213,0.08); }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; max-width: 480px; }
    .split { grid-template-columns: 1fr; }
    .split-content { padding: 4rem 2rem; }
    .split-image { min-height: 300px; }
    .sustainability-grid { grid-template-columns: 1fr; }
    .sustainability-image { height: 350px; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .icon-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .intro, .services, .products, .cta-banner, .sustainability, .process, .contact-section { padding: 5rem 2rem; }
    .ocean-banner { height: 300px; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ===== WORDPRESS OVERRIDES ===== */
  /* Hide default theme header/footer on homepage */
  body.home .site-header,
  body.home .site-footer,
  body.home .entry-header,
  body.home .entry-footer,
  body.home #masthead,
  body.home #colophon,
  body.home .wp-site-blocks > header,
  body.home .wp-site-blocks > footer,
  body.home .navigation,
  body.home .admin-bar-placeholder { display: none !important; }

  body.home .site-content,
  body.home .entry-content,
  body.home .page-content,
  body.home main { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }

  body.home { padding-top: 0 !important; margin-top: 0 !important; }

  /* WooCommerce compatibility */
  body.home .woocommerce-breadcrumb { display: none !important; }
