/* ─── RESET & VARIABLES ─── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg: #F6F3EE;
      --bg-warm: #EFEBE4;
      --text: #1A1A1A;
      --text-light: #5A5549;
      --text-muted: #8C857A;
      --accent: #6B3A3A;
      --accent-light: #8B5E5E;
      --border: #D6D0C6;
      --border-light: #E8E3DB;
      --white: #FFFFFF;
      --serif: 'Cormorant Garamond', 'Georgia', serif;
      --sans: 'Jost', 'Helvetica Neue', sans-serif;
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--sans);
      font-weight: 300;
      color: var(--text);
      background: var(--bg);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::selection {
      background: var(--accent);
      color: var(--white);
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* ─── UTILITIES ─── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section-label {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .section-title {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(2rem, 5vw, 3.5rem);
      line-height: 1.15;
      color: var(--text);
    }

    .section-title em {
      font-style: italic;
      font-weight: 300;
    }

    .divider {
      width: 40px;
      height: 1px;
      background: var(--accent);
      margin: 2rem 0;
    }

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

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes revealLine {
      from { width: 0; }
      to { width: 40px; }
    }

    .animate {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── NAVIGATION ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.5rem 0;
      transition: all 0.4s ease;
      color: var(--white);
    }

    nav.scrolled {
      background: rgba(246, 243, 238, 0.95);
      backdrop-filter: blur(20px);
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-light);
      color: var(--text);
    }

    nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.4rem;
      letter-spacing: 0.08em;
      color: var(--white);
      transition: color 0.4s ease;
    }

    nav.scrolled .nav-logo {
      color: var(--text);
    }

    .nav-logo span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
      position: relative;
      transition: color 0.4s ease;
    }

    nav.scrolled .nav-links a {
      color: var(--text-light);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--white);
      transition: width 0.3s ease, background 0.4s ease;
    }

    nav.scrolled .nav-links a::after {
      background: var(--accent);
    }

    .nav-links a:hover { color: var(--white); }
    nav.scrolled .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.6rem 1.6rem;
      border: 1px solid rgba(255, 255, 255, 0.6);
      color: var(--white);
      transition: all 0.4s ease;
    }

    nav.scrolled .nav-cta {
      border-color: var(--text);
      color: var(--text);
    }

    .nav-cta:hover {
      background: var(--white);
      color: var(--text);
    }

    nav.scrolled .nav-cta:hover {
      background: var(--text);
      color: var(--bg);
    }

    /* Mobile menu */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--white);
      transition: all 0.3s;
    }

    nav.scrolled .nav-toggle span {
      background: var(--text);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(160deg, rgba(246,243,238,0) 40%, rgba(246,243,238,0.6) 100%),
        url('../img/hero-bg.jpg') center/cover no-repeat;
      filter: brightness(0.85) contrast(1.05);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.35) 0%,
        rgba(26, 26, 26, 0.15) 50%,
        rgba(26, 26, 26, 0.55) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--white);
      padding: 2rem;
    }

    .hero-label {
      font-family: var(--sans);
      font-weight: 300;
      font-size: 0.72rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.3s forwards;
    }

    .hero-title {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(3.5rem, 10vw, 8rem);
      line-height: 0.95;
      letter-spacing: 0.04em;
      margin-bottom: 0.3rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.5s forwards;
    }

    .hero-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
      margin: 0 0.15em;
      vertical-align: middle;
      position: relative;
      top: -0.15em;
    }

    .hero-subtitle {
      font-family: var(--serif);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(1rem, 2.5vw, 1.35rem);
      letter-spacing: 0.06em;
      margin-top: 1rem;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.7s forwards;
    }

    .hero-cta {
      display: inline-block;
      margin-top: 3rem;
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      padding: 0.9rem 2.5rem;
      border: 1px solid rgba(255,255,255,0.6);
      transition: all 0.4s ease;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.9s forwards;
    }

    .hero-cta:hover {
      background: var(--white);
      color: var(--text);
      border-color: var(--white);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.6);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeIn 1s ease 1.5s forwards;
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
      animation: pulse 2s ease infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 1; }
    }

    /* ─── PHILOSOPHY / ABOUT SECTION ─── */
    .philosophy {
      padding: 8rem 0;
    }

    .philosophy .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .philosophy-text p {
      font-size: 1.05rem;
      color: var(--text-light);
      margin-bottom: 1.5rem;
      line-height: 1.85;
    }

    .philosophy-text p:first-of-type::first-letter {
      font-family: var(--serif);
      font-size: 3.5rem;
      float: left;
      line-height: 1;
      margin-right: 0.5rem;
      margin-top: 0.1rem;
      color: var(--accent);
      font-weight: 400;
    }

    .philosophy-visual {
      position: relative;
    }

    .philosophy-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      background: var(--bg-warm);
      border: 0;
    }

    .philosophy-img-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      background: var(--bg-warm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 0.5rem;
      color: var(--text-muted);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
    }

    .philosophy-visual::after {
      content: '';
      position: absolute;
      top: 1.5rem;
      right: -1.5rem;
      bottom: -1.5rem;
      left: 1.5rem;
      border: 1px solid var(--border);
      z-index: -1;
    }

    .founders {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
    }

    .founder {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .founder-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--bg-warm);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: 0.9rem;
      color: var(--accent);
      font-weight: 500;
    }

    .founder-info {
      font-size: 0.82rem;
    }

    .founder-name {
      font-weight: 400;
      color: var(--text);
    }

    .founder-role {
      color: var(--text-muted);
      font-weight: 300;
      font-size: 0.75rem;
    }

    /* ─── CONCEPT STRIP ─── */
    .concept-strip {
      background: var(--text);
      color: var(--white);
      padding: 5rem 0;
      text-align: center;
    }

    .concept-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 3rem;
    }

    .concept-item {
      padding: 2rem 1.5rem;
    }

    .concept-number {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--accent-light);
      margin-bottom: 1rem;
      line-height: 1;
    }

    .concept-item h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
      letter-spacing: 0.02em;
    }

    .concept-item p {
      font-size: 0.88rem;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }

    /* ─── MENU / LA CARTE ─── */
    .menu {
      padding: 8rem 0;
    }

    .menu-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .menu-header p {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 500px;
      margin: 1.5rem auto 0;
    }

    .menu-tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 3rem;
    }

    .menu-tab {
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.7rem 2rem;
      border: 1px solid var(--border);
      color: var(--text-light);
      transition: all 0.3s;
    }

    .menu-tab.active,
    .menu-tab:hover {
      background: var(--text);
      color: var(--white);
      border-color: var(--text);
    }

    .menu-section {
      max-width: 700px;
      margin: 0 auto;
    }

    .menu-section-title {
      font-family: var(--serif);
      font-weight: 400;
      font-style: italic;
      font-size: 1.4rem;
      text-align: center;
      margin-bottom: 2rem;
      color: var(--accent);
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 1.2rem 0;
      border-bottom: 1px solid var(--border-light);
    }

    .menu-item:last-child { border-bottom: none; }

    .menu-item-info {
      flex: 1;
      padding-right: 2rem;
    }

    .menu-item-name {
      font-family: var(--serif);
      font-weight: 500;
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }

    .menu-item-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      font-weight: 300;
    }

    .menu-item-price {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.05rem;
      color: var(--accent);
      white-space: nowrap;
    }

    .menu-note {
      text-align: center;
      margin-top: 3rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      font-style: italic;
    }

    .menu-formula {
      text-align: center;
      background: var(--bg-warm);
      padding: 2.5rem 2rem;
      margin-bottom: 3rem;
      border: 1px solid var(--border-light);
    }

    .menu-formula h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }

    .menu-formula .price {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 300;
      color: var(--accent);
    }

    .menu-formula p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
    }

    /* ─── GALLERY ─── */
    .gallery {
      padding: 0 0 8rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
    }

    .gallery-item {
      aspect-ratio: 1;
      background: var(--bg-warm);
      overflow: hidden;
      position: relative;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
    }

    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(6) { } /* 6th item fills the grid perfectly */

    .gallery-cta {
      text-align: center;
      margin-top: 3rem;
    }

    .gallery-cta a {
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-light);
      border-bottom: 1px solid var(--border);
      padding-bottom: 0.3rem;
      transition: all 0.3s;
    }

    .gallery-cta a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    /* ─── RESERVATION ─── */
    .reservation {
      padding: 8rem 0;
      background: var(--bg-warm);
    }

    .reservation .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }

    .reservation-left p {
      font-size: 1rem;
      color: var(--text-light);
      margin-top: 1.5rem;
      line-height: 1.8;
    }

    .reservation-info {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .reservation-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .reservation-info-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.9rem;
    }

    .reservation-info-text h4 {
      font-weight: 400;
      font-size: 0.85rem;
      margin-bottom: 0.2rem;
    }

    .reservation-info-text p {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* Form */
    .reservation-form {
      background: var(--white);
      padding: 3rem;
      border: 1px solid var(--border-light);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-bottom: 1.2rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group.full {
      grid-column: span 2;
    }

    .form-group label {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: var(--sans);
      font-size: 0.9rem;
      font-weight: 300;
      padding: 0.8rem 1rem;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      outline: none;
      transition: border-color 0.3s;
    }

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

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

    .form-submit {
      width: 100%;
      margin-top: 1.5rem;
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1rem;
      background: var(--text);
      color: var(--white);
      border: 1px solid var(--text);
      transition: all 0.3s;
    }

    .form-submit:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    /* ─── MAP / ACCESS ─── */
    .access {
      padding: 8rem 0;
    }

    .access .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .access-map {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--bg-warm);
      border: 1px solid var(--border-light);
      overflow: hidden;
    }

    .access-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: saturate(0.85) contrast(1.02);
    }

    .access-details {
      padding-top: 1rem;
    }

    .access-block {
      margin-bottom: 2.5rem;
    }

    .access-block h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.15rem;
      margin-bottom: 0.8rem;
    }

    .access-block p,
    .access-block a {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.8;
    }

    .access-block a:hover {
      color: var(--accent);
    }

    .hours-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.3rem 1.5rem;
      font-size: 0.9rem;
    }

    .hours-day {
      color: var(--text);
      font-weight: 400;
    }

    .hours-time {
      color: var(--text-light);
    }

    .hours-closed {
      color: var(--text-muted);
      font-style: italic;
    }

    /* ─── GIFT CARDS TEASER ─── */
    .giftcard {
      padding: 6rem 0;
      background: var(--text);
      color: var(--white);
      text-align: center;
    }

    .giftcard .section-title {
      color: var(--white);
    }

    .giftcard .section-label {
      color: rgba(255,255,255,0.4);
    }

    .giftcard p {
      max-width: 480px;
      margin: 1.5rem auto 2.5rem;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.8;
    }

    .giftcard-btn {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.9rem 2.5rem;
      border: 1px solid rgba(255,255,255,0.4);
      color: var(--white);
      transition: all 0.3s;
    }

    .giftcard-btn:hover {
      background: var(--white);
      color: var(--text);
    }

    /* ─── FOOTER ─── */
    footer {
      padding: 4rem 0 2rem;
      border-top: 1px solid var(--border-light);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: start;
      margin-bottom: 3rem;
    }

    .footer-brand {
      font-family: var(--serif);
      font-size: 1.8rem;
      font-weight: 300;
      letter-spacing: 0.05em;
    }

    .footer-brand span { color: var(--accent); }

    .footer-tagline {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.5rem;
      font-style: italic;
      font-family: var(--serif);
    }

    .footer-links {
      display: flex;
      gap: 3rem;
    }

    .footer-col h4 {
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-col a {
      font-size: 0.85rem;
      color: var(--text-light);
      transition: color 0.3s;
    }

    .footer-col a:hover { color: var(--accent); }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      transition: all 0.3s;
    }

    .footer-social a:hover {
      background: var(--text);
      color: var(--white);
      border-color: var(--text);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      padding-top: 2rem;
      border-top: 1px solid var(--border-light);
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .footer-bottom a:hover { color: var(--accent); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {
      .philosophy .container,
      .reservation .container,
      .access .container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .concept-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .form-group.full {
        grid-column: span 1;
      }

      .footer-content {
        flex-direction: column;
        gap: 2rem;
      }

      .footer-links {
        flex-direction: column;
        gap: 2rem;
      }
    }

    @media (max-width: 640px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-toggle { display: flex; }

      .hero-title { letter-spacing: 0.02em; }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }

      .reservation-form { padding: 2rem 1.5rem; }

      .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
      }

      .philosophy-visual::after { display: none; }
    }

    /* ─── MOBILE MENU OVERLAY ─── */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu a {
      font-family: var(--serif);
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--text);
      transition: color 0.3s;
    }

    .mobile-menu a:hover { color: var(--accent); }

    .mobile-menu-close {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      font-size: 1.5rem;
      color: var(--text);
      cursor: pointer;
      background: none;
      border: none;
    }
    /* ─── RESERVATION SLOTS ─── */
    .slots-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .slots-grid .slot-service-label {
      width: 100%;
      font-family: var(--serif);
      font-style: italic;
      font-size: 0.95rem;
      color: var(--accent);
      margin-top: 0.8rem;
      margin-bottom: 0.2rem;
    }

    .slots-grid .slot-service-label:first-child {
      margin-top: 0;
    }

    .slot-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      width: 100%;
    }

    .slot-btn {
      font-family: var(--sans);
      font-size: 0.82rem;
      font-weight: 400;
      padding: 0.7rem 1.2rem;
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      cursor: pointer;
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.15rem;
      min-width: 80px;
    }

    .slot-btn:hover:not(:disabled) {
      border-color: var(--accent);
      color: var(--accent);
    }

    .slot-btn.slot-selected {
      background: var(--text);
      color: var(--white);
      border-color: var(--text);
    }

    .slot-btn.slot-selected .slot-info {
      color: rgba(255,255,255,0.6);
    }

    .slot-btn:disabled {
      opacity: 0.35;
      cursor: not-allowed;
      background: var(--bg-warm);
    }

    .slot-btn.slot-unavailable .slot-time {
      text-decoration: line-through;
    }

    .slot-time {
      font-weight: 400;
      font-size: 0.88rem;
    }

    .slot-info {
      font-size: 0.65rem;
      font-weight: 300;
      color: var(--text-muted);
    }

    .slots-loading {
      font-size: 0.82rem;
      color: var(--text-muted);
      font-style: italic;
      padding: 1rem 0;
    }

    .slots-message {
      font-size: 0.88rem;
      color: var(--text-muted);
      padding: 1.5rem;
      background: var(--bg);
      text-align: center;
      border: 1px solid var(--border-light);
      margin-top: 0.5rem;
    }

    /* ─── CONFIRMATION MESSAGE ─── */
    .confirmation-message {
      text-align: center;
      padding: 2.5rem 2rem;
    }

    .confirmation-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--white);
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    .confirmation-message h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .confirmation-message p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 0.5rem;
    }

    .confirmation-ref {
      margin-top: 1rem;
      font-size: 1rem;
    }

    .confirmation-ref strong {
      font-family: var(--sans);
      font-weight: 500;
      letter-spacing: 0.1em;
      color: var(--accent);
    }

    .confirmation-note {
      font-size: 0.82rem;
      color: var(--text-muted);
      font-style: italic;
      margin-top: 1rem;
    }

    .form-submit:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }
