/*
Theme Name: The Green Man Phuket
Theme URI: https://tgmphuket.com/
Author: Mike / Howard & Nui
Author URI: https://tgmphuket.com/
Description: Bespoke theme for The Green Man Pub & Restaurant — a traditional English Tudor coaching house in the south of Phuket, family-run since 2001 by Howard & Nui. Palette: Guinness green #1a3a2e + gold #c9a961 + cream #f5efe0. Typography: Cinzel + EB Garamond + IM Fell English.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary — All rights reserved
Text Domain: tgm-phuket
Tags: restaurant, pub, single-page, custom-colors, full-width-template, responsive-layout, threaded-comments
*/

  :root {
    --green-deep: #1a3a2e;
    --green-mid: #2d5a3d;
    --green-soft: #466a4d;
    --cream: #f5efe0;
    --cream-warm: #ebe2ce;
    --parchment: #ede4d0;
    --gold: #c9a961;
    --gold-light: #d8bd7e;
    --wood: #3d2817;
    --burgundy: #8a3a4a;
    --bougainvillea: #c2528a;
    --ink: #1f1812;
    --ink-soft: #463830;
    --shadow: rgba(31, 24, 18, 0.15);
  }

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

  body {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.25 0 0 0 0 0.15 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--green-deep);
  }

  a { color: var(--green-deep); text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ============ TOP BAR ============ */
  .topbar {
    background: var(--green-deep);
    color: var(--cream);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--gold);
  }
  .topbar a { color: var(--cream); }
  .topbar-left, .topbar-right { display: flex; gap: 24px; align-items: center; }
  .topbar svg { width: 14px; height: 14px; vertical-align: middle; margin-right: 6px; }
  @media (max-width: 760px) {
    .topbar { font-size: 11px; padding: 8px 16px; }
    .topbar-left { display: none; }
  }

  /* ============ NAV ============ */
  nav.main-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 239, 224, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 40, 23, 0.12);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo-wrap { display: flex; align-items: center; gap: 14px; }
  .logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .logo-link:hover { opacity: 0.85; }
  .logo-link:hover .logo-mark { transform: scale(1.04); }
  .logo-link:active { transform: scale(0.98); }
  .logo-mark {
    width: 56px; height: 56px;
    background: var(--cream);
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 2px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(31, 24, 18, 0.18);
    transition: transform 0.25s ease;
  }
  .logo-mark img {
    width: 88%;
    height: 88%;
    object-fit: contain;
  }
  .logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.18em;
    color: var(--green-deep);
    line-height: 1;
  }
  .logo-text small {
    display: block;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-top: 4px;
    text-transform: none;
    font-weight: 400;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--green-deep); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  .nav-links a:hover::after { width: 100%; }
  .btn-book-nav {
    background: var(--green-deep);
    color: var(--cream) !important;
    padding: 10px 22px !important;
    border: 1px solid var(--gold);
    transition: all 0.3s;
  }
  .btn-book-nav:hover {
    background: var(--gold);
    color: var(--green-deep) !important;
  }
  .btn-book-nav::after { display: none !important; }
  .menu-toggle { display: none; background: none; border: none; cursor: pointer; }
  .menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--ink); margin: 5px 0;
  }
  @media (max-width: 1080px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    nav.main-nav { padding: 14px 20px; }
    .logo-text { font-size: 15px; letter-spacing: 0.14em; }
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 80px 24px 100px;
    overflow: hidden;
    color: var(--cream);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at top, rgba(70, 106, 77, 0.4) 0%, transparent 60%),
      linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 50%, var(--green-deep) 100%);
    z-index: 0;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(201, 169, 97, 0.07) 100%),
      linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(201, 169, 97, 0.07) 100%);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at center, transparent 40%, rgba(26, 58, 46, 0.55) 100%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    animation: fadeUp 1.6s ease;
  }
  .hero-eyebrow {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: 'Cinzel', serif;
    color: var(--cream);
    font-size: clamp(2.6rem, 7vw, 5.6rem);
    letter-spacing: 0.06em;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 28px;
    text-shadow: 0 6px 30px rgba(0,0,0,0.5);
  }
  .hero h1 span {
    display: block;
    font-size: 0.5em;
    color: var(--gold);
    font-style: italic;
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-top: 14px;
  }
  .hero-tagline {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-style: italic;
    color: rgba(245, 239, 224, 0.95);
    max-width: 640px;
    margin: 0 auto 44px;
    line-height: 1.7;
    text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  }
  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    max-width: 520px;
    margin: 0 auto;
  }
  .hero-cta .btn {
    flex: 1 1 220px;
    min-width: 220px;
    text-align: center;
  }
  .btn {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 42px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--green-deep);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
  }
  .btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 239, 224, 0.5);
  }
  .btn-ghost:hover {
    background: var(--cream);
    color: var(--green-deep);
    border-color: var(--cream);
  }
  @media (max-width: 500px) {
    .hero-cta { flex-direction: column; gap: 14px; max-width: 320px; }
    .hero-cta .btn { width: 100%; flex: none; }
  }
  .hero-est {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: rgba(201, 169, 97, 0.85);
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  }
  .hero-est::before {
    content: '';
    display: block;
    width: 1px; height: 30px;
    background: rgba(201, 169, 97, 0.5);
    margin: 0 auto 14px;
  }

  /* ============ SECTIONS COMMON ============ */
  section { position: relative; z-index: 2; padding: 80px 24px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }
  .section-title {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
  .section-divider {
    width: 80px; height: 1px;
    background: var(--gold);
    margin: 0 auto 44px;
    position: relative;
  }
  .section-divider::before, .section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .section-divider::before { left: -12px; }
  .section-divider::after { right: -12px; }
  .section-lead {
    text-align: center;
    max-width: 720px;
    margin: -30px auto 60px;
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.8;
  }

  /* ============ ABOUT ============ */
  .about { background: var(--cream); }

  /* About text — single column, centered narrow column */
  .about-text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .about-text h2 {
    text-align: center;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 28px;
    line-height: 1.15;
  }
  .about-text .section-eyebrow { text-align: center; margin-bottom: 12px; }
  .about-text p {
    margin-bottom: 18px;
    color: var(--ink-soft);
    font-size: 1.05rem;
    text-align: left;
  }
  .about-text p:first-of-type::first-letter {
    font-family: 'IM Fell English', 'Cinzel', serif;
    font-size: 4em;
    float: left;
    line-height: 0.85;
    padding: 6px 12px 0 0;
    color: var(--green-deep);
  }
  .about-signature {
    margin-top: 30px;
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--green-deep);
    font-size: 1.15rem;
    text-align: center;
  }
  .about-signature small {
    display: block;
    font-family: 'EB Garamond', serif;
    color: var(--ink-soft);
    font-style: normal;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 6px;
  }

  /* ============ FEATURES ============ */
  .features {
    background: var(--green-deep);
    color: var(--cream);
  }
  .features .section-title { color: var(--cream); }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid rgba(201, 169, 97, 0.3);
  }
  @media (max-width: 860px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    .features-grid { grid-template-columns: 1fr; }
  }
  .feature {
    background: var(--green-deep);
    padding: 50px 32px;
    text-align: center;
    transition: background 0.4s ease;
  }
  .feature:hover { background: var(--green-mid); }
  .feature-icon {
    width: 56px; height: 56px;
    margin: 0 auto 24px;
    color: var(--gold);
  }
  .feature h3 {
    color: var(--cream);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .feature p {
    color: rgba(245, 239, 224, 0.75);
    font-size: 0.98rem;
    line-height: 1.7;
  }

  /* ============ ATMOSPHERE (NEW) ============ */
  .atmosphere {
    background: var(--green-deep);
    color: var(--cream);
    padding: 110px 24px;
    position: relative;
    overflow: hidden;
  }
  .atmosphere::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L100 100M100 0L0 100' stroke='%23c9a961' stroke-width='0.3' opacity='0.2'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
  }
  .atmosphere > .container {
    position: relative;
    z-index: 2;
  }
  .atmosphere-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .atmosphere-text .section-eyebrow {
    color: var(--gold);
    margin-bottom: 16px;
    text-align: center;
  }
  .atmosphere-text h2 {
    color: var(--cream);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.2;
  }
  .atmosphere-text p {
    color: rgba(245, 239, 224, 0.85);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
  }
  .union-jack-detail {
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: rgba(245, 239, 224, 0.85);
  }
  .union-jack-detail svg { flex-shrink: 0; }
  @media (max-width: 600px) {
    .atmosphere { padding: 70px 20px; }
  }

  /* ============ MENU HIGHLIGHTS ============ */
  .menu {
    background: var(--parchment);
    background-image:
      repeating-linear-gradient(90deg, transparent 0px, transparent 80px, rgba(61, 40, 23, 0.02) 80px, rgba(61, 40, 23, 0.02) 81px);
  }
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px 60px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .menu-item {
    border-bottom: 1px dashed rgba(61, 40, 23, 0.3);
    padding-bottom: 26px;
  }
  .menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
  }
  .menu-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--green-deep);
    letter-spacing: 0.08em;
    flex: 1;
  }
  .menu-item .price {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .menu-item p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.6;
  }
  .menu-placeholder {
    margin-top: 40px;
    text-align: center;
    padding: 32px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px dashed rgba(201, 169, 97, 0.5);
    color: var(--ink-soft);
    font-style: italic;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .menu-placeholder strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-style: normal;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
  }

  /* ---- Menu tabs ---- */
  .menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0 auto 50px;
    border-bottom: 1px solid rgba(61, 40, 23, 0.18);
    max-width: 360px;
  }
  .menu-tab {
    background: transparent;
    border: none;
    padding: 16px 36px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-soft);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
  }
  .menu-tab:hover { color: var(--green-deep); }
  .menu-tab.active { color: var(--green-deep); }
  .menu-tab::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
  }
  .menu-tab.active::after { width: 60%; }
  .menu-tab-panel { display: none; animation: fadeUp 0.5s ease; }
  .menu-tab-panel.active { display: block; }

  /* ---- Drinks list ---- */
  .drinks-block {
    margin-bottom: 56px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .drinks-block-corkage {
    background: rgba(201, 169, 97, 0.06);
    border: 1px solid rgba(201, 169, 97, 0.25);
    padding: 28px 32px;
    margin-top: 60px;
  }
  .drinks-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-align: center;
    color: var(--green-deep);
    margin-bottom: 8px;
    position: relative;
  }
  .drinks-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 14px auto 28px;
  }
  .drinks-note {
    text-align: center;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-top: -16px;
    margin-bottom: 28px;
  }
  .drinks-subheading {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-top: 32px;
    margin-bottom: 18px;
    position: relative;
  }
  .drinks-subheading::before,
  .drinks-subheading::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 16px;
    opacity: 0.5;
  }
  .drinks-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .drinks-list.two-col {
    column-count: 2;
    column-gap: 50px;
  }
  .drinks-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "name price" "meta meta";
    align-items: baseline;
    gap: 4px 14px;
    padding: 12px 0;
    border-bottom: 1px dotted rgba(61, 40, 23, 0.18);
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .drinks-list li:last-child { border-bottom: none; }
  .d-name {
    grid-area: name;
    font-family: 'EB Garamond', serif;
    font-weight: 500;
    color: var(--green-deep);
    font-size: 1.02rem;
  }
  .d-name em {
    font-style: italic;
    font-weight: 400;
    color: var(--ink-soft);
    font-size: 0.88em;
    margin-left: 4px;
  }
  .d-meta {
    grid-area: meta;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .d-price {
    grid-area: price;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .d-tag {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 2px 7px;
    margin-left: 8px;
    vertical-align: 2px;
    border: 1px solid currentColor;
    border-radius: 2px;
    line-height: 1;
  }
  .d-tag-v       { color: #5a7a4a; }
  .d-tag-vegan   { color: #466a4d; }
  .d-tag-spicy   { color: #b03a3a; border-color: #b03a3a; }
  .d-tag-signature { color: var(--gold); background: rgba(201, 169, 97, 0.08); }
  .d-multi-price {
    display: block;
    font-size: 0.82rem;
    color: var(--ink-soft);
    font-style: italic;
    margin-top: 2px;
  }
  .menu-section-note {
    text-align: center;
    font-style: italic;
    color: var(--ink-soft);
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 0.95rem;
  }
  .menu-special-note {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--burgundy);
    margin-top: 28px;
    text-transform: uppercase;
  }
  @media (max-width: 700px) {
    .drinks-list.two-col { column-count: 1; }
    .menu-tab { padding: 14px 22px; font-size: 11px; letter-spacing: 0.18em; }
    .drinks-block-corkage { padding: 22px 18px; }
  }

  /* ============ EVENTS ============ */
  .events { background: var(--cream); position: relative; }
  .events-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(61, 40, 23, 0.15);
    border: 1px solid rgba(61, 40, 23, 0.15);
    max-width: 1100px;
    margin: 0 auto;
  }
  .events-strip-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }
  .event-day {
    background: var(--cream);
    padding: 36px 22px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
  }
  .event-day:hover {
    background: var(--green-deep);
    color: var(--cream);
    transform: translateY(-4px);
    z-index: 2;
    box-shadow: 0 12px 30px var(--shadow);
  }
  .event-day:hover h4,
  .event-day:hover .event-title,
  .event-day:hover .event-time { color: var(--cream); }
  .event-day:hover .event-time { color: var(--gold); }
  .event-day h4 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 18px;
    transition: color 0.4s ease;
  }
  .event-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--green-deep);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    transition: color 0.4s ease;
  }
  .event-time {
    display: block;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.9rem;
    transition: color 0.4s ease;
  }
  .event-icon {
    width: 28px; height: 28px;
    margin: 0 auto 18px;
    color: var(--green-deep);
    opacity: 0.7;
    transition: color 0.4s ease;
  }
  .event-day:hover .event-icon { color: var(--gold); opacity: 1; }
  .events-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.95rem;
  }

  /* ============ WINE SPOTLIGHT (within Events section) ============ */
  .wine-spotlight {
    max-width: 920px;
    margin: 60px auto 0;
    background: var(--green-deep);
    color: var(--cream);
    padding: 50px 56px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(201, 169, 97, 0.4);
    position: relative;
    overflow: hidden;
  }
  .wine-spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, transparent 48%, rgba(201, 169, 97, 0.05) 48%, rgba(201, 169, 97, 0.05) 52%, transparent 52%);
    background-size: 30px 30px;
    pointer-events: none;
  }
  .wine-spotlight > * { position: relative; z-index: 2; }
  .wine-spotlight-icon {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.4);
    display: grid;
    place-items: center;
    color: var(--gold);
    flex-shrink: 0;
  }
  .wine-spotlight-eyebrow {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .wine-spotlight h3 {
    color: var(--cream);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .wine-spotlight p {
    color: rgba(245, 239, 224, 0.82);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .wine-spotlight-link {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    display: inline-block;
    transition: all 0.3s;
  }
  .wine-spotlight-link:hover {
    color: var(--cream);
    border-color: var(--cream);
  }
  @media (max-width: 760px) {
    .wine-spotlight {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 40px 28px;
      gap: 22px;
    }
    .wine-spotlight-icon { margin: 0 auto; }
  }
  @media (max-width: 760px) {
    .events-strip { grid-template-columns: 1fr; }
  }

  /* ============ PRIVATE EVENTS (NEW SECTION) ============ */
  .private-events {
    background:
      linear-gradient(rgba(26, 58, 46, 0.93), rgba(26, 58, 46, 0.93)),
      url('images/IMG_1180.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--cream);
    position: relative;
  }
  .private-events .section-title { color: var(--cream); }
  .private-events .section-lead { color: rgba(245, 239, 224, 0.85); }

  .events-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  .event-card {
    background: rgba(245, 239, 224, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 42px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .event-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--gold);
    transition: all 0.5s ease;
    transform: translateX(-50%);
  }
  .event-card:hover {
    background: rgba(245, 239, 224, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }
  .event-card:hover::before { width: 60px; }
  .event-card-icon {
    width: 48px; height: 48px;
    margin: 0 auto 24px;
    color: var(--gold);
  }
  .event-card h3 {
    color: var(--cream);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    text-transform: uppercase;
  }
  .event-card p {
    color: rgba(245, 239, 224, 0.78);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .event-card-link {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    display: inline-block;
    transition: all 0.3s;
  }
  .event-card-link:hover {
    color: var(--cream);
    border-color: var(--cream);
  }
  .private-events-cta {
    text-align: center;
    margin-top: 60px;
  }
  .private-events-cta p {
    color: rgba(245, 239, 224, 0.85);
    font-style: italic;
    margin-bottom: 24px;
    font-size: 1.05rem;
  }

  /* ============ GALLERY ============ */
  .gallery {
    background: var(--cream);
    padding: 0 !important;
    overflow: hidden;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 46, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .gallery-item:hover::after { opacity: 1; }
  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ============ BOOK VIA WHATSAPP ============ */
  .booking {
    background:
      linear-gradient(rgba(26, 58, 46, 0.95), rgba(26, 58, 46, 0.97)),
      repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(201, 169, 97, 0.05) 20px, rgba(201, 169, 97, 0.05) 22px);
    color: var(--cream);
    position: relative;
  }
  .booking .section-title { color: var(--cream); }
  .booking .section-lead { color: rgba(245, 239, 224, 0.85); }

  .whatsapp-card {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(245, 239, 224, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 60px 50px 50px;
    text-align: center;
    position: relative;
  }
  .whatsapp-card::before, .whatsapp-card::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border: 1px solid var(--gold);
  }
  .whatsapp-card::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
  .whatsapp-card::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }

  .whatsapp-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.12);
    border: 1px solid rgba(201, 169, 97, 0.4);
    display: grid;
    place-items: center;
    color: var(--gold);
  }
  .whatsapp-card-text h3 {
    color: var(--cream);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .whatsapp-card-text p {
    color: rgba(245, 239, 224, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--gold);
    color: var(--green-deep);
    padding: 20px 36px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
  }
  .whatsapp-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.25em;
  }
  .whatsapp-btn-number {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: none;
    padding-left: 16px;
    border-left: 1px solid rgba(26, 58, 46, 0.3);
    color: var(--green-deep);
    opacity: 0.7;
  }
  @media (max-width: 600px) {
    .whatsapp-card { padding: 40px 24px 32px; }
    .whatsapp-btn { flex-direction: column; gap: 8px; padding: 18px 28px; }
    .whatsapp-btn-number { border-left: none; padding-left: 0; padding-top: 4px; }
  }

  .booking-alt {
    text-align: center;
    margin-top: 36px;
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(245, 239, 224, 0.65);
    line-height: 1.7;
  }
  .booking-alt a {
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 169, 97, 0.4);
  }
  .booking-alt a:hover { color: var(--cream); }

  /* ============ CONTACT ============ */
  .contact { background: var(--cream); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .contact-info h2 {
    text-align: left;
    margin-bottom: 24px;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
  }
  .contact-info .section-eyebrow { text-align: left; margin-bottom: 12px; }
  .contact-block {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(61, 40, 23, 0.12);
  }
  .contact-block:last-child { border-bottom: none; }
  .contact-block h4 {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .contact-block p, .contact-block a {
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.7;
  }
  .contact-block a:hover { color: var(--green-deep); border-bottom: 1px solid var(--gold); }
  .contact-block a.address-link {
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px dashed rgba(61, 40, 23, 0.25);
    transition: all 0.25s ease;
  }
  .contact-block a.address-link:hover {
    color: var(--green-deep);
    border-bottom: 1px solid var(--gold);
    transform: translateX(2px);
  }
  footer .address-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed rgba(201, 169, 97, 0.25);
    transition: all 0.25s ease;
  }
  footer .address-link:hover {
    color: var(--gold) !important;
    border-bottom-color: var(--gold);
  }
  .hours-list { list-style: none; }
  .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 1rem;
    color: var(--ink-soft);
  }
  .hours-list li strong {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--green-deep);
    text-transform: uppercase;
  }
  .hours-list li.closed { color: var(--burgundy); }
  .hours-list li.closed strong { color: var(--burgundy); }
  .contact-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--gold);
    position: relative;
  }
  .contact-image img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .contact-image-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(26, 58, 46, 0.9));
    color: var(--cream);
    padding: 40px 24px 20px;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    text-align: center;
  }
  @media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--ink);
    color: rgba(245, 239, 224, 0.7);
    padding: 70px 24px 30px;
    position: relative;
    z-index: 2;
    border-top: 3px solid var(--gold);
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  }
  .footer-brand .logo-text { color: var(--cream); }
  .footer-brand .logo-text small { color: rgba(245, 239, 224, 0.5); }
  .footer-brand p {
    margin-top: 20px;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
  }
  footer h5 {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 10px; }
  footer ul a {
    color: rgba(245, 239, 224, 0.7);
    font-size: 0.98rem;
    transition: color 0.3s;
  }
  footer ul a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    gap: 16px;
  }
  .socials { display: flex; gap: 14px; }
  .socials a {
    width: 38px; height: 38px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    transition: all 0.3s;
  }
  .socials a:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
  }
  @media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }
  @media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ============ MOBILE MENU OVERLAY ============ */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--green-deep);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 30px 24px 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    overflow-y: auto;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(45deg, rgba(201, 169, 97, 0.03) 25%, transparent 25%, transparent 75%, rgba(201, 169, 97, 0.03) 75%),
      linear-gradient(-45deg, rgba(201, 169, 97, 0.03) 25%, transparent 25%, transparent 75%, rgba(201, 169, 97, 0.03) 75%);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    z-index: 2;
  }
  .mobile-menu-header .logo-text { color: var(--cream); }
  .mobile-menu-header .logo-text small { color: rgba(245, 239, 224, 0.5); }
  .mobile-close {
    background: none;
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--gold);
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s;
  }
  .mobile-close:hover {
    background: var(--gold);
    color: var(--green-deep);
  }
  .mobile-nav-links {
    list-style: none;
    margin-top: 30px;
    flex: 1;
    position: relative;
    z-index: 2;
  }
  .mobile-nav-links li {
    border-bottom: 1px dashed rgba(201, 169, 97, 0.2);
  }
  .mobile-nav-links a {
    display: block;
    padding: 20px 0;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    transition: color 0.3s, padding 0.3s;
  }
  .mobile-nav-links a:hover, .mobile-nav-links a:active {
    color: var(--gold);
    padding-left: 8px;
  }
  .mobile-menu-cta {
    margin-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .mobile-menu-cta .btn {
    display: inline-block;
    width: 100%;
    max-width: 320px;
  }
  .mobile-menu-cta-note {
    margin-top: 18px;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(245, 239, 224, 0.55);
    letter-spacing: 0.06em;
  }
  body.menu-open { overflow: hidden; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

