* { box-sizing: border-box; }
    :root {
      --header-height: 88px;
      --zippy-orange: var(--zippy-orange);
      --zippy-deep: var(--zippy-deep);
      --zippy-soft: var(--zippy-soft);
      --zippy-cream: var(--zippy-cream);
      --zippy-green: var(--zippy-green);
      --zippy-teal: var(--zippy-teal);
      --zippy-ink: var(--zippy-ink);
    }
    body { background: var(--zippy-cream); color: var(--zippy-ink); }
    .hero-full, .hero-inner { min-height: calc(100vh - var(--header-height)); }
    @supports (height: 100svh) { .hero-full, .hero-inner { min-height: calc(100svh - var(--header-height)); } }
    @supports (height: 100dvh) { .hero-full, .hero-inner { min-height: calc(100dvh - var(--header-height)); } }
    @media (max-width: 1023px) {
      .hero-bg { background-position: 62% center; }
      .hero-inner { align-items: flex-start; padding-top: 4rem; padding-bottom: 4rem; }
    }
    .hero-bg {
        background-image:
            linear-gradient(
                90deg,
                rgba(255, 250, 244, .98) 0%,
                rgba(255, 250, 244, .86) 50%,
                rgba(255, 250, 244, .30) 75%,
                rgba(255, 250, 244, .10) 100%
            ),
            var(--hero-image);
    
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .story-img, .farm-img, .product-img { background-size: cover; background-position: center; }
    .story-img { background-image: url('var(--owner-image)'); }
    .story-orbit {
      min-height: 980px;
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .story-center-card {
      position: absolute;
      left: 50%;
      top: 52%;
      z-index: 30;
      width: min(300px, 72vw);
      transform: translate(-50%, -50%);
    }
    .story-highlight-card {
      position: absolute;
      z-index: 10;
      width: 180px;
      overflow: visible;
      border-radius: 1.35rem;
      background: transparent;
      transform: translate(-50%, -50%);
      transition: transform .28s ease, z-index .01s linear;
      outline: none;
    }
    .story-highlight-card:hover,
    .story-highlight-card:focus-within {
      z-index: 90;
      transform: translate(-50%, calc(-50% - 8px));
    }
    .story-highlight-surface {
      overflow: hidden;
      border-radius: 1.35rem;
      border: 1px solid rgba(251, 146, 60, .28);
      background: #fff;
      box-shadow: 0 18px 55px rgba(92, 55, 24, .12);
      transition: box-shadow .28s ease;
    }
    .story-highlight-surface .image-skeleton {
        height: 12rem;
    }
    
    .story-highlight-surface .image-skeleton img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 25%;
    }
    
    @media (max-width: 1023px) {
        .story-highlight-surface .image-skeleton {
            height: 14rem;
        }
    }
    
    @media (max-width: 640px) {
        .story-highlight-surface .image-skeleton {
            height: 15rem;
        }
    }   
    
    .story-highlight-card:hover .story-highlight-surface,
    .story-highlight-card:focus-within .story-highlight-surface {
      box-shadow: 0 24px 70px rgba(92, 55, 24, .18);
    }
    .story-product-popup {
      position: absolute;
      left: 50%;
      bottom: calc(100% + 8px);
      z-index: 100;
      width: min(620px, 92vw);
      min-height: 220px;
      padding: 1.35rem;
      border: 1px solid rgba(251, 146, 60, .30);
      border-radius: 1.5rem;
      background: rgba(255, 255, 255, .985);
      box-shadow: 0 30px 90px rgba(92, 55, 24, .24);
      opacity: 0;
      visibility: hidden;
      pointer-events: auto;
      transform: translate(-50%, 10px);
      transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
      backdrop-filter: blur(14px);
    }
    .story-highlight-card:hover .story-product-popup,
    .story-highlight-card:focus-within .story-product-popup,
    .story-product-popup:hover {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }
    .story-product-popup::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -8px;
      width: 16px;
      height: 16px;
      background: rgba(255, 255, 255, .97);
      border-bottom: 1px solid rgba(251, 146, 60, .28);
      border-right: 1px solid rgba(251, 146, 60, .28);
      transform: translateX(-50%) rotate(45deg);
    }
    .story-popup-thumbnails {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: .75rem;
      margin-top: 1rem;
    }
    .story-popup-thumbnail {
      width: 100%;
      height: 118px;
      overflow: hidden;
      border-radius: 1rem;
      border: 2px solid rgba(251, 146, 60, .24);
      background: #fff3e8;
      box-shadow: 0 10px 28px rgba(92, 55, 24, .10);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }
    .story-popup-thumbnail:hover {
      transform: translateY(-4px) scale(1.025);
      border-color: var(--zippy-orange);
      box-shadow: 0 16px 36px rgba(92, 55, 24, .16);
    }
    .story-popup-thumbnail img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform .3s ease, filter .3s ease;
    }
    .story-popup-thumbnail:hover img {
      transform: scale(1.08);
      filter: saturate(1.08) contrast(1.03);
    }
    .story-view-more {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      margin-top: 1rem;
      padding: .78rem 1.1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--zippy-orange), var(--zippy-deep));
      color: #fff;
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: 0 12px 26px rgba(243,107,0,.22);
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .story-view-more:hover,
    .story-view-more:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(243,107,0,.30);
      outline: none;
    }
    .story-highlight-card.popup-bottom .story-product-popup {
      top: calc(100% + 8px);
      bottom: auto;
      transform: translate(-50%, -10px);
    }
    .story-highlight-card.popup-bottom:hover .story-product-popup,
    .story-highlight-card.popup-bottom:focus-within .story-product-popup,
    .story-highlight-card.popup-bottom .story-product-popup:hover {
      transform: translate(-50%, 0);
    }
    .story-highlight-card.popup-bottom .story-product-popup::after {
      top: -8px;
      bottom: auto;
      border: 0;
      border-top: 1px solid rgba(251, 146, 60, .28);
      border-left: 1px solid rgba(251, 146, 60, .28);
    }
    .story-highlight-card.popup-left .story-product-popup {
      left: auto;
      right: calc(100% + 8px);
      top: 50%;
      bottom: auto;
      transform: translate(-10px, -50%);
    }
    .story-highlight-card.popup-left:hover .story-product-popup,
    .story-highlight-card.popup-left:focus-within .story-product-popup,
    .story-highlight-card.popup-left .story-product-popup:hover {
      transform: translate(0, -50%);
    }
    .story-highlight-card.popup-left .story-product-popup::after {
      left: auto;
      right: -8px;
      top: 50%;
      bottom: auto;
      border: 0;
      border-top: 1px solid rgba(251, 146, 60, .28);
      border-right: 1px solid rgba(251, 146, 60, .28);
      transform: translateY(-50%) rotate(45deg);
    }
    .story-highlight-card.popup-right .story-product-popup {
      left: calc(100% + 8px);
      top: 50%;
      bottom: auto;
      transform: translate(10px, -50%);
    }
    .story-highlight-card.popup-right:hover .story-product-popup,
    .story-highlight-card.popup-right:focus-within .story-product-popup,
    .story-highlight-card.popup-right .story-product-popup:hover {
      transform: translate(0, -50%);
    }
    .story-highlight-card.popup-right .story-product-popup::after {
      left: -8px;
      top: 50%;
      bottom: auto;
      border: 0;
      border-bottom: 1px solid rgba(251, 146, 60, .28);
      border-left: 1px solid rgba(251, 146, 60, .28);
      transform: translateY(-50%) rotate(45deg);
    }
    .story-ring-line {
      position: absolute;
      inset: 14% 10% 11%;
      border: 2px dashed rgba(243, 107, 0, .18);
      border-radius: 999px;
      transform: rotate(-6deg);
      z-index: 1;
    }
    
     #geoff-action{
        position:relative;
        overflow:hidden;
        isolation:isolate;
    }
    
    #geoff-action::before{
        content:"";
        position:absolute;
        background-attachment:fixed;
        inset:0;
        z-index:-2;
    
        background:
            url("../images/c-g-1.png") center center / cover no-repeat;
    
        opacity:.95;
    }
    
    #geoff-action::after{
        content:"";
        position:absolute;
        inset:0;
        z-index:-1;
    
        background:
            radial-gradient(
                circle at center,
                rgba(255,255,255,.15) 0%,
                rgba(255,250,244,.35) 40%,
                rgba(255,250,244,.82) 78%,
                rgba(255,250,244,.96) 100%
            ),
            linear-gradient(
                to bottom,
                rgba(255,250,244,.75) 0%,
                rgba(255,250,244,.15) 28%,
                rgba(255,250,244,.15) 70%,
                rgba(255,250,244,.92) 100%
            ),
            linear-gradient(
                to right,
                rgba(255,250,244,.88) 0%,
                rgba(255,250,244,.20) 45%,
                rgba(255,250,244,.20) 55%,
                rgba(255,250,244,.88) 100%
            );
    }   
    
    @media (max-width: 1023px) {
        #geoff-action::before{
            background-attachment:scroll;
        }
      .story-orbit {
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
      }
      .story-ring-line { display: none; }
      .story-center-card,
      .story-highlight-card {
        position: relative !important;
        inset: auto !important;
        width: 100%;
        transform: none !important;
      }
      .story-center-card { grid-column: 1 / -1; }
      .story-highlight-card:hover { transform: translateY(-5px) !important; }
      .story-product-popup,
      .story-highlight-card.popup-bottom .story-product-popup,
      .story-highlight-card.popup-left .story-product-popup,
      .story-highlight-card.popup-right .story-product-popup {
        position: static;
        width: 100%;
        margin-top: .75rem;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        border-radius: 1rem;
      }
      .story-product-popup::after { display: none; }
    }
    @media (max-width: 640px) {
      .story-orbit { grid-template-columns: 1fr; }
      .story-popup-thumbnails { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .story-popup-thumbnail { height: 110px; }
    }
    .farm-img { background-image: url('var(--farm-image)'); }
    .glass { backdrop-filter: blur(18px); background: rgba(255,255,255,.82); }
    .nav-link.active { color: var(--zippy-orange); }
    .nav-link.active::after, .nav-link:hover::after { width: 100%; }
    .nav-link::after { content: ''; display: block; width: 0; height: 3px; margin-top: 8px; border-radius: 999px; background: var(--zippy-orange); transition: width .25s ease; }
    .reveal { opacity: 0; transform: translateY(22px); transition: .7s ease; }
    .reveal.show { opacity: 1; transform: translateY(0); }
    @media (min-width: 1024px) {
      .story-orbit .story-center-card.reveal,
      .story-orbit .story-center-card.reveal.show {
        transform: translate(-50%, -50%) !important;
      }
      .story-orbit .story-highlight-card.reveal,
      .story-orbit .story-highlight-card.reveal.show {
        transform: translate(-50%, -50%) !important;
      }
      .story-orbit .story-highlight-card.reveal:hover,
      .story-orbit .story-highlight-card.reveal.show:hover {
        transform: translate(-50%, calc(-50% - 8px)) !important;
      }
    }
    .modal { opacity: 0; visibility: hidden; pointer-events: none; transition: .25s ease; }
    .modal.show { opacity: 1; visibility: visible; pointer-events: auto; }
    .modal.show .modal-card { transform: translateY(0) scale(1); opacity: 1; }
    .modal-card { transform: translateY(18px) scale(.96); opacity: 0; transition: .25s ease; }
    .floating { animation: floating 4s ease-in-out infinite; }
    .line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    @keyframes floating { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

    /* Premium product catalogue */
    .catalogue-grid {
      align-items: stretch;
      justify-content: center;
    }
    .product-card,
    .modal-product-card {
      position: relative;
      isolation: isolate;
      border: 1px solid rgba(255,255,255,.72);
      background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(145deg, rgba(243,107,0,.38), rgba(255,255,255,.85), rgba(22,138,74,.20)) border-box;
      box-shadow: 0 24px 70px rgba(53,31,15,.14);
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }
    .product-card:hover,
    .product-card:focus-visible,
    .modal-product-card:hover,
    .modal-product-card:focus-within {
      transform: translateY(-12px) scale(1.015);
      box-shadow:
        0 40px 90px rgba(53,31,15,.22),
        inset 0 0 0 1px rgba(255,255,255,.45);
    }

    .product-card {
      cursor: pointer;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: -35%;
      left: -70%;
      z-index: 12;
      width: 42%;
      height: 170%;
      pointer-events: none;
      background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255,255,255,.08) 25%,
        rgba(255,255,255,.68) 50%,
        rgba(255,255,255,.10) 75%,
        transparent 100%
      );
      filter: blur(1px);
      transform: rotate(14deg) translateX(0);
      transition: left .9s cubic-bezier(.19,1,.22,1);
    }

    .product-card:hover::before,
    .product-card:focus-visible::before {
      left: 145%;
    }

    .product-card::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 4;
      pointer-events: none;
      border-radius: inherit;
      background: linear-gradient(
        180deg,
        rgba(255,255,255,.28) 0%,
        rgba(255,255,255,.06) 24%,
        transparent 46%
      );
    }

    .product-card:focus-visible {
      outline: 4px solid rgba(243,107,0,.28);
      outline-offset: 4px;
    }
    .product-card-media,
    .modal-product-media {
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #fff8ef, #ffffff 48%, #fff7ec);
      padding: 0;
    }
    .product-card-media { height: 520px; }
    .modal-product-media { height: 500px; }
    .product-card-media > .image-skeleton,
    .modal-product-media > .image-skeleton {
      height: 100%;
      width: 100%;
      overflow: hidden;
      background: rgba(255,255,255,.72);
    }
    .product-card-media::before,
    .modal-product-media::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, transparent 48%);
    }
    .product-card-media img,
    .modal-product-media img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      transition: transform .7s cubic-bezier(.2,.75,.25,1), filter .45s ease;
    }
    .product-card:hover .product-card-media img,
    .modal-product-card:hover .modal-product-media img {
      transform: scale(1.025);
      filter: saturate(1.04) contrast(1.02);
    }
    .product-hover-popup {
      position: absolute;
      inset: 0;
      z-index: 7;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.35rem;
      background: linear-gradient(180deg, rgba(24,18,14,.24), rgba(24,18,14,.88));
      opacity: 0;
      visibility: hidden;
      transform: translateY(16px);
      transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    }
    .product-hover-popup-inner {
      max-height: calc(100% - 1rem);
      overflow-y: auto;
      overscroll-behavior: contain;
      padding: 1.4rem;
      border: 1px solid rgba(255,255,255,.54);
      border-radius: 1.4rem;
      background: rgba(255,255,255,.94);
      box-shadow: 0 22px 60px rgba(0,0,0,.20);
      backdrop-filter: blur(18px);
      scrollbar-width: thin;
      scrollbar-color: var(--zippy-orange) rgba(243,107,0,.10);
    }
    .product-hover-popup-inner::-webkit-scrollbar { width: 7px; }
    .product-hover-popup-inner::-webkit-scrollbar-track {
      background: rgba(243,107,0,.10);
      border-radius: 999px;
    }
    .product-hover-popup-inner::-webkit-scrollbar-thumb {
      background: var(--zippy-orange);
      border-radius: 999px;
    }
    .product-card:hover .product-hover-popup,
    .product-card:focus-within .product-hover-popup,
    .modal-product-card:hover .product-hover-popup,
    .modal-product-card:focus-within .product-hover-popup {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .catalogue-action {
      border: 1px solid rgba(243,107,0,.14);
      background: linear-gradient(135deg, rgba(255,243,227,.96), #fff);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
    }
    .catalogue-action:hover {
      background: linear-gradient(135deg, var(--zippy-orange), var(--zippy-deep));
    }
    @media (max-width: 1023px) {
      .product-card-media { height: 480px; }
      .modal-product-media { height: 460px; }
    }
    @media (max-width: 640px) {
      .product-card,
      .modal-product-card { max-width: 330px; }
      .product-card-media,
      .modal-product-media { height: 450px; }
      .product-hover-popup { padding: .85rem; }
      .product-hover-popup-inner { padding: 1.1rem; }
    }
    @media (hover: none) {
      .product-hover-popup {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 1rem 1rem;
        background: #fff;
      }
      .product-hover-popup-inner {
        max-height: 210px;
        border-color: rgba(243,107,0,.16);
        box-shadow: none;
        background: var(--zippy-cream);
      }
    }


    /* Responsive and mobile optimization */
    html {
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      scroll-padding-top: var(--header-height);
    }
    body {
      min-width: 320px;
      overflow-x: hidden;
    }
    img, iframe, video {
      max-width: 100%;
    }
    button, a, input, select, textarea {
      touch-action: manipulation;
    }
    button, a {
      -webkit-tap-highlight-color: transparent;
    }

    @media (max-width: 1279px) {
      .catalogue-grid {
        max-width: 920px;
      }
      .product-card {
        max-width: 360px;
      }
      #modalProductList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 1023px) {
      :root { --header-height: 78px; }

      header > div:first-child {
        padding-top: .75rem;
        padding-bottom: .75rem;
      }
      header img {
        max-height: 3.2rem;
      }
      main#home {
        padding-top: var(--header-height);
      }

      .hero-full,
      .hero-inner {
        min-height: auto;
      }
      .hero-inner {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
      }
      .hero-bg {
        background-position: 68% center;
      }

      .catalogue-grid {
        gap: 1.5rem;
      }
      .product-card {
        width: 100%;
        max-width: 360px;
      }
      .product-card-media {
        height: clamp(390px, 62vw, 480px);
      }
      .modal-product-media {
        height: clamp(380px, 56vw, 460px);
      }

      .modal {
        align-items: flex-end;
        padding: 0;
      }
      .modal-card {
        width: 100%;
        max-width: none !important;
        max-height: 92dvh;
        border-radius: 1.75rem 1.75rem 0 0 !important;
        padding: 1.25rem !important;
      }
      #modalProductList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
      }

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

      section {
        scroll-margin-top: var(--header-height);
      }
    }

    @media (max-width: 767px) {
      :root { --header-height: 72px; }

      header > div:first-child {
        padding-left: 1rem;
        padding-right: 1rem;
      }
      #mobileMenu {
        max-height: calc(100dvh - var(--header-height));
        overflow-y: auto;
        overscroll-behavior: contain;
      }

      .hero-inner {
        padding: 2.5rem 1rem 3rem;
      }
      .hero-bg {
        background-image:
          linear-gradient(180deg, rgba(255,250,244,.98) 0%, rgba(255,250,244,.93) 58%, rgba(255,250,244,.80) 100%),
          url('var(--hero-image)');
        background-position: center;
      }

      .catalogue-grid {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 390px;
        gap: 1.25rem;
      }
      .product-card,
      .modal-product-card {
        max-width: 100%;
        border-radius: 1.5rem;
      }
      .product-card-media,
      .modal-product-media {
        height: min(132vw, 500px);
      }
      .product-card:hover,
      .product-card:focus-within,
      .modal-product-card:hover,
      .modal-product-card:focus-within {
        transform: none;
      }

      .product-card > .p-5,
      .modal-product-card > .p-5 {
        padding: .9rem;
      }
      .catalogue-action {
        min-height: 50px;
        padding: .85rem 1rem !important;
        font-size: .95rem;
      }

      #modalProductList {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .modal-card {
        max-height: 94dvh;
        padding: 1rem !important;
      }
      .modal-card > div:first-child {
        gap: .75rem;
      }
      #modalTitle {
        font-size: 1.65rem;
        line-height: 1.15;
      }
      #modalDesc {
        font-size: .9rem;
        line-height: 1.5;
      }

      .story-orbit {
        grid-template-columns: 1fr;
      }
      .story-center-card {
        grid-column: auto;
      }
      .story-center-card .image-skeleton {
        height: 290px !important;
      }
      .story-popup-thumbnails {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      #contact .grid,
      #about .grid,
      #history .grid {
        gap: 1.25rem;
      }

      footer > div:first-child {
        grid-template-columns: 1fr 1fr;
      }

      #backTop {
        width: 46px;
        height: 46px;
        right: 1rem;
        bottom: 1rem;
      }
    }

    @media (max-width: 479px) {
      body {
        font-size: 15px;
      }

      .hero-inner {
        padding-left: .85rem;
        padding-right: .85rem;
      }
      .hero-inner h1 {
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: 1.05;
      }
      .hero-inner p {
        font-size: 1rem;
        line-height: 1.65;
      }

      .catalogue-grid {
        max-width: 100%;
      }
      .product-card-media,
      .modal-product-media {
        height: min(140vw, 470px);
      }

      .product-hover-popup {
        padding: .65rem;
      }
      .product-hover-popup-inner {
        max-height: 72%;
        padding: .9rem;
        border-radius: 1rem;
      }
      .product-hover-popup-inner h4 {
        font-size: 1.35rem;
      }
      .product-hover-popup-inner div {
        font-size: .9rem;
        line-height: 1.55;
      }

      .modal-card {
        border-radius: 1.35rem 1.35rem 0 0 !important;
      }

      #gallery .grid {
        gap: .65rem;
      }
      #gallery .image-skeleton {
        height: 128px !important;
      }

      footer > div:first-child {
        grid-template-columns: 1fr;
      }

      input,
      select,
      textarea {
        font-size: 16px !important;
      }
    }

    @media (hover: none) and (pointer: coarse) {
      .product-hover-popup {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: .75rem;
        background: #fff;
      }
      .product-hover-popup-inner {
        max-height: 190px;
        box-shadow: none;
        border-color: rgba(243,107,0,.16);
        background: var(--zippy-cream);
      }
      .product-card-media,
      .modal-product-media {
        height: auto;
        min-height: 380px;
        display: flex;
        flex-direction: column;
      }
      .product-card-media > .image-skeleton,
      .modal-product-media > .image-skeleton {
        min-height: 360px;
      }
      .product-card-media img,
      .modal-product-media img {
        min-height: 360px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
    }


    /* Product modal: fixed header with independently scrollable body */
    #productModalCard {
      padding: 0 !important;
      overflow: hidden !important;
    }
    .product-modal-header {
      position: relative;
      z-index: 5;
      box-shadow: 0 10px 28px rgba(53,31,15,.08);
    }
    .product-modal-body {
      overscroll-behavior: contain;
      scrollbar-width: thin;
      scrollbar-color: var(--zippy-orange) rgba(243,107,0,.10);
    }
    .product-modal-body::-webkit-scrollbar { width: 9px; }
    .product-modal-body::-webkit-scrollbar-track { background: rgba(243,107,0,.08); }
    .product-modal-body::-webkit-scrollbar-thumb {
      background: var(--zippy-orange);
      border: 2px solid rgba(255,255,255,.9);
      border-radius: 999px;
    }
    @media (max-width: 1023px) {
      #productModalCard {
        max-height: 92dvh;
        border-radius: 1.75rem 1.75rem 0 0 !important;
      }
    }
    @media (max-width: 767px) {
      .product-modal-header {
        padding: 1rem;
      }
      .product-modal-body {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1rem;
      }
    }

    /* Full-page skeleton loader */
    body.page-loading {
      overflow: hidden;
    }
    #pageSkeletonLoader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      background: var(--zippy-cream);
      opacity: 1;
      visibility: visible;
      transition: opacity .45s ease, visibility .45s ease;
    }
    #pageSkeletonLoader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .page-skeleton-header {
      height: var(--header-height);
      flex: 0 0 var(--header-height);
      border-bottom: 1px solid rgba(243,107,0,.12);
      background: rgba(255,255,255,.96);
    }
    .page-skeleton-shell {
      width: min(1280px, 100%);
      margin: 0 auto;
      padding: 1rem 1.25rem;
    }
    .page-skeleton-header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      height: 100%;
    }
    .page-skeleton-logo,
    .page-skeleton-nav-item,
    .page-skeleton-button,
    .page-skeleton-heading,
    .page-skeleton-text,
    .page-skeleton-image,
    .page-skeleton-card {
      border-radius: 999px;
      background: linear-gradient(90deg, #fff 0%, rgba(243,107,0,.11) 42%, #fff 72%);
      background-size: 240% 100%;
      animation: zippySkeleton 1.35s ease-in-out infinite;
    }
    .page-skeleton-logo { width: 150px; height: 52px; border-radius: 1rem; }
    .page-skeleton-nav { display: flex; gap: 1.25rem; }
    .page-skeleton-nav-item { width: 72px; height: 14px; }
    .page-skeleton-button { width: 116px; height: 46px; }
    .page-skeleton-main {
      flex: 1 1 auto;
      overflow: hidden;
    }
    .page-skeleton-hero {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
      min-height: calc(100vh - var(--header-height));
      padding-top: clamp(2rem, 5vw, 5rem);
      padding-bottom: clamp(2rem, 5vw, 5rem);
    }
    .page-skeleton-heading { width: min(520px, 95%); height: 58px; border-radius: 1rem; }
    .page-skeleton-text { height: 16px; margin-top: 1rem; }
    .page-skeleton-text.wide { width: min(600px, 100%); }
    .page-skeleton-text.medium { width: min(440px, 82%); }
    .page-skeleton-actions { display: flex; gap: .75rem; margin-top: 1.75rem; }
    .page-skeleton-cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }
    .page-skeleton-card {
      min-height: 440px;
      border-radius: 2rem;
      box-shadow: 0 18px 55px rgba(92,55,24,.08);
    }
    @media (max-width: 1023px) {
      .page-skeleton-nav { display: none; }
      .page-skeleton-hero { grid-template-columns: 1fr; }
      .page-skeleton-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .page-skeleton-card:last-child { display: none; }
    }
    @media (max-width: 640px) {
      .page-skeleton-shell { padding-left: 1rem; padding-right: 1rem; }
      .page-skeleton-logo { width: 120px; height: 44px; }
      .page-skeleton-button { width: 48px; }
      .page-skeleton-heading { height: 44px; }
      .page-skeleton-cards { grid-template-columns: 1fr; }
      .page-skeleton-card { min-height: 390px; }
      .page-skeleton-card:nth-child(n+2) { display: none; }
    }

    /* Skeleton loading */
    .skeleton-shimmer,
    .bg-skeleton::after,
    .image-skeleton::before,
    .section-skeleton-card,
    .section-skeleton-line,
    .section-skeleton-pill {
      background: linear-gradient(90deg, rgba(255,255,255,.55) 0%, rgba(243,107,0,.10) 38%, rgba(255,255,255,.72) 65%);
      background-size: 240% 100%;
      animation: zippySkeleton 1.35s ease-in-out infinite;
    }
    @keyframes zippySkeleton { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }
    [data-skeleton-section] { position: relative; }
    .section-skeleton {
      position: absolute;
      inset: 0;
      z-index: 25;
      display: grid;
      align-items: center;
      pointer-events: none;
      padding: clamp(1.25rem, 4vw, 3rem);
      background: linear-gradient(135deg, rgba(255,250,244,.96), rgba(255,243,232,.90));
      opacity: 1;
      visibility: visible;
      transition: opacity .45s ease, visibility .45s ease;
    }
    .section-skeleton.dark { background: linear-gradient(135deg, rgba(217,83,0,.92), rgba(243,107,0,.88)); }
    .section-skeleton-inner { width: min(1120px, 100%); margin: 0 auto; }
    .section-skeleton-line { height: 16px; border-radius: 999px; opacity: .95; }
    .section-skeleton-pill { height: 38px; width: 150px; border-radius: 999px; opacity: .95; }
    .section-skeleton-card { min-height: 130px; border-radius: 1.5rem; opacity: .95; box-shadow: 0 18px 55px rgba(92,55,24,.08); }
    [data-skeleton-section].section-ready .section-skeleton { opacity: 0; visibility: hidden; }
    .bg-skeleton { position: relative; overflow: hidden; background-color: #fff3e8; }
    .bg-skeleton::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 3;
      opacity: 1;
      visibility: visible;
      transition: opacity .35s ease, visibility .35s ease;
    }
    .bg-skeleton.is-loaded::after { opacity: 0; visibility: hidden; }
    .image-skeleton {
      position: relative;
      overflow: hidden;
      display: block;
      background: #fff3e8;
    }
    .image-skeleton::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: 1;
      visibility: visible;
      transition: opacity .35s ease, visibility .35s ease;
    }
    .image-skeleton img {
      opacity: 0;
      transform: scale(1.015);
      transition: opacity .35s ease, transform .5s ease;
    }
    .image-skeleton.is-loaded::before { opacity: 0; visibility: hidden; }
    .image-skeleton.is-loaded img { opacity: 1; transform: scale(1); }
    @media (prefers-reduced-motion: reduce) {
      .skeleton-shimmer,
      .bg-skeleton::after,
      .image-skeleton::before,
      .section-skeleton-card,
      .section-skeleton-line,
      .section-skeleton-pill { animation: none; }
    }

/* ==========================================================================
   Modern Zippy Cayman refinements
   ========================================================================== */

body {
  background:
    radial-gradient(circle at 8% 2%, rgba(243,107,0,.08), transparent 24rem),
    radial-gradient(circle at 94% 8%, rgba(22,138,74,.08), transparent 26rem),
    var(--zippy-cream);
}

section {
  position: relative;
}

#header {
  box-shadow: 0 8px 30px rgba(53,31,15,.05);
}

#header.shadow-soft {
  box-shadow: 0 14px 38px rgba(53,31,15,.12);
}

.hero-inner > div,
#geoff-action > div,
#history > div,
#about > div,
#gallery > div,
#blog > div,
#contact > div {
  width: 100%;
}

.story-highlight-surface {
  position: relative;
  isolation: isolate;
  min-height: 250px;
  background: #fff;
}

.story-highlight-surface .image-skeleton {
  height: 250px;
}

.story-highlight-surface .image-skeleton img {
  object-fit: cover;
  object-position: center 25%;
}

.story-card-title-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  display: flex;
  min-height: 88px;
  align-items: flex-end;
  padding: 1.1rem 1rem .95rem;
  color: #fff;
  text-align: left;
  background:
    linear-gradient(
      to top,
      rgba(24,18,14,.94) 0%,
      rgba(24,18,14,.78) 52%,
      rgba(24,18,14,.12) 100%
    );
}

.story-card-title-overlay h3 {
  color: #fff;
  font-size: .92rem;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.story-highlight-card:hover .story-card-title-overlay,
.story-highlight-card:focus-within .story-card-title-overlay {
  background:
    linear-gradient(
      to top,
      rgba(217,83,0,.95) 0%,
      rgba(243,107,0,.76) 58%,
      rgba(243,107,0,.08) 100%
    );
}

#history .rounded-\[2rem\],
#about .rounded-\[2rem\],
#contact form,
#blog article,
#gallery a {
  box-shadow: 0 20px 60px rgba(53,31,15,.09);
}

#history .rounded-\[2rem\],
#about .rounded-\[2rem\],
#contact form {
  border-color: rgba(243,107,0,.12);
}

#blog article,
#gallery a {
  transition: transform .28s ease, box-shadow .28s ease;
}

#blog article:hover,
#gallery a:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 68px rgba(53,31,15,.14);
}

@media (max-width: 1023px) {
  .story-highlight-surface {
    min-height: 300px;
  }

  .story-highlight-surface .image-skeleton {
    height: 300px;
  }
}

@media (max-width: 767px) {
  #geoff-action {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #geoff-action .story-orbit {
    gap: 1.25rem;
  }

  .story-highlight-card {
    overflow: hidden;
    border-radius: 1.5rem;
    background: transparent;
  }

  .story-highlight-surface {
    min-height: 0;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 18px 46px rgba(53,31,15,.14);
  }

  .story-highlight-surface .image-skeleton {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    background: #fff8ef;
  }

  .story-highlight-surface .image-skeleton img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .story-card-title-overlay {
    min-height: 104px;
    padding: 2.4rem 1rem 1rem;
  }

  .story-card-title-overlay h3 {
    font-size: 1rem;
    letter-spacing: .04em;
  }

  .story-product-popup,
  .story-highlight-card.popup-bottom .story-product-popup,
  .story-highlight-card.popup-left .story-product-popup,
  .story-highlight-card.popup-right .story-product-popup {
    margin-top: 0;
    border: 0;
    border-top: 1px solid rgba(243,107,0,.12);
    border-radius: 0;
    background: rgba(255,255,255,.98);
    padding: 1rem;
  }

  .story-popup-thumbnails {
    gap: .6rem;
  }

  .story-popup-thumbnail {
    height: 105px;
  }

  #history,
  #about,
  #gallery,
  #blog,
  #contact {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 479px) {
  .story-card-title-overlay {
    min-height: 96px;
    padding: 2.1rem .9rem .9rem;
  }

  .story-card-title-overlay h3 {
    font-size: .94rem;
  }
}

/* Geoff in Action popup image and description refinements */
.story-popup-main-image {
  display: block;
  width: 100%;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(243,107,0,.16);
  border-radius: 1rem;
  background: #fff8ef;
}

.story-popup-main-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.story-popup-thumbnails {
  grid-template-columns: repeat(4, minmax(0, 72px));
  justify-content: start;
  gap: .55rem;
}

.story-popup-thumbnail {
  width: 72px;
  height: 72px;
  border-radius: .75rem;
}

.story-popup-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-popup-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.story-popup-view-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .65rem;
  color: var(--zippy-orange);
  font-size: .82rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease, transform .2s ease;
}

.story-popup-view-more:hover,
.story-popup-view-more:focus-visible {
  color: var(--zippy-deep);
  transform: translateX(2px);
  outline: none;
}

@media (max-width: 767px) {
  .story-popup-main-image img {
    max-height: none;
  }

  .story-popup-thumbnails {
    grid-template-columns: repeat(4, 56px);
  }

  .story-popup-thumbnail {
    width: 56px;
    height: 56px;
  }

  .story-popup-description {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* =========================================================
   GEOFF IN ACTION — RESPONSIVE ORBIT
   Add this at the very bottom of the stylesheet
   ========================================================= */

/* Desktop orbit */
.geoff-orbit-container {
    position: relative;
    width: 100%;
    max-width: 1450px;
    height: 1020px;
    margin: 90px auto 0;
    padding: 0 24px;
}

.geoff-center-card{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:340px;

    padding:38px 32px;

    text-align:center;

    border-radius:36px;

    background:
        linear-gradient(
            180deg,
            #fffaf6 0%,
            #ffffff 55%,
            #fff8f2 100%
        );

    border:1px solid rgba(243,107,0,.12);

    box-shadow:
        0 30px 80px rgba(0,0,0,.12);

    z-index:50;

}

.geoff-center-name{

    margin-top:8px;

    font-size:2rem;

    font-weight:800;

    color:var(--zippy-deep);

}

.geoff-center-image img{

    width:100%;
    height:100%;

    /*
        Portrait crop instead of center crop
    */
    object-fit:cover;
    object-position:center 18%;

}

.geoff-center-image{

    width:250px;
    height:250px;

    margin:0 auto 1.5rem;

    border-radius:50%;

    overflow:hidden;

    border:10px solid #fff;

    background:#fff;

    box-shadow:
        0 20px 45px rgba(0,0,0,.18),
        0 0 0 8px rgba(243,107,0,.08);

}

.orbit-card {
    position: absolute;
    width: 240px;
    height: 310px;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
    z-index: 20;
}

.orbit-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.orbit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.orbit-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    padding: 56px 18px 18px;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, .94) 0%,
        rgba(18, 18, 18, .72) 46%,
        rgba(18, 18, 18, .22) 76%,
        transparent 100%
    );
}

.orbit-category {
    display: block;
    overflow: hidden;
    color: #ffd59e;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.orbit-content h4 {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 7px;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* Large circular placement */
.top-left {
    top: 20px;
    left: 180px;
}

.top-right {
    top: 20px;
    right: 180px;
}

.middle-left {
    top: 355px;
    left: 0;
}

.middle-right {
    top: 355px;
    right: 0;
}

.bottom-left {
    bottom: 20px;
    left: 180px;
}

.bottom-right {
    right: 180px;
    bottom: 20px;
}

.geoff-orbit-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(900px, 72vw);
    height: min(900px, 72vw);
    border: 2px dashed rgba(243, 107, 0, .10);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Keep hover movement from causing overlap */
.orbit-card:hover,
.orbit-card:focus-visible {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 65px rgba(0, 0, 0, .18);
    outline: none;
}

.orbit-card:hover .orbit-image img,
.orbit-card:focus-visible .orbit-image img {
    transform: scale(1.06);
}

/* =========================================================
   TABLET: center card first, then uniform two-column cards
   ========================================================= */

@media (max-width: 1199px) {
    .geoff-orbit-container {
        max-width: 900px;
        height: auto;
        margin-top: 55px;
        padding: 0 24px;
    }

    .geoff-orbit-container::before {
        display: none;
    }

    .geoff-center-card {
        position: relative;
        left: auto;
        top: auto;
        width: min(440px, 100%);
        margin: 0 auto 42px;
        transform: none;
    }

    .geoff-center-image {
        width: 270px;
        height: 270px;
    }

    /*
     * display: contents lets the orbit cards participate
     * in the parent grid without changing the PHP markup.
     */
    .geoff-orbit-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 28px;
    }

    .geoff-center-card {
        grid-column: 1 / -1;
    }

    .orbit-card,
    .top-left,
    .top-right,
    .middle-left,
    .middle-right,
    .bottom-left,
    .bottom-right {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: 360px;
        height: 420px;
        margin: 0 auto;
        transform: none;
    }

    .orbit-card:hover,
    .orbit-card:focus-visible {
        transform: translateY(-6px);
    }
}

/* =========================================================
   MOBILE: one card per row
   ========================================================= */

@media (max-width: 767px) {
    .geoff-orbit-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 36px;
        padding: 0 16px;
    }

    .geoff-center-card {
        grid-column: auto;
        width: 100%;
        margin-bottom: 14px;
        padding: 24px 18px;
        border-radius: 28px;
    }

    .geoff-center-image {
        width: 220px;
        height: 220px;
        border-width: 8px;
    }

    .orbit-card,
    .top-left,
    .top-right,
    .middle-left,
    .middle-right,
    .bottom-left,
    .bottom-right {
        width: 100%;
        max-width: 420px;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
        border-radius: 24px;
    }

    .orbit-content {
        padding: 70px 16px 16px;
    }

    .orbit-content h4 {
        font-size: 1rem;
    }

    .orbit-category {
        font-size: .66rem;
    }
}

/* Small phones */
@media (max-width: 479px) {
    .geoff-orbit-container {
        gap: 16px;
        padding: 0 12px;
    }

    .geoff-center-card {
        padding: 20px 14px;
        border-radius: 24px;
    }

    .geoff-center-image {
        width: 190px;
        height: 190px;
    }

    .orbit-card,
    .top-left,
    .top-right,
    .middle-left,
    .middle-right,
    .bottom-left,
    .bottom-right {
        max-width: 100%;
        aspect-ratio: 4 / 5;
        border-radius: 22px;
    }

    .orbit-content {
        padding: 62px 14px 14px;
    }

    .orbit-content h4 {
        font-size: .95rem;
    }
}

/* Touch devices: remove hover scaling */
@media (hover: none), (pointer: coarse) {
    .orbit-card:hover,
    .orbit-card:focus-visible {
        transform: none;
    }

    .orbit-card:hover .orbit-image img,
    .orbit-card:focus-visible .orbit-image img {
        transform: none;
    }
}