/* Seeley Station — mockup site by HB Digital */
:root {
  --cream: #fbf7f0;
  --bg-alt: #f3ecdf;
  --espresso: #3b2f2a;
  --espresso-dark: #2b221e;
  --accent: #74508f;      /* huckleberry */
  --accent-dark: #5d3f73;
  --gold: #d9974a;        /* warm caramel */
  --ink: #40352f;
  --muted: #7c6f66;
  --line: #eadfce;
  --radius: 14px;
  --shadow: 0 12px 34px rgba(59, 47, 42, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Nunito Sans', sans-serif; color: var(--ink); background: var(--cream); line-height: 1.7; }
h1,h2,h3,h4 { font-family: 'Fraunces', Georgia, serif; color: var(--espresso); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
p { margin: 0 0 1rem; }
a { color: var(--accent-dark); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, 92%); margin: 0 auto; }
.section { padding: 74px 0; }
.section-alt { background: var(--bg-alt); }
.center { text-align: center; }
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; margin-bottom: .6rem; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }
.center .lead { margin-inline: auto; }

.btn { display: inline-block; padding: 14px 30px; border-radius: 40px; font-weight: 800; font-family: 'Nunito Sans', sans-serif; transition: transform .15s, background .15s; cursor: pointer; border: none; font-size: 1rem; }
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #c5843a; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.75); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,247,240,.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand-logo { height: 62px; width: auto; display: block; }
.brand-mark { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.5rem; color: var(--espresso); }
.brand-sub { font-size: .72rem; color: var(--accent); letter-spacing: .22em; text-transform: uppercase; font-weight: 800; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--espresso); font-weight: 700; font-size: 1rem; }
.nav a:not(.btn-call):hover, .nav a.active:not(.btn-call) { color: var(--accent); }
.btn-call { background: var(--accent); color: #fff !important; padding: 9px 18px; border-radius: 40px; font-weight: 800; }
.btn-call:hover { background: var(--accent-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.8rem; color: var(--espresso); cursor: pointer; }

/* Hero */
.hero { position: relative; color: #fff; background: linear-gradient(rgba(43,34,30,.55), rgba(43,34,30,.6)), url('hero.jpg') center/cover no-repeat; padding: 120px 0; text-align: center; }
.hero h1 { color: #fff; max-width: 20ch; margin-inline: auto; }
.hero .tagline { color: #ffe9c9; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .9rem; margin-bottom: 1rem; }
.hero p.sub { color: #f6ece0; font-size: 1.22rem; max-width: 54ch; margin: 0 auto 1.8rem; }
.hero .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.page-banner { background: linear-gradient(rgba(43,34,30,.62), rgba(43,34,30,.62)), url('hero.jpg') center/cover no-repeat; color: #fff; padding: 70px 0; text-align: center; }
.page-banner h1 { color: #fff; }
.page-banner p { color: #f2e7da; margin: 0; }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.card .emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.card h3 { font-size: 1.3rem; }
.card p { color: var(--muted); margin: 0; }

/* Photo strip + gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.review .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review p { font-style: italic; color: var(--ink); }
.review .who { font-weight: 800; color: var(--accent-dark); font-style: normal; margin-top: 12px; }

/* Menu */
.menu-wrap { max-width: 820px; margin: 0 auto; }
.brand-band { margin: 54px 0 26px; padding: 20px 26px; background: linear-gradient(135deg, var(--espresso), #4a3b34); color: #fff; border-radius: 14px; box-shadow: var(--shadow); }
.brand-band:first-child { margin-top: 0; }
.brand-band h2 { color: #fff; margin: 0; font-size: 1.7rem; }
.brand-band p { color: #f2e7da; margin: 6px 0 0; font-size: .92rem; }
.mcat { margin-bottom: 40px; }
.mcat > h3 { font-size: 1.55rem; border-bottom: 2px solid var(--gold); padding-bottom: 6px; margin-bottom: 4px; }
.mcat .msub { color: var(--muted); font-size: .9rem; font-style: italic; margin: 6px 0 8px; }
.sizes-key { text-align: right; color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.mrow { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.mrow .mname strong { color: var(--espresso); font-size: 1.05rem; }
.mrow .mname em { display: block; color: var(--muted); font-size: .85rem; font-style: normal; }
.mrow .mprice { white-space: nowrap; font-weight: 800; color: var(--accent-dark); text-align: right; font-size: .98rem; }
.flavors-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.flavors-list span { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 5px 14px; font-size: .9rem; font-weight: 700; color: var(--espresso); }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; }
@media (max-width: 720px) { .menu-cols { grid-template-columns: 1fr; } }

/* Wholesale order form */
.order-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.order-row .oname strong { color: var(--espresso); font-size: 1.02rem; }
.order-row .oname em { display: block; color: var(--muted); font-size: .84rem; font-style: normal; }
.order-row .oend { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
.order-row .oprice { font-weight: 800; color: var(--accent-dark); min-width: 60px; text-align: right; }
.order-row input.qty { width: 64px; padding: 8px; border: 1px solid var(--line); border-radius: 6px; font-size: 1rem; text-align: center; font-family: inherit; }
.order-contact { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-top: 32px; }
.grid-2f { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 620px) { .grid-2f { grid-template-columns: 1fr; } }

/* Social feed placeholder */
.social { background: var(--bg-alt); }
.social-note { background: #fff; border: 1px dashed var(--accent); color: var(--accent-dark); border-radius: 10px; padding: 12px 16px; font-size: .92rem; text-align: center; margin: 0 auto 26px; max-width: 640px; }
.feed { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.feed .tile { position: relative; }
.feed img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; }
.feed .ig { position: absolute; top: 8px; right: 8px; color: #fff; font-size: 1rem; text-shadow: 0 1px 3px rgba(0,0,0,.5); }

/* Announcements (Facebook events feed placeholder) */
.announce-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.announce-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 12px; padding: 22px; box-shadow: var(--shadow); text-align: left; }
.announce-card .date { font-weight: 800; color: var(--accent-dark); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.announce-card h3 { font-size: 1.18rem; margin: .3rem 0 .4rem; }
.announce-card p { color: var(--muted); margin: 0; }
.announce-card .fbtag { display: inline-block; margin-top: 14px; font-size: .78rem; color: #1877f2; font-weight: 800; }
@media (max-width: 860px) { .announce-grid { grid-template-columns: 1fr; } }

/* CTA */
.cta-band { background: var(--espresso); color: #fff; text-align: center; padding: 62px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e8ddd2; max-width: 50ch; margin: 0 auto 1.6rem; }

/* Visit / contact */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours-list .day { font-weight: 700; color: var(--espresso); }
.info-row { display: flex; gap: 14px; margin-bottom: 14px; }
.info-row .label { font-weight: 800; color: var(--accent-dark); min-width: 80px; }

.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Footer */
.site-footer { background: var(--espresso-dark); color: #d8cabd; padding: 54px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px; }
.footer-brand .brand-mark { color: #fff; font-size: 1.5rem; }
.site-footer h4 { color: #fff; font-family: 'Fraunces', serif; font-size: 1.1rem; }
.site-footer a { color: #d8cabd; }
.site-footer a:hover { color: var(--gold); }
.footer-nav a { display: block; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding: 20px 0; font-size: .88rem; color: #9d9086; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; display: none; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 6%; }
  .btn-call { margin: 10px 6%; text-align: center; }
  .grid-2, .grid-3, .grid-4, .reviews, .visit-grid, .about-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .feed { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .footer-grid, .gallery { grid-template-columns: 1fr; } .feed { grid-template-columns: repeat(2, 1fr); } }
