 
    /* ─── hero section css  ─── */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: sans-serif;
      background-color: #e8d6b4;
    }

    /* ─── Hero Section ─── */
    .tp-hero-3-area {
      position: relative;
      overflow: hidden;
    }

    .tp-hero-3-ptb {
      padding-top: 120px;
      padding-bottom: 120px;
    }

    /* ─── Responsive Background Images ─── */
    .hero-bg {
      background-image: url('../hero/border-small.png');
      background-repeat: no-repeat;
      background-position: top;
      background-size: contain;
    }

    /* 320–374px: small mobiles */
    @media (min-width: 320px) and (max-width: 374.98px) {
      .hero-bg {
        background-image: url('../img/main-bg/border-mobile-small.png');
      }
    }

    /* 375–424px: medium mobiles (e.g., iPhone 12/13/14) */
    @media (min-width: 375px) and (max-width: 424.98px) {
      .hero-bg {
        background-image: url('../hero/border-mobile-md.png');
      }
    }

    /* 425–724px: large mobiles / phablets */
    @media (min-width: 425px) and (max-width: 724.98px) {
      .hero-bg {
        background-image: url('../hero/border-mobile-big.png');
      }
    }

    /* 725–1023px: tablets */
    @media (min-width: 725px) and (max-width: 1023.98px) {
      .hero-bg {
        background-image: url('../img/main-bg/border-tablet.png');
      }
    }

    /* 1024–1279px: small desktops/laptops */
    @media (min-width: 1024px) and (max-width: 1279.98px) {
      .hero-bg {
        background-image: url('../img/main-bg/border-desktop-small.png');
      }
    }

    /* ≥1280px: keep fallback (border-small.png) */

    /* ─── Layout ─── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 15px;
      padding-right: 15px;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
      margin-left: -15px;
      margin-right: -15px;
    }

    .col-xl-12 {
      width: 100%;
      padding-left: 15px;
      padding-right: 15px;
    }

    /* ─── Content Box ─── */
    .tp-hero-3-content-box {
      text-align: center;
      position: relative;
    }

    /* ─── Circle Shape ─── */
    /* .tp-hero-3-circle-shape {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    .tp-hero-3-circle-shape span {
      display: block;
      width: 14px;
      height: 14px;
      background-color: currentColor;
      border-radius: 50%;
      opacity: 0.4;
    } */

    /* ─── Title ─── */
    .tp-hero-3-title {
          font-size: 100px;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #173826;
    font-family: 'Marcellus', serif !important;
    }

    .tp-reveal-line {
      display: block;
      overflow: hidden;
      opacity: 0;
      transform: translateY(40px);
      animation: revealLine 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .tp-reveal-line:nth-child(1) { animation-delay: 0.1s; }
    .tp-reveal-line:nth-child(2) { animation-delay: 0.28s; }

    @keyframes revealLine {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── Subtitle ─── */
    .tp-hero-3-category.hero-subtitle {
      display: inline-block;
      font-size: 18px;
      line-height: 1.65;
      max-width: 540px;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
       font-family: 'Marcellus', serif;
       color: #173826;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
      from {
        opacity: 0;
        transform: translateY(20px);
      }
    }

   
    /* ─── Arrow Icon ─── */
    .btn-arrow-wrapper {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
    }

    /* Right Arrow SVG */
    .right-arrow-two {
      position: relative;
      z-index: 1;
    }

    /* Arrow BG circle */
    .arrow-bg {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      z-index: 0;
      transition: background 0.25s;
    }

    /* .tp-btn-black-2:hover .arrow-bg {
      background: rgba(255, 255, 255, 0.25);
    } */

    /* ─── fix utility (overflow hidden) ─── */
    .fix {
      overflow: hidden;
    }
    .tp-hero-3-circle-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.tp-hero-3-circle-shape span {
    height: 480px;
    width: 460px;
    display: inline-block;
    filter: blur(35px);
    border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
    background: linear-gradient(220deg, rgba(148, 254, 98, .5) .77%, rgba(255, 226, 122, .5) 55.4%, rgba(234, 94, 94, .5));
}  

 /* ─── tp gallery section css  ─── */
    /* ─── Section ─── */
    .tp-gallery-area {
      position: relative;
      overflow: hidden;
      padding: 60px 0;
      background-color: #e8d6b4;
      width: 100% !important;
    }

    .fix {
      overflow: hidden;
    }

    .p-relative {
      position: relative;
    }

    /* ─── Shapes ─── */
    .tp-gallery-shape-1,
    .tp-gallery-shape-2 {
      position: absolute;
      z-index: 1;
      pointer-events: none;
    }

    .tp-gallery-shape-1 {
      top: 5.5%;
      left: 0;
      z-index: 100;
      width: 100%;
    }

    .tp-gallery-shape-2 {
      bottom: 5.5%;
      right: 0;
      z-index: 100;
      width: 100%;
    }

    .tp-gallery-shape-1 img,
    .tp-gallery-shape-2 img {
      height: auto;
      display: block;
    }

    /* Dark-mode shape toggle */
    .tp-gallery-shape-1 .img-2,
    .tp-gallery-shape-2 .img-2 {
      display: none;
    }



 

    /* ─── Slider Wrap ─── */
    .tp-gallery-slider-wrap {
      width: 100%;
      position: relative;
      z-index: 2;
    }

    /* ─── Marquee Track ─── */
    .tp-gallery-titming {
      display: flex;
      width: max-content;
      animation: marquee-scroll 25s linear infinite;
      will-change: transform;
    }

    .tp-gallery-titming:hover {
      animation-play-state: paused;
    }

    @keyframes marquee-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── Gallery Item ─── */
    .tp-gallery-item {
      margin-right: 10px;
      flex-shrink: 0;
      overflow: hidden;
      border-radius: 8px;
    }

    .tp-gallery-item .gallery-img {
      width: 580px;
      height: 960px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .tp-gallery-item:hover .gallery-img {
      transform: scale(1.05);
    }

    /* ─── Mobile ─── */
    @media screen and (max-width: 430px) {
      .tp-gallery-item .gallery-img {
        width: 250px !important;
        height: 400px !important;
      }
    }
       @media screen and (max-width: 1399px) {
        
        .tp-gallery-item .gallery-img {
            width: 380px;
            height: 560px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
       }
        @media screen and (max-width: 768px) {
        
        .tp-gallery-shape-1 img, .tp-gallery-shape-2 img {
            height: auto;
            display: block;
            width: stretch;
        }
        .tp-hero-3-ptb{
          padding-bottom: 70px !important;
        }
        .about-section{
          padding: 0px !important;
        }
        .tp-hero-3-title{
          font-size: 50px !important;
        }
       }

       .row{
        margin: 0% !important;
        padding: 0% !important;
       }

        /* ─── about section css  ─── */
    
    .about-section {
      padding: 100px 0 60px;
      overflow: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── SUBTITLE BADGE ── */
    .section-subtitle {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s ease forwards 0.1s;
    }

    .subtitle-text {
      font-family: 'Marcellus', serif;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #173826;
    }

    .subtitle-icon svg path { fill: #173826; }

    /* ── MAIN TITLE ── */
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 6vw, 72px);
      font-weight: 900;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 48px;
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.7s ease forwards 0.25s;
    }

    .section-title em {
      font-style: italic;
      color: var(--accent);
    }

    /* ── CONTENT ROW ── */
    .content-row {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 48px;
      align-items: center;
      padding-top: 20px;
    }

    /* ── CIRCULAR PATTERN ── */
    .shape-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      animation: fadeIn 1s ease forwards 0.5s;
    }

    .circular-pattern {
      width: 320px;
      height: 320px;
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
    }

    /* Pure CSS circular pattern */
   .circular-pattern {
  width: 200px;
  height: 200px;
  background-image: url('../shape/circular-pattern-2.png');
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  animation: rotate2 4s linear infinite;
}
@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
    /* ── TEXT SIDE ── */
    .text-side {
      margin-top: 50px;
    }

    .body-text {
      font-size: 16px;
      font-family: 'syne','serif' !important;
      color: #5d5d63;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(18px);
      animation: fadeUp 0.7s ease forwards;
      text-align: justify;
    }

    .body-text:nth-child(1) { animation-delay: 0.4s; }
    .body-text:nth-child(2) { animation-delay: 0.55s; }

    /* ── CTA BUTTON ── */
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 28px;
      background: var(--dark);
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-decoration: none;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
      transition: color 0.35s ease;
      opacity: 0;
      animation: fadeUp 0.7s ease forwards 0.7s;
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent);
      transform: translateX(-101%);
      transition: transform 0.38s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .cta-btn:hover::before { transform: translateX(0); }
    .cta-btn:hover { color: #fff; }

    .cta-btn span { position: relative; z-index: 1; }

    .cta-icon {
      position: relative;
      z-index: 1;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .cta-btn:hover .cta-icon { transform: translateX(4px) rotate(45deg); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    @keyframes slowSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .content-row {
        grid-template-columns: 1fr;
      }

      .shape-wrap {
        order: -1;
      }

      .circular-pattern {
        width: 200px;
        height: 200px;
      }

      .text-side {
        margin-top: 0;
      }
      .section-title .line .word {
        text-align: start !important;
        margin-left: 0px !important;
    }
    .tp-btn-zikzak svg.anim {
      left: 0px !important;
    }
    .zikzak-content{
      left: 0px !important;
    }
    .tp-about-2-section-title{
      font-size: 42px !important;
      font-weight: 500;
    }
    .tp-about-2-content p{
      font-size: 18px !important;
      color: #3e3e44 !important;
      font-family: 'syne','serif' !important;
      line-height: 1.5 !important;
    }
    .ig-card h4 {
      margin-left: 20px !important;
    }
    .ig-card .subtitle{
      margin-left: 15px !important;
    }
    .ig-card p{
      margin-left: 20px !important;
    }
    }

    @media (max-width: 430px) {
      .circular-pattern {
        width: 160px;
        height: 160px;
      }
    }
    .tp-section-subtitle-2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
    text-transform: uppercase;
    color: #173826;
    font-family: 'Marcellus', serif;
    margin-bottom: 25px;
    display: inline-block;
    margin-left: 70px;
}
 /* ─── food marquee section css  ─── */
    

    .tp-brand-3-area {
      width: 100%;
      padding-bottom: 60px;
      overflow: hidden;
    }

    /* ── MARQUEE WRAPPER ── */
    .tp-brand-slider-active {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    /* Fade edges */
    .tp-brand-slider-active::before,
    .tp-brand-slider-active::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    /* .tp-brand-slider-active::before {
      left: 0;
      background: linear-gradient(to right, #1C1C1E, transparent);
    }
    .tp-brand-slider-active::after {
      right: 0;
      background: linear-gradient(to left, #1C1C1E, transparent);
    } */

    /* ── MARQUEE TRACK ── */
    .rfm-marquee-container {
      display: flex;
      width: 100%;
      overflow: hidden;
    }

    .rfm-marquee {
      display: flex;
      flex-shrink: 0;
      align-items: center;
      min-width: 100%;
      /* animation: marqueeScroll 18s linear infinite; */
    }

    /* Pause on hover */
    .rfm-marquee-container:hover .rfm-marquee {
      animation-play-state: paused;
    }

    /* ── BRAND ITEM ── */
    .rfm-child {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .tp-brand-item {
      padding: 0 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tp-brand-item img {
      height: 80px;
      width: auto;
      object-fit: contain;
      /* filter: grayscale(1) brightness(0.7); */
      transition: filter 0.3s ease, transform 0.3s ease;
      display: block;
    }

    .tp-brand-item:hover img {
      filter: grayscale(0) brightness(1);
      transform: scale(1.05);
    }

    /* ── ANIMATION ── */
    @keyframes marqueeScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-100%); }
    }

     /* ─── card split title section css  ─── */
   

    :root {
      --bg: #173826;
      --white: #ffffff;
      --accent: #e8d5a3;
      --btn-bg: #ffffff;
      --btn-text: #19191A;
    }

   

    .section {
      background-color: var(--bg);
      width: 100%;
      padding: 40px 40px;
    }

    .row {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .col {
      width: 100%;
      max-width: 1200px;
    }

    /* Title Box */
    .title-box {
      position: relative;
    margin-bottom: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
    text-align: center;
    }

    /* Large heading */
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(64px, 10vw, 160px);
      font-weight: 700;
      color: var(--white);
      line-height: 0.95;
      letter-spacing: -2px;
    }

    .section-title .line {
      display: block;
      overflow: hidden;
    }

    .section-title .line span,
    .section-title .line-plain {
      display: inline-block;
      /* font-style: italic; */
      color: var(--white);
    }

    .section-title .word {
      display: inline-block;
      transform: translateY(110%);
      opacity: 0;
      animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .section-title .line:nth-child(1) .word { animation-delay: 0.1s; }
    .section-title .line:nth-child(2) .word { animation-delay: 0.3s; }

    @keyframes slideUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* ZigZag Button */
    .btn-box {
      display: flex;
      align-items: flex-end;
      padding-bottom: 10px;
    }

    .tp-btn-zikzak {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      width: 140px;
      height: 140px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .tp-btn-zikzak:hover {
      transform: scale(1.05) rotate(6deg);
    }

    .tp-btn-zikzak svg.anim {
      position: absolute;
      top: 0;
      left: -60px;
      width: 100%;
      height: 100%;
      animation: spin 12s linear infinite;
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .zikzak-content {
          position: relative;
    z-index: 2;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #173826;
    text-align: center;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    left: -60px;
    }

    .zikzak-content svg {
      width: 14px;
      height: 14px;
    }

    /* Decorative line */
    .deco-line {
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,0.12);
      margin-top: 20px;
      transform: scaleX(0);
      transform-origin: left;
      animation: expandLine 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes expandLine {
      to { transform: scaleX(1); }
    }

    @media (max-width: 640px) {
      .title-box {
        flex-direction: column;
      }
      .section {
        padding: 60px 24px;
      }
    }

      /* ─── tp about section css  ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --clr-bg:        #fdf8f2;
      --clr-accent:    #c0392b;
      --clr-text:      #1a1208;
      --clr-muted:     #7a6a56;
      --clr-tag-bg:    #f5ece0;
      --ff-display:    'Playfair Display', serif;
      --ff-body:       'DM Sans', sans-serif;
      --radius:        4px;
      --shadow:        0 24px 60px rgba(0,0,0,.10);
    }

   
    /* ── Section ── */
    .tp-about-2-area {
      /* padding: 100px 0 160px; */
      overflow: hidden;
    }

    .container-1480 {
      width: 100%;
      max-width: 1480px;
      padding: 0 24px;
      margin: 0 auto;
    }

    /* ── Title row ── */
    .title-row {
      display: flex;
      justify-content: center;
      margin-bottom: 70px;
    }

    .title-inner {
      max-width: 860px;
      text-align: center;
      
    }

    .tp-about-2-section-title {
      font-family: sans-serif !important;
      font-size: clamp(2rem, 4.5vw, 3.6rem);
      font-weight: 400;
      line-height: 1.2;
      color: #173826;
      text-transform: capitalize;
      position: relative;
      display: inline-block;
    }

   
    .tp-about-2-section-title.revealed::after {
      opacity: 1;
      transform: scaleX(1);
    }

    /* ── Content row ── */
    .content-row {
          display: grid;
    grid-template-columns: 3fr 8fr 2fr;
    gap: 32px;
    align-items: flex-start;
    }

    /* ── Left thumb ── */
    .tp-about-2-thumb-box {
      position: relative;
    }

    .tp-about-2-thumb-main img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      display: block;
      box-shadow: var(--shadow);
      object-fit: cover;
    }

    .tp-about-2-thumb-inner {
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: inline-block;
    top: -170px;
    left: 180px;
}

    .tp-about-2-thumb-inner img {
      width: auto;
      height: 200px;
      display: block;
      object-fit: cover;
      border-radius: 20px;
    }

    /* ── Centre content ── */
    .tp-about-2-content {
      padding: 0 24px;
    }

    .tp-about-2-content > span {
          display: inline-block;
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 550;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #173826;
    /* background: var(--clr-tag-bg); */
    /* padding: 6px 16px; */
    border-radius: 100px;
    margin-bottom: 28px;
    }

    .tp-about-2-content p {
      font-family: var(--ff-body);
      font-size: clamp(0.95rem, 1.1vw, 1.05rem);
      font-weight: 300;
      line-height: 1.85;
      color: var(--clr-muted);
    }

    .tp-about-2-content p.mb-30 { margin-bottom: 30px; }

    /* ── Right thumb ── */
    .tp-about-2-right-thumb {
      text-align: right;
    }

    .tp-about-2-right-thumb img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      display: block;
      box-shadow: var(--shadow);
      object-fit: cover;
    }

    /* ── Reveal animations ── */
    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    [data-reveal].revealed {
      opacity: 1;
      transform: translateY(0);
    }

    [data-reveal="left"] {
      transform: translateX(-30px);
    }
    [data-reveal="left"].revealed {
      transform: translateX(0);
    }

    [data-reveal="right"] {
      transform: translateX(30px);
    }
    [data-reveal="right"].revealed {
      transform: translateX(0);
    }

    /* ── Responsive ── */
    @media (max-width: 1199px) {
      .content-row {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "content content"
          "left    right";
      }
      .col-left  { grid-area: left; }
      .col-mid   { grid-area: content; }
      .col-right { grid-area: right; }
    }

    @media (max-width: 767px) {
      .content-row {
        grid-template-columns: 1fr;
        grid-template-areas:
          "content"
          "left";
      }
      .col-right { display: none; }
      .tp-about-2-thumb-inner { display: none; }
      .tp-about-2-content { padding: 0; }
    }

    @media (max-width: 430px) {
      .mobile-hide { display: none !important; }
    }

       /* ─── instagram section css  ─── */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #f6f1e9;
      --dark:  #181818;
      --gold:  #c9aa7c;
      --muted: #888;
    }

    html { scroll-behavior: smooth; }
    


    /* ─── filler sections ─────────────────── */
    .filler {
     
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 3.5vw, 2.6rem);
      color: var(--muted);
      border-bottom: 1px solid #e4ddd2;
    }

    /* ─── INSTAGRAM SECTION ───────────────── */
    #ig-section {
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    
      position: relative;
     
    }

    /* ─── floating thumbs ──────────────────── */
    .thumb-float {
      position: absolute;
      border-radius: 14px;
      overflow: hidden;
      will-change: transform, opacity;
      display: none;
    }
    @media (min-width: 1100px) { .thumb-float { display: block; } }

    .thumb-float img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    /* individual sizing + placement */
    /* LEFT column */
    .t1 { width:190px; height:170px; top:0%;    left:30%;  }   /* top-left */
    .t2 { width:290px; height:170px;     top: 0%; left: 57%; }   /* top-left area */
    .t3 {
    width: 230px;
    height: 250px;
    bottom: 40%;
    left: 4%;
}  /* bottom-left */

    /* RIGHT column */
    .t4 {
    width: 280px;
    height: 300px;
    top: 32%;
    right: 5%;
} /* top-right */
   .t5 {
    width: 96px;
    height: 97px;
    bottom: 25%;
    left: 20%;
}  /* mid-right */
    .t6 { width:96px;  height:96px;  top:94%;   right:30%;}   /* top-right */
    .t7 {
    width: 120px;
    height: 160px;
    top: 94%;
    right: 16%;
} /* bottom-right */

    /* instagram icon badge */
    .t8 {
      width:64px; height:64px;
      top:22%; right:19%;
      border-radius:50%;
      display:flex!important;
      align-items:center; justify-content:center;
      background: #173826;
      /* box-shadow: 0 6px 22px rgba(220,39,67,.35); */
    }
    .t8 a {
      width:100%; height:100%;
      display:flex; align-items:center; justify-content:center;
      color:#fff; font-size:1.7rem; text-decoration:none;
      border-radius:50%;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .t8 a:hover { transform:scale(1.14); 
      /* box-shadow:0 8px 30px rgba(220,39,67,.55); */
     }

    /* ─── central main image ──────────────── */
    /* REMOVE the bottom one that overrides z-index, merge into one */
.main-img-wrap {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  border-radius: 0px;
  overflow: hidden;
  /* box-shadow: 0 24px 70px rgba(0,0,0,.22); */
  will-change: transform, opacity;
  width: 520px;        /* initial size */
  height: 520px;
}

.main-img-wrap img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .main-img-wrap {
    width: 88vw;
    height: 88vw;
  }
}

    /* ─── text card ───────────────────────── */
    .ig-card {
    position: absolute;
    top: 87%;
    left: 40%;
    transform: translateX(-50%);
    z-index: 4;
    /* background: rgba(246, 241, 233, .93); */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    /* border: 1px solid rgba(201, 170, 124, .28); */
    border-radius: 18px;
    padding: 26px 34px;
    min-width: 360px;
    text-align: left;
    /* box-shadow: 0 10px 44px rgba(0, 0, 0, .10); */
    will-change: transform;
}
    @media (max-width: 768px) {
      .ig-card { min-width: unset; width: 90vw; bottom: 4%; padding: 18px 20px; }
    }

    .ig-card .subtitle {
      font-size: 15px; 
      letter-spacing: .18em;
      text-transform: uppercase; 
      color: #173826;
      line-height: 1;
      font-weight: 500; display: block; 
      margin-bottom: 5px;
    }
    .ig-card h4 {
      font-family: "Syne", sans-serif !important;
      font-size: 80px;
      font-weight: 500; 
      color: #173826;
      margin-bottom: 8px; 
      letter-spacing: -.01em;
    }
    .ig-card p {
      font-size: 18px; 
      line-height: 1.65;
      color:#5d5d63;
      margin-bottom: 16px;
      font-weight: 400;
      margin-left: 50px;
    }
    .follow-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: #173826; 
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px; 
      font-weight: 600;
      letter-spacing: .06em; 
      text-transform: uppercase;
      padding: 11px 22px; 
      border-radius: 25px;
      text-decoration: none;
      box-shadow: 0 3px 14px rgba(24,24,24,.18);
      transition: background .25s, transform .2s, box-shadow .25s;
      margin-left: 50px;
    }
    .follow-btn:hover {
      background: transparent;
      color: #173826;
      transform: translateY(-2px);
      border: 1px solid #173826;
    }
    .follow-btn svg { transition: transform .2s; }
    .follow-btn:hover svg { transform: translate(2px,-2px); }
    .main-img-wrap {
  z-index: 10;
}

.thumb-float {
  z-index: 2;
}

        /* ─── food marquee section css  ─── */

         /* ─── food marquee section css  ─── */

          /* ─── food marquee section css  ─── */

   

