/* ============================================================
   Field Sandwich Nook — custom theme on top of Bootstrap 5.3
   Palette: cream / charcoal / warm brown
   ============================================================ */

:root {
  --fsn-bg: #faf6ef;
  --fsn-ink: #1f1b16;
  --fsn-muted: #6b6157;
  --fsn-accent: #a96a2b;
  --fsn-accent-dark: #8a5320;
  --fsn-slab: #221d17;
  --fsn-line: rgba(31, 27, 22, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--fsn-bg);
  color: var(--fsn-ink);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
}

.font-head {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fsn-muted);
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--fsn-line);
}

.navbar-brand {
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}

.nav-link.nav-pill {
  color: var(--fsn-ink);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.nav-link.nav-pill:hover,
.nav-link.nav-pill:focus {
  color: var(--fsn-accent-dark);
  background-color: rgba(169, 106, 43, 0.08);
}

.nav-link.nav-cta {
  color: #fff;
  background-color: var(--fsn-ink);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 1.15rem;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta:focus {
  color: #fff;
  background-color: var(--fsn-accent-dark);
}

/* ---------- Hero ---------- */

.hero-text {
  padding: 5.5rem 0 4.5rem;
}

@media (min-width: 768px) {
  .hero-text {
    padding: 8rem 0 6.5rem;
  }
}

.hero-text h1 {
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.hero-text .lead {
  color: var(--fsn-muted);
  max-width: 52ch;
}

.link-arrow {
  color: var(--fsn-accent-dark);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.link-arrow:hover,
.link-arrow:focus {
  color: var(--fsn-accent);
}

/* ---------- Sections ---------- */

.section-narrow p {
  color: var(--fsn-muted);
}

.list-services__item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.5rem 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--fsn-line);
}

.list-services__item--last {
  border-bottom: 1px solid var(--fsn-line);
}

.list-services__num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fsn-accent);
}

.list-services__item p {
  color: var(--fsn-muted);
}

/* Bootstrap spacing stops at 5; add a 6 */
@media (min-width: 768px) {
  .py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

/* ---------- Contact slab ---------- */

.contact-slab {
  background-color: var(--fsn-slab);
}

.contact-slab .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.contact-slab .text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.contact-slab .col-lg-6 {
  container-type: inline-size;
}

.link-email {
  color: #fff;
  display: inline-block;
  font-size: clamp(1rem, 3.2vw, 2.25rem);
  font-size: clamp(0.95rem, 5.2cqi, 2.25rem);
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.3rem;
  white-space: nowrap;
}

.link-email:hover,
.link-email:focus {
  color: #fff;
  border-bottom-color: var(--fsn-accent);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--fsn-line);
}

.site-footer a {
  color: var(--fsn-muted);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--fsn-accent-dark);
}

/* ---------- Disclaimer page ---------- */

.page-narrow {
  max-width: 44rem;
  margin: 0 auto;
  padding: 4.5rem 0 5.5rem;
}

.page-narrow .disclaimer-updated {
  color: var(--fsn-muted);
  font-size: 0.9rem;
}

.page-narrow h2 {
  font-size: 1.2rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-narrow p {
  color: var(--fsn-muted);
  line-height: 1.75;
}

.page-narrow a {
  color: var(--fsn-accent-dark);
}
