/* ==========================================================================
   Love More Cutz LLC — lovemorecutzllc.org
   Palette sampled from the shop logo: charcoal #585858, ring red #EC1C24.
   ========================================================================== */

:root {
  --ground:   #F7F6F5;
  --panel:    #EDEBE9;
  --card:     #FFFFFF;
  --charcoal: #585858;
  --ink:      #1A1918;
  --ink-2:    #4A4846;
  --muted:    #7C7A77;
  --red:      #EC1C24;
  --red-txt:  #C4151C;
  --line:     #DEDBD8;

  --display: "Playfair Display", Didot, "Bodoni MT", Constantia, Georgia, serif;
  --body: "Franklin Gothic Book", "Franklin Gothic Medium", Corbel, "Segoe UI", system-ui, sans-serif;

  --measure: 66ch;
  --pad: clamp(1.15rem, 4vw, 3.25rem);
  --maxw: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground:  #161615;
    --panel:   #201F1E;
    --card:    #262524;
    --ink:     #F4F2F0;
    --ink-2:   #C6C3BF;
    --muted:   #928F8B;
    --red:     #FF4E55;
    --red-txt: #FF7076;
    --line:    #34322F;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.eyebrow {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin: 0;
}
.ring { height: 3px; border: 0; margin: 0; background: var(--red); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--red); color: #FFF; padding: 0.7rem 1.1rem; text-decoration: none;
}
.skip:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font: inherit; font-size: 0.82rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.78rem 1.5rem; border-radius: 2px; text-decoration: none;
  border: 1px solid var(--red); background: var(--red); color: #FFF;
  cursor: pointer; transition: background 0.18s ease, color 0.18s ease;
}
.btn:hover { background: transparent; color: var(--red-txt); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--ink); }
.btn.on-dark { border-color: #FFF; background: transparent; color: #FFF; }
.btn.on-dark:hover { background: #FFF; color: var(--charcoal); }

/* ---------- header ---------- */
.site-header { background: var(--ground); position: relative; z-index: 20; }
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding: 0.9rem 0;
}
.brandmark { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex: 0 0 auto; }
.brandmark img { width: 54px; height: 54px; }
.brandmark .wordmark { font-family: var(--display); font-size: 1.06rem; line-height: 1.15; }
.brandmark .wordmark span {
  display: block; font-family: var(--body); font-size: 0.57rem;
  letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase;
}

.nav-links { display: flex; gap: 0.35rem; align-items: center; }
.nav-links a {
  font-size: 0.85rem; letter-spacing: 0.045em; text-decoration: none;
  color: var(--ink-2); padding: 0.4rem 0.65rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--red); }

.nav-cta { flex: 0 0 auto; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 2px; padding: 0.5rem 0.6rem; cursor: pointer; color: var(--ink);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px 0; }

/* ---------- dark bands (the logo's charcoal field) ---------- */
.band-dark { background: var(--charcoal); color: #F2F0EE; }
.band-dark .eyebrow { color: rgba(255, 255, 255, 0.72); }
.band-dark h1, .band-dark h2, .band-dark h3 { color: #FFF; }
.band-dark p { color: rgba(255, 255, 255, 0.85); }
.band-dark a { color: #FFF; }

section.band { padding: clamp(2.25rem, 5vw, 3.75rem) 0; }

.pagehead { padding: clamp(1.9rem, 4.5vw, 3rem) 0; }
.pagehead h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); margin-top: 0.5rem; }
.pagehead p { margin: 0.8rem 0 0; max-width: 58ch; }

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(1.5rem, 4vw, 3.25rem); align-items: center;
  padding: clamp(1.75rem, 4vw, 3.25rem) 0 clamp(2.25rem, 5vw, 3.75rem);
}
.hero .badge { width: min(180px, 40%); margin-bottom: 1.35rem; }
.hero h1 { font-size: clamp(2rem, 4.7vw, 3.3rem); letter-spacing: -0.012em; }
.hero h1 em { font-style: italic; color: var(--red-txt); }
.hero .lede { font-size: 1.04rem; color: var(--ink-2); max-width: 45ch; margin: 1.05rem 0 1.75rem; }
.hero-img { border-radius: 3px; overflow: hidden; aspect-ratio: 4 / 5; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.cta-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.today {
  margin-top: 1.6rem; padding-top: 1.05rem; border-top: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-2);
  display: flex; gap: 0.5rem; align-items: baseline; flex-wrap: wrap;
}
.today .dot { width: 8px; height: 8px; border-radius: 50%; background: #2F8F5B; flex: 0 0 auto; }
.today .dot.shut { background: var(--muted); }

/* ---------- three-up ---------- */
.threeup { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.6rem; }
.threeup h2 { font-size: 1.38rem; margin: 0.35rem 0 0.4rem; }
.threeup p { margin: 0; font-size: 0.93rem; }

/* ---------- photo grids ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.trio a { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 3px; }
.trio img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.trio a:hover img { transform: scale(1.04); }

.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 168px; gap: 10px; }
.mosaic a { display: block; overflow: hidden; border-radius: 3px; background: var(--panel); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.mosaic a:hover img { transform: scale(1.04); }
.mosaic .wide { grid-column: span 2; }
.mosaic .tall { grid-row: span 2; }
.mosaic .big  { grid-column: span 2; grid-row: span 2; }

/* ---------- service menu ---------- */
.cat { font-family: var(--display); font-size: 1.55rem; margin: 2.25rem 0 0.5rem; }
.cat:first-of-type { margin-top: 0; }
.menu { border-top: 1px solid var(--line); }
.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.3rem 1.25rem;
  align-items: baseline; padding: 1.05rem 0; border-bottom: 1px solid var(--line);
}
.menu-row .nm { font-family: var(--display); font-size: 1.24rem; }
.menu-row .pr { font-variant-numeric: tabular-nums; color: var(--red-txt); font-size: 0.98rem; white-space: nowrap; }
.menu-row .pr small { color: var(--muted); font-size: 0.76rem; letter-spacing: 0.05em; }
.menu-row .ds { grid-column: 1 / -1; color: var(--muted); font-size: 0.9rem; max-width: 56ch; margin: 0; }

/* ---------- story ---------- */
.story { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.story p { color: var(--ink-2); margin: 0 0 0.95rem; }
.story p.first { font-size: 1.08rem; color: var(--ink); }
.story figure { margin: 0; }
.story figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 0.6rem; }
.pull {
  font-family: var(--display); font-size: clamp(1.3rem, 2.7vw, 1.75rem); font-style: italic;
  color: var(--ink); border-left: 3px solid var(--red); padding-left: 1.05rem; margin: 1.6rem 0;
}
.motto { font-family: var(--display); font-size: 1.12rem; color: var(--ink); }

/* ---------- visit ---------- */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3.5vw, 2.75rem); }
.addr { font-style: normal; line-height: 1.9; color: var(--ink-2); }
.addr strong {
  display: block; color: var(--ink); font-weight: normal;
  font-family: var(--display); font-size: 1.18rem; margin-bottom: 0.25rem;
}
.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours th {
  text-align: left; font: inherit; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); padding-bottom: 0.5rem; font-weight: normal;
}
.hours td { padding: 0.48rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.hours td:last-child { text-align: right; color: var(--ink-2); }
.hours tr.closed td { color: var(--muted); }
/* NB: not `.today` — that class is the open/closed badge, and its flex rules
   would override the row's `display: table-row`. */
.hours tr.is-today td { color: var(--red-txt); }

.mapframe {
  width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line);
  border-radius: 3px; margin-top: 1.1rem; background: var(--panel);
}

/* ---------- lightbox ---------- */
.lb {
  position: fixed; inset: 0; background: rgba(20, 18, 18, 0.94);
  display: none; align-items: center; justify-content: center; z-index: 200; padding: 1.5rem;
}
.lb[open], .lb.on { display: flex; }
.lb img { max-width: 100%; max-height: 88vh; width: auto; border-radius: 3px; }
.lb button {
  position: absolute; top: 1rem; right: 1.15rem; background: none; border: 0;
  color: #FFF; font-size: 2rem; line-height: 1; cursor: pointer; padding: 0.25rem 0.6rem;
}

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal); color: #F2F0EE; }
.foot-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.75rem;
  padding: clamp(1.9rem, 4vw, 2.75rem) 0 1.5rem;
}
.foot-top h2 { font-size: 1.15rem; color: #FFF; margin-bottom: 0.6rem; }
.foot-top a { color: rgba(255, 255, 255, 0.86); text-decoration: none; }
.foot-top a:hover { color: #FFF; text-decoration: underline; }
.foot-top ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; font-size: 0.92rem; }
.foot-brand img { width: 62px; height: 62px; margin-bottom: 0.8rem; }
.foot-tag { font-family: var(--display); font-style: italic; font-size: 1.15rem; color: #FFF; }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem 0 1.4rem; display: flex; justify-content: space-between;
  gap: 0.75rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255, 255, 255, 0.72);
}
.social { display: flex; gap: 0.9rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero, .story, .loc { grid-template-columns: 1fr; }
  .hero-img { aspect-ratio: 3 / 2; }
  .story figure { max-width: 420px; }
  .mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--card); border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line); padding: 0.5rem 0;
    box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.85rem var(--pad); border-bottom: 0; border-left: 3px solid transparent;
  }
  .nav-links a[aria-current="page"] { border-left-color: var(--red); background: var(--panel); }
  .navbar { position: relative; flex-wrap: nowrap; }
  .nav-cta { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brandmark img { width: 46px; height: 46px; }
  .brandmark .wordmark { font-size: 0.97rem; }
  .hero .badge { width: 132px; margin-bottom: 1.05rem; }
  .hero .lede { max-width: none; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { text-align: center; padding: 0.9rem 1rem; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 124px; gap: 7px; }
  .mosaic .big { grid-column: span 2; grid-row: span 2; }
  .mosaic .wide { grid-column: span 2; }
  .mosaic .tall { grid-row: span 1; }
  .trio { gap: 7px; }
  .menu-row { grid-template-columns: 1fr; }
  .menu-row .pr { grid-row: 2; }
  .menu-row .ds { grid-row: 3; }
  .foot-top { grid-template-columns: 1fr; gap: 1.4rem; }
  .foot-bottom { flex-direction: column; }
  .hours td { font-size: 0.9rem; }
}

@media print {
  .site-header, .site-footer, .cta-row, .lb { display: none; }
  body { background: #FFF; color: #000; }
}
