 :root {
      --cream:    #fdf6ec;
      --espresso: #2c1a0e;
      --roast:    #6b3a1f;
      --gold:     #c8882a;
      --milk:     #f0e0c8;
      --muted:    #9e7b5a;
      --card-bg:  #fffaf4;
      --border:   #e8d5bc;
      --dark-bg:  #1a0f07;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--cream);
      color: var(--espresso);
      font-family: 'Outfit', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 3rem;
      background: rgba(253,246,236,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(44,26,14,.1); }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      letter-spacing: .04em;
      color: var(--espresso);
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: .82rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--espresso); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 3rem 4rem;
      gap: 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 80% 40%, rgba(200,136,42,.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(107,58,31,.08) 0%, transparent 50%);
      pointer-events: none;
    }
    .hero-text { position: relative; z-index: 1; }
    .hero-eyebrow {
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      opacity: 0;
      animation: fadeUp .8s .1s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      font-weight: 300;
      line-height: 1.08;
      color: var(--espresso);
      margin-bottom: 1.6rem;
      opacity: 0;
      animation: fadeUp .8s .25s forwards;
    }
    .hero-title em { font-style: italic; color: var(--roast); }
    .hero-sub {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 2.4rem;
      opacity: 0;
      animation: fadeUp .8s .4s forwards;
    }

    /* ── BOOKING CARDS ── */
    .hero-book {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      opacity: 0;
      animation: fadeUp .8s .5s forwards;
    }
    .hero-book-label {
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .2rem;
    }
    .book-card {
      background: var(--card-bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 1.8rem 2rem;
      cursor: pointer;
      transition: border-color .2s, transform .2s, box-shadow .2s;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .book-card:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(44,26,14,.1);
    }
    .book-card-top {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: .7rem;
    }
    .book-card-icon {
      width: 46px; height: 46px;
      border-radius: 10px;
      background: var(--espresso);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .book-card-icon.gold-bg { background: var(--gold); }
    .book-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--espresso);
      margin-bottom: .15rem;
    }
    .book-card-tag {
      font-size: .65rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .book-card p {
      font-size: .84rem;
      color: var(--muted);
      line-height: 1.55;
    }
    .book-card-arrow {
      display: flex;
      justify-content: flex-end;
      margin-top: .9rem;
      font-size: .8rem;
      color: var(--gold);
      letter-spacing: .06em;
    }

    /* ── SECTION COMMONS ── */
    section { padding: 6rem 3rem; }
    .section-label {
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .8rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .section-sub {
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.7;
      max-width: 500px;
    }

    /* ── MENU ── */
    #menu { background: var(--dark-bg); color: var(--cream); }
    #menu .section-title { color: var(--cream); }
    #menu .section-sub { color: rgba(253,246,236,.55); }
    #menu .section-label { color: var(--gold); }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .menu-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 8px;
      padding: 1.6rem;
      transition: background .2s, transform .2s, border-color .2s;
    }
    .menu-card:hover {
      background: rgba(200,136,42,.1);
      border-color: rgba(200,136,42,.3);
      transform: translateY(-3px);
    }
    .menu-card-icon { font-size: 1.8rem; margin-bottom: 1rem; }
    .menu-card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: .3rem;
    }
    .menu-card-origin {
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(253,246,236,.4);
      margin-bottom: .7rem;
    }
    .menu-card-desc {
      font-size: .83rem;
      color: rgba(253,246,236,.55);
      line-height: 1.6;
      margin-bottom: 1.2rem;
    }
    .menu-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .menu-card-price { font-size: 1.1rem; font-weight: 500; color: var(--gold); }
    .roast-pill {
      font-size: .68rem;
      letter-spacing: .07em;
      text-transform: capitalize;
      padding: .2rem .65rem;
      border-radius: 20px;
    }
    .roast-light    { background: rgba(253,220,170,.15); color: #f0c880; }
    .roast-medium   { background: rgba(200,136,42,.2);  color: #d4a050; }
    .roast-dark     { background: rgba(107,58,31,.4);   color: #c8a06a; }
    .roast-espresso { background: rgba(44,26,14,.6);    color: #a07850; }

    /* ── ABOUT ── */
    #about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .stat-box { border-left: 3px solid var(--gold); padding-left: 1.2rem; }
    .stat-box strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      color: var(--roast);
      line-height: 1;
    }
    .stat-box span { font-size: .78rem; color: var(--muted); letter-spacing: .06em; }
    .about-visual { display: flex; flex-direction: column; gap: 1rem; }
    .about-card {
      background: var(--card-bg);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 1.4rem 1.6rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .about-card-icon { font-size: 1.5rem; flex-shrink: 0; }
    .about-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-bottom: .3rem; }
    .about-card p { font-size: .83rem; color: var(--muted); line-height: 1.5; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark-bg);
      color: rgba(253,246,236,.4);
      text-align: center;
      padding: 2.5rem 3rem;
      font-size: .78rem;
      letter-spacing: .06em;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    footer a { color: var(--gold); text-decoration: none; }

     /* CHAT BUTTOM WITH FULL FEATUREZ */

    /* FAB button */
    #chat-fab {
      position: fixed;
      bottom: 2.2rem;
      right: 2.2rem;
      z-index: 200;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--roast), var(--espresso));
      border: 2.5px solid var(--gold);
      color: var(--cream);
      font-size: 1.8rem;
      cursor: pointer;
      box-shadow: 0 8px 32px rgba(44,26,14,.5), 0 0 0 0 rgba(200,136,42,.4);
      transition: transform .25s cubic-bezier(.34,1.3,.64,1), box-shadow .25s;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fabPulseRing 3s ease-in-out infinite;
    }
    #chat-fab:hover {
      transform: scale(1.1) rotate(-8deg);
      box-shadow: 0 16px 48px rgba(44,26,14,.6), 0 0 0 8px rgba(200,136,42,.15);
    }

    @keyframes fabPulseRing {
      0%, 100% { box-shadow: 0 8px 32px rgba(44,26,14,.5), 0 0 0 0 rgba(200,136,42,.4); }
      50%       { box-shadow: 0 8px 32px rgba(44,26,14,.5), 0 0 0 10px rgba(200,136,42,.0); }
    }

    #chat-fab .notif-dot {
      position: absolute;
      top: 4px;
      right: 4px;
      width: 14px;
      height: 14px;
      background: var(--gold);
      border-radius: 50%;
      border: 2.5px solid var(--cream);
      animation: dotPulse 2s ease-in-out infinite;
    }
    @keyframes dotPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%       { transform: scale(1.35); opacity: .7; }
    }

    /* Chat window */
    #chat-window {
      position: fixed;
      bottom: 6.5rem;
      right: 2.2rem;
      z-index: 199;
      width: 420px;
      height: 620px;
      background: var(--card-bg);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      box-shadow:
        0 32px 80px rgba(44,26,14,.28),
        0 8px 24px rgba(44,26,14,.15),
        inset 0 1px 0 rgba(255,255,255,.8);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: scale(.88) translateY(20px);
      transform-origin: bottom right;
      opacity: 0;
      pointer-events: none;
      transition: transform .3s cubic-bezier(.34,1.3,.64,1), opacity .2s ease;
    }
    #chat-window.open {
      transform: scale(1) translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    /* Header */
    .chat-header {
      background: linear-gradient(135deg, var(--espresso) 0%, #3d2310 100%);
      color: var(--cream);
      padding: 1.3rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }
    .chat-header::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 100px; height: 100px;
      border-radius: 50%;
      background: rgba(200,136,42,.15);
      pointer-events: none;
    }
    .chat-header::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .chat-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #e8a040);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(0,0,0,.3);
      border: 2px solid rgba(255,255,255,.15);
    }

    .chat-header-info { flex: 1; }
    .chat-header-info strong {
      display: block;
      font-size: 1rem;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      letter-spacing: .03em;
      line-height: 1.2;
      color: var(--cream);
    }
    .chat-status {
      display: flex;
      align-items: center;
      gap: .4rem;
      margin-top: .25rem;
    }
    .chat-status-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #5dda7e;
      box-shadow: 0 0 6px #5dda7e;
      animation: statusPulse 2s ease-in-out infinite;
    }
    @keyframes statusPulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: .5; }
    }
    .chat-status span {
      font-size: .72rem;
      color: rgba(253,246,236,.6);
      letter-spacing: .06em;
    }

    .chat-close {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(253,246,236,.7);
      font-size: 1rem;
      cursor: pointer;
      transition: all .15s;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .chat-close:hover {
      background: rgba(255,255,255,.18);
      color: var(--cream);
    }

    /* Suggested quick-reply chips */
    .chat-chips {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem;
      padding: .8rem 1rem .2rem;
      flex-shrink: 0;
      border-bottom: 1px solid var(--border);
      background: rgba(253,246,236,.5);
    }
    .chip {
      font-size: .72rem;
      padding: .3rem .75rem;
      border-radius: 20px;
      border: 1.5px solid var(--border);
      background: var(--card-bg);
      color: var(--muted);
      cursor: pointer;
      letter-spacing: .04em;
      transition: all .15s;
      white-space: nowrap;
    }
    .chip:hover {
      border-color: var(--gold);
      color: var(--roast);
      background: rgba(200,136,42,.08);
    }

    /* Messages area */
    #chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 1.2rem 1rem;
      display: flex;
      flex-direction: column;
      gap: .8rem;
      scroll-behavior: smooth;
    }
    #chat-messages::-webkit-scrollbar { width: 4px; }
    #chat-messages::-webkit-scrollbar-track { background: transparent; }
    #chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

    /* Date separator */
    .msg-date {
      text-align: center;
      font-size: .68rem;
      color: var(--muted);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin: .3rem 0;
      opacity: .6;
    }

    /* Message bubbles */
    .msg {
      max-width: 80%;
      padding: .85rem 1.1rem;
      border-radius: 14px;
      font-size: .9rem;
      line-height: 1.6;
      white-space: pre-wrap;
      animation: msgIn .22s ease;
      position: relative;
    }
    @keyframes msgIn {
      from { opacity: 0; transform: translateY(8px) scale(.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .msg-bot {
      background: white;
      color: var(--espresso);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
      border: 1px solid var(--border);
      box-shadow: 0 2px 8px rgba(44,26,14,.06);
    }
    .msg-user {
      background: linear-gradient(135deg, var(--roast), var(--espresso));
      color: var(--cream);
      align-self: flex-end;
      border-bottom-right-radius: 4px;
      box-shadow: 0 4px 14px rgba(44,26,14,.2);
    }

    /* Typing indicator */
    .msg-typing {
      background: white;
      border: 1px solid var(--border);
      align-self: flex-start;
      padding: .8rem 1.1rem;
      border-radius: 14px;
      border-bottom-left-radius: 4px;
      box-shadow: 0 2px 8px rgba(44,26,14,.06);
    }
    .typing-dots {
      display: flex;
      gap: 5px;
      align-items: center;
    }
    .typing-dots span {
      width: 7px; height: 7px;
      background: var(--muted);
      border-radius: 50%;
      animation: dot 1.3s infinite ease-in-out;
    }
    .typing-dots span:nth-child(2) { animation-delay: .18s; }
    .typing-dots span:nth-child(3) { animation-delay: .36s; }
    @keyframes dot {
      0%, 80%, 100% { transform: scale(.75); opacity: .35; }
      40%            { transform: scale(1.1); opacity: 1; }
    }

    /* Footer / input */
    .chat-footer {
      border-top: 1px solid var(--border);
      padding: .9rem 1rem;
      display: flex;
      gap: .6rem;
      flex-shrink: 0;
      background: white;
      align-items: center;
    }

    #chat-input {
      flex: 1;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: .7rem 1rem;
      font-family: 'Outfit', sans-serif;
      font-size: .9rem;
      color: var(--espresso);
      background: var(--cream);
      transition: border-color .2s, box-shadow .2s;
      resize: none;
      line-height: 1.4;
    }
    #chat-input:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200,136,42,.12);
    }
    #chat-input::placeholder { color: var(--muted); opacity: .7; }

    #chat-send {
      background: linear-gradient(135deg, var(--roast), var(--espresso));
      color: var(--cream);
      border: none;
      border-radius: 10px;
      width: 44px;
      height: 44px;
      font-size: 1.05rem;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(44,26,14,.25);
    }
    #chat-send:hover {
      transform: scale(1.07);
      box-shadow: 0 6px 18px rgba(44,26,14,.35);
    }
    #chat-send:active { transform: scale(.96); }

    /* Powered-by label */
    .chat-powered {
      text-align: center;
      font-size: .65rem;
      color: var(--muted);
      opacity: .5;
      padding: .35rem 0 .1rem;
      letter-spacing: .06em;
      flex-shrink: 0;
      background: white;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 2.5rem; }
      section { padding: 4rem 1.5rem; }
      #about { grid-template-columns: 1fr; gap: 3rem; }
      #chat-window { width: calc(100vw - 2rem); right: 1rem; bottom: 5.5rem; height: 75vh; border-radius: 16px; }
      #chat-fab { right: 1rem; bottom: 1rem; }
    }