/* ============================================================
   THE COUNTER — Shared landing-page styles
   Used by: menu.html, catering.html, about.html, coffee.html, breakfast.html
   ============================================================ */
* { margin:0; padding:0; box-sizing:border-box; }
:root {
  --gold:#C9A84C; --gold-dim:#8A6D2F; --gold-bright:#d9b85e;
  --black:#0A0A0A; --black-mid:#111111; --black-soft:#1A1A1A; --black-card:#161616;
  --off-white:#F5F0E8; --cream:#EDE8DC; --text-muted:#888880; --text-mid:#C0B89A;
}
html { scroll-behavior:smooth; }
body { background:var(--black); color:var(--off-white); font-family:'Poppins',sans-serif; font-weight:300; line-height:1.7; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
a { color:inherit; }
em { font-style:italic; color:var(--gold); }
img { display:block; max-width:100%; }
.wrap { max-width:1240px; margin:0 auto; padding:0 1.5rem; }
.section-label { display:flex; align-items:center; gap:0.7rem; font-size:0.58rem; letter-spacing:0.4em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:0.9rem; }
.section-label::before { content:''; width:28px; height:1px; background:var(--gold-dim); }
.section-label.center { justify-content:center; }
.section-heading { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,5vw,3.6rem); font-weight:300; line-height:1.1; }
.gold-rule { width:60px; height:2px; background:var(--gold); margin:1.4rem 0 1.8rem; }

/* NAV */
nav { position:fixed; top:0; left:0; right:0; z-index:500; display:flex; align-items:center; justify-content:space-between; padding:1.1rem 2.2rem; transition:background .4s,padding .4s; }
nav.scrolled { background:rgba(10,10,10,.96); padding:.7rem 2.2rem; box-shadow:0 1px 0 rgba(201,168,76,.12); }
.nav-logo-svg { height:54px; width:auto; }
nav.scrolled .nav-logo-svg { height:46px; }
.nav-links { display:flex; gap:1.9rem; align-items:center; list-style:none; }
.nav-links a { color:var(--text-mid); text-decoration:none; font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; font-weight:500; transition:color .3s; white-space:nowrap; }
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-cta { border:1px solid var(--gold); color:var(--gold) !important; padding:.65rem 1.2rem; transition:all .3s; }
.nav-cta:hover { background:var(--gold); color:var(--black) !important; }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; z-index:1200; }
.nav-toggle span { width:24px; height:2px; background:var(--gold); transition:.3s; }

/* MOBILE MENU */
.m-menu { position:fixed; inset:0; z-index:1100; background:rgba(10,9,6,0.98); display:flex; flex-direction:column; justify-content:center; padding:2.5rem; opacity:0; pointer-events:none; transition:opacity .4s; }
.m-menu.open { opacity:1; pointer-events:auto; }
.m-menu a { color:var(--off-white); text-decoration:none; font-family:'Cormorant Garamond',serif; font-size:2rem; padding:0.7rem 0; border-bottom:1px solid rgba(201,168,76,0.12); display:flex; align-items:baseline; gap:1rem; }
.m-menu a span { color:var(--gold); font-size:0.7rem; font-family:'Poppins',sans-serif; }
.m-close { position:absolute; top:1.6rem; right:1.8rem; background:none; border:none; color:var(--gold); font-size:2rem; cursor:pointer; line-height:1; }

/* HERO */
.l-hero { position:relative; min-height:82vh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; padding:7rem 1.5rem 4rem; }
.l-hero-bg { position:absolute; inset:0; z-index:0; }
.l-hero-bg img { width:100%; height:100%; object-fit:cover; }
.l-hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(6,5,3,.82) 0%, rgba(6,5,3,.7) 45%, rgba(6,5,3,.92) 100%); }
.l-hero-inner { position:relative; z-index:2; max-width:880px; }
.l-hero-eyebrow { font-size:.62rem; letter-spacing:.42em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:1.4rem; }
.l-hero h1 { font-family:'Cormorant Garamond',serif; font-weight:300; font-size:clamp(2.6rem,6vw,4.6rem); color:var(--cream); line-height:1.05; margin-bottom:1.3rem; }
.l-hero h1 em { font-weight:500; }
.l-hero p.lede { font-size:clamp(0.95rem,1.6vw,1.1rem); color:var(--text-mid); max-width:600px; margin:0 auto 2rem; }
.hero-rule { display:flex; align-items:center; justify-content:center; gap:1rem; margin:1.5rem 0; }
.hero-rule span { height:1px; width:60px; background:var(--gold-dim); }
.hero-rule i { width:5px; height:5px; background:var(--gold); transform:rotate(45deg); }
.cta-row { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:1.8rem; }
.btn-gold { display:inline-block; background:var(--gold); color:var(--black); text-decoration:none; padding:.95rem 2rem; font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; font-weight:700; transition:transform .2s,background .3s; }
.btn-gold:hover { transform:translateY(-2px); background:var(--gold-bright); }
.btn-outline { display:inline-block; border:1px solid rgba(201,168,76,.45); color:var(--gold); background:none; text-decoration:none; padding:.95rem 2rem; font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; font-weight:600; transition:all .3s; cursor:pointer; }
.btn-outline:hover { border-color:var(--gold); background:rgba(201,168,76,.08); }

/* HOURS STRIP */
.hours-strip { background:var(--gold); padding:1rem 2rem; display:flex; align-items:center; justify-content:center; gap:2.4rem; flex-wrap:wrap; }
.hours-strip-item { font-size:.6rem; letter-spacing:.16em; text-transform:uppercase; font-weight:700; color:var(--black); }

/* SECTION SHELL */
.block { padding:6rem 0; }
.block-mid { background:var(--black-mid); }

/* INTRO / STORY */
.split-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.split-text p { color:var(--text-mid); margin-bottom:1.2rem; font-size:.98rem; }
.split-text strong { color:var(--off-white); font-weight:500; }
.stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5px; margin-top:2.4rem; background:rgba(201,168,76,.15); }
.stat { background:var(--black-soft); padding:1.6rem 0.8rem; text-align:center; }
.stat b { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:300; color:var(--gold); display:block; line-height:1; margin-bottom:.45rem; }
.stat span { font-size:.5rem; letter-spacing:.2em; text-transform:uppercase; color:var(--text-muted); font-weight:600; }
.img-frame { aspect-ratio:4/5; background:var(--black-soft); overflow:hidden; position:relative; }
.img-frame img { width:100%; height:100%; object-fit:cover; opacity:.92; }
.img-tag { position:absolute; bottom:1.3rem; left:1.3rem; background:var(--gold); color:var(--black); padding:.55rem 1rem; font-size:.5rem; letter-spacing:.2em; text-transform:uppercase; font-weight:700; }

/* MENU LIST */
.menu-cat { margin-top:3.8rem; }
.menu-cat:first-child { margin-top:2.5rem; }
.menu-cat-head { display:flex; align-items:baseline; justify-content:space-between; gap:1rem; border-bottom:1px solid rgba(201,168,76,0.2); padding-bottom:0.9rem; margin-bottom:1.8rem; }
.menu-cat-title { font-family:'Cormorant Garamond',serif; font-size:1.9rem; color:var(--gold); font-weight:400; line-height:1; }
.menu-cat-note { font-size:.58rem; letter-spacing:.22em; text-transform:uppercase; color:var(--text-muted); font-weight:600; white-space:nowrap; }
.dish-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5px; background:rgba(201,168,76,0.08); }
.dish { background:var(--black); padding:1.5rem 1.8rem; transition:background .3s; }
.dish:hover { background:var(--black-soft); }
.dish-top { display:flex; justify-content:space-between; align-items:baseline; gap:1rem; margin-bottom:0.4rem; }
.dish-name { font-family:'Cormorant Garamond',serif; font-size:1.35rem; color:var(--off-white); font-weight:400; line-height:1.2; }
.dish-price { font-size:0.82rem; color:var(--gold); font-weight:600; white-space:nowrap; }
.dish-desc { font-size:0.78rem; color:var(--text-muted); line-height:1.6; }
.dish-tag { display:inline-block; margin-top:0.55rem; font-size:0.5rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold-dim); font-weight:600; }

/* FEATURE CARDS (3-up) */
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.feature-card { background:var(--black-card); border:1px solid rgba(201,168,76,0.12); padding:2.2rem 1.9rem; transition:border-color .3s; }
.feature-card:hover { border-color:rgba(201,168,76,0.3); }
.feature-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--off-white); font-weight:400; margin-bottom:0.7rem; }
.feature-card p { font-size:0.85rem; color:var(--text-mid); line-height:1.7; }
.feature-num { font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--gold); margin-bottom:0.8rem; }

/* IMAGE GALLERY / SLOTS */
.photo-grid { display:grid; gap:1.5px; background:rgba(201,168,76,0.1); margin-top:3rem; }
.photo-grid.cols-3 { grid-template-columns:repeat(3,1fr); }
.photo-grid.feature { grid-template-columns:2fr 1fr; grid-template-rows:1fr 1fr; height:600px; }
.photo-grid.feature .photo-cell:first-child { grid-row:span 2; }
.photo-grid.feature .photo-cell { aspect-ratio:auto; height:100%; }
.photo-cell { position:relative; overflow:hidden; background:var(--black-soft); aspect-ratio:1/1; }
.photo-cell.tall { aspect-ratio:auto; }
.photo-cell img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.photo-cell:hover img { transform:scale(1.04); }
.photo-cell-cap { position:absolute; left:1rem; bottom:0.9rem; font-size:0.5rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--off-white); background:rgba(10,9,6,0.55); padding:0.3rem 0.7rem; }
/* placeholder (photo to be added) */
.photo-ph { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.7rem; text-align:center; padding:1.5rem; background:repeating-linear-gradient(45deg,#141310,#141310 12px,#171510 12px,#171510 24px); color:var(--text-muted); }
.photo-ph svg { width:40px; height:40px; opacity:0.5; }
.photo-ph span { font-size:0.55rem; letter-spacing:0.18em; text-transform:uppercase; font-weight:600; }
.photo-ph small { font-size:0.6rem; color:var(--gold-dim); letter-spacing:0.05em; }

/* REVIEWS */
.reviews-head { text-align:center; margin-bottom:3.2rem; }
.rating-display { display:flex; align-items:center; justify-content:center; gap:1rem; margin-top:1.1rem; }
.rating-num { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300; color:var(--gold); line-height:1; }
.stars { color:var(--gold); font-size:1rem; letter-spacing:2px; }
.rating-count { font-size:.56rem; letter-spacing:.15em; text-transform:uppercase; color:var(--text-muted); font-weight:500; margin-top:.25rem; }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.review-card { background:var(--black-card); border:1px solid rgba(201,168,76,.1); padding:1.9rem; }
.review-stars { color:var(--gold); font-size:.78rem; letter-spacing:1px; margin-bottom:.9rem; }
.review-text { font-family:'Cormorant Garamond',serif; font-size:1.02rem; line-height:1.8; color:var(--text-mid); font-style:italic; margin-bottom:1.3rem; }
.review-author { font-size:.6rem; letter-spacing:.15em; text-transform:uppercase; color:var(--text-muted); font-weight:600; }

/* VISIT */
.visit-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:0; background:rgba(201,168,76,.1); border:1px solid rgba(201,168,76,.1); }
.visit-info { background:var(--black-mid); padding:3rem; }
.visit-detail { margin-bottom:1.8rem; }
.visit-detail-label { font-size:.55rem; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:.4rem; }
.visit-detail-value { font-size:.92rem; color:var(--off-white); font-weight:300; line-height:1.6; }
.visit-detail-value a { color:var(--off-white); text-decoration:none; transition:color .3s; }
.visit-detail-value a:hover { color:var(--gold); }
.hours-table { width:100%; border-collapse:collapse; }
.hours-table tr { border-bottom:1px solid rgba(201,168,76,.08); }
.hours-table td { padding:.5rem 0; font-size:.82rem; color:var(--text-mid); }
.hours-table td:last-child { text-align:right; color:var(--off-white); }
.visit-map { position:relative; min-height:420px; background:var(--black-soft); }
.visit-map iframe { width:100%; height:100%; position:absolute; inset:0; border:none; filter:grayscale(100%) contrast(1.05) brightness(.62) sepia(10%); opacity:.92; }

/* FAQ */
.faq-list { max-width:820px; margin:3rem auto 0; }
.faq-item { border-bottom:1px solid rgba(201,168,76,.12); }
.faq-q { width:100%; text-align:left; background:none; border:none; cursor:pointer; padding:1.5rem 0; display:flex; justify-content:space-between; align-items:center; gap:1.5rem; font-family:'Cormorant Garamond',serif; font-size:1.35rem; color:var(--off-white); transition:color .3s; }
.faq-q:hover { color:var(--gold); }
.faq-q .plus { color:var(--gold); font-size:1.4rem; flex-shrink:0; transition:transform .3s; font-family:'Poppins',sans-serif; font-weight:300; }
.faq-item.open .faq-q .plus { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease, padding .4s ease; }
.faq-item.open .faq-a { max-height:300px; padding-bottom:1.5rem; }
.faq-a p { color:var(--text-mid); font-size:.92rem; line-height:1.8; }

/* FOOTER */
footer { background:var(--black-mid); border-top:1px solid rgba(201,168,76,.12); padding:3.5rem 0 2.5rem; }
.footer-inner { max-width:1240px; margin:0 auto; padding:0 1.5rem; display:flex; justify-content:space-between; gap:2rem; flex-wrap:wrap; align-items:flex-start; }
.footer-brand { font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--gold); letter-spacing:.05em; margin-bottom:.5rem; }
.footer-meta { font-size:.72rem; color:var(--text-muted); letter-spacing:.04em; line-height:1.9; max-width:320px; }
.footer-meta a { color:var(--text-mid); text-decoration:none; }
.footer-meta a:hover { color:var(--gold); }
.footer-nav { display:flex; gap:3rem; flex-wrap:wrap; }
.footer-nav-col-title { font-size:.55rem; letter-spacing:.25em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:1rem; }
.footer-nav ul { list-style:none; }
.footer-nav li { margin-bottom:.6rem; }
.footer-nav a { color:var(--text-mid); text-decoration:none; font-size:.78rem; transition:color .3s; }
.footer-nav a:hover { color:var(--gold); }
.footer-bottom { max-width:1240px; margin:2.5rem auto 0; padding:1.6rem 1.5rem 0; border-top:1px solid rgba(201,168,76,0.08); font-size:.62rem; letter-spacing:.08em; color:var(--text-muted); text-align:center; }

@media (max-width:900px){
  .split-grid, .visit-grid { grid-template-columns:1fr; }
  .dish-grid { grid-template-columns:1fr; }
  .feature-grid, .reviews-grid, .photo-grid.cols-3 { grid-template-columns:1fr; }
  .photo-grid.feature { grid-template-columns:1fr 1fr; height:auto; }
  .photo-grid.feature .photo-cell { height:auto; aspect-ratio:1/1; }
  .nav-links { display:none; }
  .nav-toggle { display:flex; }
  .block { padding:4rem 0; }
  .visit-info { padding:2.2rem; }
  .stat-grid { grid-template-columns:repeat(2,1fr); }
}
