/* ============================================
   CHERRYFISH — cherryfishsd.com
   Palette: Light (v2) | Animae-inspired aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--body); }

/* ── TOKENS ── */
:root {
  --bg:       #ffffff;
  --bg2:      #f8f6f2;
  --text:     #0f0d0b;
  --text2:    #3d3830;
  --text3:    #7a7268;
  --accent:   #c9943a;
  --border:   #e8e3dc;
  --nav-h:    80px;
  --heading:  'Playfair Display', serif;
  --body:     'Lato', sans-serif;
}

/* ── UTILITY ── */
.u-tag {
  font-family: var(--body);
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
}
.u-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--body);
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.u-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--accent);
}

/* ============================================
   NAV
   ============================================ */
.site-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 200;
  width: 100%;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}
.site-nav .nav-links a { color: var(--text2); }
.site-nav .nav-links a:hover,
.site-nav .nav-links a.active { color: var(--text); }
.site-nav .nav-res { border-color: var(--accent); color: var(--accent); }
.site-nav .nav-res:hover { background: var(--accent); color: #fff; }

.nav-logo {
  display: block;
  flex-shrink: 0;
  height: 60px;
  width: auto;
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Footer logo */
.footer-logo {
  display: block;
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}
.footer-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--body);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text2); transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-res {
  font-family: var(--body);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--accent); color: var(--accent);
  padding: 9px 22px; border-radius: 2px;
  transition: background .2s, color .2s;
}
.nav-res:hover { background: var(--accent); color: #fff; }

/* Mobile hamburger (hidden on desktop) */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: currentColor; transition: all .3s; }

/* ============================================
   HERO — full bleed with dark overlay
   ============================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1c0f06 0%, #0d0d0d 50%, #060d14 100%);
}
.hero-bg img { position: absolute; inset: 0; object-fit: cover; opacity: .55; }
/* Gradient overlay — bottom-heavy so text stays readable */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.05) 30%,
    rgba(0,0,0,.45) 70%,
    rgba(0,0,0,.70) 100%
  );
}
.hero-placeholder-icon {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: rgba(255,255,255,.25);
}
.hero-placeholder-icon svg { width: 48px; height: 48px; }
.hero-placeholder-icon span {
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 72px 80px;
  width: 100%; max-width: 900px;
}
.hero-content .u-eyebrow { color: rgba(255,255,255,.6); }
.hero-content .u-eyebrow::before { background: rgba(255,255,255,.4); }
.hero-h1 {
  font-family: var(--heading);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400; line-height: 1.08; letter-spacing: .02em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-family: var(--body);
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.72);
  max-width: 420px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--body);
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 13px 28px; border-radius: 2px;
  transition: opacity .2s;
  display: inline-block;
}
.btn-primary:hover { opacity: .85; }
.btn-ghost-white {
  font-family: var(--body);
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.8); background: none;
  border: 1px solid rgba(255,255,255,.4);
  padding: 12px 26px; border-radius: 2px;
  transition: all .2s; display: inline-block;
}
.btn-ghost-white:hover { border-color: #fff; color: #fff; }
.btn-outline {
  font-family: var(--body);
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text2); background: none;
  border: 1px solid var(--border);
  padding: 12px 26px; border-radius: 2px;
  transition: all .2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--text2); color: var(--text); }

/* ============================================
   INFO STRIP
   ============================================ */
.info-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.info-strip-item {
  padding: 32px 0; text-align: center;
  border-right: 1px solid var(--border);
}
.info-strip-item:last-child { border-right: none; }
.info-strip-num {
  font-family: var(--heading);
  font-size: 28px; font-weight: 400; color: var(--text); margin-bottom: 4px;
}
.info-strip-label {
  font-family: var(--body);
  font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text3);
}

/* ============================================
   SECTION WRAPPER
   ============================================ */
.section { padding: 88px 72px; }
.section-sm { padding: 60px 72px; }
.section-title {
  font-family: var(--heading);
  font-size: 32px; font-weight: 400; color: var(--text);
}
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 52px;
}
.section-link {
  font-family: var(--body);
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); transition: opacity .2s;
}
.section-link:hover { opacity: .7; }

/* ============================================
   FEATURED GRID (homepage)
   ============================================ */
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.feat-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .2s;
}
.feat-card:hover { background: var(--bg2); }
.feat-card-tag { font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.feat-card-name { font-family: var(--heading); font-size: 19px; font-weight: 400; color: var(--text); }
.feat-card-desc { font-family: var(--body); font-size: 14px; font-weight: 300; color: var(--text2); line-height: 1.7; flex: 1; }
.feat-card-price { font-family: var(--body); font-size: 14px; font-weight: 700; color: var(--text3); margin-top: 8px; }

/* ============================================
   INFO BAND (hours bar)
   ============================================ */
.info-band {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.info-band-piece { display: flex; flex-direction: column; gap: 6px; }
.info-band-label { font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text3); }
.info-band-val { font-family: var(--heading); font-size: 18px; font-weight: 400; color: var(--text); }
.info-band-div { width: 1px; height: 36px; background: var(--border); }

/* ============================================
   PHOTO SPLIT (about / story teaser on homepage)
   ============================================ */
.photo-split {
  display: grid; grid-template-columns: 1fr 1fr;
}
.photo-split-img {
  aspect-ratio: 4/5;
  background: var(--bg2);
  position: relative; overflow: hidden;
}
.photo-split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px;
  background: var(--bg2);
}
.photo-split-text .u-eyebrow { margin-bottom: 18px; }
.photo-split-h {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 40px); font-weight: 400; line-height: 1.15;
  color: var(--text); margin-bottom: 20px;
}
.photo-split-body {
  font-family: var(--body);
  font-size: 16px; font-weight: 300; color: var(--text2); line-height: 1.9;
  margin-bottom: 32px;
}
.photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: #ede9e1;
  color: #c8c0b4;
}
.photo-placeholder svg { width: 40px; height: 40px; opacity: .4; }
.photo-placeholder span { font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; opacity: .5; }

/* ============================================
   MENU PAGE
   ============================================ */
.menu-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 52px;
  padding-left: 72px; padding-right: 72px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.menu-hero-title {
  font-family: var(--heading);
  font-size: 56px; font-weight: 400; color: var(--text); letter-spacing: .02em;
}
.menu-hero-note {
  font-family: var(--body); font-size: 14px; font-weight: 300;
  color: var(--text2); max-width: 280px; line-height: 1.9; text-align: right;
}
.menu-body { max-width: 880px; margin: 0 auto; padding: 72px 60px; }
.menu-section { margin-bottom: 72px; }
.menu-section-name {
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.menu-items { display: flex; flex-direction: column; }
.menu-item {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-left { flex: 1; }
.menu-item-name {
  font-family: var(--heading); font-size: 20px; font-weight: 400;
  color: var(--text); letter-spacing: .01em; margin-bottom: 4px;
}
.menu-item-desc {
  font-family: var(--body); font-size: 14px; font-weight: 300;
  color: var(--text2); line-height: 1.65; font-style: italic;
}
.menu-item-price {
  font-family: var(--body); font-size: 14px; font-weight: 700;
  color: var(--text3); white-space: nowrap; flex-shrink: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  padding-left: 72px; padding-right: 72px;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.about-hero-title {
  font-family: var(--heading);
  font-size: clamp(36px, 4.5vw, 60px); font-weight: 400; line-height: 1.1;
  color: var(--text); max-width: 700px; margin-bottom: 28px;
}
.about-hero-body {
  font-family: var(--body); font-size: 16px; font-weight: 300;
  color: var(--text2); line-height: 1.95; max-width: 580px;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
}
.about-block { background: var(--bg); padding: 52px 60px; }
.about-block-title {
  font-family: var(--body); font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.about-block p,
.about-block li {
  font-family: var(--body); font-size: 16px; font-weight: 300;
  color: var(--text2); line-height: 1.95; list-style: none;
}
.about-block li::before { content: '— '; color: var(--border); }
.about-block li + li { margin-top: 2px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 60px;
  padding-left: 72px; padding-right: 72px;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.contact-hero-title {
  font-family: var(--heading); font-size: 56px; font-weight: 400;
  color: var(--text); margin-bottom: 10px;
}
.contact-hero-sub {
  font-family: var(--body); font-size: 16px; font-weight: 300; color: var(--text2);
}
.contact-body {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; padding: 72px;
  max-width: 1100px; margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.ci-block {}
.ci-label {
  font-family: var(--body); font-size: 9px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text3); margin-bottom: 8px;
}
.ci-val {
  font-family: var(--body); font-size: 14px; font-weight: 300;
  color: var(--text2); line-height: 1.9;
}
.ci-val a { color: var(--text2); transition: color .2s; }
.ci-val a:hover { color: var(--accent); }
.res-form { display: flex; flex-direction: column; gap: 16px; }
.res-form-title {
  font-family: var(--heading); font-size: 24px; font-weight: 400;
  color: var(--text); margin-bottom: 6px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-field { display: flex; flex-direction: column; gap: 6px; }
.f-field label {
  font-family: var(--body); font-size: 9px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text3);
}
.f-field input,
.f-field select,
.f-field textarea {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 2px;
  color: var(--text); font-size: 14px; font-weight: 300;
  padding: 11px 14px; font-family: var(--body);
  outline: none; transition: border-color .2s; width: 100%;
}
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus { border-color: var(--accent); }
.f-field textarea { min-height: 96px; resize: vertical; }
.f-field select { appearance: none; cursor: pointer; }
.f-note {
  font-family: var(--body); font-size: 12px; font-weight: 300;
  color: var(--text3); line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 72px 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
/* footer-logo styles moved to nav-logo block above */
.footer-tagline {
  font-family: var(--body); font-size: 13px; font-weight: 300;
  color: var(--text3); line-height: 1.8; max-width: 200px;
}
.footer-col h4 {
  font-family: var(--body); font-size: 9px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text3);
  margin-bottom: 16px;
}
.footer-col p,
.footer-col a {
  font-family: var(--body); font-size: 14px; font-weight: 300;
  color: var(--text2); line-height: 2.1; display: block;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: var(--body); font-size: 11px; font-weight: 300; color: var(--text3);
}

/* ============================================
   PAGE HEADER (non-hero pages)
   ============================================ */
.page-header {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 52px;
  padding-left: 72px; padding-right: 72px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.page-header-title {
  font-family: var(--heading); font-size: 52px; font-weight: 400;
  color: var(--text); letter-spacing: .02em;
}

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */
.mobile-nav {
  display: none; /* shown via JS */
  position: fixed; inset: 0; z-index: 300;
  background: rgba(255,255,255,.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--heading); font-size: 28px; font-weight: 400;
  color: var(--text); letter-spacing: .04em;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 28px; color: var(--text2); cursor: pointer; font-weight: 300;
}
.mobile-nav-res {
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--accent); color: var(--accent);
  padding: 12px 28px; border-radius: 2px; margin-top: 8px;
  transition: all .2s;
}
.mobile-nav-res:hover { background: var(--accent); color: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-res { display: none; }
  .nav-burger { display: flex; }

  .hero-content { padding: 0 28px 60px; }
  .hero-h1 { font-size: 36px; }

  .section { padding: 56px 28px; }
  .section-sm { padding: 40px 28px; }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
  .info-strip-item:nth-child(2) { border-right: none; }

  .featured-grid { grid-template-columns: 1fr; }
  .photo-split { grid-template-columns: 1fr; }
  .photo-split-img { aspect-ratio: 3/2; }
  .photo-split-text { padding: 48px 28px; }

  .menu-hero { padding: calc(var(--nav-h) + 40px) 28px 40px; flex-direction: column; align-items: flex-start; }
  .menu-hero-note { text-align: left; }
  .menu-body { padding: 48px 28px; }

  .about-hero { padding: calc(var(--nav-h) + 48px) 28px 56px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-block { padding: 36px 28px; }

  .contact-hero { padding: calc(var(--nav-h) + 48px) 28px 48px; }
  .contact-body { grid-template-columns: 1fr; padding: 48px 28px; gap: 48px; }
  .f-row { grid-template-columns: 1fr; }

  .info-band { padding: 36px 28px; flex-direction: column; gap: 24px; }
  .info-band-div { display: none; }

  .site-footer { grid-template-columns: 1fr 1fr; padding: 48px 28px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .page-header { padding: calc(var(--nav-h) + 40px) 28px 40px; }
  .page-header-title { font-size: 36px; }
}
