/* The Fish House — site styles
   Palette: deep bayou green, warm cream, cajun red accent, hushpuppy gold. */
:root {
  --ink: #16302b;
  --ink-soft: #3f5a53;
  --cream: #f7f2e8;
  --cream-deep: #efe6d6;
  --white: #fffdf9;
  --red: #c2452d;
  --red-deep: #9d3521;
  --gold: #d9a441;
  --line: rgba(22, 48, 43, 0.14);
  --shadow: 0 10px 30px rgba(22, 48, 43, 0.12);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1160px;
  --gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.eyebrow { font-family: var(--font-body); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 0.6em; }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }
.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink); padding: 8px 14px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }
[hidden] { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; font-size: 0.98rem; text-decoration: none; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); color: #fff; }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-outline { border-color: currentColor; color: var(--ink); background: transparent; }
.btn-outline.on-dark { color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Banner */
.banner { background: var(--gold); color: var(--ink); text-align: center; font-weight: 700; padding: 10px var(--gutter); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 242, 232, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 18px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.brand img { height: 48px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; white-space: nowrap; }
.brand-text small { font-family: var(--font-body); font-weight: 800; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.site-footer .brand-text small { color: rgba(255,255,255,0.6); }
.brand-text small:empty { display: none; }
/* The only logo file is white on transparent, so the light header shows it on a dark chip. */
.site-header .brand img { background: var(--ink); padding: 6px 10px; border-radius: 10px; height: 52px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a { padding: 10px 12px; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.nav a:hover, .nav a[aria-current="page"] { background: var(--cream-deep); color: var(--ink); }
.nav .btn { margin-left: 8px; padding: 10px 18px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 2px solid var(--ink); border-radius: 10px; padding: 8px 10px; cursor: pointer; color: var(--ink); font-weight: 800; }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 10px var(--gutter) 16px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 10px; font-size: 1.05rem; }
  .nav .btn { margin: 8px 0 0; justify-content: center; }
}

/* Hero */
.hero {
  position: relative; color: #fff; min-height: min(78vh, 720px);
  display: grid; align-items: end;
  background: var(--ink) center / cover no-repeat;
  isolation: isolate;
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(22,48,43,0.15) 0%, rgba(22,48,43,0.55) 55%, rgba(22,48,43,0.9) 100%); }
.hero .wrap { padding: 90px 0 48px; }
.hero h1 { color: #fff; max-width: 14ch; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero .lede { color: rgba(255,255,255,0.9); }
.hero .cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero.small { min-height: 46vh; }
.hero.small .wrap { padding: 70px 0 40px; }
.hero .hours-line { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; background: rgba(255,255,255,0.14); padding: 8px 14px; border-radius: 999px; margin-bottom: 18px; backdrop-filter: blur(6px); }
.hero .hours-line svg { width: 16px; height: 16px; fill: var(--gold); }

/* Info strip */
.info-strip { background: var(--ink); color: #fff; }
.info-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 22px 0; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item svg { width: 26px; height: 26px; fill: var(--gold); flex: none; margin-top: 2px; }
.info-item strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 2px; }
.info-item a { color: #fff; }
.info-item .muted { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
@media (max-width: 760px) { .info-strip .wrap { grid-template-columns: 1fr; gap: 14px; } }

/* Sections */
.section { padding: 72px 0; }
.section.tight { padding: 48px 0; }
.section.alt { background: var(--cream-deep); }
.section-head { max-width: 62ch; margin-bottom: 36px; }
.section-head.wide { max-width: none; }
.section-head.wide .lede { max-width: none; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Dish cards */
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card .body { padding: 18px 20px 22px; }
.card h3 { margin-bottom: 6px; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* Specials */
.specials { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.specials ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.specials li { display: flex; gap: 14px; align-items: baseline; padding: 10px 0; border-top: 1px solid var(--line); }
.specials li span:first-child { font-weight: 800; color: var(--red); min-width: 110px; }
.specials .note { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* Split (image + text) */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 5 / 4; object-fit: cover; width: 100%; }
.split.flip img { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 26px; } .split.flip img { order: 0; } }

/* Feature tiles (catering / private events) */
.tile { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; display: grid; align-items: end; color: #fff; text-decoration: none; box-shadow: var(--shadow); isolation: isolate; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform 0.5s ease; }
.tile:hover img { transform: scale(1.04); }
.tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22,48,43,0) 30%, rgba(22,48,43,0.9) 100%); }
.tile .body { padding: 26px; }
.tile h3 { color: #fff; font-size: 1.7rem; }
.tile p { color: rgba(255,255,255,0.88); margin: 0 0 12px; }
.tile .more { font-weight: 800; color: var(--gold); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { aspect-ratio: 1; object-fit: cover; border-radius: 10px; width: 100%; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Social CTA */
.social-cta { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 36px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.social-cta h2 { color: #fff; margin: 0 0 4px; font-size: 1.7rem; }
.social-cta p { margin: 0; color: rgba(255,255,255,0.8); }
.social-cta .btn-primary { background: #1877f2; }
.social-cta .btn-primary:hover { background: #0f5fc7; }

/* Hours table */
.hours-table { list-style: none; margin: 0; padding: 0; }
.hours-table li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-table li span:last-child { font-weight: 800; }

/* Info card, small print, call card */
.info-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.form-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: 12px; }
.notice { font-weight: 800; font-size: 1.1rem; color: var(--ink); margin: 28px 0 0; text-align: center; }
.call-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; text-align: center; }
.call-card h2 { font-size: 1.7rem; }
.call-card .big { display: block; font-family: var(--font-display); font-size: 2rem; margin: 6px 0 14px; }

/* Side column on Catering / Private Events: the call card stretches to the height of the
   cards beside it so the two columns finish together. */
.side { display: flex; flex-direction: column; }
.side .call-card { flex: 1; display: flex; flex-direction: column; justify-content: center; }

/* Map */
.map { border: 0; width: 100%; height: 100%; min-height: 360px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Footer */
.site-footer { background: #0f221e; color: rgba(255,255,255,0.82); padding: 56px 0 28px; margin-top: 40px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.site-footer a { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer .brand { color: #fff; margin-bottom: 12px; }
.site-footer .legal { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 36px; padding-top: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.55); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.social { display: flex; gap: 10px; margin-top: 8px; }
.social a { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.social a:hover { background: var(--red); }
.social svg { width: 20px; height: 20px; fill: #fff; }
@media (max-width: 860px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .cols { grid-template-columns: 1fr; } }

/* Sticky mobile action bar */
.mobile-bar { display: none; }
@media (max-width: 700px) {
  .mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 10px var(--gutter); background: rgba(247,242,232,0.96); border-top: 1px solid var(--line); backdrop-filter: blur(10px); }
  .mobile-bar .btn { justify-content: center; padding: 11px 8px; font-size: 0.9rem; }
  body { padding-bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; } }
