/* =============================================
       CSS VARIABLES & RESET
       ============================================= */
    :root {
      --cream:       #FAF5EC;
      --warm-white:  #FFFDF8;
      --brown-dark:  #3A2210;
      --brown-mid:   #6B3D1E;
      --brown-light: #A0622A;
      --amber:       #D4882B;
      --amber-light: #F0B050;
      --rust:        #C0441A;
      --sage:        #7A8C6A;
      --text-body:   #2E1C0E;
      --text-muted:  #7A6050;
      --border:      rgba(106,61,30,0.15);

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Lora', Georgia, serif;
      --font-ui:      'DM Sans', system-ui, sans-serif;

      --radius: 4px;
      --shadow-sm: 0 2px 8px rgba(58,34,16,0.08);
      --shadow-md: 0 8px 32px rgba(58,34,16,0.14);
      --shadow-lg: 0 20px 60px rgba(58,34,16,0.18);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--warm-white);
      color: var(--text-body);
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a   { color: var(--rust); text-decoration: none; transition: color .2s; }
    a:hover { color: var(--brown-dark); }

    /* =============================================
       NAVIGATION
       ============================================= */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(250,245,236,0.97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: var(--shadow-sm); }

    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--brown-dark);
      letter-spacing: -0.01em;
      line-height: 1;
    }
    .nav-logo span {
      display: block;
      font-family: var(--font-ui);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brown-light);
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-ui);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--brown-mid);
      text-transform: uppercase;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--rust); }

    .nav-cta {
      font-family: var(--font-ui);
      font-size: 0.85rem;
      font-weight: 500;
      background: var(--rust);
      color: #fff !important;
      padding: 8px 18px;
      border-radius: 2px;
      letter-spacing: 0.04em;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--brown-dark) !important; color: #fff !important; }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      flex-direction: column;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--brown-dark);
      transition: all .3s;
    }

    /* =============================================
       HERO
       ============================================= */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--brown-dark);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      /* [PLACEHOLDER] Using actual site image path — swap for hi-res photo */
      background-image:
        linear-gradient(
          135deg,
          rgba(58,34,16,0.82) 0%,
          rgba(58,34,16,0.55) 50%,
          rgba(106,61,30,0.72) 100%
        ),
        url('images/cafe-interior.webp');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.04);
      animation: heroZoom 18s ease-in-out infinite alternate;
    }

    @keyframes heroZoom {
      from { transform: scale(1.04); }
      to   { transform: scale(1.0); }
    }

    /* Texture overlay */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.35;
      mix-blend-mode: overlay;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      padding: 120px 24px 80px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 60px;
      align-items: center;
      width: 100%;
    }

    .hero-eyebrow {
      font-family: var(--font-ui);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber-light);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: fadeUp .8s .1s both;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--amber-light);
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 900;
      line-height: 1.0;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
      animation: fadeUp .8s .2s both;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--amber-light);
    }

    .hero-tagline {
      font-family: var(--font-body);
      font-size: 1.15rem;
      font-style: italic;
      color: rgba(255,255,255,0.82);
      margin-bottom: 36px;
      max-width: 520px;
      animation: fadeUp .8s .3s both;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .8s .4s both;
    }

    .btn-primary {
      font-family: var(--font-ui);
      font-size: 0.9rem;
      font-weight: 500;
      background: var(--rust);
      color: #fff;
      padding: 14px 28px;
      border-radius: 2px;
      letter-spacing: 0.04em;
      transition: background .2s, transform .2s;
      display: inline-block;
    }
    .btn-primary:hover {
      background: var(--brown-dark);
      color: #fff;
      transform: translateY(-1px);
    }

    .btn-ghost {
      font-family: var(--font-ui);
      font-size: 0.9rem;
      font-weight: 500;
      background: transparent;
      color: #fff;
      padding: 14px 28px;
      border-radius: 2px;
      border: 1px solid rgba(255,255,255,0.4);
      letter-spacing: 0.04em;
      transition: border-color .2s, background .2s;
      display: inline-block;
    }
    .btn-ghost:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.1);
      color: #fff;
    }

    /* Hero info card */
    .hero-card {
      background: rgba(250,245,236,0.96);
      border-radius: 4px;
      padding: 32px 28px;
      animation: fadeUp .8s .5s both;
      box-shadow: var(--shadow-lg);
    }

    .hero-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 5px 0;
      font-size: 0.88rem;
    }
    .hours-row .day {
      font-family: var(--font-ui);
      font-weight: 500;
      color: var(--text-muted);
    }
    .hours-row .time {
      font-family: var(--font-ui);
      color: var(--brown-dark);
      font-weight: 500;
    }

    .hero-card-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 18px 0;
    }

    .hero-card-contact {
      font-family: var(--font-ui);
      font-size: 0.9rem;
    }
    .hero-card-contact a {
      color: var(--brown-mid);
      display: block;
      padding: 3px 0;
      font-weight: 500;
    }
    .hero-card-contact a:hover { color: var(--rust); }

    .open-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-ui);
      font-size: 0.75rem;
      font-weight: 500;
      color: #3A7D44;
      background: #E8F5EA;
      padding: 4px 10px;
      border-radius: 20px;
      margin-top: 14px;
    }
    .open-badge::before {
      content: '';
      width: 7px;
      height: 7px;
      background: #3A7D44;
      border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .5; transform: scale(0.8); }
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-family: var(--font-ui);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      animation: fadeUp 1s 1.2s both;
    }
    .scroll-arrow {
      width: 20px;
      height: 20px;
      border-right: 1.5px solid rgba(255,255,255,0.4);
      border-bottom: 1.5px solid rgba(255,255,255,0.4);
      transform: rotate(45deg);
      animation: arrowBounce 1.8s ease-in-out infinite;
    }
    @keyframes arrowBounce {
      0%, 100% { transform: rotate(45deg) translateY(0); }
      50%       { transform: rotate(45deg) translateY(5px); }
    }

    /* =============================================
       SECTION COMMON
       ============================================= */
    section { padding: 88px 24px; }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-family: var(--font-ui);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--brown-dark);
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .section-title em {
      font-style: italic;
      color: var(--brown-light);
    }

    .title-rule {
      display: block;
      width: 48px;
      height: 3px;
      background: var(--amber);
      margin: 18px 0 28px;
      border-radius: 2px;
    }

    /* =============================================
       TRUST STRIP
       ============================================= */
    .trust-strip {
      background: var(--brown-dark);
      padding: 20px 24px;
    }

    .trust-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-ui);
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      letter-spacing: 0.03em;
    }

    .trust-icon {
      width: 18px;
      height: 18px;
      opacity: 0.75;
    }

    /* =============================================
       ABOUT
       ============================================= */
    #about {
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    #about::before {
      content: '"';
      position: absolute;
      top: -20px;
      right: 5%;
      font-family: var(--font-display);
      font-size: 28rem;
      color: var(--brown-light);
      opacity: 0.04;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-image-wrap {
      position: relative;
    }

    .about-image-frame {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .about-image-frame img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }

    .about-image-accent {
      position: absolute;
      bottom: -18px;
      right: -18px;
      width: 140px;
      height: 140px;
      background: var(--amber);
      border-radius: 2px;
      z-index: -1;
    }

    .about-badge {
      position: absolute;
      top: 20px;
      left: -20px;
      background: var(--rust);
      color: #fff;
      padding: 14px 20px;
      border-radius: 2px;
      box-shadow: var(--shadow-md);
    }
    .about-badge .year {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 900;
      line-height: 1;
      display: block;
    }
    .about-badge .label {
      font-family: var(--font-ui);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.85;
      display: block;
    }

    .about-text p {
      color: var(--text-body);
      margin-bottom: 18px;
      font-size: 1.05rem;
    }

    .about-text p:last-of-type { margin-bottom: 0; }

    blockquote {
      border-left: 3px solid var(--amber);
      padding-left: 20px;
      margin: 28px 0;
      font-style: italic;
      font-size: 1.1rem;
      color: var(--brown-mid);
    }

    blockquote cite {
      display: block;
      font-size: 0.82rem;
      font-style: normal;
      font-family: var(--font-ui);
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 8px;
    }

    /* =============================================
       MENU HIGHLIGHTS
       ============================================= */
    #menu {
      background: var(--warm-white);
    }

    .menu-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .menu-note {
      font-family: var(--font-ui);
      font-size: 0.82rem;
      color: var(--text-muted);
      font-style: italic;
    }

    .menu-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 40px;
      border-bottom: 1px solid var(--border);
    }

    .menu-tab {
      font-family: var(--font-ui);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 10px 24px;
      border: none;
      background: none;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color .2s, border-color .2s;
    }

    .menu-tab.active {
      color: var(--rust);
      border-bottom-color: var(--rust);
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .menu-panel { display: none; }
    .menu-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

    .menu-card {
      background: var(--cream);
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .25s, box-shadow .25s;
    }
    .menu-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .menu-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      background: var(--brown-light);
    }

    /* SVG placeholder for cards without real images */
    .menu-card-image-placeholder {
      width: 100%;
      height: 180px;
      background: linear-gradient(135deg, var(--brown-mid) 0%, var(--brown-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .menu-card-image-placeholder svg {
      opacity: 0.2;
      width: 60px;
      height: 60px;
    }

    .menu-card-body {
      padding: 18px 20px 20px;
    }

    .menu-card h4 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 6px;
    }

    .menu-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .menu-card-tag {
      display: inline-block;
      font-family: var(--font-ui);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--rust);
      background: rgba(192,68,26,0.08);
      padding: 3px 8px;
      border-radius: 2px;
      margin-bottom: 10px;
    }

    .menu-footer-note {
      margin-top: 40px;
      text-align: center;
      font-family: var(--font-body);
      font-style: italic;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    /* =============================================
       DAILY SPECIALS RIBBON
       ============================================= */
    .specials-ribbon {
      background: var(--amber);
      padding: 18px 24px;
      overflow: hidden;
      position: relative;
    }

    .specials-ribbon-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .specials-label {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--brown-dark);
      white-space: nowrap;
    }

    .specials-text {
      font-family: var(--font-ui);
      font-size: 0.88rem;
      color: var(--brown-dark);
      opacity: 0.85;
    }

    /* =============================================
       DESSERTS CALLOUT
       ============================================= */
    .desserts-band {
      background: var(--brown-dark);
      padding: 64px 24px;
      position: relative;
      overflow: hidden;
    }

    .desserts-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 80%, rgba(212,136,43,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192,68,26,0.12) 0%, transparent 50%);
    }

    .desserts-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .desserts-text .section-label { color: var(--amber-light); }
    .desserts-text .section-title { color: #fff; }

    .desserts-text p {
      color: rgba(255,255,255,0.78);
      margin-top: 20px;
      font-size: 1.05rem;
    }

    .desserts-image img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: var(--shadow-lg);
    }

    /* =============================================
       HOURS & LOCATION
       ============================================= */
    #hours-location {
      background: var(--cream);
    }

    .hl-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }

    .hours-card,
    .location-card {
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 36px 32px;
      box-shadow: var(--shadow-sm);
    }

    .card-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .card-title svg {
      width: 22px;
      height: 22px;
      color: var(--amber);
      flex-shrink: 0;
    }

    .hours-table { width: 100%; border-collapse: collapse; }
    .hours-table tr + tr td { border-top: 1px solid var(--border); }
    .hours-table td {
      padding: 9px 0;
      font-size: 0.92rem;
    }
    .hours-table .td-day {
      font-family: var(--font-ui);
      font-weight: 500;
      color: var(--text-muted);
      width: 55%;
    }
    .hours-table .td-time {
      font-family: var(--font-ui);
      font-weight: 600;
      color: var(--brown-dark);
      text-align: right;
    }

    .hours-note {
      margin-top: 18px;
      padding: 12px 14px;
      background: rgba(212,136,43,0.1);
      border-left: 3px solid var(--amber);
      font-size: 0.85rem;
      font-family: var(--font-ui);
      color: var(--brown-mid);
      border-radius: 0 2px 2px 0;
    }

    .address-block {
      font-family: var(--font-ui);
      font-size: 0.95rem;
      color: var(--text-body);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .address-block strong {
      display: block;
      font-weight: 600;
      color: var(--brown-dark);
      margin-bottom: 4px;
    }

    .directions-note {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-style: italic;
      margin-bottom: 20px;
      font-family: var(--font-ui);
    }

    .map-embed {
      width: 100%;
      height: 220px;
      border-radius: 4px;
      border: 1px solid var(--border);
      overflow: hidden;
      margin-top: 6px;
    }
    .map-embed iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .location-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .btn-outline {
      font-family: var(--font-ui);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--brown-mid);
      border: 1.5px solid var(--brown-light);
      padding: 9px 18px;
      border-radius: 2px;
      transition: all .2s;
      display: inline-block;
    }
    .btn-outline:hover {
      background: var(--brown-dark);
      border-color: var(--brown-dark);
      color: #fff;
    }

    /* =============================================
       FAQ
       ============================================= */
    #faq {
      background: var(--warm-white);
    }

    .faq-grid {
      max-width: 780px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 22px 0;
      cursor: pointer;
      text-align: left;
    }

    .faq-question span {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--brown-dark);
    }

    .faq-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--amber);
      transition: transform .3s;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding-bottom: 20px;
    }

    .faq-answer p {
      font-size: 0.96rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* =============================================
       CONTACT
       ============================================= */
    #contact {
      background: var(--cream);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 20px;
    }

    .contact-info p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 28px;
      max-width: 380px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      background: var(--amber);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 18px;
      height: 18px;
      color: #fff;
    }

    .contact-item-text {
      font-family: var(--font-ui);
      font-size: 0.9rem;
    }
    .contact-item-text .label {
      font-weight: 500;
      color: var(--text-muted);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 2px;
    }
    .contact-item-text a,
    .contact-item-text span {
      color: var(--brown-dark);
      font-weight: 500;
    }
    .contact-item-text a:hover { color: var(--rust); }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-ui);
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--brown-mid);
      background: var(--warm-white);
      border: 1px solid var(--border);
      padding: 8px 14px;
      border-radius: 2px;
      transition: all .2s;
    }

    .social-link:hover {
      background: var(--brown-dark);
      border-color: var(--brown-dark);
      color: #fff;
    }

    .contact-form {
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 36px 32px;
      box-shadow: var(--shadow-sm);
    }

    .contact-form h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 6px;
    }

    .contact-form p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 24px;
      font-family: var(--font-ui);
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-family: var(--font-ui);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 2px;
      font-family: var(--font-ui);
      font-size: 0.92rem;
      color: var(--text-body);
      background: var(--warm-white);
      transition: border-color .2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--amber);
    }

    .form-group textarea {
      height: 110px;
      resize: vertical;
    }

    .form-submit {
      width: 100%;
      padding: 13px;
      background: var(--rust);
      color: #fff;
      border: none;
      border-radius: 2px;
      font-family: var(--font-ui);
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      cursor: pointer;
      transition: background .2s;
      margin-top: 6px;
    }
    .form-submit:hover { background: var(--brown-dark); }

    /* =============================================
       FOOTER
       ============================================= */
    footer {
      background: var(--brown-dark);
      padding: 40px 24px;
      color: rgba(255,255,255,0.7);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
    }

    .footer-nap {
      font-family: var(--font-ui);
      font-size: 0.82rem;
      line-height: 1.8;
    }
    .footer-nap a {
      color: rgba(255,255,255,0.65);
      transition: color .2s;
    }
    .footer-nap a:hover { color: var(--amber-light); }

    .footer-credit {
      font-family: var(--font-ui);
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.04em;
    }

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

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s, transform .65s;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* =============================================
       RESPONSIVE
       ============================================= */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }
      .hero-card { display: none; } /* show inline below hero on mobile */

      .about-grid,
      .desserts-inner,
      .hl-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .menu-panel.active {
        grid-template-columns: 1fr 1fr;
      }

      .about-badge { left: 12px; }

      .about-image-frame img { height: 300px; }

      .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    }

    @media (max-width: 640px) {
      section { padding: 64px 20px; }

      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0; right: 0;
        background: var(--cream);
        padding: 20px 24px;
        gap: 14px;
        box-shadow: var(--shadow-md);
        z-index: 99;
      }
      .nav-links.open a { font-size: 1rem; }
      .nav-toggle { display: flex; }
      .nav-cta { display: none; }

      .menu-panel.active { grid-template-columns: 1fr; }

      .trust-inner { gap: 20px; justify-content: flex-start; }

      .footer-inner { flex-direction: column; gap: 16px; }

      .hero-actions { flex-direction: column; }
      .btn-primary, .btn-ghost { text-align: center; }

      .contact-form { padding: 24px 20px; }
      .hours-card, .location-card { padding: 24px 20px; }
    }

    /* =============================================
       PHOTO GALLERY BAND
       ============================================= */
    .gallery-band {
      padding: 0;
      overflow: hidden;
      background: var(--brown-dark);
    }

    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      height: 260px;
    }

    .gallery-cell {
      overflow: hidden;
      position: relative;
    }

    .gallery-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
      display: block;
    }

    .gallery-cell:hover img {
      transform: scale(1.07);
    }

    .gallery-cell::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(58,34,16,0.45) 100%);
      pointer-events: none;
    }

    @media (max-width: 640px) {
      .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
        height: 320px;
      }
    }


    /* =============================================
       TABBED MENU
       ============================================= */

    /* Tab bar */
    .tab-bar-wrap {
      position: sticky;
      top: 64px;
      z-index: 50;
      background: var(--warm-white);
      border-bottom: 2px solid var(--border);
      margin-bottom: 40px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .tab-bar-wrap::-webkit-scrollbar { display: none; }

    .tab-bar {
      display: flex;
      min-width: max-content;
      padding: 0 4px;
    }

    .tab-btn {
      font-family: var(--font-ui);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--text-muted);
      background: none;
      border: none;
      border-bottom: 3px solid transparent;
      padding: 14px 18px;
      margin-bottom: -2px;
      cursor: pointer;
      white-space: nowrap;
      transition: color .2s, border-color .2s;
    }
    .tab-btn:hover  { color: var(--brown-mid); }
    .tab-btn.active { color: var(--rust); border-bottom-color: var(--rust); }

    /* Panels */
    .tab-panel { display: none; }
    .tab-panel.active { display: block; animation: fadeUp .3s both; }

    /* Panel inner layout */
    .menu-panel-inner {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 36px;
      align-items: start;
    }

    .menu-panel-photo {
      position: sticky;
      top: 130px;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .menu-panel-photo img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }
    /* panels with no photo */
    .menu-panel-inner.no-photo {
      grid-template-columns: 1fr;
    }

    /* Section heading inside a panel */
    .mpanel-heading {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--brown-dark);
      padding-bottom: 8px;
      border-bottom: 2px solid var(--amber);
      margin: 28px 0 4px;
    }
    .mpanel-heading:first-child { margin-top: 0; }

    .mpanel-sub {
      font-family: var(--font-ui);
      font-size: 0.78rem;
      font-style: italic;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    /* Item rows */
    .mrow {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px dotted var(--border);
    }
    .mrow:last-child { border-bottom: none; }

    .mrow-left { flex: 1; min-width: 0; }

    .mrow-name {
      font-family: var(--font-ui);
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-body);
    }
    .mrow-desc {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-style: italic;
      color: var(--text-muted);
      display: block;
      line-height: 1.35;
      margin-top: 1px;
    }
    .mrow-price {
      font-family: var(--font-ui);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--brown-mid);
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* Size row (B&G) */
    .size-row {
      display: flex;
      gap: 24px;
      padding: 10px 0;
      border-bottom: 1px dotted var(--border);
      flex-wrap: wrap;
    }
    .size-item { font-family: var(--font-ui); font-size: 0.88rem; }
    .size-label { color: var(--text-muted); }
    .size-price { font-weight: 600; color: var(--brown-mid); margin-left: 4px; }

    /* Callout box inside panels */
    .mpanel-callout {
      margin-top: 16px;
      padding: 11px 14px;
      background: rgba(212,136,43,0.09);
      border-left: 3px solid var(--amber);
      border-radius: 0 3px 3px 0;
      font-family: var(--font-ui);
      font-size: 0.82rem;
      color: var(--brown-mid);
      line-height: 1.55;
    }

    /* Sides grid */
    .sides-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 4px 20px;
    }
    .sides-grid span {
      font-family: var(--font-ui);
      font-size: 0.86rem;
      color: var(--text-body);
      padding: 5px 0;
      border-bottom: 1px dotted var(--border);
    }

    /* Two-col item list */
    .mrow-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 28px;
    }

    .menu-footnote {
      margin-top: 32px;
      text-align: center;
      font-family: var(--font-body);
      font-style: italic;
      color: var(--text-muted);
      font-size: 0.88rem;
    }

    @media (max-width: 760px) {
      .menu-panel-inner { grid-template-columns: 1fr; }
      .menu-panel-photo { position: static; height: 200px; }
      .menu-panel-photo img { height: 200px; }
      .mrow-2col { grid-template-columns: 1fr; }
      .sides-grid { grid-template-columns: repeat(2,1fr); }
      .tab-btn { padding: 12px 14px; font-size: 0.75rem; }
    }

    /* =============================================
       PHOTO GALLERY BAND
       ============================================= */
    .gallery-band {
      padding: 0;
      overflow: hidden;
      background: var(--brown-dark);
    }
    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      height: 260px;
    }
    .gallery-cell { overflow: hidden; position: relative; }
    .gallery-cell img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease; display: block;
    }
    .gallery-cell:hover img { transform: scale(1.07); }
    .gallery-cell::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(58,34,16,.45) 100%);
      pointer-events: none;
    }
    @media (max-width: 640px) {
      .gallery-strip { grid-template-columns: repeat(2,1fr); height: 320px; }
    }

/* =============================================
   REVIEWS CAROUSEL
   ============================================= */

.reviews-section {
  background: var(--brown-dark);
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle warm grain behind the section */
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(212,136,43,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(192,68,26,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.reviews-section .section-inner {
  position: relative;
  z-index: 1;
}

/* Header */
.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}
.reviews-header .title-rule {
  margin-left: auto;
  margin-right: auto;
}

/* Aggregate score row */
.reviews-scores {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin-bottom: 52px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.rscore-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
}

.rscore-logo-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
}

.rscore-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.rscore-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.rscore-count {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

.rscore-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* Carousel container */
.rcarousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 56px;
  min-height: 220px;
}

/* Slide list */
.rslides {
  position: relative;
  height: 320px;
}

/* Individual slide — all stay absolute so container never reflows */
.rslide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}

.rslide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.rquote-wrap {
  text-align: center;
  padding: 0 4px;
}

.rquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  quotes: "C" "D";
}

.rquote::before { content: ''; }
.rquote::after  { content: ''; }

.rquote-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rstars {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rreviewer {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

/* Platform badge */
.rplatform {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}

.rplatform.tripadvisor {
  background: rgba(52,175,85,0.18);
  color: #5fd87a;
  border: 1px solid rgba(52,175,85,0.25);
}

.rplatform.google {
  background: rgba(212,136,43,0.18);
  color: var(--amber-light);
  border: 1px solid rgba(212,136,43,0.25);
}

/* Prev / Next arrows */
.rarrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  padding: 0;
  z-index: 5;
}

.rarrow:hover {
  background: rgba(212,136,43,0.25);
  border-color: var(--amber);
}

.rarrow svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.7);
}

.rarrow-prev { left: 0; }
.rarrow-next { right: 0; }

/* Progress bar */
.rprogress-wrap {
  max-width: 820px;
  margin: 28px auto 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.rprogress-bar {
  height: 100%;
  background: var(--amber);
  width: 0%;
  border-radius: 2px;
  transform-origin: left center;
}

.rprogress-bar.animating {
  animation: rFill 5s linear forwards;
}

@keyframes rFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Dot indicators */
.rdots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 8px;
}

.rdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}

.rdot.active {
  background: var(--amber);
  transform: scale(1.4);
}

/* Source link */
.rview-all {
  text-align: center;
  margin-top: 28px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
}

.rview-all a {
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  transition: color .2s;
}

.rview-all a:hover {
  color: rgba(255,255,255,0.65);
}

@media (max-width: 640px) {
  .rcarousel { padding: 0 44px; }
  .rslides { height: 420px; }
  .rquote { font-size: 1.05rem; }
  .reviews-scores { flex-direction: column; max-width: 280px; }
  .rscore-divider { width: auto; height: 1px; }
  .rscore-item { flex-direction: row; justify-content: center; gap: 12px; padding: 14px 20px; }
  .rscore-num { font-size: 1.5rem; }
}
