    /* --- ARTEFACT DESIGN SYSTEM & CSS VARIABLES --- */
    :root {
      --primary-accent: #FF9760;
      --dark-blue: #213C51;
      --muted-green: #36656B;
      --soft-bg: #F0FFC3;
      --white: #ffffff;
      --black: #111111;
      --transparent-black-overlay: rgba(0, 0, 0, 0.15);
      --font-lora: "Lora", serif;
      --transition-deliberate: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      --transition-fast: all 0.3s ease;
    }

    /* --- ARCHITECTURAL RESET --- */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      font-family: var(--font-lora);
      font-optical-sizing: auto;
      background-color: var(--soft-bg);
      color: var(--dark-blue);
      overflow-x: hidden;
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
    }

    /* --- MACROSCOPIC TYPOGRAPHY PATTERNS --- */
    h1, h2, h3, h4 {
      font-weight: 400;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    p {
      font-size: 1.1rem;
      line-height: 1.85;
      font-weight: 400;
      letter-spacing: 0.01em;
      opacity: 0.9;
    }

    .accent-heading {
      color: var(--primary-accent) !important;
    }

    .white-text {
      color: var(--white) !important;
    }

    .oversized-quote {
      font-style: italic;
      font-size: 2.6rem;
      line-height: 1.4;
      font-weight: 300;
      letter-spacing: -0.01em;
    }

    /* --- HEADER & NAVIGATION STRUCTURE --- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      height: 100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 5rem;
      background: var(--transparent-black-overlay);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    header.header-hidden {
      transform: translateY(-100%);
    }

.logo-container {
  display: flex;
  background-color: #e1fbff;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1200;
}


.logo-text img {
  width: 200px;
  height: 500px;
  object-fit: contain;
  display: block;
  transition: var(--transition-fast);
}

/* Elegant hover effect */
.logo-container:hover .logo-text img {
  transform: scale(1.03);
  opacity: 0.92;
}

/* Responsive */
@media (max-width: 768px) {

  .logo-text img {
    width: 130px;
  }

}
    .nav-wrapper {
      display: flex;
      align-items: center;
      gap: 4.5rem;
    }

    .main-nav {
      display: flex;
      gap: 4rem;
      list-style: none;
    }

    .nav-link {
      text-decoration: none;
      color: var(--black);
      font-size: 1.05rem;
      letter-spacing: 1px;
      position: relative;
      padding: 0.5rem 0;
      cursor: pointer;
      transition: var(--transition-fast);
    }

    .nav-link:hover {
      color: var(--primary-accent);
    }

    /* Sliding Orange Underline Animation */
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--primary-accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .nav-link:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    /* Elegant Menu Trigger Hamburger */
    .hamburger-trigger {
      display: flex;
      flex-direction: column;
      gap: 7px;
      cursor: pointer;
      border: none;
      background: none;
      z-index: 1200;
    }

    .hamburger-trigger span {
      display: block;
      width: 30px;
      height: 2px;
      background-color: var(--black);
      transition: var(--transition-deliberate);
    }

    .hamburger-trigger.open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
      background-color: var(--white);
    }

    .hamburger-trigger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-trigger.open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
      background-color: var(--white);
    }

    /* --- RESPONSIVE HAMBURGER OVERLAY & LEGAL PLATFORM INTERACTION --- */
    .menu-overlay-system {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: var(--dark-blue);
      z-index: 1100;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition-deliberate);
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      padding: 10rem 6rem 6rem 6rem;
    }

    .menu-overlay-system.activated {
      opacity: 1;
      visibility: visible;
    }

    .overlay-left-column {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      padding-right: 5rem;
    }

    .extended-menu-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .extended-menu-links a {
      font-size: 4rem;
      color: var(--white);
      text-decoration: none;
      cursor: pointer;
      transition: var(--transition-deliberate);
    }

    .extended-menu-links a:hover {
      color: var(--primary-accent);
      padding-left: 25px;
    }

    .overlay-legal-footer {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .overlay-legal-footer h4 {
      color: var(--primary-accent);
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .overlay-legal-footer p {
      font-size: 0.95rem;
      cursor: pointer;
      transition: var(--transition-fast);
    }

    .overlay-legal-footer p:hover {
      color: var(--white);
    }

    .overlay-right-column {
      padding-left: 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: var(--white);
      position: relative;
    }

    .legal-content-pane {
      position: absolute;
      top: 15%;
      left: 5rem;
      right: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(30px);
      transition: var(--transition-deliberate);
    }

    .legal-content-pane.active-pane {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* --- PAGE MANIFEST TRANSITIONS --- */
    .app-page-wrapper {
      display: none;
      animation: pageReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    .app-page-wrapper.active-page {
      display: block;
    }

    @keyframes pageReveal {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ========================================== */
    /* HOME PAGE STYLING ELEMENT DESCRIPTIONS   */
    /* ========================================== */

    /* --- HERO ARCHITECTURE --- */
    .cinematic-hero {
      position: relative;
      width: 100%;
      height: 100vh;
      background: linear-gradient(rgba(45, 100, 50, 0.35), rgba(117, 252, 167, 0.587)), url('https://i.pinimg.com/736x/50/28/d1/5028d190c7c3c7bf8a11b9ef9dd114d1.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 10%;
      overflow: hidden;
    }

    /* Asymmetrical Floating PNG Mockups via High Definition Masks */
    .layered-png {
      position: absolute;
      pointer-events: none;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      filter: drop-shadow(0 25px 45px rgba(0,0,0,0.4));    }

.png-large-bowl {
  width: 590px;
  height: 700px;
  left: 20%;
  top: 8%;
  background-image: url('https://static.vecteezy.com/system/resources/previews/045/995/506/original/a-person-is-holding-a-plate-of-food-that-includes-a-variety-of-vegetables-png.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
    .png-small-fruit {
      width: 260px;
      height: 260px;
      left: -5%;
      top: 6%;
      background-image: url('https://static.vecteezy.com/system/resources/previews/066/339/030/non_2x/divided-plate-presenting-a-healthy-balanced-diet-with-transparent-background-png.png');
    }

    .png-small-leaf {
      width: 280px;
      height: 280px;
      left: -5%;
      bottom: 6%;
      background-image: url('https://rosepng.com/wp-content/uploads/2025/01/real-fruit-juice-2.png');
    }

    .png-top-right-ingredient {
      width: 240px;
      height: 240px;
      right: -2%;
      top: 6%;
      background-image: url('https://png.pngtree.com/png-vector/20240807/ourmid/pngtree-juicy-fruits-and-vitamins-natural-organic-fruits-png-image_13146415.png');
    }


    .png-bottom-right-veg {
      width: 370px;
      height: 370px;
      right: -2%;
      bottom: 4%;
      background-image: url('https://static.vecteezy.com/system/resources/thumbnails/022/825/533/small/orange-fruit-orange-on-transparent-background-free-png.png');
    }

    @keyframes ambientFloat {
      0% { transform: translateY(0px) rotate(0deg) scale(1); }
      100% { transform: translateY(-30px) rotate(5deg) scale(1.02); }
    }

    .hero-text-container {
      max-width: 580px;
      z-index: 10;
      color: var(--white);
    }

    .hero-text-container h1 {
      font-size: 4.8rem;
      font-weight: 300;
      margin-bottom: 2rem;
      text-transform: capitalize;
    }

    .hero-text-container p {
      font-size: 1.15rem;
      opacity: 0.95;
      max-width: 480px;
    }

    /* --- SECTION 2: NUTRITION STORY --- */
    .nutrition-story-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
      width: 100%;
    }

    .story-editorial-panel {
      background-color: var(--soft-bg);
      padding: 12rem 8rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 3.5rem;
      position: relative;
    }

    /* Asymmetrical vertical rule */
    .story-editorial-panel::after {
      content: '';
      position: absolute;
      left: 4.5rem;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--primary-accent), transparent);
    }

    .story-editorial-panel h2 {
      font-size: 3.8rem;
      color: var(--primary-accent);
    }

    .story-editorial-panel p {
      color: var(--dark-blue);
      max-width: 520px;
    }

    .story-editorial-panel .editorial-blockquote {
      border-left: 4px solid var(--primary-accent);
      padding-left: 2.5rem;
      font-style: italic;
      font-size: 1.6rem;
      color: var(--muted-green);
      line-height: 1.5;
    }

    .story-imagery-panel {
      background: url('img.png') no-repeat center center/cover;
      width: 100%;
    }

    /* --- SECTION 3: WELLNESS INSIGHTS --- */
    .wellness-insights-container {
      background-color: var(--dark-blue);
      color: var(--white);
      padding: 14rem 8rem;
      position: relative;
    }

    .insights-asymmetric-split {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 7rem;
      margin-bottom: 12rem;
    }

    .insights-narrative h2 {
      font-size: 4rem;
      margin-bottom: 3rem;
    }

    .insights-narrative p {
      max-width: 560px;
      color: rgba(255, 255, 255, 0.85);
    }

    .insights-panels-stack {
      display: flex;
      flex-direction: column;
      gap: 4rem;
    }

    /* Content Editorial Panels (NOT E-commerce layout) */
    .insight-editorial-panel {
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 2.5rem;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      padding-bottom: 3.5rem;
      transition: var(--transition-deliberate);
    }

    .insight-editorial-panel:hover {
      transform: translateX(20px);
    }

    .insight-editorial-panel img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      transition: var(--transition-deliberate);
    }

    .insight-editorial-panel:hover img {
      transform: scale(1.06);
    }

    .insight-editorial-panel p {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .insights-lower-anchor {
      max-width: 950px;
      margin-top: 8rem;
    }

    .insights-lower-anchor h3 {
      font-size: 1.4rem;
      color: var(--primary-accent);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 2.5rem;
    }

    .insights-lower-anchor .oversized-quote {
      margin-bottom: 3.5rem;
    }

    .insights-lower-anchor p {
      color: rgba(255, 255, 255, 0.8);
      max-width: 750px;
    }

    /* ASYMMETRICAL INTERSECTION IMAGE TRANSITION LINK */
    .asymmetric-section-overlap-link {
      position: absolute;
      bottom: -350px;
      left: 8rem;
      width: 440px;
      height: 600px;
      background: url('img1.png') no-repeat center center/cover;
      z-index: 50;
    }

    /* --- SECTION 4: IMMERSIVE WELLNESS --- */
    .immersive-parallax-window {
      height: 100vh;
      width: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://i.pinimg.com/736x/bc/10/64/bc10646cba146cd548e65fd5f18bb1a3.jpg') no-repeat center center;
      background-attachment: fixed;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 18%;
    }

    .immersive-container-box h2 {
      font-size: 4.8rem;

      color: var(--primary-accent);
      margin-top: 30rem;
    }

    .immersive-container-box p {
      color: var(--white);
      font-size: 1.3rem;
      max-width: 850px;
      margin: 0 auto;
    }

    /* --- SECTION 5: HEALTH JOURNAL --- */
    .health-journal-container {
      background-color: var(--muted-green);
      color: var(--white);
      padding: 18rem 8rem 12rem 8rem; /* Excessive padding to clear intersection overlay */
    }

    .journal-master-intro {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 8rem;
      margin-bottom: 10rem;
    }

    .journal-intro-left h2 {
      font-size: 4.6rem;
      color: var(--primary-accent);
      margin-bottom: 2.5rem;
    }

    .journal-intro-right {
      display: flex;
      align-items: flex-end;
      padding-bottom: 2rem;
    }

    .journal-intro-right p {
      color: rgba(255,255,255,0.85);
      font-size: 1.2rem;
    }

    /* Duplicated Horizontal Card Framework */
    .journal-horizontal-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
    }

    .journal-editorial-row-card {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      min-height: 420px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      overflow: hidden;
    }

    .card-left-visual-frame {
      background-size: cover;
      background-position: center;
    }

    .card-right-overlay-content {
      background: rgba(0, 0, 0, 0.5);
      padding: 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2rem;
    }

    .card-right-overlay-content h4 {
      color: var(--primary-accent);
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .card-right-overlay-content p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .card-right-overlay-content .internal-panel-quote {
      font-style: italic;
      font-size: 1.45rem;
      font-weight: 300;
      line-height: 1.4;
    }

    /* ========================================== */
    /* STANDALONE SUBSIDIARY PAGE STRUCTURES      */
    /* ========================================== */
    .standalone-hero-tier {
      background-color: var(--dark-blue);
      color: var(--white);
      padding: 16rem 8rem 10rem 8rem;
    }

    .standalone-hero-tier h1 {
      font-size: 5.5rem;
      color: var(--primary-accent);
      margin-bottom: 2.5rem;
    }

    .asymmetric-editorial-split-block {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 8rem;
      padding: 10rem 8rem;
      background-color: var(--soft-bg);
    }

    .asymmetric-editorial-split-block.inverted-layout {
      grid-template-columns: 1fr 1.2fr;
    }

    .large-editorial-image-frame {
      height: 650px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 35px 65px rgba(0,0,0,0.12);
    }

    .editorial-magazine-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4rem;
      padding: 10rem 8rem;
      background-color: #ffffff;
    }

    .magazine-article-node {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .magazine-article-node .img-wrapper-overflow {
      height: 420px;
      overflow: hidden;
    }

    .magazine-article-node img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-deliberate);
    }

    .magazine-article-node:hover img {
      transform: scale(1.05);
    }

    .contact-split-interface {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 90vh;
    }

    .contact-form-cradle {
      padding: 8rem;
      background-color: var(--soft-bg);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .premium-input-matrix {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 3.5rem;
    }

    .premium-input-matrix input, .premium-input-matrix textarea {
      padding: 1.4rem;
      border: none;
      border-bottom: 1px solid rgba(33, 60, 81, 0.3);
      background: transparent;
      font-family: var(--font-lora);
      font-size: 1.1rem;
      color: var(--dark-blue);
      transition: var(--transition-fast);
    }

    .premium-input-matrix input:focus, .premium-input-matrix textarea:focus {
      outline: none;
      border-bottom: 1px solid var(--primary-accent);
    }

    .premium-input-matrix button {
      margin-top: 2rem;
      padding: 1.4rem;
      background-color: var(--dark-blue);
      color: var(--white);
      border: none;
      font-family: var(--font-lora);
      font-size: 1.1rem;
      letter-spacing: 1px;
      cursor: pointer;
      transition: var(--transition-fast);
    }

    .premium-input-matrix button:hover {
      background-color: var(--primary-accent);
      color: var(--black);
    }

    /* --- FOOTER COMPOSITION --- */
    footer {
      background: url('https://i.pinimg.com/736x/3f/1f/c1/3f1fc1f400225f13f2add4e0aefb550f.jpg') no-repeat center center/cover;
      color: var(--white);
      padding: 10rem 8rem 5rem 8rem;
    }

    .footer-primary-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
      gap: 5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 6rem;
      margin-bottom: 4rem;
    }

    .footer-brand-hub h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--primary-accent);
      margin-bottom: 2rem;
    }

    .footer-links-column h3 {
      font-size: 1.15rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 2rem;
      color: var(--primary-accent);
    }

    .footer-links-column ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .footer-links-column a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      cursor: pointer;
      transition: var(--transition-fast);
    }

    .footer-links-column a:hover {
      color: var(--white);
      padding-left: 6px;
    }

    .footer-newsletter-hub h3 {
      font-size: 1.15rem;
      color: var(--primary-accent);
      margin-bottom: 2rem;
    }

    .dispatch-signup-form {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .dispatch-signup-form input {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 1.2rem;
      color: var(--white);
      font-family: var(--font-lora);
      font-size: 1rem;
    }

    .dispatch-signup-form button {
      background: var(--primary-accent);
      border: none;
      padding: 1.2rem;
      color: var(--black);
      font-family: var(--font-lora);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition-fast);
    }

    .dispatch-signup-form button:hover {
      background-color: var(--white);
    }

    .footer-bottom-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: rgba(255, 255, 255, 0.45);
      font-size: 1rem;
    }

    .footer-socials {
      display: flex;
      gap: 2.5rem;
    }

    .footer-socials a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      font-size: 1rem;
      transition: var(--transition-fast);
    }

    .footer-socials a:hover {
      color: var(--primary-accent);
    }

    /* --- ANIMATION SCROLL VISIBILITY CLASSES --- */
    .reveal-node {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .reveal-node.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* =========================================================
RESPONSIVE SYSTEM
========================================================= */

/* =========================
LARGE LAPTOP
========================= */
@media (max-width: 1400px){

  header{
    padding: 1.8rem 4rem;
  }

  .main-nav{
    gap: 2.5rem;
  }

  .cinematic-hero{
    padding: 0 7%;
  }

  .hero-text-container h1{
    font-size: 4.2rem;
  }

  .png-large-bowl{
    width: 480px;
    height: 480px;
  }

  .story-editorial-panel,
  .wellness-insights-container,
  .health-journal-container,
  .asymmetric-editorial-split-block,
  .editorial-magazine-grid,
  footer{
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .standalone-hero-tier{
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/* =========================
TABLET LANDSCAPE
========================= */
@media (max-width: 1200px){

  h1{
    line-height: 1.1;
  }

  p{
    font-size: 1rem;
    line-height: 1.8;
  }

  header{
    padding: 1.5rem 2.5rem;
  }

  .nav-wrapper{
    gap: 2rem;
  }

  .main-nav{
    gap: 1.8rem;
  }

  .nav-link{
    font-size: 0.95rem;
  }

  .cinematic-hero{
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
  }

  .hero-text-container{
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text-container h1{
    font-size: 3.8rem;
  }

  .hero-text-container p{
    max-width: 650px;
  }

  .png-large-bowl{
    width: 380px;
    height: 380px;
    left: -4%;
    top: 28%;
    opacity: 0.9;
  }

  .png-small-fruit,
  .png-small-leaf,
  .png-top-right-ingredient,
  .png-center-right-bottle,
  .png-bottom-right-veg{
    transform: scale(0.8);
  }

  .nutrition-story-split,
  .journal-master-intro,
  .contact-split-interface,
  .footer-primary-grid,
  .insights-asymmetric-split,
  .asymmetric-editorial-split-block{
    grid-template-columns: 1fr;
  }

  .story-editorial-panel{
    padding: 8rem 4rem;
  }

  .story-editorial-panel::after{
    display: none;
  }

  .story-editorial-panel h2{
    font-size: 3rem;
  }

  .story-imagery-panel{
    min-height: 600px;
  }

  .wellness-insights-container{
    padding: 10rem 4rem;
  }

  .insights-narrative h2{
    font-size: 3rem;
  }

  .asymmetric-section-overlap-link{
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 450px;
    margin-top: 5rem;
  }

  .immersive-container-box h2{
    font-size: 3.5rem;
    margin-top: 18rem;
  }

  .health-journal-container{
    padding: 10rem 4rem;
  }

  .journal-intro-left h2{
    font-size: 3.5rem;
  }

  .journal-horizontal-row{
    grid-template-columns: 1fr;
  }

  .editorial-magazine-grid{
    grid-template-columns: repeat(2,1fr);
    padding: 8rem 4rem;
  }

  .standalone-hero-tier{
    padding: 12rem 4rem 8rem;
  }

  .standalone-hero-tier h1{
    font-size: 4rem;
  }

  .asymmetric-editorial-split-block{
    gap: 4rem;
    padding: 8rem 4rem;
  }

  .contact-form-cradle{
    padding: 5rem 4rem;
  }

  footer{
    padding: 8rem 4rem 4rem;
  }

  .footer-primary-grid{
    gap: 4rem;
  }
}

/* =========================
TABLET PORTRAIT
========================= */
@media (max-width: 991px){

  header{
    padding: 1.2rem 1.5rem;
  }

  .main-nav{
    display: none;
  }

  .hamburger-trigger{
    display: flex;
  }

  .logo-text{
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  /* OVERLAY */
  .menu-overlay-system{
    grid-template-columns: 1fr;
    padding: 7rem 2rem 3rem;
    overflow-y: auto;
  }

  .overlay-left-column{
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-right: 0;
    padding-bottom: 3rem;
  }

  .overlay-right-column{
    padding-left: 0;
    padding-top: 3rem;
    min-height: auto;
  }

  .extended-menu-links a{
    font-size: 2.8rem;
  }

  .overlay-legal-footer{
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
  }

  .legal-content-pane{
    position: relative;
    top: auto;
    left: auto;
  }

  .cinematic-hero{
    height: auto;
    min-height: 100vh;
    padding: 8rem 1.5rem 5rem;
  }

  .hero-text-container h1{
    font-size: 3rem;
  }

  .hero-text-container p{
    font-size: 1rem;
  }

  .png-large-bowl{
    width: 300px;
    height: 300px;
    opacity: 0.45;
    left: -10%;
    top: 35%;
  }

  .png-small-fruit,
  .png-small-leaf,
  .png-top-right-ingredient,
  .png-center-right-bottle,
  .png-bottom-right-veg{
    width: 110px;
    height: 110px;
  }

  .story-editorial-panel,
  .wellness-insights-container,
  .health-journal-container,
  .editorial-magazine-grid,
  footer{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .story-editorial-panel{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .story-editorial-panel h2,
  .insights-narrative h2,
  .journal-intro-left h2,
  .immersive-container-box h2{
    font-size: 2.5rem;
  }

  .oversized-quote{
    font-size: 2rem;
  }

  .insight-editorial-panel{
    grid-template-columns: 1fr;
  }

  .insight-editorial-panel img{
    width: 100%;
    height: 300px;
  }

  .immersive-parallax-window{
    padding: 0 2rem;
    background-attachment: scroll;
  }

  .immersive-container-box h2{
    margin-top: 10rem;
  }

  .journal-editorial-row-card{
    grid-template-columns: 1fr;
  }

  .card-left-visual-frame{
    min-height: 320px;
  }

  .editorial-magazine-grid{
    grid-template-columns: 1fr;
  }

  .standalone-hero-tier{
    padding: 10rem 2rem 6rem;
  }

  .standalone-hero-tier h1{
    font-size: 3rem;
  }

  .asymmetric-editorial-split-block{
    padding: 6rem 2rem;
  }

  .large-editorial-image-frame{
    height: 450px;
  }

  .contact-form-cradle{
    padding: 4rem 2rem;
  }

  .footer-primary-grid{
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar{
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* =========================
MOBILE
========================= */
@media (max-width: 576px){

  p{
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .logo-text{
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .hamburger-trigger span{
    width: 26px;
  }

  .extended-menu-links a{
    font-size: 2rem;
  }

  .cinematic-hero{
    padding: 7rem 1rem 4rem;
  }

  .hero-text-container h1{
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-text-container p{
    font-size: 0.95rem;
  }

  .png-large-bowl{
    width: 220px;
    height: 220px;
    left: -18%;
    top: 42%;
  }

  .png-small-fruit{
    width: 85px;
    height: 85px;
    top: 10%;
  }

  .png-small-leaf{
    width: 90px;
    height: 90px;
    bottom: 8%;
  }

  .png-top-right-ingredient{
    width: 80px;
    height: 80px;
    right: 3%;
  }

  .png-center-right-bottle{
    width: 70px;
    height: 110px;
    right: 2%;
  }

  .png-bottom-right-veg{
    width: 85px;
    height: 85px;
    right: 4%;
  }

  .story-editorial-panel,
  .wellness-insights-container,
  .health-journal-container,
  .editorial-magazine-grid,
  footer{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .story-editorial-panel h2,
  .insights-narrative h2,
  .journal-intro-left h2,
  .immersive-container-box h2{
    font-size: 2rem;
  }

  .editorial-blockquote,
  .oversized-quote,
  .internal-panel-quote{
    font-size: 1.35rem !important;
    line-height: 1.5;
  }

  .insight-editorial-panel{
    gap: 1.5rem;
  }

  .insight-editorial-panel img{
    height: 240px;
  }

  .immersive-container-box h2{
    margin-top: 6rem;
  }

  .immersive-container-box p{
    font-size: 1rem;
  }

  .journal-editorial-row-card{
    min-height: auto;
  }

  .card-right-overlay-content{
    padding: 2rem 1.5rem;
  }

  .standalone-hero-tier h1{
    font-size: 2.4rem;
  }

  .large-editorial-image-frame{
    height: 320px;
  }

  .premium-input-matrix input,
  .premium-input-matrix textarea,
  .premium-input-matrix button{
    font-size: 1rem;
    padding: 1rem;
  }

  .footer-brand-hub h2{
    font-size: 1.8rem;
  }

  .footer-socials{
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom-bar{
    font-size: 0.85rem;
  }
}
