/* ============================================================
   UNCLE KELLY'S COFFEE — GLOBAL CSS
   Rebuilt as a plain standalone stylesheet from the live GHL site
   (unclekellys.com) on 2026-07-21. This is the site's own custom
   CSS — GHL page-builder framework CSS (.hl_*) has been stripped;
   none of that was ever needed by this design.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Manrope:wght@400;500;700;800&display=swap');

/* Minimal document reset — GHL supplied this before, plain HTML needs it now */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: #131313; }
img { max-width: 100%; display: block; }

/* ============================================================
   CORE30 — Rich text / blog content styles
   ============================================================ */

html {
  scroll-padding-top: 100px;
}

.hidesection {
  display: none;
}

.core30 {
  color: #C9BAB7;
  font-family: Manrope, sans-serif;
  line-height: 1.5em;
  font-weight: normal;
}

.core30 h1,
.core30 h2 {
  font-family: "Noto Serif", Georgia, serif !important;
  font-weight: 700;
}

.tal-h1 {
  font-size: 4rem !important;
}

.tal-h1 em {
  font-size: 3.0rem !important;
}

.core30 h2 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  line-height: 2.5rem !important;
  margin: 50px 0 10px 0 !important;
}

.core30 h3 {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  margin: 30px 0 15px 0;
}

.core30 p {
  padding: 10px 0 0 0;
}

.core30 a {
  color: #C9BAB7;
}

.core30 a:hover {
  color: #aaa;
}

.core30 a.hide,
.core30 a.hide:hover {
  color: inherit;
  text-decoration: none;
}

.core30 blockquote {
  border: none;
  border-left: 4px solid #a86e5a;
  border-radius: 0 8px 8px 0;
  padding: 10px 10px 10px 20px;
  width: 90%;
  margin: 40px auto;
  background-color: #412618;
  box-shadow: 0 5px 28px rgba(0, 0, 0, 0.6), 0 0 16px rgba(90, 45, 15, 0.75);
}

.core30 blockquote p {
  margin: 0;
  padding: 0;
  font-style:italic;
}

@media (min-width: 768px) {
  .core30 blockquote {
    width: 70%;
  }
}

.core30 table {
  margin: 40px auto;
  border-collapse: collapse;
  width: 60%;
}

.core30 table th {
  background-color: #3B2314;
  color: #C9BAB7;
  padding: 12px 16px;
  text-align: left;
}

.core30 table td {
  color: #C9BAB7;
  padding: 10px 16px;
  border-bottom: 1px solid #3B2314;
}

.core30 table tr:last-child td {
  border-bottom: none;
}

.core30 table tbody tr:nth-child(even) td {
  background-color: #1e1410;
}

@media (max-width: 767px) {
  .core30 table {
    width: 95%;
  }
  .core30 table th,
  .core30 table td {
    font-size: .85em;
  }
}

.core30 .footnotes ol,
.core30 .footnotes li {
}

.core30 #toc {
  background-color: #141414 !important;
  color: #fff !important;
  width: 80% !important;
  margin: 40px auto !important;
  border: none !important;        /* ← add this */
}

.core30 #toc td {
  border: none !important;        /* ← add this new rule */
}

.core30 #toc p.spacer {
  margin-top: -10px !important;
}


/* ============================================================
   CSS VARIABLES & BASE
   ============================================================ */

:root {
  --c-bg:             #131313;
  --c-bg-low:         #1c1b1b;
  --c-bg-high:        #2a2a2a;
  --c-bg-highest:     #353534;
  --c-bg-bright:      #393939;
  --c-cta-bg:         #3e2723;
  --c-primary:        #e3beb8;
  --c-secondary:      #ffb596;
  --c-btn-bg:         #76320f;
  --c-btn-text:       #fd9d71;
  --c-chip-bg:        #620000;
  --c-chip-text:      #ff5d49;
  --c-text:           #e5e2e1;
  --c-muted:          #d3c3c0;
  --c-outline:        #9c8d8b;
  --serif:            'Noto Serif', Georgia, serif;
  --sans:             'Manrope', sans-serif;

  /* Navbar alias — keeps nav vars in sync */
  --tal-surface:          #131313;
  --tal-primary:          #e3beb8;
  --tal-secondary:        #ffb596;
  --tal-sec-container:    #76320f;
  --tal-on-sec-container: #fd9d71;
  --tal-on-surface:       #e5e2e1;
  --tal-outline-variant:  #504442;
  --tal-font-headline:    'Noto Serif', Georgia, serif;
  --tal-font-body:        'Manrope', sans-serif;
}

.tal-page,
.tal-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tal-page {
  font-family: var(--sans);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  width: 100%;
}


/* ============================================================
   NAVBAR
   ============================================================ */

#tal-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: rgba(19,19,19,0.75);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(80,68,66,0.18);
  font-family: var(--tal-font-body);
  box-sizing: border-box;
}

#tal-nav * {
  box-sizing: border-box;
}

.tal-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}

.tal-nav-logo {
  font-family: var(--tal-font-headline);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--tal-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.tal-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tal-nav-links a {
  font-family: var(--tal-font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--tal-on-surface);
  text-decoration: none;
  transition: color 0.3s;
}

.tal-nav-links a:hover,
.tal-nav-links a.active {
  color: var(--tal-secondary);
}

.tal-nav-links a.active {
  border-bottom: 2px solid var(--tal-secondary);
  padding-bottom: 2px;
}

.tal-nav-cta {
  font-family: var(--tal-font-body);
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--tal-sec-container);
  color: var(--tal-on-sec-container);
  padding: 0.6rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.3s;
  display: inline-block;
}

.tal-nav-cta:hover {
  filter: brightness(1.15);
}

.tal-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.tal-nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tal-on-surface);
  border-radius: 2px;
  transition: all 0.3s;
}

.tal-nav-drawer {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 2rem 2rem;
  background: rgba(19,19,19,0.97);
  border-top: 1px solid rgba(80,68,66,0.18);
}

.tal-nav-drawer a {
  font-family: var(--tal-font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--tal-on-surface);
  text-decoration: none;
  transition: color 0.3s;
}

.tal-nav-drawer a:hover {
  color: var(--tal-primary);
}

.tal-nav-drawer .tal-nav-cta {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .tal-nav-links,
  .tal-nav-cta.tal-desktop {
    display: none !important;
  }
  .tal-nav-burger {
    display: flex;
  }
  .tal-nav-drawer.open {
    display: flex;
  }
}

/* Info bar */
#tal-info-bar {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  z-index: 99998;
  background: #3B2314;
  text-align: center;
  padding: 7px 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgb(201, 186, 183);
  letter-spacing: 0.02em;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #tal-info-bar {
    font-size: 0.75rem;
  }
}

/* ============================================================
   SECTIONS — shared layout primitives
   ============================================================ */

.tal-section {
  width: 100%;
  padding: 5rem 2rem;
  position: relative;
}

/* Full-bleed background via ::before — escapes GHL column */
.tal-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  z-index: -1;
}

.tal-section--dark::before  { background: var(--c-bg); }
.tal-section--low::before   { background: var(--c-bg-low); }
.tal-section--cta::before   { background: var(--c-cta-bg); }
.tal-section--cta           { overflow: visible; }

.tal-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */

.tal-eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-secondary);
  margin-bottom: 1rem;
}

.tal-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}

.tal-h2 em {
  font-style: italic;
  font-weight: 400;
}

.tal-body {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-text);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s;
  text-decoration: none;
}

.tal-link:hover {
  border-color: var(--c-secondary);
}

.tal-link svg {
  fill: var(--c-secondary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tal-chip {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  background: var(--c-chip-bg);
  color: var(--c-chip-text);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}


/* ============================================================
   HERO
   ============================================================ */

.tal-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 5rem;
}

.tal-hero__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  z-index: 0;
  overflow: hidden;
}

.tal-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.tal-hero__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(19,19,19,0.1) 0%, rgba(19,19,19,0.93) 65%);
}

.tal-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.tal-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}

.tal-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-primary);
}

.tal-hero__sub {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 28rem;
  line-height: 1.75;
  font-weight: 300;
}

@media (max-width: 768px) {
  .tal-hero {
    padding-top: calc(72px + 72px);
  }
}

/* ============================================================
   STORY
   ============================================================ */

.tal-story__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tal-story__img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(1);
  transition: filter 1s ease;
}

.tal-story__img:hover img {
  filter: grayscale(0);
}


/* ============================================================
   MENU BENTO GRID
   ============================================================ */

.tal-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tal-menu-head .tal-h2 {
  margin-bottom: 0;
}

.tal-view-all {
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}

.tal-view-all:hover {
  color: var(--c-secondary);
}

.tal-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tal-feat {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-bg-high);
  min-height: 420px;
}

.tal-feat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.7s;
}

.tal-feat:hover img {
  transform: scale(1.05);
}

.tal-feat__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #131313 0%, transparent 55%);
}

.tal-feat__body {
  position: absolute;
  bottom: 0;
  padding: 2rem;
}

.tal-feat__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.tal-feat__desc {
  font-size: 0.75rem;
  color: var(--c-muted);
  line-height: 1.6;
  max-width: 16rem;
}

.tal-card {
  background: var(--c-bg-high);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s;
}

.tal-card:hover {
  background: var(--c-bg-highest);
}

.tal-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.tal-card__icon--a { background: #3e2723; }
.tal-card__icon--b { background: #76320f; }

.tal-card__icon svg {
  width: 18px;
  height: 18px;
}

.tal-card__title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}

.tal-card__desc {
  font-size: 0.72rem;
  color: var(--c-muted);
  line-height: 1.65;
  flex-grow: 1;
}

.tal-card__price {
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--c-secondary);
  font-size: 0.9rem;
}

.tal-card__price small {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-outline);
  margin-left: 0.3rem;
}

.tal-wide {
  grid-column: span 2;
  background: var(--c-bg-high);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
}

.tal-wide__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tal-wide__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.tal-wide__desc {
  font-size: 0.72rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.tal-wide__price {
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--c-primary);
}

.tal-wide__img {
  overflow: hidden;
}

.tal-wide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.tal-wide:hover .tal-wide__img img {
  transform: scale(1.07);
}


/* ============================================================
   TESTIMONIALS (standalone section)
   ============================================================ */

.tal-testi-section {
  width: 100%;
  padding: 5rem 2rem;
  background: var(--c-bg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

.tal-testi-section *,
.tal-testi-section *::before,
.tal-testi-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tal-testi-section .inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.tal-testi-section .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.tal-testi-section .grid > div {
  display: flex;
  flex-direction: column;
}

.tal-testi-section .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.tal-testi-section .stars svg {
  width: 12px;
  height: 12px;
  fill: var(--c-secondary);
}

.tal-testi-section .stars svg.hollow {
  fill: none;
  stroke: var(--c-secondary);
  stroke-width: 1.5px;
}

.tal-testi-section .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tal-testi-section .profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tal-testi-section .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tal-testi-section .name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-text);
  font-family: var(--sans);
  margin-bottom: 0.2rem;
}

.tal-testi-section .role {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-outline);
  font-family: var(--sans);
}

/* Old bento-style testi (kept in case used on other pages) */
.tal-testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.tal-testi__o1 { margin-top: 2.5rem; }
.tal-testi__o2 { margin-top: 5rem; }
.tal-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.tal-stars svg { width: 12px; height: 12px; fill: var(--c-secondary); }
.tal-testi__q { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--c-text); line-height: 1.5; margin-bottom: 1.5rem; }
.tal-testi__name { font-weight: 700; font-size: 0.85rem; color: var(--c-text); margin-bottom: 0.2rem; }
.tal-testi__role { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-outline); }


/* ============================================================
   CTA SECTION
   ============================================================ */

.tal-cta-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  z-index: 0;
  overflow: hidden;
}

.tal-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.tal-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tal-cta__h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.tal-cta__h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-text);
}

.tal-cta__sub {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 26rem;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.tal-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tal-btn {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.875rem 2rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: filter 0.3s, background 0.3s;
}

.tal-btn--fill {
  background: var(--c-btn-bg);
  color: var(--c-btn-text);
}

.tal-btn--fill:hover {
  filter: brightness(1.15);
}

.tal-btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid rgba(80,68,66,0.6);
}

.tal-btn--ghost:hover {
  background: var(--c-bg-bright);
}


/* ============================================================
   FOOTER
   ============================================================ */

#tal-footer {
  position: relative;
  font-family: 'Manrope', sans-serif;
  box-sizing: border-box;
  width: 100%;
}

#tal-footer::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  z-index: -1;
  background: #1c1b1b;
  border-top: 1px solid rgba(80,68,66,0.15);
}

#tal-footer * {
  box-sizing: border-box;
}

.tal-foot-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.tal-foot-logo {
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #e3beb8;
  display: block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.tal-foot-tagline {
  color: rgba(229,226,225,0.55);
  font-size: 0.8125rem;
  line-height: 1.7;
  max-width: 18rem;
  margin: 0;
}

.tal-foot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.tal-foot-col h4 {
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffb596;
  margin: 0 0 1rem;
}

.tal-foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tal-foot-col a {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(229,226,225,0.55);
  text-decoration: none;
  transition: color 0.3s;
}

.tal-foot-col a:hover {
  color: #e3beb8;
}

.tal-foot-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
  gap: 1.5rem;
}

.tal-foot-address,
.tal-foot-copy {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(229,226,225,0.5);
  line-height: 1.9;
  margin: 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 760px) {
  .tal-story__grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .tal-bento             { grid-template-columns: 1fr 1fr; }
  .tal-feat              { grid-column: span 2; grid-row: span 1; min-height: 320px; }
  .tal-wide              { grid-column: span 2; }
  .tal-testi             { grid-template-columns: 1fr; gap: 2.5rem; }
  .tal-testi__o1,
  .tal-testi__o2         { margin-top: 0; }
  .tal-testi-section .grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .tal-bento             { grid-template-columns: 1fr; }
  .tal-feat, .tal-wide   { grid-column: span 1; }
  .tal-wide              { grid-template-columns: 1fr; }
  .tal-wide__img         { min-height: 180px; }
}

@media (max-width: 768px) {
  .tal-foot-inner        { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .tal-foot-right        { text-align: left !important; align-items: flex-start !important; }
}

/* --- added for the full-site rebuild: /location page inline styles folded in --- */
p.loc { margin-top:10px;font-size:1.2em;font-weight:500;text-align:center;}
h2.loc { margin: 30px auto 10px !important; text-align: center !important; }
img.loc {
  display: block;
  margin: 30px auto 0;
  width: 80%;
  padding-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}

/* ============================================================
   ARTICLE BODY (BODY-LEVEL) — fix for 2026-08-19
   ------------------------------------------------------------
   Root cause: on the live site, the long-form SEO article body
   (headings/paragraphs/table/QUICK LINKS toc/blockquotes/FAQ)
   for every location landing page lives in a SECOND GHL custom-
   code block whose own container div carries the "core30" class
   directly. build.py extracts each custom-code block's inner
   HTML only (BeautifulSoup .decode_contents()), which discards
   the container div — so on 32 of the 34 pages this entire
   article body lands as unstyled, unwrapped direct children of
   <body>, between the hero/story <div class="tal-page"> block
   and the menu <div class="tal-page"> block. The .core30 rules
   above (which ARE a faithful copy of the live CSS) never match
   this content because the wrapping class never survived
   extraction.
   Fix: body-level equivalents of the .core30 rules, using the
   same live colour/typography values, plus the max-width column
   that live gets for free from GHL's own section wrapper (this
   rebuild has no equivalent wrapper here, so it's rebuilt here
   directly). CSS-only — no HTML/page structure touched.
   Folded into EXTRA_STYLES 2026-08-19 (was previously a hand-edit
   living only in the generated styles.css output, which meant a
   plain `build.py` re-run silently discarded it - moved into the
   generator so it's regeneratable like everything else here.
   ============================================================ */

body > h2,
body > h3,
body > p,
body > ul,
body > ol {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
  color: #C9BAB7;
  font-family: Manrope, sans-serif;
  line-height: 1.5em;
  font-weight: normal;
}

body > h2 {
  font-family: "Noto Serif", Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 2rem !important;
  line-height: 2.5rem !important;
  margin-top: 50px !important;
  margin-bottom: 10px !important;
}

body > h3 {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

body > p {
  padding-top: 10px;
}

body > ul,
body > ol {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: calc(2rem + 1.5em);
}

body > ul li,
body > ol li {
  margin-bottom: 6px;
}

body > h2 a,
body > h3 a,
body > p a,
body > ul a,
body > ol a {
  color: #C9BAB7;
}

body > h2 a:hover,
body > h3 a:hover,
body > p a:hover,
body > ul a:hover,
body > ol a:hover {
  color: #aaa;
}

body > p a.hide,
body > p a.hide:hover {
  color: inherit;
  text-decoration: none;
}

/* Data tables (e.g. "What We Offer") */
body > table {
  color: #C9BAB7;
  font-family: Manrope, sans-serif;
  border-collapse: collapse;
  max-width: 660px;
  width: calc(100% - 4rem);
  margin: 40px auto;
}

body > table th {
  background-color: #3B2314;
  color: #C9BAB7;
  padding: 12px 16px;
  text-align: left;
}

body > table td {
  color: #C9BAB7;
  padding: 10px 16px;
  border-bottom: 1px solid #3B2314;
}

body > table tr:last-child td {
  border-bottom: none;
}

body > table tbody tr:nth-child(even) td {
  background-color: #1e1410;
}

@media (max-width: 767px) {
  body > table th,
  body > table td {
    font-size: .85em;
  }
}

/* Callout / "Pro tip" / "Heads up" blockquotes */
body > blockquote {
  border: none;
  border-left: 4px solid #a86e5a;
  border-radius: 0 8px 8px 0;
  padding: 10px 10px 10px 20px;
  max-width: 800px;
  width: calc(90% - 4rem);
  margin: 40px auto;
  background-color: #412618;
  box-shadow: 0 5px 28px rgba(0, 0, 0, 0.6), 0 0 16px rgba(90, 45, 15, 0.75);
  color: #C9BAB7;
  font-family: Manrope, sans-serif;
}

body > blockquote p {
  margin: 0;
  padding: 0 !important;
  font-style: italic;
  max-width: none;
}

@media (min-width: 768px) {
  body > blockquote {
    width: calc(70% - 4rem);
  }
}

/* Footnotes block */
body > div.footnotes {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
  margin-top: 2em;
  padding-top: 0.75em;
  border-top: 1px solid #504442;
  font-size: 0.8em;
  color: #9ca3af;
}

/* QUICK LINKS "toc" block — the raw source HTML carries inline
   light-theme styles (style="background:#f9fafb;border:1px solid
   #e5e7eb") that otherwise win on specificity+source-order over
   any plain selector, so this needs to out-rank them (id selector
   + !important, same as live's own .core30 #toc rule does). */
body > table#toc {
  background-color: #141414 !important;
  color: #fff !important;
  border: none !important;
  max-width: 900px !important;
  width: calc(90% - 4rem) !important;
  margin: 40px auto !important;
  font-family: Manrope, sans-serif;
}

body > table#toc td {
  border: none !important;
}

body > table#toc a {
  color: #C9BAB7 !important;
}

body > table#toc a:hover {
  color: #aaa !important;
}

body > table#toc p.spacer {
  margin-top: -10px !important;
}
