  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body { min-height: 100vh; overflow-x: hidden; }
  img, svg { display: block; max-width: 100%; }
  button, input, select, textarea { font: inherit; }

  /* ===== SCROLL REVEAL (progressive enhancement) ===== */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.revealed { opacity: 1; transform: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
  }
  .js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .js .reveal.revealed { opacity: 1; transform: translateY(0); }

  /* ===== NAVIGATION ===== */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 232, 224, 0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background 0.35s ease, backdrop-filter 0.35s ease;
  }
  .nav.scrolled {
    background: rgba(253, 232, 224, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
  }
  .nav__inner { transition: padding 0.3s ease; }
  .nav.scrolled .nav__inner { padding-top: 0.6rem; padding-bottom: 0.6rem; }
  .nav__logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
  .nav__logo-mark { flex-shrink: 0; }
  .nav__logo-text { transition: color 0.3s ease; }
  .nav__link {
    color: #7B2D3B;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.938rem;
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.2s ease;
  }
  .nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7B2D3B;
    border-radius: 1px;
    transition: width 0.25s ease;
  }
  .nav__link:hover::after { width: 100%; }
  .nav__link:hover { color: #b82848; }
  .nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  .nav__burger:hover { background: rgba(123, 45, 59, 0.08); }
  .nav__burger[aria-expanded="true"] svg { transform: rotate(90deg); transition: transform 0.25s ease; }
  .nav__mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253, 232, 224, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .nav__mobile.open { max-height: 400px; opacity: 1; }
  .nav__mobile-link {
    display: block;
    padding: 0.75rem 0;
    color: #7B2D3B;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(123, 45, 59, 0.06);
    transition: padding-left 0.2s ease, color 0.2s ease;
  }
  .nav__mobile-link:hover { padding-left: 0.5rem; color: #b82848; }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.813rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn--burgundy {
    background: #7B2D3B;
    color: #FDE8E0;
    border-color: #7B2D3B;
  }
  .btn--burgundy:hover {
    background: #632431;
    border-color: #632431;
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
  }
  .btn--blush {
    background: #FDE8E0;
    color: #7B2D3B;
    border-color: #FDE8E0;
  }
  .btn--blush:hover {
    background: #f0a5b2;
    border-color: #f0a5b2;
    box-shadow: 0 8px 24px rgba(240, 165, 178, 0.4);
  }
  .btn--ghost-light {
    background: transparent;
    color: #FDE8E0;
    border-color: rgba(253, 232, 224, 0.5);
  }
  .btn--ghost-light:hover {
    background: rgba(253, 232, 224, 0.12);
    border-color: #FDE8E0;
  }
  .btn--full { width: 100%; }

  /* ===== SECTIONS ===== */
  .section {
    padding: 6rem 0;
  }
  .section--light { background: #FFF8F6; }
  .section--dark { background: #7B2D3B; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(34, 13, 17, 0.82) 0%,
      rgba(123, 45, 59, 0.70) 50%,
      rgba(77, 28, 39, 0.80) 100%
    );
  }
  .hero__content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(253, 232, 224, 0.12);
    border: 1px solid rgba(253, 232, 224, 0.25);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FDE8E0;
    width: fit-content;
    backdrop-filter: blur(4px);
  }
  .hero__headline {
    font-weight: 400;
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(34, 13, 17, 0.5);
  }
  .hero__accent {
    font-style: italic;
    opacity: 0.9;
  }
  .hero__subheadline {
    font-weight: 400;
    max-width: 32ch;
  }
  .hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(253, 232, 224, 0.35);
    color: #FDE8E0;
    text-decoration: none;
    animation: heroScroll 2s ease-in-out infinite;
    z-index: 10;
  }
  @keyframes heroScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
  }

  /* ===== TYPOGRAPHY ===== */
  .label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7B2D3B;
    background: rgba(123, 45, 59, 0.08);
    border: 1px solid rgba(123, 45, 59, 0.15);
    border-radius: 50px;
    padding: 0.35rem 0.875rem;
  }
  .label--light {
    color: #FDE8E0;
    background: rgba(253, 232, 224, 0.12);
    border-color: rgba(253, 232, 224, 0.25);
  }
  .heading-xl {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: #38151c;
  }
  .heading-xl .text-burgundy-600 { color: #7B2D3B; }

  /* ===== CARDS ===== */
  .card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(123, 45, 59, 0.07), 0 1px 3px rgba(123, 45, 59, 0.05);
    border: 1px solid rgba(123, 45, 59, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(123, 45, 59, 0.12), 0 2px 6px rgba(123, 45, 59, 0.08);
  }
  .card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 45, 59, 0.08);
    border-radius: 16px;
  }
  .card__icon--light {
    background: rgba(123, 45, 59, 0.08);
  }
  .card__title { margin: 0; }
  .card__title--small { margin: 0; }
  .card--menu { padding: 2rem; }
  .card--hours { padding: 2.5rem; background: white; }
  .card__list { list-style: none; }
  .card__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.07);
  }
  .card__item:last-child { border-bottom: none; }
  .card__item-name {
    font-weight: 600;
    color: #38151c;
    font-size: 0.938rem;
  }
  .card__item-desc {
    color: #7B2D3B;
    opacity: 0.65;
    font-size: 0.875rem;
    text-align: right;
  }

  /* ===== STATS ===== */
  .stat { display: flex; flex-direction: column; gap: 0.25rem; }
  .stat__number { line-height: 1; }
  .stat__label { font-size: 0.813rem; color: #7B2D3B; opacity: 0.7; font-weight: 500; }

  /* ===== ABOUT ===== */
  .about__img-wrap { position: relative; }
  .about__img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(123, 45, 59, 0.15);
  }
  .about__img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: #7B2D3B;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.12;
  }

  /* ===== VIBE GALLERY ===== */
  .vibe__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
  }
  .vibe__img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  .vibe__img:hover { transform: scale(1.02); }
  .vibe__img--1 { grid-column: 1 / -1; }
  .vibe__img--2 { grid-column: 1; }
  .vibe__img--3 { grid-column: 2; }

  /* ===== FEATURES ===== */
  .feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
  }
  .feature__dot {
    width: 8px;
    height: 8px;
    background: #FDE8E0;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(253, 232, 224, 0.2);
  }
  .feature__text { font-size: 1rem; }

  /* ===== HOURS ===== */
  .hours-grid { display: flex; flex-direction: column; }
  .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.07);
  }
  .hours-row:last-child { border-bottom: none; }
  .hours-day { font-weight: 600; color: #38151c; font-size: 0.938rem; }
  .hours-time { color: #7B2D3B; opacity: 0.75; font-size: 0.938rem; }
  .hours-note { margin: 0; }

  /* ===== CONTACT INFO ===== */
  .contact-info__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .contact-info__icon { flex-shrink: 0; opacity: 0.6; }
  .contact-info__link {
    color: #7B2D3B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  .contact-info__link:hover { color: #b82848; }
  .contact-info__text { color: #7B2D3B; opacity: 0.75; font-size: 0.938rem; }

  /* ===== FORM ===== */
  .form {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(123, 45, 59, 0.07), 0 1px 3px rgba(123, 45, 59, 0.05);
    border: 1px solid rgba(123, 45, 59, 0.06);
  }
  .form__group { margin-bottom: 1.25rem; }
  .form__label {
    display: block;
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 0.5rem;
  }
  .form__input {
    width: 100%;
    padding: 0.813rem 1rem;
    border: 1.5px solid rgba(123, 45, 59, 0.15);
    border-radius: 12px;
    background: #FFF8F6;
    color: #38151c;
    font-size: 0.938rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
  }
  .form__input::placeholder { color: #7B2D3B; opacity: 0.35; }
  .form__input:focus {
    border-color: #7B2D3B;
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
    background: white;
  }
  .form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%237B2D3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }
  .form__textarea { resize: vertical; min-height: 120px; }
  .form__success {
    display: none;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(123, 45, 59, 0.06);
    border: 1px solid rgba(123, 45, 59, 0.12);
    border-radius: 12px;
    color: #7B2D3B;
    font-weight: 500;
    font-size: 0.938rem;
  }
  .form__success.show { display: flex; }

  /* ===== FOOTER ===== */
  .footer {
    background: #220d11;
    color: #FDE8E0;
  }
  .footer__logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
  .footer__logo-text { transition: color 0.2s ease; }
  .footer__tagline { line-height: 1.7; }
  .footer__heading { font-size: 0.813rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #FDE8E0; }
  .footer__links { list-style: none; }
  .footer__link {
    color: rgba(253, 232, 224, 0.55);
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .footer__link:hover { color: #FDE8E0; padding-left: 0.375rem; }
  .footer__bottom { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 767px) {
    .section { padding: 4rem 0; }
    .hero__headline { font-size: clamp(2.25rem, 10vw, 4rem); }
    .hero__subheadline { font-size: 1rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; text-align: center; }
    .card { padding: 1.5rem; border-radius: 20px; }
    .card--menu { padding: 1.5rem; }
    .card--hours { padding: 1.5rem; }
    .form { padding: 1.5rem; }
    .vibe__gallery { grid-template-columns: 1fr; }
    .vibe__img--1 { grid-column: 1; }
    .vibe__img--2, .vibe__img--3 { grid-column: 1; }
    .hours-row { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .about__img-accent { display: none; }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .section { padding: 5rem 0; }
  }

  /* ===== ACCESSIBILITY ===== */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .hero__scroll { animation: none; opacity: 0.5; }
  }

  :focus-visible {
    outline: 2px solid #7B2D3B;
    outline-offset: 2px;
    border-radius: 4px;
  }
