 .takeaway{
  font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--cream);
    margin-top:30px;
 }
 .steam-container {
    position: absolute; top: 5%; left: 50%; transform: translateX(-50%);
  }
   .steam {
    display: inline-block; width: 6px;
    margin: 0 6px;
    background: linear-gradient(to top, rgba(255,245,220,0.6), transparent);
    border-radius: 50%;
    animation: steamRise 2.5s ease-in-out infinite;
    filter: blur(3px);
  }
  .steam:nth-child(1) { height: 50px; animation-delay: 0s; }
  .steam:nth-child(2) { height: 70px; animation-delay: 0.4s; }
  .steam:nth-child(3) { height: 45px; animation-delay: 0.8s; }
  @keyframes steamRise {
    0% { opacity: 0; transform: translateY(0) scaleX(1); }
    30% { opacity: 0.8; }
    70% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-60px) scaleX(1.5); }
  }
  .coffee-image-wrap{
    position:relative;
    width:420px;
    height:420px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    z-index:2;
}

.coffee-main-img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    display:block;

    transition:transform .8s ease;
}

/* hover animation */
.coffee-image-wrap:hover .coffee-main-img{
    transform:scale(1.08);
}
.specials-view-all{
    width:100%;
    grid-column:1/-1;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-top:60px;
}
      .center-btn{
    width:100%;
    display:flex;
    justify-content:center;
}
      .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0.15)
        );
      }
      .gallery-bg {
        position: absolute;
        inset: 0;
        overflow: hidden;
        border-radius: inherit;
      }

      .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;

        /* smooth animation */
        transition: transform 0.7s ease;
      }

      /* SAME HOVER EFFECT */
      .gallery-item:hover .gallery-img {
        transform: scale(1.08);
      }
      :root {
        --gold: #d89a2b;
        --gold-light: #e8b84b;
        --gold-pale: #f0c96a;
        --coffee: #3b2418;
        --coffee-mid: #5c3a22;
        --coffee-light: #7a4f32;
        --cream: #f6e7c8;
        --cream-dark: #edd5a3;
        --cream-deep: #e0c07a;
        --terra: #8b2e1e;
        --terra-light: #a83828;
        --leaf: #506b3b;
        --leaf-light: #6a8d4f;
        --white: #fdfaf4;
        --dark: #1a0f08;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Poppins", sans-serif;
        background: var(--dark);
        color: var(--cream);
        overflow-x: hidden;
        cursor: none;
      }

      /* CUSTOM CURSOR */
      .cursor {
        width: 12px;
        height: 12px;
        background: var(--gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition:
          transform 0.1s ease,
          width 0.3s ease,
          height 0.3s ease,
          background 0.3s ease;
        mix-blend-mode: normal;
      }
      .cursor-ring {
        width: 36px;
        height: 36px;
        border: 1.5px solid var(--gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 0.6;
      }
      body:has(a:hover) .cursor,
      body:has(button:hover) .cursor {
        width: 20px;
        height: 20px;
        background: var(--gold-light);
      }
      body:has(a:hover) .cursor-ring,
      body:has(button:hover) .cursor-ring {
        width: 56px;
        height: 56px;
        opacity: 0.3;
      }

      /* NAVBAR */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 24px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.5s ease;
      }
      nav.scrolled {
        background: rgba(26, 15, 8, 0.95);
        backdrop-filter: blur(20px);
        padding: 16px 60px;
        border-bottom: 1px solid rgba(216, 154, 43, 0.15);
      }
      .nav-logo {
        display: flex;
        align-items: flex-start;
        text-decoration: none;
      }
      .nav-logo-primary {
        font-family: "Cormorant Garamond", serif;
        font-size: 28px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 2px;
        line-height: 1;
      }
      .logo-img {
  width: 80px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: 0.3s ease;
}
      .nav-logo-sub {
        font-size: 9px;
        font-weight: 300;
        color: var(--cream);
        letter-spacing: 5px;
        text-transform: uppercase;
        margin-top: 3px;
      }
      .nav-links {
        display: flex;
        gap: 30px;
        list-style: none;
        align-items:center;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--cream);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 4px;
        transition: color 0.3s;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.4s ease;
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      .nav-cta {
        background: transparent;
        border: 1px solid var(--gold);
        color: var(--gold);
        padding: 10px 28px;
        font-family: "Poppins", sans-serif;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        cursor: none;
        transition: all 0.3s ease;
        text-decoration: none;
      }
      .nav-cta:hover {
        background: var(--gold);
        color: var(--dark);
      }
      .hamburger{
        display:none;
        font-size:28px;
        color: white;
        cursor: pointer;
        z-index:1001;
      }

      /* HERO */
      #hero {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-batween;
        padding: 0 8%;
        overflow: hidden;
      }
      /* .hero-bg {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 30% 60%,
            rgba(216, 154, 43, 0.18) 0%,
            transparent 55%
          ),
          radial-gradient(
            ellipse at 75% 30%,
            rgba(139, 46, 30, 0.12) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 50% 80%,
            rgba(59, 36, 24, 0.8) 0%,
            transparent 70%
          ),
          linear-gradient(160deg, #1a0f08 0%, #2c1a0e 40%, #1a0f08 100%);
      } */
       .hero-bg{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
      rgba(10,5,2,.72),
      rgba(10,5,2,.72)
    ),

    url("/png/cafe5.JPG");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    filter:blur(4px);
    transform:scale(1.08);

    z-index:0;
}
.hero-bg::after{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(
      circle at center,
      rgba(216,154,43,.12),
      transparent 65%
    );

    z-index:1;
}
      /* Dosa plate visual */
      .hero-plate {
        position: absolute;
        right: 10%;
        top: 50%;
        transform: translateY(-50%);
        width: 520px;
        height: 520px;
      }
      .plate-glow {
        position: absolute;
        inset: 0px;
        background: radial-gradient(
          circle,
          rgba(216, 154, 43, 0.25) 0%,
          transparent 70%
        );
        animation: plateGlow 4s ease-in-out infinite alternate;
      }
      @keyframes plateGlow {
        from {
          opacity: 0.6;
          transform: scale(0.95);
        }
        to {
          opacity: 1;
          transform: scale(1.05);
        }
      }
      .plate-circle {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        /* background: radial-gradient(circle at 40% 35%, #4A2C1A 0%, #2C1810 50%, #1C100A 100%);
    border: 3px solid rgba(216,154,43,0.2);
    box-shadow: 
      0 0 80px rgba(216,154,43,0.15),
      inset 0 0 60px rgba(0,0,0,0.5); */
        overflow: hidden;
      }
      /* Illustrated dosa */
      .dosa-visual {
        position: absolute;
        inset: 30px;
        border-radius: 50%;
        overflow: hidden;
      }
      
     
      .glass-steam {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 25px;
      }
      .gs {
        display: inline-block;
        width: 4px;
        height: 20px;
        margin: 0 2px;
        background: linear-gradient(
          to top,
          rgba(255, 245, 220, 0.5),
          transparent
        );
        border-radius: 50%;
        filter: blur(2px);
        animation: steamRise 1.8s ease-in-out infinite;
      }
      .gs:nth-child(2) {
        animation-delay: 0.3s;
        height: 28px;
      }
      .gs:nth-child(3) {
        animation-delay: 0.6s;
      }

      /* HERO CONTENT */
      .hero-content {
        width:50%;
        position: relative;
        z-index: 2;
        text-align:center;
        /* max-width: 680px;
        padding: 0 60px;
        margin-left: 0;
        animation: heroIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        opacity: 0;
        transform: translateY(40px); */
      }
      @keyframes heroIn {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 28px;
        opacity: 0;
        animation: fadeSlideUp 0.8s 0.3s ease forwards;
      }
      .hero-tag::before,
      .hero-tag::after {
        content: "";
        display: block;
        width: 30px;
        height: 1px;
        background: var(--gold);
      }
      .hero-headline {
        font-family: "Cormorant Garamond", serif;
        font-size: 82px;
        font-weight: 300;
        line-height: 1.05;
        color: var(--cream);
        margin-bottom: 12px;
        opacity: 0;
        animation: fadeSlideUp 0.9s 0.5s ease forwards;
      }
      .hero-headline em {
        font-style: italic;
        color: var(--gold);
        font-weight: 400;
      }
      .hero-sub {
        font-size: 13px;
        font-weight: 300;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(246, 231, 200, 0.7);
        margin-bottom: 50px;
        opacity: 0;
        animation: fadeSlideUp 0.9s 0.7s ease forwards;
      }
      .hero-buttons {
        justify-content:center;
        display: flex;
        gap: 20px;
        opacity: 0;
        animation: fadeSlideUp 0.9s 0.9s ease forwards;
      }
      .btn-primary {
        background: var(--gold);
        color: var(--dark);
        padding: 16px 40px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.35s ease;
        border: 1px solid var(--gold);
        cursor: none;
        position: relative;
        overflow: hidden;
      }
      .btn-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: left 0.5s ease;
      }
      .btn-primary:hover::before {
        left: 100%;
      }
      .btn-primary:hover {
        background: var(--gold-light);
        border-color: var(--gold-light);
      }
      .btn-outline {
            text-align: center;
        background: transparent;
        color: var(--cream);
        border: 1px solid rgba(246, 231, 200, 0.4);
        padding: 16px 40px;
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.35s ease;
        cursor: none;
      }
      .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
      }

      .hero-scroll{
    position:absolute;
    bottom:20px;

    left:50%;
    transform:translateX(-50%);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    width:auto;
}
      .hero-scroll span {
        font-size: 9px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(246, 231, 200, 0.5);
      }
      .scroll-line {
        width: 1px;
        height: 50px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
      }
      @keyframes scrollPulse {
        0%,
        100% {
          opacity: 0.3;
          transform: scaleY(0.8);
        }
        50% {
          opacity: 1;
          transform: scaleY(1);
        }
      }
      @keyframes fadeSlideUp {
        from {
          opacity: 0;
          transform: translateY(25px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* SECTION GENERAL */
      section {
        padding: 120px 60px;
      }
      .section-label {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 24px;
      }
      .section-label::before {
        content: "";
        width: 24px;
        height: 1px;
        background: var(--gold);
      }
      .section-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 60px;
        font-weight: 300;
        line-height: 1.1;
      }

      /* DIVIDER */
      .ornate-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 0 60px;
        margin-bottom: 80px;
      }
      .div-line {
        flex: 1;
        height: 1px;
        background: linear-gradient(
          to right,
          transparent,
          rgba(216, 154, 43, 0.3)
        );
      }
      .div-line.r {
        background: linear-gradient(
          to left,
          transparent,
          rgba(216, 154, 43, 0.3)
        );
      }
      .div-ornament {
        color: var(--gold);
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .div-ornament::before,
      .div-ornament::after {
        content: "◆";
        font-size: 8px;
        color: var(--gold);
        opacity: 0.5;
      }

      /* SPECIALS SECTION */
      #specials {
        background: linear-gradient(
          180deg,
          var(--dark) 0%,
          #201208 50%,
          var(--dark) 100%
        );
        padding: 120px 60px;
      }
      .specials-header {
        text-align: center;
        margin-bottom: 80px;
      }
      .specials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        max-width: 1200px;
        margin: 0 auto;
      }
      .food-card {
        position: relative;
        overflow: hidden;
        aspect-ratio: 3/4;
        cursor: none;
        group: true;
            margin: 10px;
      }
      .food-card-inner {
        position: absolute;
        inset: 0;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }
      .food-card:hover .food-card-inner {
        transform: scale(1.06);
      }
      .food-card-bg {
        position: absolute;
        inset: 0;
      }
      /* Individual card backgrounds — illustrated with CSS */
      .card-dosa .food-card-bg {
        background: radial-gradient(
          ellipse at 50% 70%,
          #8b4520 0%,
          #5c2810 40%,
          #2c1408 100%
        );
      }
      .card-coffee .food-card-bg {
        background: radial-gradient(
          ellipse at 40% 50%,
          #4a2c10 0%,
          #2c1808 60%,
          #180c04 100%
        );
      }
      .card-idli .food-card-bg {
        background: radial-gradient(
          ellipse at 50% 60%,
          #5a4030 0%,
          #3a2820 60%,
          #1e1410 100%
        );
      }
      .card-bun .food-card-bg {
        background: radial-gradient(
          ellipse at 50% 65%,
          #6b3c18 0%,
          #4a2810 60%,
          #28140a 100%
        );
      }
      .card-biryani .food-card-bg {
        background: radial-gradient(
          ellipse at 50% 60%,
          #5c3520 0%,
          #3a2015 60%,
          #1e1008 100%
        );
      }
      .card-kesari .food-card-bg {
        background: radial-gradient(
          ellipse at 50% 60%,
          #7a4820 0%,
          #50300e 50%,
          #2c1808 100%
        );
      }
      .card-vada .food-card-bg {
        background: radial-gradient(
          ellipse at 50% 60%,
          #5a3818 0%,
          #3a2510 60%,
          #1e130a 100%
        );
      }
      /* Illustrated food art in cards */
      .food-illustration {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      /* Dosa illustration */
      .ill-dosa {
        width: 180px;
        height: 120px;
        background: linear-gradient(
          140deg,
          #d4924a 0%,
          #a06020 50%,
          #7a3f10 100%
        );
        border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
        position: relative;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        transform: rotate(-5deg);
      }
      .ill-dosa::after {
        content: "";
        position: absolute;
        top: 25%;
        left: 30%;
        width: 60px;
        height: 40px;
        background: radial-gradient(
          ellipse,
          rgba(255, 240, 150, 0.9),
          rgba(220, 180, 30, 0.4),
          transparent
        );
        border-radius: 50%;
        filter: blur(4px);
      }
      /* Coffee tumbler */
      .ill-coffee {
        position: relative;
        width: 60px;
        height: 100px;
      }
      .tumbler-body {
        width: 60px;
        height: 75px;
        background: linear-gradient(
          160deg,
          #c8c8b8 0%,
          #989888 30%,
          #787870 60%,
          #909080 100%
        );
        border-radius: 4px 4px 8px 8px;
        position: relative;
        overflow: hidden;
        box-shadow:
          0 10px 30px rgba(0, 0, 0, 0.5),
          inset 3px 0 10px rgba(255, 255, 255, 0.2);
      }
      .tumbler-liquid {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60%;
        background: linear-gradient(to top, #3b1808, #5c2810);
      }
      .tumbler-decoction {
        position: absolute;
        bottom: 58%;
        left: 0;
        right: 0;
        height: 15%;
        background: linear-gradient(
          to bottom,
          rgba(90, 45, 15, 0.9),
          rgba(60, 30, 10, 0.7)
        );
      }
      .tumbler-saucer {
        width: 75px;
        height: 12px;
        margin: 0 auto;
        background: linear-gradient(to right, #a8a898, #c0c0b0, #a8a898);
        border-radius: 0 0 6px 6px;
      }
      .tumbler-steam {
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
      }
      .ts {
        display: inline-block;
        width: 4px;
        height: 25px;
        margin: 0 3px;
        background: linear-gradient(
          to top,
          rgba(255, 240, 200, 0.7),
          transparent
        );
        border-radius: 50%;
        filter: blur(2px);
        animation: steamRise 2s ease-in-out infinite;
      }
      .ts:nth-child(2) {
        animation-delay: 0.5s;
        height: 35px;
      }
      /* Idli */
      .ill-idli-plate {
        position: relative;
        width: 160px;
        height: 100px;
      }
      .idli-plate {
        width: 160px;
        height: 80px;
        background: radial-gradient(
          ellipse,
          #e8e0d0 0%,
          #c8c0b0 50%,
          #a8a090 100%
        );
        border-radius: 50%;
        position: absolute;
        bottom: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      }
      .idli {
        position: absolute;
        width: 55px;
        height: 30px;
        background: radial-gradient(ellipse, #f8f0e0 30%, #e0d0b8 80%);
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }
      .idli-1 {
        top: 5px;
        left: 15px;
      }
      .idli-2 {
        top: 5px;
        right: 15px;
      }
      .idli-3 {
        top: 35px;
        left: 53px;
      }
      .idli-sambar {
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 18px;
        background: radial-gradient(ellipse, #c07040, #904020);
        border-radius: 50%;
        opacity: 0.7;
        filter: blur(2px);
      }
      /* Bun */
      .ill-bun {
        position: relative;
        width: 120px;
        height: 80px;
      }
      .bun-body {
        width: 110px;
        height: 65px;
        background: radial-gradient(
          ellipse at 40% 30%,
          #e8c880 0%,
          #c8a040 40%,
          #9a7020 80%,
          #6a4810 100%
        );
        border-radius: 55% 55% 45% 45% / 60% 60% 40% 40%;
        position: absolute;
        bottom: 0;
        left: 5px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      }
      .bun-shine {
        position: absolute;
        top: 10px;
        left: 25px;
        width: 40px;
        height: 20px;
        background: radial-gradient(
          ellipse,
          rgba(255, 255, 200, 0.4),
          transparent
        );
        border-radius: 50%;
        filter: blur(3px);
      }
      /* Biryani */
      .ill-biryani-bowl {
        position: relative;
        width: 150px;
        height: 100px;
      }
      .biryani-bowl {
        width: 140px;
        height: 70px;
        background: linear-gradient(to bottom, #6a3810 0%, #4a2808 100%);
        border-radius: 0 0 70px 70px;
        position: absolute;
        bottom: 0;
        left: 5px;
        border: 2px solid #8a5020;
        overflow: hidden;
      }
      .biryani-rice {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background:
          radial-gradient(
            ellipse at 30% 30%,
            rgba(220, 180, 80, 0.6) 0%,
            transparent 30%
          ),
          radial-gradient(
            ellipse at 70% 50%,
            rgba(200, 140, 40, 0.5) 0%,
            transparent 25%
          ),
          linear-gradient(to bottom, #b8783a, #8a5020);
      }
      .biryani-rim {
        width: 150px;
        height: 25px;
        background: linear-gradient(
          to right,
          #8a5020,
          #b87030,
          #c88030,
          #b87030,
          #8a5020
        );
        border-radius: 50%;
        position: absolute;
        top: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      }
      /* Kesari */
      .ill-kesari {
        width: 100px;
        height: 90px;
        position: relative;
      }
      .kesari-body {
        width: 90px;
        height: 80px;
        background: radial-gradient(
          ellipse at 40% 30%,
          #f0a030 0%,
          #d07020 50%,
          #a04010 100%
        );
        border-radius: 8px 8px 30% 30%;
        position: absolute;
        bottom: 0;
        left: 5px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      }
      .kesari-top {
        position: absolute;
        top: 5px;
        left: 15px;
        right: 15px;
        height: 15px;
        background: linear-gradient(
          to bottom,
          rgba(255, 200, 80, 0.8),
          transparent
        );
        border-radius: 50%;
      }
      .saffron-dot {
        position: absolute;
        width: 6px;
        height: 6px;
        background: #e8a020;
        border-radius: 50%;
      }
      /* Vada */
      .ill-vada {
        position: relative;
        width: 120px;
        height: 80px;
      }
      .vada-body {
        width: 100px;
        height: 100px;
        background: radial-gradient(
          circle at 40% 35%,
          #c07830 0%,
          #8a4a10 50%,
          #5c2e08 100%
        );
        border-radius: 50%;
        position: absolute;
        top: -10px;
        left: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      }
      .vada-hole {
        position: absolute;
        top: 30px;
        left: 45px;
        width: 30px;
        height: 30px;
        background: radial-gradient(circle, #3b1808, #2c1208);
        border-radius: 50%;
        box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.8);
      }

      /* Overlay & text */
      .card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(10, 5, 2, 0.92) 0%,
          rgba(10, 5, 2, 0.3) 45%,
          transparent 70%
        );
        z-index: 2;
        transition: background 0.4s ease;
      }
      .food-card:hover .card-overlay {
        background: linear-gradient(
          to top,
          rgba(10, 5, 2, 0.97) 0%,
          rgba(10, 5, 2, 0.5) 50%,
          rgba(10, 5, 2, 0.1) 70%
        );
      }
      .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 32px 28px;
        z-index: 3;
      }
      .card-tag {
        font-size: 9px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 8px;
        display: block;
      }
      .card-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 30px;
        font-weight: 400;
        color: var(--cream);
        line-height: 1.1;
        margin-bottom: 8px;
      }
      .card-desc {
        font-size: 11px;
        font-weight: 300;
        color: rgba(246, 231, 200, 0.6);
        line-height: 1.7;
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.5s ease,
          opacity 0.5s ease;
        opacity: 0;
      }
      .food-card:hover .card-desc {
        max-height: 80px;
        opacity: 1;
      }
      .card-price {
        margin-top: 16px;
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        color: var(--gold);
        display: flex;
        align-items: center;
        gap: 8px;
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.5s ease,
          opacity 0.4s ease;
        opacity: 0;
      }
      .food-card:hover .card-price {
        max-height: 40px;
        opacity: 1;
      }
      .card-price::before {
        content: "₹";
        font-size: 14px;
      }
      .wide-card {
        grid-column: span 1;
      }
      .specials-grid .food-card:nth-child(4) {
        grid-column: span 1;
      }
     
      /* STORY SECTION */
      #story {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        min-height: 70vh;
      }
      .story-visual{
    position:relative;
    overflow:hidden;
    min-height:600px;
}

.story-art{
    position:absolute;
    inset:0;

    overflow:hidden;
}

.story-art img{
    width:100%;
    height:100%;

    object-fit:cover;
    display:block;

    transition:transform .8s ease;
}

/* WORKING HOVER */
.story-visual:hover .story-art img{
    transform:scale(1.08);
}
      
.story-art::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
      to top,
      rgba(0,0,0,.35),
      rgba(0,0,0,0)
    );
}
.story-glow,
.kolam{
    pointer-events:none;
}




      .story-glow {
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at 50% 50%,
          rgba(216, 154, 43, 0.1) 0%,
          transparent 70%
        );
      }
      .story-content {
        padding: 100px 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #0e0804;
      }
      .story-quote {
        font-family: "Cormorant Garamond", serif;
        font-size: 48px;
        font-weight: 300;
        font-style: italic;
        line-height: 1.25;
        color: var(--cream);
        margin-bottom: 32px;
      }
      .story-quote span {
        color: var(--gold);
      }
      .story-body {
        font-size: 13px;
        font-weight: 300;
        line-height: 1.9;
        color: rgba(246, 231, 200, 0.7);
        margin-bottom: 48px;
      }
      .story-stats {
        display: flex;
        gap: 50px;
        margin-top: 48px;
        padding-top: 40px;
        border-top: 1px solid rgba(216, 154, 43, 0.15);
      }
      .stat-item {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .stat-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 48px;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
      }
      .stat-label {
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(246, 231, 200, 0.5);
      }

      /* COFFEE SECTION */
      #coffee {
        background: linear-gradient(
          160deg,
          #120a04 0%,
          #1e1008 50%,
          #120a04 100%
        );
        padding: 120px 60px;
        position: relative;
        overflow: hidden;
      }
      .coffee-bg-glow {
        position: absolute;
        top: -20%;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 600px;
        background: radial-gradient(
          ellipse,
          rgba(216, 154, 43, 0.08) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .coffee-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
      }
      .coffee-content {
        position: relative;
        z-index: 2;
      }
      .coffee-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 64px;
        font-weight: 300;
        line-height: 1.1;
        margin-bottom: 30px;
      }
      .coffee-title em {
        font-style: italic;
        color: var(--gold);
      }
      .coffee-desc {
        font-size: 13px;
        font-weight: 300;
        line-height: 1.9;
        color: rgba(246, 231, 200, 0.7);
        margin-bottom: 40px;
      }
      .coffee-process {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .process-step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(216, 154, 43, 0.1);
      }
      .step-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 36px;
        font-weight: 300;
        color: var(--gold);
        opacity: 0.5;
        min-width: 48px;
        line-height: 1;
      }
      .step-text {
        font-size: 13px;
        font-weight: 300;
        line-height: 1.7;
        color: rgba(246, 231, 200, 0.8);
      }
      .step-text strong {
        color: var(--cream);
        font-weight: 400;
        display: block;
        margin-bottom: 4px;
      }

      .coffee-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        min-height: 400px;
      }
      .tumbler-large {
        position: relative;
        z-index: 2;
      }
      .tl-body {
        width: 120px;
        height: 170px;
        background: linear-gradient(
          160deg,
          #d8d8c8 0%,
          #a8a898 30%,
          #888878 60%,
          #a0a090 100%
        );
        border-radius: 6px 6px 12px 12px;
        position: relative;
        overflow: hidden;
        box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.6),
          inset 5px 0 20px rgba(255, 255, 255, 0.15),
          inset -5px 0 15px rgba(0, 0, 0, 0.2);
      }
      .tl-liquid {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 65%;
        background: linear-gradient(to top, #1a0804, #3b1808, #5c2810);
      }
      .tl-decoction {
        position: absolute;
        bottom: 63%;
        left: 0;
        right: 0;
        height: 12%;
        background: linear-gradient(
          to bottom,
          rgba(100, 50, 15, 0.9),
          rgba(70, 35, 10, 0.7)
        );
        filter: blur(1px);
      }
      .tl-foam {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 25px;
        background: linear-gradient(to bottom, #c89050, #a06030);
      }
      .tl-shine {
        position: absolute;
        top: 0;
        left: 5px;
        width: 30%;
        height: 100%;
        background: linear-gradient(
          to right,
          rgba(255, 255, 255, 0.15),
          transparent
        );
      }
      .tl-saucer {
        width: 150px;
        height: 22px;
        background: linear-gradient(
          to right,
          #989888,
          #c0c0b0,
          #b8b8a8,
          #c0c0b0,
          #989888
        );
        border-radius: 0 0 12px 12px;
        margin: 0 auto;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      }
      .tl-steam-wrap {
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
      }
      .tls {
        display: inline-block;
        width: 7px;
        margin: 0 4px;
        background: linear-gradient(
          to top,
          rgba(255, 245, 220, 0.6),
          transparent
        );
        border-radius: 50%;
        filter: blur(4px);
        animation: steamRise 2.2s ease-in-out infinite;
      }
      .tls:nth-child(1) {
        height: 55px;
        animation-delay: 0s;
      }
      .tls:nth-child(2) {
        height: 75px;
        animation-delay: 0.5s;
      }
      .tls:nth-child(3) {
        height: 60px;
        animation-delay: 1s;
      }
      .tls:nth-child(4) {
        height: 50px;
        animation-delay: 1.5s;
      }
      .coffee-glow-ring {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 1px solid rgba(216, 154, 43, 0.15);
        animation: ringPulse 4s ease-in-out infinite;
      }
      .coffee-glow-ring:nth-child(2) {
        width: 400px;
        height: 400px;
        animation-delay: 1s;
        animation-duration: 5s;
      }
      @keyframes ringPulse {
        0%,
        100% {
          opacity: 0.3;
          transform: scale(1);
        }
        50% {
          opacity: 0.8;
          transform: scale(1.03);
        }
      }
      .coffee-ambient {
        position: absolute;
        width: 350px;
        height: 350px;
        background: radial-gradient(
          circle,
          rgba(216, 154, 43, 0.12) 0%,
          transparent 70%
        );
        border-radius: 50%;
        animation: plateGlow 3s ease-in-out infinite alternate;
      }

      /* AMBIENCE GALLERY */
      #ambience {
        background: var(--dark);
        padding: 120px 60px;
      }
      .ambience-header {
        text-align: center;
        margin-bottom: 70px;
      }
      .gallery-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 280px 280px;
        gap: 3px;
        max-width: 1200px;
        margin: 0 auto;
      }
      .gallery-item {
        position: relative;
        overflow: hidden;
        cursor: none;
      }
      .gallery-item:nth-child(1) {
        grid-row: span 2;
      }
      .gallery-bg {
        position: absolute;
        inset: 0;
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }
      .gallery-item:hover .gallery-bg {
        transform: scale(1.06);
      }
      /* Gallery backgrounds */
      .gb-1 {
        background:
          radial-gradient(
            ellipse at 40% 40%,
            rgba(216, 154, 43, 0.25) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 70% 70%,
            rgba(139, 46, 30, 0.2) 0%,
            transparent 40%
          ),
          linear-gradient(135deg, #2c1808 0%, #1a0f08 100%);
      }
      .gb-2 {
        background: linear-gradient(135deg, #1e1208 0%, #2c1a10 100%);
      }
      .gb-3 {
        background: linear-gradient(160deg, #251510 0%, #1a0e08 100%);
      }
      .gb-4 {
        background: linear-gradient(135deg, #1c1008 0%, #281808 100%);
      }
      .gb-5 {
        background: linear-gradient(135deg, #201410 0%, #180e08 100%);
      }

      /* Interior art elements */
      .cafe-art {
        position: absolute;
        inset: 0;
        overflow: hidden;
      }
      /* Hanging lights */
      .hanging-light {
        position: absolute;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .hl-wire {
        width: 1px;
        background: rgba(216, 154, 43, 0.4);
      }
      .hl-bulb {
        width: 20px;
        height: 28px;
        background: radial-gradient(
          ellipse at 40% 30%,
          rgba(255, 240, 150, 0.95),
          rgba(220, 180, 60, 0.8)
        );
        border-radius: 50% 50% 40% 40%;
        box-shadow:
          0 0 20px rgba(255, 220, 80, 0.6),
          0 0 40px rgba(255, 200, 50, 0.3);
        animation: bulbFlicker 4s ease-in-out infinite;
      }
      .hl-glow {
        width: 80px;
        height: 80px;
        background: radial-gradient(
          circle,
          rgba(255, 220, 80, 0.15),
          transparent
        );
        border-radius: 50%;
        margin-top: -20px;
        animation: bulbFlicker 4s ease-in-out infinite;
      }
      @keyframes bulbFlicker {
        0%,
        100% {
          opacity: 0.9;
        }
        50% {
          opacity: 1;
        }
        75% {
          opacity: 0.85;
        }
      }
      /* Wooden texture effect */
      .wood-texture {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        background: repeating-linear-gradient(
          90deg,
          rgba(80, 40, 15, 0.3) 0px,
          rgba(60, 30, 10, 0.1) 2px,
          rgba(80, 40, 15, 0.2) 4px,
          rgba(70, 35, 12, 0.15) 8px
        );
      }
      /* Table setup art */
      .table-art {
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
      }
      .table-surface {
        width: 200px;
        height: 15px;
        background: linear-gradient(
          to right,
          #5a3018,
          #7a4520,
          #8a5028,
          #7a4520,
          #5a3018
        );
        border-radius: 3px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      }
      .table-cup {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 25px;
        background: linear-gradient(to bottom, #d8d8c8, #a8a898);
        border-radius: 3px 3px 5px 5px;
      }
      /* Wall art / Kolam pattern */
      .kolam {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 80px;
        height: 80px;
        opacity: 0.15;
      }
      .kolam-ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid var(--gold);
      }
      .kr1 {
        inset: 0;
      }
      .kr2 {
        inset: 12px;
      }
      .kr3 {
        inset: 24px;
      }
      .kr4 {
        inset: 36px;
      }
      .kolam-cross {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .kc {
        position: absolute;
        background: var(--gold);
      }
      .kch {
        width: 100%;
        height: 1px;
      }
      .kcv {
        height: 100%;
        width: 1px;
      }

      .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(10, 5, 2, 0.7) 0%,
          transparent 60%
        );
        z-index: 2;
      }
      .gallery-caption {
        position: absolute;
        bottom: 20px;
        left: 24px;
        z-index: 3;
        font-family: "Cormorant Garamond", serif;
        font-size: 18px;
        color: rgba(246, 231, 200, 0.8);
      }

      /* MENU SECTION */
      #menu {
        background: #0e0804;
        padding: 120px 60px;
      }
      .menu-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .menu-tabs {
        display: flex;
        justify-content: center;
        gap: 4px;
        margin-bottom: 60px;
        flex-wrap: wrap;
      }
      .menu-tab {
        padding: 10px 28px;
        background: transparent;
        border: 1px solid rgba(216, 154, 43, 0.2);
        color: rgba(246, 231, 200, 0.6);
        font-family: "Poppins", sans-serif;
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: none;
        transition: all 0.3s ease;
      }
      .menu-tab.active,
      .menu-tab:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--dark);
      }
      .menu-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .menu-item {
        padding: 32px 30px;
        border: 1px solid rgba(216, 154, 43, 0.06);
        background: rgba(255, 255, 255, 0.01);
        transition: all 0.3s ease;
        cursor: none;
      }
      .menu-item:hover {
        background: rgba(216, 154, 43, 0.04);
        border-color: rgba(216, 154, 43, 0.15);
      }
      .menu-item-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 10px;
      }
      .menu-item-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        font-weight: 400;
        color: var(--cream);
      }
      .menu-item-price {
        font-family: "Cormorant Garamond", serif;
        font-size: 20px;
        color: var(--gold);
      }
      .menu-item-desc {
        font-size: 11px;
        font-weight: 300;
        line-height: 1.7;
        color: rgba(246, 231, 200, 0.5);
      }
      .menu-item-tag {
        display: inline-block;
        margin-top: 12px;
        padding: 3px 10px;
        border: 1px solid rgba(80, 107, 59, 0.5);
        color: var(--leaf-light);
        font-size: 9px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
      }
      .menu-hidden {
        display: none;
      }
      .menu-dot {
        width: 5px;
        height: 5px;
        background: var(--leaf);
        border-radius: 50%;
        display: inline-block;
        margin-right: 6px;
      }

      /* TESTIMONIALS */
      #testimonials {
        background: linear-gradient(160deg, #120a04 0%, #1a0f08 100%);
        padding: 120px 60px;
        overflow: hidden;
      }
      .testimonials-header {
        text-align: center;
        margin-bottom: 80px;
      }
      .testimonials-track {
        display: flex;
        gap: 24px;
        animation: scrollTestimonials 30s linear infinite;
        width: max-content;
      }
      .testimonials-track:hover {
        animation-play-state: paused;
      }
      @keyframes scrollTestimonials {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      .testimonial-card {
        width: 380px;
        flex-shrink: 0;
        padding: 40px 36px;
        border: 1px solid rgba(216, 154, 43, 0.12);
        background: rgba(216, 154, 43, 0.03);
        position: relative;
      }
      .testimonial-card::before {
        content: "\201C";
        font-family: "Cormorant Garamond", serif;
        font-size: 100px;
        line-height: 0.8;
        color: rgba(216, 154, 43, 0.15);
        position: absolute;
        top: 24px;
        left: 24px;
      }
      .testi-text {
        font-family: "Cormorant Garamond", serif;
        font-size: 20px;
        font-style: italic;
        font-weight: 300;
        line-height: 1.7;
        color: rgba(246, 231, 200, 0.85);
        margin-bottom: 28px;
        position: relative;
        z-index: 1;
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .testi-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(216, 154, 43, 0.3);
        background: radial-gradient(circle, #5c3a22, #3b2418);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Cormorant Garamond", serif;
        font-size: 18px;
        color: var(--gold);
      }
      .testi-name {
        font-size: 12px;
        font-weight: 500;
        color: var(--cream);
      }
      .testi-loc {
        font-size: 10px;
        color: rgba(246, 231, 200, 0.45);
        letter-spacing: 1px;
      }
      .testi-stars {
        color: var(--gold);
        font-size: 11px;
        letter-spacing: 2px;
        margin-top: 3px;
      }
         @media (max-width: 768px) {
          #testimonials{
            padding: 13px 28px;
          }
          #gallery{
             padding: 13px 28px;
          }
         }

      /* GALLERY / INSTA */
      #gallery {
        background: var(--dark);
        padding: 100px 60px;
      }
      .gallery-social-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .social-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .social-item {
        aspect-ratio: 1;
        position: relative;
        overflow: hidden;
        cursor: none;
        margin:10px
      }
      .social-bg {
        position: absolute;
        inset: 0;
        transition: transform 0.5s ease;
      }
      .social-item:hover .social-bg {
        transform: scale(1.08);
      }
      .sb-1 {
        background: radial-gradient(
          ellipse at 50% 60%,
          #8b4520 0%,
          #4a2010 60%,
          #200e06 100%
        );
      }
      .sb-2 {
        background: radial-gradient(
          ellipse at 50% 50%,
          #4a2c10 0%,
          #2c1808 60%,
          #150c04 100%
        );
      }
      .sb-2 img{
        max-width:120%;
      }
      .sb-3 {
        background: radial-gradient(
          ellipse at 50% 55%,
          #6b3c18 0%,
          #402010 60%,
          #200e06 100%
        );
      }
      .sb-4 {
        background: radial-gradient(
          ellipse at 50% 60%,
          #5a3818 0%,
          #35200c 60%,
          #1a0e06 100%
        );
      }
      .sb-5 {
        background: radial-gradient(
          ellipse at 50% 60%,
          #7a4820 0%,
          #4a2c10 60%,
          #250e06 100%
        );
      }
      .sb-6 {
        background: radial-gradient(
          ellipse at 45% 55%,
          #3a2518 0%,
          #22150c 60%,
          #110a06 100%
        );
      }
      .sb-7 {
        background: radial-gradient(
          ellipse at 50% 60%,
          #6b3520 0%,
          #40200e 60%,
          #1e0e06 100%
        );
      }
      .sb-8 {
        background: radial-gradient(
          ellipse at 50% 50%,
          #502c10 0%,
          #301808 60%,
          #180c04 100%
        );
      }
 @media (max-width: 768px) {
         #gallery{
             padding: 13px 28px;
          }
         }

      /* Food miniatures in social grid */
      .social-mini {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .social-hover-overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 5, 2, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
      }
      .social-item:hover .social-hover-overlay {
        opacity: 1;
      }
      .hover-icon {
        font-size: 28px;
        color: var(--gold);
      }
      .insta-handle {
        text-align: center;
        margin-top: 40px;
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        color: rgba(246, 231, 200, 0.5);
      }
      .insta-handle span {
        color: var(--gold);
      }

      /* CONTACT */
      #contact {
        background: #080402;
        padding: 120px 60px;
            overflow: hidden;
      }
      .contact-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .contact-info {
      }
      .contact-tagline {
        font-family: "Cormorant Garamond", serif;
        font-size: 52px;
        font-weight: 300;
        line-height: 1.1;
        margin-bottom: 50px;
      }
      .contact-tagline em {
        font-style: italic;
        color: var(--gold);
      }
      .contact-detail {
        display: flex;
        flex-direction: column;
        gap: 28px;
        margin-bottom: 50px;
      }
      .detail-row {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(216, 154, 43, 0.08);
      }
      .detail-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        border: 1px solid rgba(216, 154, 43, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 14px;
      }
      .detail-label {
        font-size: 9px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: rgba(246, 231, 200, 0.4);
        margin-bottom: 5px;
      }
      .detail-value {
        font-size: 13px;
        font-weight: 300;
        color: rgba(246, 231, 200, 0.85);
        line-height: 1.6;
      }
      .social-links {
        display: flex;
        gap: 12px;
      }
      .social-link {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(216, 154, 43, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(246, 231, 200, 0.5);
        font-size: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: none;
      }
      .social-link:hover {
        border-color: var(--gold);
        color: var(--gold);
      }

      /* Map visual */
      .contact-map {
        position: relative;
      }
      .map-container {
        width: 100%;
        aspect-ratio: 1;
        background: linear-gradient(135deg, #1a1008 0%, #0e0804 100%);
        border: 1px solid rgba(216, 154, 43, 0.1);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .map-container iframe{
  width:100%;
  height:100%;
}
      .map-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(216, 154, 43, 0.05) 1px, transparent 1px),
          linear-gradient(90deg, rgba(216, 154, 43, 0.05) 1px, transparent 1px);
        background-size: 40px 40px;
      }
      .map-roads {
        position: absolute;
        inset: 0;
      }
      .road {
        position: absolute;
        background: rgba(216, 154, 43, 0.1);
      }
      .road-h1 {
        top: 35%;
        left: 0;
        right: 0;
        height: 2px;
      }
      .road-h2 {
        top: 65%;
        left: 0;
        right: 0;
        height: 1px;
      }
      .road-v1 {
        left: 40%;
        top: 0;
        bottom: 0;
        width: 2px;
      }
      .road-v2 {
        left: 70%;
        top: 0;
        bottom: 0;
        width: 1px;
      }
      .map-pin {
        position: absolute;
        top: 30%;
        left: 36%;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 3;
      }
      .pin-dot {
        width: 16px;
        height: 16px;
        background: var(--gold);
        border-radius: 50% 50% 50% 0;
        transform: rotate(-45deg);
        box-shadow: 0 0 20px rgba(216, 154, 43, 0.6);
        animation: pinPulse 2s ease-in-out infinite;
      }
      .pin-ring {
        position: absolute;
        top: -8px;
        left: -8px;
        width: 32px;
        height: 32px;
        border: 2px solid rgba(216, 154, 43, 0.4);
        border-radius: 50%;
        animation: pinRing 2s ease-out infinite;
      }
      @keyframes pinPulse {
        0%,
        100% {
          box-shadow: 0 0 15px rgba(216, 154, 43, 0.5);
        }
        50% {
          box-shadow: 0 0 30px rgba(216, 154, 43, 0.8);
        }
      }
      @keyframes pinRing {
        0% {
          transform: scale(0.5);
          opacity: 1;
        }
        100% {
          transform: scale(2);
          opacity: 0;
        }
      }
      .map-label {
        margin-top: 20px;
        padding: 8px 14px;
        background: rgba(10, 5, 2, 0.9);
        border: 1px solid rgba(216, 154, 43, 0.3);
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 1.5px;
        color: var(--gold);
        white-space: nowrap;
      }
      .timing-card {
        margin-top: 24px;
        padding: 24px 28px;
        border: 1px solid rgba(216, 154, 43, 0.12);
        background: rgba(216, 154, 43, 0.03);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 30px;
      }
      .timing-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .timing-day {
        font-size: 9px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(246, 231, 200, 0.4);
      }
      .timing-time {
        font-family: "Cormorant Garamond", serif;
        font-size: 18px;
        color: var(--cream);
      }

      /* FOOTER */
      .foot-img{
    width:90px;
    height:auto;

    display:block;
    margin:0 auto 18px;

    object-fit:contain;
}
      footer {
        background: #050302;
        padding: 60px 60px 40px;
        border-top: 1px solid rgba(216, 154, 43, 0.08);
      }
      .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;
      }
      .footer-inner > div{
    text-align:center;
}
      .footer-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 36px;
        font-weight: 300;
        color: var(--gold);
        letter-spacing: 2px;
      }
      .footer-logo-sub {
        font-size: 9px;
        letter-spacing: 4px;
        color: rgba(246, 231, 200, 0.3);
        margin-top: 4px;
        text-transform: uppercase;
      }
      .footer-links {
        display: flex;
        gap: 32px;
        list-style: none;
      }
      .footer-links a {
        text-decoration: none;
        color: rgba(246, 231, 200, 0.4);
        font-size: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: color 0.3s;
        cursor: none;
      }
      .footer-links a:hover {
        color: var(--gold);
      }
      .footer-copy {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        border-top: 1px solid rgba(216, 154, 43, 0.06);
        font-size: 10px;
        color: rgba(246, 231, 200, 0.2);
        letter-spacing: 1.5px;
      }
      .footer-made {
        color: rgba(216, 154, 43, 0.3);
      }

      /* SCROLL REVEAL */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.9s ease,
          transform 0.9s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-delay-1 {
        transition-delay: 0.15s;
      }
      .reveal-delay-2 {
        transition-delay: 0.3s;
      }
      .reveal-delay-3 {
        transition-delay: 0.45s;
      }

      /* RESPONSIVE */
      @media (max-width: 900px) {
        nav {
          padding: 20px 24px;
        }
        nav.scrolled {
          padding: 14px 24px;
        }
        .nav-links {
          display: none;
        }
        section {
          padding: 80px 24px;
        }
        .hero-content {
          padding: 0 24px;
        }
        .hero-headline {
          font-size: 52px;
        }
        .hero-plate {
          display: none;
        }
        .specials-grid {
          grid-template-columns: 1fr 1fr;
        }
        #story {
          grid-template-columns: 1fr;
        }
        .story-visual {
          min-height: 360px;
        }
        .story-content {
          padding: 60px 30px;
        }
        .story-quote {
          font-size: 34px;
        }
        .coffee-inner {
          grid-template-columns: 1fr;
          gap: 60px;
        }
        .gallery-grid {
          grid-template-columns: 1fr 1fr;
          grid-template-rows: auto;
        }
        .gallery-item:nth-child(1) {
          grid-row: span 1;
        }
        .contact-inner {
          grid-template-columns: 1fr;
          gap: 60px;
        }
        .social-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-inner {
          flex-direction: column;
          gap: 30px;
          align-items: flex-start;
        }
        .menu-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

```css
/* =========================================
   AMBIENCE GALLERY RESPONSIVE
========================================= */

/* TABLET */

@media(max-width:992px){

  #ambience{
    padding:90px 30px !important;
  }

  .gallery-grid{

    display:grid !important;

    grid-template-columns:1fr 1fr !important;

    gap:14px !important;

    max-width:100% !important;
  }

  .gallery-item{
    min-height:260px !important;
    border-radius:0px !important;
    overflow:hidden;
  }

  /* FIRST IMAGE FULL WIDTH */

  .gallery-item:nth-child(1){

    grid-column:1 / -1 !important;
    grid-row:auto !important;

    min-height:420px !important;
  }

  .gallery-img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }

  .gallery-caption{

    position:absolute;
    bottom:20px;
    left:20px;

    font-size:28px !important;
    line-height:1.1;
  }

}


/* MOBILE */

@media(max-width:768px){

  #ambience{
    padding:70px 18px !important;
  }

  .ambience-header{
    margin-bottom:40px !important;
  }

  .section-title{

    font-size:64px !important;
    line-height:1.05 !important;

    text-align:center !important;
  }

  .gallery-grid{

    display:grid !important;

    grid-template-columns:1fr !important;

    gap:12px !important;

    width:100% !important;
  }

  .gallery-item{

    width:100% !important;

    min-height:250px !important;

    overflow:hidden;

    position:relative;
  }

  /* HERO IMAGE */

  .gallery-item:nth-child(1){

    min-height:420px !important;

    grid-column:auto !important;
    grid-row:auto !important;
  }

  .gallery-bg{
    position:absolute;
    inset:0;
  }

  .gallery-img{

    width:100% !important;
    height:100% !important;

    object-fit:cover !important;

    transition:transform .7s ease;
  }

  .gallery-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
      to top,
      rgba(0,0,0,.72),
      rgba(0,0,0,.18),
      transparent
    );
  }

  .gallery-caption{

    position:absolute;

    left:18px;
    bottom:18px;

    z-index:5;

    font-size:24px !important;

    color:#f6e7c8;

    font-family:"Cormorant Garamond", serif;

    text-shadow:
    0 4px 14px rgba(0,0,0,.7);
  }

}


/* EXTRA SMALL MOBILE */

@media(max-width:480px){

  .section-title{

    font-size:52px !important;
  }

  .gallery-item{

    min-height:220px !important;
  }

  .gallery-item:nth-child(1){

    min-height:340px !important;
  }

  .gallery-caption{

    font-size:20px !important;
  }

}
/* =========================================================
   GLOBAL RESPONSIVE FIXES
========================================================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

section{
  width:100%;
  position:relative;
}

.container{
  width:100%;
  max-width:1400px;
  margin:auto;
}


/* =========================================================
   NAVBAR
========================================================= */

@media(max-width:1200px){

  nav{
    padding:18px 40px;
  }

}


@media(max-width:992px){

  nav{
    padding:16px 24px;
    flex-wrap:wrap;
    gap:18px;
  }

  .nav-links{
    gap:18px;
  }
  .logo-img{
    width: 70px;
  }

}

html{
  scroll-behavior:smooth;
}
@media(max-width:768px){

  nav{
    padding:14px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    width:100%;
    background:#261a1299;
    z-index:9999;
  }

  .hamburger{
    display:block;
    font-size:30px;
    color:#fff;
    cursor:pointer;
    z-index:10001;
    transition: 0.3s ease;
  }

  .hamburger:hover{
    transform:scale(1.1);
  }

  .nav-links{
    position:fixed;
    top:80px;
    left:0;

    width:100%;
    background:#1d110af2;

    display:none;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:24px;
    padding:35px 0;

    z-index:9998;
    opacity:0;
    visibility:hidden;
    transform:translateY(-20px);
    transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);


    display:flex;
  }

  .nav-links li{
    list-style:none;
  }

  .nav-links a{
    font-size:14px;
    color:white;
  }

  .nav-cta{
    display:none;
  }

  .logo-img{
    width:60px;
  }
}
@media (max-width: 480px){
  .logo-img{
    width:50px;
  }
}


/* =========================================================
   HERO SECTION
========================================================= */

@media(max-width:1200px){

  #hero{
    padding-left:40px;
  }

  .hero-content{
    max-width:580px;
  }

  .hero-headline{
    font-size:68px;
  }

  .hero-plate{
    width:420px;
    height:420px;
    right:4%;
  }

}


@media(max-width:992px){

  #hero{
    min-height:100vh;
    justify-content:center;
    padding:120px 30px 90px;
  }

  .hero-content{
    max-width:100%;
    text-align:center;
    padding:0;
  }

  .hero-tag{
    justify-content:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-headline{
    font-size:56px;
    line-height:1.1;
  }

  .hero-sub{
    margin:auto;
  }

  .hero-plate{
    width:340px;
    height:340px;

    right:50%;
    bottom:-50px;
    top:auto;

    transform:translateX(50%);
    opacity:.22;
  }

}


@media(max-width:768px){

  #hero{
    min-height:100vh;
    padding:0px;
  }

  .hero-content{
    text-align:center;
    max-width:none;
    width:100%;
    padding: 38px;
  }

  .hero-headline{
    font-size:42px;
            line-height: 40px;
  }

  .hero-sub{
    font-size:11px;
    line-height:1.8;
    letter-spacing:2px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:20px;
    
  margin-top: 30px;
  }

  .btn-primary,
  .btn-outline{
    width:100%;
    max-width:280px;
    justify-content:center;
  }

  .hero-plate{
    width:240px;
    height:240px;
    bottom:-20px;
  }
  @media(max-width:768px){

  .hero-scroll{
      left:50%;
      transform:translateX(-50%);
      bottom:20px;

      width:auto;   /* NOT 100% */
  }

}

}


@media(max-width:480px){

  .hero-headline{
    font-size:34px;
            line-height: 40px;
  }

  .hero-plate{
    width:190px;
    height:190px;
  }
  

}


/* =========================================================
   SPECIALS SECTION
========================================================= */

@media(max-width:992px){

  #specials{
    padding:90px 30px;
  }

  .specials-grid{
    grid-template-columns:repeat(2,1fr);
    gap:24px;
  }

}


@media(max-width:768px){

   .specials-grid{
      display:grid;

      /* IMPORTANT */
      grid-template-columns:1fr !important;

      gap:22px;
  }

  .food-card{
      width:100%;
      min-height:420px;
  }

  .food-card-bg{
    position:absolute;
    inset:0;
  }

  .food-card-img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .card-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
      to top,
      rgba(0,0,0,.88),
      rgba(0,0,0,.28),
      rgba(0,0,0,.08)
    );
  }

  .card-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:24px 20px;
    z-index:3;
  }

  .card-tag{
    font-size:10px;
    letter-spacing:2px;
    margin-bottom:8px;
  }

  .card-name{
    font-size:34px;
    line-height:1.05;
    margin-bottom:10px;
  }

  .card-desc{
    font-size:14px;
    line-height:1.6;
    margin-bottom:12px;
  }

  .card-price{
    font-size:24px;
  }

}
/* =========================================================
   STORY SECTION
========================================================= */

@media(max-width:992px){

  #story{
    grid-template-columns:1fr;
  }

  .story-visual{
    min-height:450px;
  }

  .story-content{
    padding:70px 40px;
  }

}


@media(max-width:768px){

  .story-visual{
    min-height:350px;
  }

  .story-art{
    min-height:350px;
    border-radius:0;
  }

  .story-content{
    padding:60px 24px;
  }

  .story-quote{
    font-size:32px;
    line-height:1.2;
  }

  .story-stats{
    flex-wrap:wrap;
    gap:25px;
  }

}


@media(max-width:480px){

  .story-content{
    padding:50px 20px;
  }

  .story-quote{
    font-size:28px;
  }

}


/* =========================================================
   COFFEE SECTION
========================================================= */

@media(max-width:768px){

  #coffee{
    padding:70px 20px !important;
    overflow:hidden;
  }

  .coffee-inner{
    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    gap:40px !important;

    width:100%;
  }

  .coffee-content{
    width:100% !important;
    text-align:center !important;
  }

  .section-label{
    justify-content:center !important;
  }

  .coffee-title{
    font-size:36px !important;
    line-height:1.1 !important;

    width:100%;
    word-break:break-word;
  }

  .coffee-title br{
    display:none !important;
  }

  .coffee-desc{
    width:100% !important;

    font-size:14px !important;
    line-height:1.8 !important;

    margin-top:20px;
  }

  .coffee-process{
    width:100%;
    margin-top:35px;
  }

  .process-step{
    display:flex !important;
    flex-direction:column !important;

    text-align:center !important;

    gap:10px;

    padding:22px 0 !important;
  }

  .step-num{
    font-size:30px !important;
  }

  .step-text{
    font-size:13px !important;
    line-height:1.7 !important;
  }

  .step-text strong{
    display:block;
    margin-bottom:8px;

    font-size:18px !important;
  }

  .coffee-visual{
    width:100% !important;

    display:flex !important;
    justify-content:center !important;
  }

  .tumbler-large{
    width:100% !important;

    display:flex !important;
    justify-content:center !important;
  }

  .coffee-image-wrap{
    width:340px !important;
    height:340px !important;

    border-radius:50%;
    overflow:hidden;
  }

}

/* =========================================================
   GALLERY SECTION
========================================================= */

@media(max-width:992px){

  .gallery-grid{
    grid-template-columns:1fr 1fr;
    gap:18px;
  }

  .gallery-item:nth-child(1){
    grid-row:auto;
  }

}


@media(max-width:768px){

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item{
    min-height:240px;
  }

}


@media(max-width:480px){

  .gallery-item{
    min-height:200px;
  }

}


/* =========================================================
   MENU SECTION
========================================================= */

@media(max-width:992px){

  .menu-grid{
    grid-template-columns:1fr;
  }

}


@media(max-width:768px){

  #menu{
        background: #0e0804;
    padding: 13px 28px;
  }

  .takeaway{
    margin-top:20px;
    font-size:15px;
  }

  .menu-tabs{
    flex-wrap:wrap;
    gap:10px;
  }

  .menu-tab{
    padding:10px 16px;
    font-size:10px;
  }

  .menu-item{
    padding:24px 20px;
  }

  .menu-item-title{
    font-size:20px;
  }

}


/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

@media(max-width:768px){

  .testimonial-card{
    width:100%;
    padding:28px 22px;
  }

  .testi-text{
    font-size:16px;
    line-height:1.7;
  }

}


/* =========================================================
   SOCIAL SECTION
========================================================= */

@media(max-width:992px){

  .social-grid{
    grid-template-columns:repeat(2,1fr);
  }

}


@media(max-width:480px){

  .social-grid{
    grid-template-columns:1fr;
  }

}


/* =========================================================
   CONTACT SECTION
========================================================= */

@media(max-width:992px){

  .contact-inner{
    grid-template-columns:1fr;
    gap:60px;
  }

}

@media(min-width:769px) and (max-width:1024px){

  .contact-inner{
    gap:50px;
  }

  .contact-tagline{
    font-size:46px;
  }

  .timing-card{
    grid-template-columns:1fr;
  }

}
@media(max-width:768px){

  #contact{
    padding:80px 20px;
  }

  .contact-inner{
    grid-template-columns:1fr;
    gap:50px;
  }

  .contact-info{
    width:100%;
  }

  .contact-tagline{
    font-size:42px;
    line-height:1.15;
    margin-bottom:35px;
    text-align:center;
  }

  .contact-detail{
    gap:22px;
    margin-bottom:35px;
  }

  .detail-row{
    gap:14px;
    padding-bottom:22px;
  }

  .detail-icon{
    width:38px;
    height:38px;
    font-size:13px;
    flex-shrink:0;
  }

  .detail-label{
    font-size:8px;
    letter-spacing:2px;
  }

  .detail-value{
    font-size:12px;
    line-height:1.7;
    word-break:break-word;
  }

  .social-links{
    justify-content:center;
    flex-wrap:wrap;
  }

  .contact-map{
    width:100%;
  }

  .map-container{
    width:100%;
    aspect-ratio:1/1;
    border-radius:14px;
    overflow:hidden;
  }

  .map-container iframe{
    width:100%;
    height:100%;
  }

  .timing-card{
    grid-template-columns:1fr;
    gap:18px;
    padding:20px;
    margin-top:18px;
  }

  .timing-item{
    gap:6px;
  }

  .timing-day{
    font-size:8px;
  }

  .timing-time{
    font-size:16px;
  }



}


@media(max-width:480px){

  .contact-tagline{
    font-size:30px;
  }

}


/* =========================================================
   FOOTER
========================================================= */

@media(max-width:768px){

  footer{
    text-align:center;
    padding:40px 20px;
  }

  .footer-links{
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
  }
   .foot-img{
      width:70px;
      margin:0 auto 14px;
  }

}


/* =========================================================
   IMAGE RESPONSIVE
========================================================= */

.food-card-img,
.gallery-img,
.hero-food-img,
.coffee-main-img,
.story-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* =========================================================
   HOVER EFFECTS
========================================================= */

.food-card:hover .food-card-img,
.gallery-item:hover .gallery-img,
.story-visual:hover .story-art img,
.coffee-image-wrap:hover .coffee-main-img{
  transform:scale(1.08);
}

.food-card-img,
.gallery-img,
.story-art img,
.coffee-main-img{
  transition:transform .8s ease;
}


/* =========================================================
   OVERFLOW FIX
========================================================= */

.hero-plate,
.story-art,
.gallery-item,
.food-card,
.coffee-image-wrap{
  overflow:hidden;
}


/* =========================================================
   TOUCH DEVICE FIX
========================================================= */

@media(hover:none){

  .food-card:hover .food-card-img,
  .gallery-item:hover .gallery-img,
  .story-visual:hover .story-art img,
  .coffee-image-wrap:hover .coffee-main-img{
    transform:none;
  }

}

```