:root {
    --parchment:      #f3ead9;
    --parchment-deep: #e8dcc0;
    --cream:          #faf4e6;
    --ink:            #1c1611;
    --ink-soft:       #3a2e24;
    --wine:           #5e1e1e;
    --wine-deep:      #3f1414;
    --gold:           #a4845c;
    --gold-bright:    #c9a961;
    --gold-soft:      #d9bd87;
    --line:           rgba(28, 22, 17, 0.18);
    --line-gold:      rgba(164, 132, 92, 0.35);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--parchment);
    color: var(--ink);
    font-family: 'Lora', Georgia, serif;
    font-weight: 400;
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
    position: relative;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  }

  .display { font-family: 'Prata', 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: 0.005em; }
  .eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    font-size: 0.78rem;
    color: var(--gold);
  }
  .italic-accent {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
  }

  .ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 1.2rem; color: var(--gold); margin: 0 auto;
  }
  .ornament::before, .ornament::after {
    content: "";
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  }
  .ornament svg { width: 28px; height: 28px; flex-shrink: 0; }

  .wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; position: relative; z-index: 2; }

  /* ============ NAV ============ */
  /* Bottom nav — anchored at the bottom of the hero. Does NOT follow scroll;
     it's part of the hero composition and simply scrolls away with it. */
  .nav {
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    z-index: 5;
    padding: 1.5rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    background: transparent;
  }

  /* Decorative hairline above the bottom nav */
  .nav::before {
    content: "";
    position: absolute;
    left: 10%; right: 10%;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,0.5), transparent);
  }

  /* Sticky nav — appears at top with logo when user scrolls past hero */
  .nav-scrolled {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    padding: 0.9rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(28, 22, 17, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(164, 132, 92, 0.25);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  }
  .nav-scrolled.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-brand.is-placeholder {
    visibility: hidden;
  }

  .nav-brand {
    display: flex; align-items: center;
    text-decoration: none;
    line-height: 0;
    /* Reserve empty space where a logo would be — keeps the flex layout balanced */
    min-width: 200px;
    height: 52px;
  }
  .nav-scrolled .nav-brand img {
    height: 52px;
    width: auto;
    display: block;
  }
  .nav-links { display: flex; gap: 2.2rem; align-items: center; }
  .nav-links a {
    color: var(--cream); text-decoration: none;
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    font-size: 0.85rem; letter-spacing: 0.25em;
    text-transform: uppercase;
    position: relative; padding: 4px 0;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold-bright); }
  .nav-links a::after {
    content: ""; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold-bright);
    transition: width 0.4s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-hotel {
    padding: 0.55rem 1.4rem !important;
    border: 1px solid var(--gold);
    color: var(--gold-bright) !important;
    letter-spacing: 0.2em !important;
    text-decoration: none !important;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    line-height: 1.1;
    text-align: center;
    min-width: 195px;
  }
  .nav-hotel .res-top {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-soft);
    transition: color 0.3s;
  }
  .nav-hotel .res-phone {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-transform: none;
    white-space: nowrap;
    transition: color 0.3s;
  }
  .nav-hotel::after { display: none !important; }
  .nav-hotel:hover { background: var(--gold); }
  .nav-hotel:hover .res-top { color: rgba(28,22,17,0.7) !important; }
  .nav-hotel:hover .res-phone { color: var(--ink) !important; }
  .nav-lang { display: flex; gap: 0.5rem; align-items: center;
    font-family: 'Cormorant Garamond', serif; font-size: 0.8rem; letter-spacing: 0.2em;
  }
  .nav-lang a { color: var(--cream); text-decoration: none; opacity: 0.6; }
  .nav-lang a.active { opacity: 1; color: var(--gold-bright); }
  .nav-lang span { opacity: 0.3; }

  /* ============ HERO ============ */
  .hero {
    height: 100vh;
    height: 100dvh;
    min-height: 640px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: var(--ink);
    padding: 4rem 0 8rem;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('../images/hero-facade.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) saturate(0.85);
    transform: scale(1.05);
    animation: heroZoom 20s ease-out infinite alternate;
  }
  @keyframes heroZoom { to { transform: scale(1.12); } }

  .hero-veil {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at center, transparent 20%, rgba(28,22,17,0.55) 80%),
      linear-gradient(180deg, rgba(28,22,17,0.4) 0%, rgba(28,22,17,0.2) 40%, rgba(28,22,17,0.75) 100%);
  }

  .hero-content {
    position: relative; z-index: 3;
    text-align: center;
    color: var(--cream);
    padding: 0 2rem;
    max-width: 900px;
  }
  .hero-silhouette {
    display: block;
    margin: 0 auto 1.6rem;
    height: clamp(180px, 20vw, 280px);
    width: auto;
    opacity: 0.95;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.45));
    animation: fadeUp 1.2s 0.35s both ease-out;
  }
  .hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.04em;
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    line-height: 1.45;
    color: var(--gold-bright);
    max-width: 680px;
    margin: 1.2rem auto 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 0 4px rgba(0,0,0,0.4);
    animation: fadeUp 1.2s 0.75s both ease-out;
  }
  @media (max-width: 600px) {
    .hero-eyebrow { font-size: 1rem; padding: 0 0.5rem; }
  }
  .hero-title {
    display: block;
    margin: 0 auto;
    width: 559px;
    height: 159px;
    max-width: 90vw;
    object-fit: contain;
    filter:
      drop-shadow(0 0 28px rgba(250, 244, 230, 0.55))
      drop-shadow(0 0 55px rgba(217, 189, 135, 0.4))
      drop-shadow(0 2px 6px rgba(250, 244, 230, 0.35));
    animation: fadeUp 1.2s 0.55s both ease-out;
  }
  @media (max-width: 600px) {
    .hero-title { width: 90vw; height: auto; }
  }

  .btn {
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    font-size: 0.85rem; letter-spacing: 0.32em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.4rem;
    transition: all 0.4s;
    display: inline-flex; align-items: center; gap: 0.8rem;
    cursor: pointer; border: 0; background: transparent;
  }
  .btn .arrow { transition: transform 0.3s; }
  .btn:hover .arrow { transform: translateX(4px); }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

  /* Screen-reader-only (for accessibility) */
  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
  }

  /* ============ SECTIONS ============ */
  section { position: relative; z-index: 2; }
  .section { padding: 8rem 0; }
  .section-intro { padding: 10rem 0 5rem; text-align: center; }

  h2.section-title {
    font-family: 'Prata', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.8rem;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -0.005em;
  }
  h2.section-title em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--wine);
  }
  .lead {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto;
  }

  /* ============ INTRO ============ */
  .intro-inner { max-width: 760px; margin: 0 auto; text-align: center; }
  .intro-inner .lead::first-letter {
    font-family: 'Prata', serif;
    font-size: 3.6em;
    float: left;
    line-height: 0.85;
    padding: 0.08em 0.12em 0 0;
    color: var(--wine);
  }
  .intro-flourish {
    margin: 2.8rem auto 0;
    width: 120px; height: auto;
    display: block; opacity: 0.8;
    color: var(--gold);
  }

  /* Reusable section-ending fleuron (centered, elegant) */
  .section-fleuron {
    display: flex;
    justify-content: center;
    margin: 5rem auto 0;
    color: var(--gold);
    opacity: 0.55;
    position: relative;
    z-index: 2;
  }
  .section-fleuron svg {
    width: min(260px, 60%);
    height: auto;
  }
  .section-fleuron.on-dark { color: var(--gold-bright); opacity: 0.45; }

  /* ============ ABOUT / ЗА НАС ============ */
  .about {
    background: linear-gradient(180deg, var(--parchment) 0%, var(--parchment-deep) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
  }
  .about::before, .about::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
    z-index: 1;
  }
  .about::before { top: 0; }
  .about::after { bottom: 0; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: flex-start;
  }
  .about-imgs {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .about-imgs-top {
    position: relative;
    aspect-ratio: 4 / 4.6;
  }
  .about-img-a {
    position: absolute;
    width: 82%; height: 72%;
    top: 0; left: 0;
    object-fit: cover;
    box-shadow: 0 30px 60px -15px rgba(28,22,17,0.35);
    filter: sepia(0.08);
  }
  .about-img-b {
    position: absolute;
    width: 56%; height: 44%;
    bottom: 0; right: 0;
    object-fit: cover;
    border: 8px solid var(--parchment);
    box-shadow: 0 20px 45px -10px rgba(28,22,17,0.4);
  }
  .about-img-badge {
    position: absolute;
    top: 50%; right: -2rem;
    transform: translateY(-50%) rotate(-4deg);
    background: var(--ink);
    color: var(--gold-bright);
    padding: 1.2rem 1.4rem;
    text-align: center;
    font-family: 'Prata', serif;
    box-shadow: 0 15px 40px rgba(28,22,17,0.35);
    z-index: 5;
    max-width: 180px;
  }
  .about-img-badge .big {
    display: block;
    font-size: 1.1rem;
    line-height: 1.25;
    color: var(--cream);
  }
  .about-img-badge .lbl {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.65rem;
    color: var(--gold-bright);
    margin-top: 0.5rem;
  }

  /* ornamental divider between image compositions */
  .about-divider {
    display: flex; align-items: center; gap: 1.4rem;
    color: var(--gold);
    padding: 0.4rem 0.5rem;
  }
  .about-divider::before, .about-divider::after {
    content: ""; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
  }
  .about-divider svg {
    width: 22px; height: 22px;
    opacity: 0.7;
  }

  /* secondary plaque image */
  .about-plaque {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 25px 55px -18px rgba(28,22,17,0.45);
  }
  .about-plaque img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.03);
    transition: transform 1.2s cubic-bezier(0.2,0.6,0.2,1), filter 0.6s;
  }
  .about-plaque:hover img { transform: scale(1.03); filter: brightness(1); }

  .about-plaque-caption {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    align-items: center;
    padding: 0.5rem 0.2rem 0;
  }
  .about-plaque-caption .lbl {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
  }
  .about-plaque-caption .txt {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.98rem;
    color: var(--ink-soft);
    line-height: 1.4;
    padding-left: 1.2rem;
    border-left: 1px solid var(--line-gold);
  }

  .about-text .eyebrow { display: block; margin-bottom: 1rem; }
  .about-text h2 { font-family: 'Prata', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.1; margin-bottom: 1.8rem; }
  .about-text h2 em { font-family: 'Cormorant Garamond', serif; color: var(--wine); }
  .about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--ink-soft);
  }
  .about-text p strong {
    color: var(--ink);
    font-weight: 600;
  }

  .about-quote {
    margin: 2.5rem 0;
    padding: 1.8rem 2rem;
    border-left: 3px solid var(--gold);
    background: rgba(250,244,230,0.55);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--ink);
  }
  .about-quote .attr {
    display: block;
    font-style: normal;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    color: var(--gold);
    margin-top: 1rem;
  }

  .about-meta {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-gold);
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .about-meta .item {
    flex: 1;
    min-width: 0;
  }
  .about-meta .item .num {
    font-family: 'Prata', serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: var(--wine);
    line-height: 1;
    display: block;
  }
  .about-meta .item .lbl {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.62rem, 1.4vw, 0.82rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-top: 0.4rem;
    display: block;
    white-space: nowrap;
  }
  @media (max-width: 380px) {
    .about-meta { gap: 1rem; }
    .about-meta .item .lbl { letter-spacing: 0.1em; }
  }

  /* ============ CUISINE ============ */
  .cuisine { padding: 9rem 0; }
  .cuisine-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .cuisine-text h2 { font-family: 'Prata', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.1; margin-bottom: 1.8rem; }
  .cuisine-text h2 em { font-family: 'Cormorant Garamond', serif; color: var(--wine); }
  .cuisine-text p { font-size: 1.05rem; margin-bottom: 1.2rem; color: var(--ink-soft); }

  .signature-list {
    list-style: none;
    margin-top: 2.2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-gold);
  }
  .cuisine-coda {
    margin-top: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 1.02rem;
  }
  .signature-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
  }
  .signature-list li:last-child { border-bottom: 0; }
  .sig-num {
    font-family: 'Prata', serif;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .sig-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
  }
  .sig-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 1rem;
    margin-left: 0.8rem;
  }

  .cuisine-img-wrap { position: relative; }
  .cuisine-img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    box-shadow: 0 30px 70px -20px rgba(28,22,17,0.4);
  }
  .cuisine-img-quote {
    position: absolute;
    bottom: -2.5rem; left: -2.5rem;
    background: var(--parchment);
    padding: 2rem 2.5rem;
    max-width: 300px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 20px 50px -10px rgba(28,22,17,0.25);
  }
  .cuisine-img-quote .q {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1.1rem; line-height: 1.45; color: var(--ink);
  }
  .cuisine-img-quote .attr {
    display: block; margin-top: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold);
  }

  /* ============ ATMOSPHERE GALLERY ============ */
  .atmosphere {
    background: var(--ink);
    color: var(--cream);
    padding: 9rem 0;
    position: relative; overflow: hidden;
  }
  .atmosphere::before {
    content: "";
    position: absolute;
    top: -10%; right: -5%;
    width: 50vw; height: 120%;
    background: url('../images/lady-silhouette.png') no-repeat center / contain;
    opacity: 0.04; z-index: 0;
  }
  .atmosphere-head .ornament {
    margin-bottom: 1.5rem;
  }
  .atmosphere-head {
    text-align: center; margin-bottom: 5rem;
    position: relative; z-index: 2;
  }
  .atmosphere-head h2 { color: var(--cream); }
  .atmosphere-head h2 em { color: var(--gold-bright); }
  .atmosphere-head .lead { color: rgba(250,244,230,0.78); }

  .gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 110px;
    gap: 1.2rem;
    position: relative; z-index: 2;
  }
  .g-item { overflow: hidden; position: relative; cursor: pointer; }
  .g-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2,0.6,0.2,1), filter 0.6s;
    filter: saturate(0.9);
  }
  .g-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
  .g-item .cap {
    position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; color: var(--cream);
    opacity: 0; transform: translateY(8px);
    transition: all 0.45s;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
    font-size: 1.05rem; z-index: 2;
  }
  .g-item::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65));
    opacity: 0; transition: opacity 0.45s; z-index: 1;
  }
  .g-item:hover::after { opacity: 1; }
  .g-item:hover .cap { opacity: 1; transform: none; }

  .g1 { grid-column: 1 / 7;  grid-row: 1 / 5; }
  .g2 { grid-column: 7 / 13; grid-row: 1 / 3; }
  .g3 { grid-column: 7 / 10; grid-row: 3 / 5; }
  .g4 { grid-column: 10 / 13; grid-row: 3 / 5; }
  .g5 { grid-column: 1 / 5;  grid-row: 5 / 8; }
  .g6 { grid-column: 5 / 13; grid-row: 5 / 8; }

  /* ============ HOTEL BRIDGE ============ */
  .hotel {
    background: linear-gradient(180deg, var(--parchment-deep) 0%, var(--parchment) 100%);
    padding: 10rem 0;
    position: relative; overflow: hidden;
  }
  .hotel-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--cream);
    box-shadow: 0 40px 80px -20px rgba(28,22,17,0.3);
    position: relative;
  }
  .hotel-inner::before {
    content: "";
    position: absolute; inset: 12px;
    border: 1px solid var(--line-gold);
    pointer-events: none; z-index: 2;
  }
  /* Decorative corner fleurons on the hotel frame */
  .hotel-corner {
    position: absolute;
    width: 34px; height: 34px;
    color: var(--gold);
    z-index: 3;
    pointer-events: none;
    opacity: 0.75;
  }
  .hotel-corner.tl { top: 4px; left: 4px; }
  .hotel-corner.tr { top: 4px; right: 4px; transform: scaleX(-1); }
  .hotel-corner.bl { bottom: 4px; left: 4px; transform: scaleY(-1); }
  .hotel-corner.br { bottom: 4px; right: 4px; transform: scale(-1, -1); }
  .hotel-img {
    background-image: url('../images/guesthouse-building.jpg');
    background-size: cover; background-position: center 32%;
    min-height: 620px; position: relative;
  }
  .hotel-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(28,22,17,0.05), rgba(28,22,17,0.28));
  }
  .hotel-content {
    padding: 4.5rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .hotel-content .eyebrow { margin-bottom: 1.2rem; display: block; }
  .hotel-content h2 {
    font-family: 'Prata', serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.1; margin-bottom: 1.6rem;
  }
  .hotel-content h2 em { font-family: 'Cormorant Garamond', serif; color: var(--wine); }
  .hotel-content p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
  .hotel-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2rem;
    margin: 2rem 0 2.5rem;
    padding: 1.8rem 0;
    border-top: 1px solid var(--line-gold);
    border-bottom: 1px solid var(--line-gold);
  }
  .hotel-feat {
    display: flex; gap: 0.8rem; align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; color: var(--ink-soft);
  }
  .hotel-feat svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

  .btn-dark {
    background: var(--wine); color: var(--cream);
    border: 1px solid var(--wine);
    align-self: flex-start;
  }
  .btn-dark:hover { background: var(--wine-deep); border-color: var(--wine-deep); }

  /* ============ VISIT / CONTACT ============ */
  .visit {
    padding: 9rem 0;
    background: var(--parchment);
  }
  .visit-head { text-align: center; margin-bottom: 4.5rem; }
  .visit-head .eyebrow { display: block; margin-bottom: 1.3rem; }

  /* Google Map with stylized overlay */
  .map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 560px;
    background: var(--ink);
    box-shadow: 0 40px 80px -25px rgba(28,22,17,0.4);
    overflow: hidden;
    margin-bottom: 4rem;
    border: 1px solid var(--line-gold);
  }
  .map-frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(164,132,92,0.25);
    pointer-events: none; z-index: 5;
  }
  .map-frame iframe {
    width: 100%; height: 100%;
    border: 0; display: block;
    filter: grayscale(0.25) saturate(0.75) contrast(1.05) sepia(0.12);
    transition: filter 0.8s;
  }
  .map-frame:hover iframe { filter: grayscale(0) saturate(1) contrast(1) sepia(0); }

  .map-card {
    position: absolute;
    top: 50%; left: 3rem;
    transform: translateY(-50%);
    background: var(--cream);
    padding: 2.2rem 2.4rem;
    max-width: 340px;
    z-index: 6;
    box-shadow: 0 20px 50px -10px rgba(28,22,17,0.4);
    border-top: 3px solid var(--gold);
  }
  .map-card .eyebrow { display: block; margin-bottom: 0.8rem; font-size: 0.7rem; letter-spacing: 0.4em; }
  .map-card .map-name {
    font-family: 'Prata', serif;
    font-size: 1.6rem;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 0.8rem;
  }
  .map-card .map-addr {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.02rem;
    color: var(--ink-soft);
    line-height: 1.45;
    margin-bottom: 1.4rem;
  }
  .map-card .map-addr a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--line-gold);
    transition: color 0.25s, border-color 0.25s;
  }
  .map-card .map-addr a:hover { color: var(--wine); border-color: var(--wine); }
  .btn-sm {
    font-family: 'Cormorant Garamond', serif; font-weight: 500;
    font-size: 0.78rem; letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 0.85rem 1.6rem;
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--wine); color: var(--cream);
    border: 1px solid var(--wine);
    text-decoration: none;
    transition: all 0.35s;
  }
  .btn-sm:hover { background: var(--wine-deep); border-color: var(--wine-deep); transform: translateY(-1px); }
  .btn-sm svg { width: 14px; height: 14px; }

  .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
  .visit-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--line-gold);
    border-bottom: 1px solid var(--line-gold);
  }
  .visit-card svg.card-icon { width: 28px; height: 28px; color: var(--gold); margin: 0 auto 1.2rem; display: block; }
  .visit-card h4 {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 500;
  }
  .visit-card .big {
    font-family: 'Prata', serif;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }
  .visit-card .big a, .visit-card .small a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
  }
  .visit-card .big a:hover, .visit-card .small a:hover { color: var(--wine); border-color: var(--wine); }
  .visit-card .small {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.95rem;
  }

  /* ============ FOOTER ============ */
  footer {
    background:
      radial-gradient(ellipse at 30% 20%, rgba(50, 36, 22, 0.18) 0%, transparent 55%),
      radial-gradient(ellipse at 80% 90%, rgba(30, 20, 12, 0.25) 0%, transparent 60%),
      #050302;
    color: rgba(250,244,230,0.78);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }

  /* Velvety grain texture (warm cream highlights on dark) */
  footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.93 0 0 0 0 0.82 0.35 0.35 0.35 0 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
  }

  /* Large silhouette watermark (bottom-right), visible via screen blend */
  footer::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: url('../images/lady-silhouette.png') no-repeat center / contain;
    opacity: 0.11;
    mix-blend-mode: screen;
    filter: brightness(0.7) contrast(1.05);
    pointer-events: none;
    z-index: 1;
  }

  /* Top decorative fleuron */
  .foot-fleuron {
    display: flex;
    justify-content: center;
    margin-bottom: 3.8rem;
    color: var(--gold-bright);
    position: relative;
    z-index: 2;
    opacity: 0.7;
  }
  .foot-fleuron svg {
    width: min(340px, 70%);
    height: auto;
  }

  .foot-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(164,132,92,0.22);
    position: relative;
    z-index: 2;
  }
  .foot-brand .foot-logo {
    display: block;
    height: 120px;
    width: auto;
    margin-bottom: 1.4rem;
    opacity: 0.95;
  }
  .foot-brand p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(250,244,230,0.6);
    font-size: 1rem;
    max-width: 280px;
  }

  .foot-col h5 {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    color: var(--gold-bright);
    margin-bottom: 1.3rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.9rem;
  }
  .foot-col h5::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 22px; height: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 5'%3E%3Cpath d='M11 0 L15 2.5 L11 5 L7 2.5 Z' fill='%23c9a961'/%3E%3Cpath d='M0 2.5 H 6' stroke='%23a4845c' stroke-width='0.5' opacity='0.7'/%3E%3Cpath d='M16 2.5 H 22' stroke='%23a4845c' stroke-width='0.5' opacity='0.7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 22px 5px;
  }

  .foot-col a, .foot-col p {
    display: block;
    color: rgba(250,244,230,0.72);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    padding: 0.25rem 0;
    transition: color 0.3s;
  }
  .foot-col a:hover { color: var(--gold-bright); }

  .foot-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: rgba(250,244,230,0.45);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
  }
  .foot-bottom a {
    color: var(--gold-bright);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,169,97,0.3);
    padding-bottom: 1px;
    transition: border-color 0.3s;
  }
  .foot-bottom a:hover { border-color: var(--gold-bright); }

  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.2,0.6,0.2,1);
  }
  .reveal.on { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: 0.12s; }
  .reveal.d2 { transition-delay: 0.24s; }
  .reveal.d3 { transition-delay: 0.36s; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 960px) {
    .wrap { padding: 0 1.5rem; }
    .nav, .nav-scrolled { padding: 1rem 0.9rem; }
    .nav-scrolled { padding: 0.7rem 0.9rem; }
    .nav-links, .nav-lang { display: none; }
    .about-grid, .cuisine-grid, .hotel-inner, .visit-grid, .foot-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hotel-content { padding: 3rem 2rem; }
    .hotel-img { min-height: 420px; }
    .cuisine-img-quote { position: static; margin: -2rem 1rem 0; }
    .foot-grid { gap: 2.5rem; }
    .about-meta { gap: 1.5rem; }
    .hotel-features { grid-template-columns: 1fr; }
    .visit-grid { gap: 0; }
    .visit-card { border-bottom: 0; padding: 2rem 0; }
    .visit-card:last-child { border-bottom: 1px solid var(--line-gold); }
    .gallery { grid-auto-rows: 80px; }
    .section, .cuisine, .about, .hotel, .visit, .atmosphere { padding: 5rem 0; }
    .foot-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

    /* Mobile footer — center brand, hide middle cols, inline social */
    .foot-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
      text-align: center;
    }
    .foot-brand { display: flex; flex-direction: column; align-items: center; }
    .foot-brand p { max-width: 340px; margin: 0 auto; }
    .foot-brand .foot-logo { margin-left: auto; margin-right: auto; }
    .foot-col.hide-on-mobile { display: none; }
    .foot-col-inline {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }
    .foot-col-inline h5 { display: none; }
    .foot-col-inline a {
      padding: 0;
      display: inline-flex;
      align-items: center;
    }
    .map-frame { aspect-ratio: 4 / 3; margin-bottom: 0; }
    .map-card {
      position: static; transform: none;
      max-width: 100%;
      margin: -1px 0 0;
      padding: 1.8rem 1.6rem;
    }
    .about-img-badge { right: 0.5rem; top: auto; bottom: 5rem; transform: rotate(-4deg); }
  }
  @media (max-width: 600px) {
    .g1 { grid-column: 1 / 13; grid-row: 1 / 4; }
    .g2 { grid-column: 1 / 13; grid-row: 4 / 6; }
    .g3 { grid-column: 1 / 7;  grid-row: 6 / 8; }
    .g4 { grid-column: 7 / 13; grid-row: 6 / 8; }
    .g5 { grid-column: 1 / 13; grid-row: 8 / 10; }
    .g6 { grid-column: 1 / 13; grid-row: 10 / 12; }
    .hero {
      min-height: 560px;
      padding: 3rem 0 7rem;
    }
    .hero-silhouette { height: 140px; }
    .nav-scrolled .nav-brand img { height: 48px; }
    .nav-hotel {
      padding: 0.45rem 0.9rem !important;
      flex-shrink: 0;
      min-width: 0;
      white-space: nowrap;
    }
    .nav-hotel .res-top {
      display: block;
      font-size: 0.62rem;
      letter-spacing: 0.22em;
    }
    .nav-hotel .res-phone {
      font-size: 0.92rem;
      white-space: nowrap;
      letter-spacing: 0.04em;
    }
    /* Allow the logo slot to shrink so the phone button keeps enough room */
    .nav-brand, .nav-scrolled .nav-brand { min-width: 0; flex-shrink: 1; }
    .about-plaque-caption {
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }
    .about-plaque-caption .txt {
      padding-left: 0;
      border-left: 0;
      padding-top: 0.8rem;
      border-top: 1px solid var(--line-gold);
    }
  }
  /* ============ SUB-PAGE HEADER ============ */
  /* Compact hero for non-home pages */
  .page-header {
    position: relative;
    min-height: 56vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: var(--ink);
    padding: 8rem 0 5rem;
    text-align: center;
    color: var(--cream);
  }
  .page-header-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) saturate(0.85);
  }
  .page-header-veil {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at center, transparent 30%, rgba(28,22,17,0.55) 90%),
      linear-gradient(180deg, rgba(28,22,17,0.5) 0%, rgba(28,22,17,0.3) 50%, rgba(28,22,17,0.7) 100%);
  }
  .page-header-content {
    position: relative; z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeUp 1.1s 0.2s both ease-out;
  }
  .page-header .eyebrow {
    color: var(--gold-bright);
    margin-bottom: 1.4rem;
    display: block;
  }
  .page-header h1 {
    font-family: 'Prata', serif;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: 0.005em;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 1.2rem;
  }
  .page-header h1 em {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-bright);
    font-weight: 400;
  }
  .page-header .lead {
    color: rgba(250, 244, 230, 0.85);
    max-width: 620px;
    margin: 0 auto;
  }

  /* Active nav link */
  .nav-links a.is-active,
  .nav-scrolled .nav-links a.is-active {
    color: var(--gold-bright);
  }
  .nav-links a.is-active::after,
  .nav-scrolled .nav-links a.is-active::after {
    width: 100%;
  }

  /* "More" / "Read more" link style */
  .more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--wine);
    text-decoration: none;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line-gold);
    transition: color 0.3s, border-color 0.3s, gap 0.3s;
  }
  .more-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    gap: 1rem;
  }
  .more-link.on-dark {
    color: var(--gold-bright);
    border-color: rgba(201,169,97,0.5);
  }
  .more-link.on-dark:hover {
    color: var(--cream);
    border-color: var(--cream);
  }

  /* Anniversary badge */
  .anniversary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
    padding: 0.5rem 1.2rem;
    background: rgba(94, 30, 30, 0.12);
    border: 1px solid var(--wine);
    border-radius: 999px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--wine);
  }
  .anniversary-badge .num {
    font-family: 'Prata', serif;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--wine);
    text-transform: none;
  }
  .anniversary-badge.on-dark {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
    color: var(--gold-bright);
  }
  .anniversary-badge.on-dark .num {
    color: var(--gold-bright);
  }

  /* Menu page styles */
  .menu-section { padding: 5rem 0 6rem; background: var(--parchment); }
  .menu-section + .menu-section {
    border-top: 1px solid var(--line-gold);
  }
  .menu-category {
    margin-bottom: 4rem;
    position: relative;
  }
  .menu-category:last-child { margin-bottom: 0; }
  .menu-category-title {
    font-family: 'Prata', serif;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    color: var(--ink);
    margin-bottom: 0.5rem;
    letter-spacing: 0.005em;
    display: inline-block;
    position: relative;
  }
  .menu-category-title em {
    font-family: 'Cormorant Garamond', serif;
    color: var(--wine);
    font-weight: 400;
  }
  .menu-category-sub {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
  }

  /* Decorative divider after each category title */
  .menu-category-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0 auto 2.6rem;
    color: var(--gold);
    opacity: 0.7;
  }
  .menu-category-divider::before,
  .menu-category-divider::after {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--gold);
  }
  .menu-category-divider svg {
    width: 14px; height: 14px;
    flex-shrink: 0;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 3.5rem;
    max-width: 980px;
    margin: 0 auto;
  }
  @media (max-width: 720px) {
    .menu-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  }
  .menu-item {
    padding: 0.85rem 0;
    border-bottom: 1px dotted var(--line);
    transition: padding-left 0.3s ease;
  }
  .menu-item:hover {
    padding-left: 0.6rem;
  }
  .menu-item:last-child { border-bottom: 0; }
  .menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
  }
  .menu-item-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.45;
  }

  /* Gallery page extended */
  .gallery-page {
    padding: 5rem 0 7rem;
    background: var(--parchment);
  }
  .gallery-grid-extended {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    grid-auto-rows: 280px;
  }
  .gallery-grid-extended .g-item {
    background: var(--ink);
  }
  .gallery-grid-extended .g-tall {
    grid-row: span 2;
  }
  .gallery-grid-extended .g-wide {
    grid-column: span 2;
  }
  @media (max-width: 720px) {
    .gallery-grid-extended {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 180px;
    }
    .gallery-grid-extended .g-wide { grid-column: span 2; }
  }

  /* Page CTA section (call-to-action at bottom of subpages) */
  .page-cta {
    padding: 7rem 0 8rem;
    background:
      radial-gradient(ellipse at center top, rgba(201, 169, 97, 0.16), transparent 60%),
      linear-gradient(180deg, var(--parchment) 0%, var(--parchment-deep) 100%);
    color: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line-gold);
  }
  .page-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%; max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .page-cta::after {
    content: "❦";
    position: absolute;
    top: 3rem; left: 50%;
    transform: translateX(-50%);
    font-family: 'Prata', serif;
    font-size: 1.6rem;
    color: var(--gold);
    opacity: 0.55;
  }
  .page-cta-inner {
    position: relative; z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
  }
  .page-cta h2 {
    font-family: 'Prata', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 1.4rem;
  }
  .page-cta h2 em {
    background: linear-gradient(135deg, var(--wine), var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Cormorant Garamond', serif;
  }
  .page-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-bottom: 2.4rem;
  }
  .page-cta-actions {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta-btn {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
    transition: all 0.35s;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid var(--wine);
  }
  .cta-btn-primary {
    background: var(--wine);
    color: var(--cream);
    border-color: var(--wine);
  }
  .cta-btn-primary:hover {
    background: var(--wine-deep);
    border-color: var(--wine-deep);
    transform: translateY(-1px);
  }
  .cta-btn-ghost {
    background: transparent;
    color: var(--wine);
    border-color: var(--wine);
  }
  .cta-btn-ghost:hover {
    background: var(--wine);
    color: var(--cream);
  }

  /* On subpages, the top nav is always visible from the start */
  .nav-scrolled.always-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Body padding for subpages so content isn't covered by always-visible nav */
  body.has-fixed-nav {
    padding-top: 76px;
  }
  @media (max-width: 960px) {
    body.has-fixed-nav { padding-top: 64px; }
  }

  /* About page extended content */
  .about-extended {
    padding: 5rem 0 7rem;
    background: linear-gradient(180deg, var(--parchment) 0%, var(--parchment-deep) 100%);
  }
  .about-extended-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  @media (max-width: 900px) {
    .about-extended-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }
  .about-section-block {
    margin-bottom: 4rem;
  }
  .about-section-block:last-child { margin-bottom: 0; }
  .about-section-block h3 {
    font-family: 'Prata', serif;
    font-size: 1.7rem;
    color: var(--ink);
    margin-bottom: 1rem;
    letter-spacing: 0.005em;
  }
  .about-section-block h3 em {
    font-family: 'Cormorant Garamond', serif;
    color: var(--wine);
  }
  .about-section-block p {
    margin-bottom: 1rem;
  }
  .about-images-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-images-stack img {
    width: 100%;
    height: auto;
    box-shadow: 0 25px 50px -15px rgba(28,22,17,0.4);
  }

  /* Hotel page */
  .hotel-page-features {
    padding: 5rem 0;
    background: var(--parchment);
  }
  .hotel-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (max-width: 720px) {
    .hotel-features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  }
  .hotel-feature-card {
    text-align: center;
    padding: 2rem 1.4rem;
    background: var(--cream);
    border: 1px solid var(--line-gold);
  }
  .hotel-feature-card .num {
    font-family: 'Prata', serif;
    font-size: 2.4rem;
    color: var(--wine);
    line-height: 1;
    margin-bottom: 0.6rem;
    display: block;
  }
  .hotel-feature-card .lbl {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    color: var(--ink-soft);
  }

  /* Contact page */
  .contact-page {
    padding: 5rem 0;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  .contact-info-block {
    padding: 2.4rem;
    background: var(--parchment);
    border: 1px solid var(--line-gold);
  }
  .contact-info-block h3 {
    font-family: 'Prata', serif;
    font-size: 1.4rem;
    color: var(--wine);
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line-gold);
  }
  .contact-info-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.6rem;
  }
  .contact-info-row:last-child { margin-bottom: 0; }
  .contact-info-row .label {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }
  .contact-info-row .value {
    font-family: 'Prata', serif;
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.4;
  }
  .contact-info-row .value a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info-row .value a:hover { color: var(--wine); }
  .contact-map-iframe {
    width: 100%;
    height: 480px;
    border: 0;
    filter: sepia(0.18) saturate(0.9) hue-rotate(-5deg);
  }

  .more-link-wrap {
    text-align: center;
    margin-top: 3rem;
  }

  .hotel-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* ============ MENU PAGE — REFINED ============ */
  .menu-intro {
    padding: 6rem 0 5rem;
    background: var(--parchment);
    text-align: center;
    position: relative;
  }
  .menu-intro::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 480px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .menu-intro .eyebrow {
    display: block;
    margin-bottom: 1.4rem;
  }
  .menu-intro .section-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 1.6rem;
  }
  .menu-lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    font-style: italic;
    color: var(--ink-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.6;
  }
  .menu-flourish {
    margin: 3rem auto 0;
    width: 120px;
    height: auto;
    display: block;
    color: var(--gold);
    opacity: 0.8;
  }

  /* Menu sections */
  .menu-section {
    padding: 5rem 0 5rem;
    background: var(--parchment);
  }
  .menu-section .menu-category + .menu-category {
    margin-top: 4.5rem;
    padding-top: 4.5rem;
    border-top: 1px solid var(--line-gold);
  }

  /* Special "feature" item (anasonliyka) — with subtle gold background */
  .menu-item-feature {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1.4rem;
    padding: 1.4rem 1.6rem !important;
    background: linear-gradient(135deg, rgba(201,169,97,0.07), rgba(94,30,30,0.05));
    border: 1px solid var(--line-gold) !important;
    border-bottom: 1px solid var(--line-gold) !important;
  }
  .menu-item-feature .menu-item-name {
    color: var(--wine);
    font-size: 1.25rem;
    font-style: italic;
  }
  .menu-item-feature .menu-item-desc {
    font-size: 1rem;
    color: var(--ink);
  }

  .menu-coda {
    text-align: center;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line-gold);
    font-style: italic;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
  }

  /* ============ POLISH & REFINEMENTS ============ */

  /* Smoother focus styles for accessibility */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
  }

  /* Text selection — wine on parchment */
  ::selection {
    background: var(--wine);
    color: var(--cream);
  }

  /* Slightly elevate page-header headings with text-shadow for legibility */
  .page-header h1 {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  }
  .page-header .lead {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  }

  /* Refined "more-link" underline animation */
  .more-link {
    position: relative;
    overflow: hidden;
  }
  .more-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -1px;
    width: 0; height: 1px;
    background: var(--gold-bright);
    transition: width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .more-link:hover::after { width: 100%; }

  /* Page-header background subtly zooms in over time */
  .page-header-bg {
    transform: scale(1.04);
    animation: heroZoom 24s ease-out infinite alternate;
  }

  /* Polish the about-images-stack */
  .about-images-stack img {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .about-images-stack img:hover {
    transform: translateY(-4px);
  }

  /* Subtle parallax-feel for gallery items */
  .gallery-grid-extended .g-item {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  }
  .gallery-grid-extended .g-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -15px rgba(28,22,17,0.4);
  }
  .gallery-grid-extended .g-item img {
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .gallery-grid-extended .g-item:hover img {
    transform: scale(1.06);
  }

  /* Anniversary badge — refined */
  .anniversary-badge {
    position: relative;
    background: linear-gradient(135deg, rgba(94,30,30,0.10), rgba(201,169,97,0.05));
  }
  .anniversary-badge::before,
  .anniversary-badge::after {
    content: "";
    position: absolute;
    width: 18px; height: 1px;
    background: var(--wine);
    top: 50%;
  }
  .anniversary-badge::before { left: -22px; }
  .anniversary-badge::after  { right: -22px; }
  @media (max-width: 600px) {
    .anniversary-badge::before,
    .anniversary-badge::after { display: none; }
  }

  /* Refined contact info-block */
  .contact-info-block {
    position: relative;
    background: linear-gradient(180deg, var(--parchment) 0%, rgba(232, 220, 192, 0.5) 100%);
    box-shadow: 0 25px 50px -20px rgba(28, 22, 17, 0.15);
  }
  .contact-info-block::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  /* Hover glow on contact-info links */
  .contact-info-row .value a {
    position: relative;
    transition: color 0.3s, letter-spacing 0.3s;
  }
  .contact-info-row .value a:hover {
    color: var(--wine);
    letter-spacing: 0.03em;
  }

  /* Hotel feature cards — refined */
  .hotel-feature-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .hotel-feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 18px 35px -12px rgba(28, 22, 17, 0.2);
  }

  /* CTA button polished hover with golden shimmer */
  .cta-btn {
    position: relative;
    overflow: hidden;
  }
  .cta-btn::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 244, 230, 0.2), transparent);
    transition: left 0.7s ease;
  }
  .cta-btn:hover::before { left: 100%; }

  /* Refined CTA arrow span */
  .cta-btn span {
    transition: transform 0.3s ease;
    display: inline-block;
  }
  .cta-btn:hover span { transform: translateX(4px); }

  /* Footer links subtle hover */
  .foot-col a, .foot-bottom a {
    transition: color 0.3s, letter-spacing 0.3s;
  }
  .foot-col a:hover {
    color: var(--gold-bright);
    letter-spacing: 0.02em;
  }

  /* "is-active" nav link gets a subtle pulse on hover */
  .nav-links a.is-active {
    color: var(--gold-bright);
  }

  /* About page — coda and quote block */
  .about-coda {
    font-style: italic;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    margin-top: 1rem !important;
  }

  .about-quote-block {
    margin-top: 3rem;
    padding: 2.4rem 2.8rem;
    background: linear-gradient(135deg, rgba(94, 30, 30, 0.08), rgba(201, 169, 97, 0.05));
    border-left: 3px solid var(--wine);
    position: relative;
  }
  .about-quote-block::before {
    content: "❝";
    position: absolute;
    top: -0.5rem; left: 1.5rem;
    font-family: 'Prata', serif;
    font-size: 4rem;
    color: var(--wine);
    opacity: 0.18;
    line-height: 1;
  }
  .about-quote-block p {
    font-family: 'Prata', serif;
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 1.2rem !important;
    font-style: normal;
  }
  .about-quote-attr {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.78rem;
    color: var(--wine);
    font-weight: 500;
  }
  @media (max-width: 720px) {
    .about-quote-block { padding: 1.8rem 1.6rem; }
    .about-quote-block p { font-size: 1.05rem; }
  }

  /* Inline brand link (e.g., "Къща за гости Едно Време" linking to ednovreme.eu) */
  .brand-link {
    color: var(--wine);
    text-decoration: none;
    font-style: italic;
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: color 0.3s, border-color 0.3s;
  }
  .brand-link:hover {
    color: var(--gold-bright);
    border-color: var(--wine);
  }

  /* ============ CONTACT PAGE — REFINED ============ */
  /* Map caption below the map-frame */
  .map-caption {
    text-align: center;
    margin: 2rem auto 4rem;
    max-width: 640px;
    font-style: italic;
    color: var(--ink-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
  }

  /* Decorative divider before the social/links cards */
  .contact-links {
    margin-top: 5rem;
    text-align: center;
  }
  .contact-links-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    color: var(--gold);
    opacity: 0.7;
  }
  .contact-links-divider .line {
    width: 80px;
    height: 1px;
    background: var(--gold);
  }
  .contact-links-divider svg {
    width: 16px; height: 16px;
  }

  .contact-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    max-width: 760px;
    margin: 0 auto;
  }
  @media (max-width: 720px) {
    .contact-links-grid { grid-template-columns: 1fr; }
  }

  .contact-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 2.2rem 1.6rem;
    background: linear-gradient(135deg, var(--cream), var(--parchment));
    border: 1px solid var(--line-gold);
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    text-align: center;
  }
  .contact-link-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 18px 35px -12px rgba(28, 22, 17, 0.2);
  }
  .contact-link-card svg {
    width: 32px; height: 32px;
    color: var(--wine);
    margin-bottom: 0.6rem;
    transition: transform 0.3s ease;
  }
  .contact-link-card:hover svg {
    transform: scale(1.1);
  }
  .contact-link-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.7rem;
    color: var(--gold);
  }
  .contact-link-name {
    font-family: 'Prata', serif;
    font-size: 1.25rem;
    color: var(--ink);
    line-height: 1.2;
  }
  .contact-link-domain {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.88rem;
    color: var(--gold);
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
  }

  /* About page introduction section */
  .about-intro {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-intro .eyebrow {
    display: block;
    margin-bottom: 1.4rem;
  }
  .about-intro .section-title {
    font-size: clamp(2.2rem, 4.4vw, 3rem);
    margin-bottom: 1.4rem;
  }
  .about-intro .lead {
    font-style: italic;
    color: var(--ink-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
  }
  .about-intro .intro-flourish {
    margin: 2.6rem auto 0;
    color: var(--gold);
    opacity: 0.8;
  }

  /* Refined about-section-block with subtle ornaments */
  .about-section-block {
    position: relative;
    margin-bottom: 3.5rem;
    padding-top: 1.5rem;
  }
  .about-section-block::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }
  .about-section-block:first-of-type {
    padding-top: 0;
  }
  .about-section-block:first-of-type::before {
    display: none;
  }
  .about-section-block h3 {
    margin-bottom: 1.2rem;
  }

  /* Gallery page intro */
  .gallery-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-intro .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0 auto 1.6rem;
    color: var(--gold);
    opacity: 0.7;
  }
  .gallery-intro .ornament::before,
  .gallery-intro .ornament::after {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--gold);
  }
  .gallery-intro .ornament svg {
    width: 16px; height: 16px;
  }
  .gallery-intro .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.2rem;
  }
  .gallery-intro .lead {
    font-style: italic;
    color: var(--ink-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Hotel page coda - inline reservation note */
  .hotel-coda {
    font-style: italic;
    color: var(--ink-soft);
    font-family: 'Cormorant Garamond', serif;
    margin-top: 1rem !important;
  }



  /* ============ MENU PAGE — VISUAL REFINEMENTS ============ */

  /* Refined menu-intro */
  .menu-intro {
    padding: 6rem 0 4rem;
    background: var(--parchment);
    text-align: center;
    position: relative;
  }
  .menu-intro-eyebrow {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    color: var(--gold);
    font-size: 0.78rem;
    margin-bottom: 1.4rem;
  }
  .menu-intro-title {
    font-family: 'Prata', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.05;
    color: var(--ink);
    font-weight: 400;
    margin-bottom: 1.6rem;
  }
  .menu-intro-title em {
    font-family: 'Cormorant Garamond', serif;
    color: var(--wine);
    font-weight: 400;
  }

  /* Center menu category title */
  .menu-category {
    text-align: center;
  }

  /* Reset text-align in menu items (parent .menu-category is center, items should stay left) */
  .menu-grid {
    text-align: left;
  }

  /* ============ MENU PAGE — Refined subtle bands + flourishes ============ */
  .menu-band {
    padding: 5rem 0;
    position: relative;
  }

  /* Bands now use VERY subtle tonal shifts — like pages of an old recipe book.
     The eye should perceive continuity, not contrast. */
  .menu-band-1 {
    background: var(--parchment);
  }
  .menu-band-2 {
    background: #f0e6d0;  /* ~3% darker than parchment */
  }
  .menu-band-3 {
    background: #f6ecd8;  /* between parchment and parchment-deep */
  }

  /* Delicate fleuron between bands — an ornamental flourish that bridges */
  .menu-band + .menu-band::before {
    content: "❦";
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Prata', serif;
    font-size: 1.6rem;
    color: var(--gold);
    background: var(--parchment);
    padding: 0 1rem;
    line-height: 1;
    z-index: 2;
  }
  .menu-band-2 + .menu-band::before { background: #f0e6d0; }
  .menu-band-3 + .menu-band::before { background: #f6ecd8; }
  .menu-band + .menu-band-2::before { background: var(--parchment); }
  .menu-band + .menu-band-3::before { background: var(--parchment); }

  /* Hairline gold thread above each band-after-band */
  .menu-band + .menu-band::after {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 65%;
    max-width: 520px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
    opacity: 0.6;
    z-index: 1;
  }

  /* Each menu-category gets an elegant gold frame with curled corner ornaments */
  .menu-band .menu-category {
    position: relative;
    padding: 3.5rem 2.5rem 3rem;
    border: 1px solid rgba(201, 169, 97, 0.45);
    background: rgba(250, 244, 230, 0.35);
    box-shadow: inset 0 0 0 4px transparent, 0 2px 12px -8px rgba(28, 22, 17, 0.08);
    max-width: 1080px;
    margin: 0 auto;
  }
  /* Top corners (TL + TR) — curl ornaments via background images on ::before */
  .menu-band .menu-category::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px;
    height: 28px;
    pointer-events: none;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><path d='M2 14 Q2 2 14 2 M2 8 Q2 4 6 4' stroke='%23c9a961' fill='none' stroke-width='0.7' stroke-linecap='round'/><circle cx='2' cy='2' r='1.4' fill='%23c9a961'/></svg>"),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><path d='M26 14 Q26 2 14 2 M26 8 Q26 4 22 4' stroke='%23c9a961' fill='none' stroke-width='0.7' stroke-linecap='round'/><circle cx='26' cy='2' r='1.4' fill='%23c9a961'/></svg>");
    background-position: top left, top right;
    background-repeat: no-repeat;
  }
  /* Bottom corners (BL + BR) */
  .menu-band .menu-category::after {
    content: "";
    position: absolute;
    bottom: -2px; left: -2px; right: -2px;
    height: 28px;
    pointer-events: none;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><path d='M2 14 Q2 26 14 26 M2 20 Q2 24 6 24' stroke='%23c9a961' fill='none' stroke-width='0.7' stroke-linecap='round'/><circle cx='2' cy='26' r='1.4' fill='%23c9a961'/></svg>"),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><path d='M26 14 Q26 26 14 26 M26 20 Q26 24 22 24' stroke='%23c9a961' fill='none' stroke-width='0.7' stroke-linecap='round'/><circle cx='26' cy='26' r='1.4' fill='%23c9a961'/></svg>");
    background-position: bottom left, bottom right;
    background-repeat: no-repeat;
  }
  @media (max-width: 720px) {
    .menu-band .menu-category {
      padding: 2.4rem 1.4rem 2rem;
    }
  }

  /* Refined menu-category-title with side hairlines (like a chapter heading) */
  .menu-category-title::before,
  .menu-category-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }
  .menu-category-title::before { right: calc(100% + 1rem); }
  .menu-category-title::after  { left:  calc(100% + 1rem); }
  @media (max-width: 520px) {
    .menu-category-title::before,
    .menu-category-title::after { width: 18px; }
    .menu-category-title::before { right: calc(100% + 0.5rem); }
    .menu-category-title::after  { left:  calc(100% + 0.5rem); }
  }

  /* Final coda band — same parchment as last band-3, for narrative closure */
  .menu-band-coda {
    padding: 4rem 0 5rem;
    background: #f6ecd8;
    text-align: center;
    position: relative;
  }
  .menu-band-coda::before {
    content: "❦";
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Prata', serif;
    font-size: 1.6rem;
    color: var(--gold);
    background: #f6ecd8;
    padding: 0 1rem;
    line-height: 1;
  }
  .menu-band-coda::after {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 65%;
    max-width: 520px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
    opacity: 0.6;
  }
  .menu-band-coda .menu-coda {
    margin: 0 auto;
    padding-top: 0;
    border-top: 0;
  }

  /* ============ MOBILE: HAMBURGER + DRAWER ============ */
  /* Hamburger button - hidden on desktop, shown on mobile */
  .nav-burger {
    display: none;
    background: transparent;
    border: 1px solid transparent;
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    transition: border-color 0.3s, background 0.3s;
  }
  .nav-burger:hover {
    border-color: rgba(201, 169, 97, 0.4);
    background: rgba(201, 169, 97, 0.05);
  }
  .nav-burger span {
    display: block;
    height: 1px;
    background: var(--gold-bright);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease, width 0.3s ease, margin 0.3s ease;
    transform-origin: center;
    align-self: flex-end;
    width: 100%;
  }
  /* Asymmetric middle line — slightly shorter, creates an elegant accent */
  .nav-burger span:nth-child(2) {
    width: 65%;
  }
  /* When drawer is open, animate hamburger to X */
  .nav-burger[aria-expanded="true"] span {
    width: 100%;
    align-self: stretch;
  }
  .nav-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .nav-burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* Mobile drawer - hidden by default */
  .mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
  }
  .mobile-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 22, 17, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .mobile-drawer.is-open .mobile-drawer-overlay {
    opacity: 1;
  }
  .mobile-drawer-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 86%;
    max-width: 360px;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }
  .mobile-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
  }
  .mobile-drawer-close {
    position: absolute;
    top: 1rem; right: 1.2rem;
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold-bright);
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
  }
  .mobile-drawer-close:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
  }
  .mobile-drawer-brand {
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  }
  .mobile-drawer-brand img {
    height: 56px;
    width: auto;
    filter: brightness(1.05);
  }
  .mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .mobile-drawer-links a {
    font-family: 'Prata', serif;
    font-size: 1.2rem;
    color: var(--cream);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
    transition: color 0.3s, padding-left 0.3s;
    letter-spacing: 0.005em;
  }
  .mobile-drawer-links a:hover,
  .mobile-drawer-links a.is-active {
    color: var(--gold-bright);
    padding-left: 0.5rem;
  }
  .mobile-drawer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
    margin: 2rem 0 1.5rem;
  }
  .mobile-drawer-phone {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 1rem 1.4rem;
    border: 1px solid var(--gold);
    background: rgba(201, 169, 97, 0.05);
    transition: background 0.3s;
  }
  .mobile-drawer-phone:hover {
    background: rgba(201, 169, 97, 0.15);
  }
  .mobile-drawer-phone .lbl {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-bright);
    margin-bottom: 0.3rem;
  }
  .mobile-drawer-phone .num {
    display: block;
    font-family: 'Prata', serif;
    font-size: 1.05rem;
    color: var(--cream);
    letter-spacing: 0.04em;
  }
  .mobile-drawer-lang {
    margin-top: 1.4rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.78rem;
    color: rgba(250, 244, 230, 0.5);
  }
  .mobile-drawer-lang a {
    color: rgba(250, 244, 230, 0.5);
    text-decoration: none;
    padding: 0 0.4rem;
  }
  .mobile-drawer-lang a.active {
    color: var(--gold-bright);
  }

  /* Mobile breakpoint - hide the desktop nav bits, show hamburger */
  @media (max-width: 960px) {
    .nav-burger { display: flex; }
    /* Hide nav links and lang switcher on mobile (drawer replaces them) */
    .nav-scrolled .nav-links,
    .nav-scrolled .nav-lang,
    .nav .nav-links,
    .nav .nav-lang {
      display: none !important;
    }
    /* Hide the reservation button in the sticky top nav on mobile (visible in hero, drawer, and bottom bar) */
    .nav-scrolled .nav-hotel {
      display: none !important;
    }
    /* Also hide reservation in subpage nav (subpages have body.has-fixed-nav) */
    body.has-fixed-nav .nav .nav-hotel {
      display: none !important;
    }
    /* On mobile, make the reservation button (in hero bottom nav) compact */
    .nav .nav-hotel {
      padding: 0.45rem 0.7rem;
      font-size: 0.7rem;
      letter-spacing: 0.04em;
      gap: 0;
      margin-left: auto;
      margin-right: 0;
      line-height: 1.15;
    }
    .nav .nav-hotel .res-top {
      font-size: 0.55rem;
      letter-spacing: 0.18em;
      margin-bottom: 0;
    }
    .nav .nav-hotel .res-phone {
      font-size: 0.78rem;
      letter-spacing: 0.02em;
    }
    /* Gap between phone and burger; push burger to the far right when phone is hidden (subpages) */
    .nav .nav-burger {
      margin-left: 0.4rem;
    }
    .nav-scrolled .nav-burger,
    body.has-fixed-nav .nav .nav-burger {
      margin-left: auto;
    }
    /* Lock body scroll when drawer is open */
    body.drawer-open {
      overflow: hidden;
    }
  }
