:root{
  /* Light theme: slightly dimmed (less "grell" than pure white) */
  --bg: #f6f7f6;
  --bg-2: #eef1ef;
  --surface: rgba(255,255,255,.72);
  --surface-2: rgba(255,255,255,.54);
  --text: #0b0f0c;
  --muted: rgba(11,15,12,.74);
  --border: rgba(11,15,12,.14);
  --shadow: 0 14px 40px rgba(11,15,12,.10);
  --shadow-soft: 0 10px 22px rgba(11,15,12,.08);
  --brand: #2a8f45;
  --brand-2: #66c06f;
  --ring: rgba(42,143,69,.62);
  --radius: 18px;
  --max: 1120px;
  --header-h: 72px;

  --header-bg: rgba(246,247,246,.78);
  --panel: rgba(255,255,255,.72);
  --panel-strong: rgba(255,255,255,.82);
  --footer-bg: rgba(255,255,255,.48);

  --hero-image: url("../img/hero.jpg");
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; color-scheme: light dark; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(900px 600px at 15% -10%, rgba(102,192,111,.18), transparent 65%),
    radial-gradient(760px 520px at 105% 5%, rgba(42,143,69,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  line-height: 1.5;
}

img{ max-width: 100%; height: auto; display:block; }
a{ color: inherit; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover{ text-decoration-thickness: 2px; }

:focus-visible{ outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 12px; }

.skip-link{
  position:absolute;
  left:-999px;
  top: 10px;
  padding: 10px 12px;
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar{
  min-height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  white-space:nowrap;
}
.brand-logo{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: transparent;
  border: 0;
}
.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(18px 18px at 30% 25%, rgba(255,255,255,.9), rgba(255,255,255,0)),
    linear-gradient(180deg, var(--brand-2), var(--brand));
  box-shadow: 0 10px 18px rgba(42,143,69,.20);
}
.brand-title{ display:flex; flex-direction:column; line-height: 1.15; }
.brand-title strong{ font-size: 1.02rem; letter-spacing: .2px; }
.brand-title span{ font-size: .92rem; color: var(--muted); }

.nav-toggle{
  appearance:none;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 999px;
  padding: 10px 12px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
  color: rgba(11,15,12,.86);
}
.nav-toggle .lines{
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle .lines span{
  position:absolute;
  left:0;
  right:0;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  opacity: .92;
}
.nav-toggle .lines span:nth-child(1){ top: 0; }
.nav-toggle .lines span:nth-child(2){ top: 5px; }
.nav-toggle .lines span:nth-child(3){ top: 10px; }
.nav-toggle .label{ font-weight: 650; font-size: .95rem; }

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap: 8px;
}
.nav-links a{
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav-links a:hover{
  background: var(--surface-2);
  border-color: var(--border);
}

.header-cta{
  text-decoration:none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #06110b;
  box-shadow: 0 10px 18px rgba(42,143,69,.22);
}
.header-cta:hover{ filter: brightness(1.02); }

/* Mobile nav panel */
.nav-panel{
  display:none;
  padding: 10px 0 16px;
}
.nav-panel[aria-hidden="false"]{ display:block; }
.nav-panel .nav-links{
  flex-direction:column;
  align-items:stretch;
  gap: 8px;
}
.nav-panel .nav-links a{
  background: var(--panel-strong);
  border: 1px solid var(--border);
}

/* Hero */
.hero{
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-h));
  display:grid;
  align-items:center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.04);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 15% 25%, rgba(42,143,69,.28), transparent 65%),
    linear-gradient(90deg, rgba(10,14,12,.76) 0%, rgba(10,14,12,.42) 52%, rgba(10,14,12,.14) 100%),
    linear-gradient(0deg, rgba(10,14,12,.92), rgba(10,14,12,.30));
}
.hero .wrap{ position:relative; z-index: 2; }

.kicker{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-size: .95rem;
}

.hero h1{
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #f7faf7;
}
.hero .lead{
  margin: 0;
  max-width: 62ch;
  font-size: 1.15rem;
  color: rgba(247,250,247,.82);
}

.cta-row{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}

.btn{
  appearance:none;
  border: none;
  cursor:pointer;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  transition: transform .06s ease, filter .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: #06110b;
  box-shadow: 0 14px 26px rgba(42,143,69,.22);
}
.btn-primary:hover{ filter: brightness(1.02); }

.btn-ghost{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
.btn-ghost:hover{ background: rgba(255,255,255,.14); }

.hero-highlights{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  max-width: 820px;
}

.glass-card{
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}
.glass-card h3{ margin:0 0 6px; font-size: 1rem; color: rgba(255,255,255,.94); }
.glass-card p{ margin:0; color: rgba(255,255,255,.78); font-size: .95rem; }

/* Sections */
main section{ padding: 70px 0; }

/* Prevent anchor targets being hidden under sticky header */
section[id]{ scroll-margin-top: calc(var(--header-h) + 14px); }

.section-title{
  margin: 0 0 12px;
  font-size: 1.85rem;
  letter-spacing: -0.01em;
}
.section-sub{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 78ch;
}

.surface{
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* Soft fade wash below the hero (outside->inside, plus top->bottom) */
.after-hero{
  position: relative;
  isolation: isolate;
}
.after-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(980px 720px at 50% 0%, rgba(102,192,111,.18), transparent 62%),
    radial-gradient(1100px 820px at 50% 100%, rgba(42,143,69,.10), transparent 66%),
    linear-gradient(90deg,
      rgba(246,247,246,.92) 0%,
      rgba(246,247,246,.64) 14%,
      rgba(102,192,111,.12) 50%,
      rgba(246,247,246,.64) 86%,
      rgba(246,247,246,.92) 100%
    ),
    linear-gradient(180deg,
      rgba(255,255,255,0) 0%,
      rgba(102,192,111,.07) 22%,
      rgba(238,241,239,.52) 62%,
      rgba(246,247,246,.72) 100%
    );
}
.after-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .22;
  background-image: url("../img/vines-left.svg"), url("../img/vines-right.svg");
  background-repeat: repeat-y, repeat-y;
  background-position: left -22px top 0, right -22px top 0;
  background-size: 200px auto, 200px auto;
  filter: saturate(1.08) drop-shadow(0 14px 22px rgba(11,15,12,.08));
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.after-hero > *{
  position: relative;
  z-index: 1;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 14px;
}
.col-6{ grid-column: span 6; }
.col-4{ grid-column: span 4; }
.col-12{ grid-column: span 12; }

.card{
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.card h3{ margin:0 0 8px; font-size: 1.1rem; }
.card p{ margin:0; color: var(--muted); }

@media (hover:hover) and (pointer:fine){
  .card:hover{
    box-shadow: 0 14px 28px rgba(11,15,12,.09);
    border-color: rgba(11,15,12,.16);
  }
}

.menu-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.menu-link{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  text-decoration:none;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.menu-link:hover{ box-shadow: 0 14px 26px rgba(11,15,12,.08); }
.menu-link small{ color: var(--muted); display:block; margin-top: 4px; }
.pill{
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel-strong);
  color: var(--muted);
  font-size: .9rem;
  white-space:nowrap;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 12px;
}
.gallery figure{
  margin:0;
  border-radius: calc(var(--radius) + 8px);
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}
.gallery figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.gallery .g1{ grid-column: span 6; }
.gallery .g2{ grid-column: span 6; }
.gallery .g3{ grid-column: span 4; }
.gallery .g4{ grid-column: span 4; }
.gallery .g5{ grid-column: span 4; }

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.kv{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 6px 12px;
  margin: 0;
}
.kv dt{ font-weight: 750; }
.kv dd{ margin:0; color: var(--muted); }

.hours{
  width: 100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.hours th, .hours td{
  padding: 10px 12px;
  text-align:left;
  border-bottom: 1px solid var(--border);
}
.hours th{ background: var(--panel-strong); font-weight: 800; }
.hours tr:last-child th, .hours tr:last-child td{ border-bottom:none; }

/* Legal pages */
.legal{
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.legal h1{ margin: 0 0 10px; font-size: 2rem; }
.legal h2{ margin: 18px 0 8px; font-size: 1.25rem; }
.legal p{ margin: 0 0 10px; color: var(--muted); }
.legal ul{ margin: 0 0 10px; }

/* Footer */
.site-footer{
  padding: 42px 0 56px;
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
}
.footer-grid{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items:start;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:flex-end;
}
.footer-links a{
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel-strong);
}
.footer-links a:hover{ box-shadow: 0 10px 18px rgba(11,15,12,.06); }
.footer-links a[aria-current="page"],
.nav-panel a[aria-current="page"]{
  border-color: rgba(42,143,69,.28);
  box-shadow: 0 10px 18px rgba(42,143,69,.10);
}

.small{ font-size: .95rem; color: var(--muted); }

@media (prefers-contrast: more){
  :root{
    --muted: rgba(11,15,12,.84);
    --border: rgba(11,15,12,.24);
    --ring: rgba(42,143,69,.85);
  }
  :focus-visible{ outline-width: 4px; }
  .card{ background: rgba(255,255,255,.86); }
  .menu-link{ background: rgba(255,255,255,.84); }
  .pill{ background: rgba(255,255,255,.86); }
}

@media (prefers-color-scheme: dark) and (prefers-contrast: more){
  .card{ background: rgba(20,26,22,.92); }
  .menu-link{ background: rgba(20,26,22,.90); }
  .pill{ background: rgba(20,26,22,.92); }
}

/* Automatic dark mode for comfortable viewing at night */
@media (prefers-color-scheme: dark){
  :root{
    --bg: #0b0f0c;
    --bg-2: #0f1511;
    --surface: rgba(20,26,22,.78);
    --surface-2: rgba(20,26,22,.62);
    --text: rgba(247,250,247,.92);
    --muted: rgba(247,250,247,.72);
    --border: rgba(247,250,247,.14);
    --shadow: 0 14px 40px rgba(0,0,0,.46);
    --shadow-soft: 0 10px 22px rgba(0,0,0,.34);

    --header-bg: rgba(11,15,12,.74);
    --panel: rgba(20,26,22,.78);
    --panel-strong: rgba(20,26,22,.86);
    --footer-bg: rgba(11,15,12,.64);
    --ring: rgba(102,192,111,.70);
  }

  .nav-toggle{ color: rgba(247,250,247,.88); }
  .nav-links a:hover{ background: rgba(247,250,247,.06); }

  .hero::before{ filter: saturate(1.02) contrast(1.02) brightness(.86); }

  .after-hero::before{
    background:
      radial-gradient(980px 720px at 50% 0%, rgba(102,192,111,.10), transparent 62%),
      radial-gradient(1100px 820px at 50% 100%, rgba(42,143,69,.08), transparent 66%),
      linear-gradient(90deg,
        rgba(11,15,12,.92) 0%,
        rgba(11,15,12,.68) 16%,
        rgba(42,143,69,.10) 50%,
        rgba(11,15,12,.68) 84%,
        rgba(11,15,12,.92) 100%
      ),
      linear-gradient(180deg,
        rgba(11,15,12,0) 0%,
        rgba(42,143,69,.08) 22%,
        rgba(11,15,12,.52) 62%,
        rgba(11,15,12,.84) 100%
      );
  }

  .after-hero::after{ opacity: .16; filter: saturate(1.02) drop-shadow(0 18px 28px rgba(0,0,0,.36)); }

  .hours th{ background: rgba(20,26,22,.86); }
  .btn-ghost{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
}

/* Reveal */
[data-reveal]{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .6s ease;
}
.is-revealed{ opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px){
  .hero-highlights{ grid-template-columns: 1fr; max-width: 560px; }
  .menu-grid{ grid-template-columns: 1fr; }
  .col-6, .col-4{ grid-column: span 12; }
  .gallery .g1, .gallery .g2, .gallery .g3, .gallery .g4, .gallery .g5{ grid-column: span 12; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-links{ justify-content:flex-start; }
}

@media (max-width: 920px){
  .after-hero::after{ display:none; }
}

@media (max-width: 820px){
  .nav > .nav-links{ display:none; }
  .nav-toggle{ display:inline-flex; }

  .nav-panel .nav-links{ display:flex; gap: 0; }
  .nav-panel .nav-links li + li{ margin-top: 18px; }
  .nav-panel .nav-links a{ display:block; padding: 14px 14px; }
}

@media (max-width: 520px){
  .brand{ min-width: 0; }
  .brand-title{ min-width: 0; }
  .brand-title strong,
  .brand-title span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta{
    padding: 8px 10px;
    font-size: .92rem;
  }
}

@media (min-width: 821px){
  .nav-toggle{ display:none; }
  .nav-panel{ display:none !important; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  [data-reveal]{ opacity: 1; transform: none; transition: none; }
  .btn{ transition: none; }
}
