/* =========================================================
   Crust Los Gatos — site styles
   Warm, artisan, hyperlocal. Mobile-first.
   ========================================================= */

:root {
  /* Color — inspired by the loaf itself */
  --crust-deep: #5a3517;       /* dark caramelized crust */
  --crust-mid: #8a5a31;        /* crust browning */
  --crust-warm: #c9956d;       /* warm tan */
  --dough: #f5ecd9;            /* soft dough cream */
  --dough-light: #fbf6ea;      /* pale background */
  --ink: #2a2420;              /* warm near-black for text */
  --ink-soft: #5b524a;         /* secondary text */
  --rule: #e6d8bd;             /* hairline rule */
  --tomato: #c14a32;           /* tomato red accent */
  --mustard: #d4a24c;          /* mustard pop */
  --basil: #5a7a44;            /* basil green */

  /* Type */
  --serif: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(42, 36, 32, 0.06), 0 2px 8px rgba(42, 36, 32, 0.04);
  --shadow-md: 0 4px 12px rgba(42, 36, 32, 0.08), 0 12px 32px rgba(42, 36, 32, 0.08);
  --shadow-lg: 0 10px 30px rgba(42, 36, 32, 0.12), 0 30px 60px rgba(42, 36, 32, 0.10);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--dough-light);
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--crust-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--tomato); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--crust-deep);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); }

p { margin: 0 0 1em; }
.lede { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 1.1rem; }
}
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.section--dough { background: var(--dough); }
.section--cream { background: var(--dough-light); }
.section--dark { background: var(--crust-deep); color: var(--dough-light); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--dough); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tomato);
  margin-bottom: 0.8rem;
}
.section--dark .eyebrow { color: var(--mustard); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--crust-deep); color: var(--dough-light); }
.btn--primary:hover { background: var(--tomato); color: var(--dough-light); }
.btn--outline { background: transparent; color: var(--crust-deep); border-color: var(--crust-deep); }
.btn--outline:hover { background: var(--crust-deep); color: var(--dough-light); }
.btn--ghost { background: transparent; color: var(--dough-light); border-color: rgba(245, 236, 217, 0.4); }
.btn--ghost:hover { background: var(--dough-light); color: var(--crust-deep); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 234, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--crust-deep);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nav__badge:hover { transform: scale(1.04); }
.nav__badge img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 4px;
}
.brand__mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand__loc {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tomato);
}
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav__links a:hover, .nav__links a.is-active {
  color: var(--crust-deep);
  border-bottom-color: var(--tomato);
}
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
.nav__phone {
  font-weight: 600;
  color: var(--crust-deep);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav__phone:hover { color: var(--tomato); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  color: var(--crust-deep);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1024px) {
  .nav__badge { display: none; }
}
@media (max-width: 880px) {
  .nav { gap: 0.6rem; padding: 0.8rem 1rem; }
  .nav__links, .nav__phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    background: var(--dough-light);
    padding: 1.5rem 2rem 2rem;
    border-bottom: 1px solid var(--rule);
    gap: 1.2rem;
  }
  .nav.is-open .nav__phone { display: inline; padding-top: 0.5rem; }
  .nav__cta .btn { padding: 0.7rem 1rem; font-size: 0.88rem; }
  .brand__mark { font-size: 1.4rem; }
  .brand__loc { font-size: 0.65rem; letter-spacing: 0.14em; }
}
@media (max-width: 420px) {
  .nav__cta .btn { padding: 0.6rem 0.9rem; font-size: 0.82rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--crust-deep);
  color: var(--dough-light);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(1.1);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,36,32,0.35) 0%, rgba(42,36,32,0.78) 85%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vw, 9rem) 1.5rem clamp(4rem, 9vw, 7rem);
  max-width: var(--container);
  margin: 0 auto;
}
.hero h1 {
  color: var(--dough-light);
  max-width: 18ch;
  margin-bottom: 0.4em;
}
.hero h1 em {
  font-style: italic;
  color: var(--mustard);
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(245, 236, 217, 0.92);
  max-width: 48ch;
  margin-bottom: 2rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: rgba(245, 236, 217, 0.85);
}
.hero__meta strong { color: var(--dough); display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; margin-bottom: 0.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (max-width: 420px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__meta { gap: 1.2rem 1.5rem; }
}

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__img {
  aspect-ratio: 4 / 3;
  background-color: var(--rule);
  background-size: cover;
  background-position: center;
}
.card__body { padding: 1.4rem 1.5rem 1.6rem; }
.card__title { font-family: var(--serif); font-size: 1.3rem; color: var(--crust-deep); margin: 0 0 0.5rem; }
.card__desc { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
.card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--basil);
  margin-bottom: 0.4rem;
}
.card__tag--meat { color: var(--tomato); }
.card__tag--warm { color: var(--mustard); }

/* ---------- Section header ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-head h2 { margin-bottom: 0.5rem; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin: 0; }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__media {
  aspect-ratio: 5 / 6;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split__media--wide { aspect-ratio: 6 / 5; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
}
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) {
  .split--reverse .split__media { order: 0; }
}

/* ---------- Menu page ---------- */
.menu-section { margin-bottom: 3rem; }
.menu-section h3 {
  font-size: 1.6rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.menu-section h3 span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 720px) { .menu-list { grid-template-columns: 1fr; } }
.menu-item { padding: 0.6rem 0; border-bottom: 1px dashed var(--rule); }
.menu-item__name { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--crust-deep); margin: 0 0 0.15rem; }
.menu-item__desc { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.menu-item__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.menu-item__tag--veg { background: rgba(90, 122, 68, 0.12); color: var(--basil); }
.menu-item__tag--vegan { background: rgba(90, 122, 68, 0.18); color: var(--basil); }
.menu-item__tag--warm { background: rgba(212, 162, 76, 0.16); color: #a07020; }
.menu-note {
  background: var(--dough);
  border-left: 3px solid var(--mustard);
  padding: 1rem 1.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- Blog ---------- */
.post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 1024px) {
  .post-card { grid-template-columns: 220px 1fr; gap: 1.5rem; }
}
.post-card:last-of-type { border-bottom: 0; }
.post-card__media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}
.post-card__meta { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); margin-bottom: 0.5rem; }
.post-card__title { font-size: 1.6rem; margin: 0 0 0.5rem; }
.post-card__title a { text-decoration: none; color: var(--crust-deep); }
.post-card__title a:hover { color: var(--tomato); }
.post-card__excerpt { color: var(--ink-soft); margin: 0 0 0.9rem; }
.post-card__more { font-weight: 600; font-size: 0.9rem; color: var(--tomato); text-decoration: none; }
.post-card__more:hover { color: var(--crust-deep); }
@media (max-width: 720px) {
  .post-card { grid-template-columns: 1fr; gap: 1rem; }
}

/* Article (single post) */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.article__hero {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}
.article__meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.article h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.article .lede { margin-bottom: 2rem; }
.article p, .article ul { font-size: 1.1rem; line-height: 1.75; color: var(--ink); }
.article p { margin: 0 0 1.4em; }
.article h2 { font-size: 1.7rem; margin-top: 2.2em; margin-bottom: 0.6em; }
.article h3 { font-size: 1.3rem; margin-top: 1.8em; }
@media (max-width: 640px) {
  .article p, .article ul { font-size: 1rem; line-height: 1.7; }
  .article__hero { aspect-ratio: 4 / 3; margin-bottom: 1.8rem; }
  .article h2 { font-size: 1.4rem; }
  .article blockquote { font-size: 1.05rem; padding: 1rem 1.2rem; }
}
.article blockquote {
  border-left: 3px solid var(--mustard);
  background: var(--dough);
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--crust-deep);
  font-style: italic;
}
.article blockquote p:last-child { margin-bottom: 0; }
.article ul { padding-left: 1.5rem; margin: 0 0 1.4em; }
.article li { margin-bottom: 0.5em; }

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.article-footer p { color: var(--ink-soft); margin-bottom: 1.5rem; }

/* ---------- Hours / location ---------- */
.location-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 1rem;
  flex-wrap: wrap;
}
.hours li:last-child { border-bottom: 0; }
.hours li strong { color: var(--crust-deep); font-weight: 600; }
.hours li.today { background: var(--dough); padding: 0.6rem 0.8rem; margin: 0 -0.8rem; border-radius: var(--radius); border-bottom: 0; }
.hours li.today strong::after {
  content: "Open today";
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--basil);
  background: rgba(90,122,68,0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  vertical-align: middle;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- Quote/pull strip ---------- */
.pull {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.pull blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.3;
  color: var(--crust-deep);
  font-style: italic;
  margin: 0 0 1.5rem;
}
.pull cite {
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

/* ---------- Stats / promises ---------- */
.promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 880px) { .promises { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (max-width: 420px) {
  .promises { gap: 1.2rem; }
  .promise__num { font-size: 2.4rem; }
}
.promise__num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}
.promise__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.section--dark .promise__label { color: rgba(245, 236, 217, 0.75); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--crust-deep);
  color: rgba(245, 236, 217, 0.78);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}
.site-footer a { color: var(--dough); }
.site-footer a:hover { color: var(--mustard); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; } }
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { font-size: 0.78rem; }
}
.footer-grid h4 {
  color: var(--dough);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 0.3rem 0; }
.footer-brand .brand__mark { color: var(--dough); font-size: 1.8rem; }
.footer-brand p { margin-top: 0.8rem; max-width: 32ch; color: rgba(245, 236, 217, 0.7); }
.footer-bottom {
  border-top: 1px solid rgba(245, 236, 217, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(245, 236, 217, 0.55);
}

/* ---------- Visit signpost (sticky bottom bar for mobile) ---------- */
.signpost {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dough);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  border: 1px solid var(--rule);
}
.signpost__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--crust-deep);
  color: var(--dough-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.signpost p { margin: 0; font-size: 0.95rem; color: var(--ink); }
.signpost strong { color: var(--crust-deep); }

/* ---------- Sandwich badge row (allergen / dietary) ---------- */
.badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.6rem; }
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--dough);
  color: var(--crust-deep);
}
.badge--veg { background: rgba(90, 122, 68, 0.12); color: var(--basil); }
.badge--warm { background: rgba(212, 162, 76, 0.16); color: #a07020; }
.badge--new { background: var(--tomato); color: var(--dough-light); }

/* ---------- Decorative dough divider ---------- */
.dough-divider {
  height: 18px;
  background: radial-gradient(circle at 10px 0, var(--dough-light) 9px, transparent 10px) 0 0/20px 18px;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--tomato);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  background: var(--crust-deep);
  color: var(--dough-light);
  padding: 0.5rem 1rem;
  z-index: 100;
  border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; }
