/*
Theme Name: ThyroidFit Method
Theme URI: https://thethyroidfitmethod.com/
Author: ThyroidFit Method
Author URI: https://thethyroidfitmethod.com/
Description: Premium editorial WordPress theme for ThyroidFit Method, a women's health coaching brand specializing in nutrition and strength training for women 40+ with hypothyroidism, Hashimoto's, and perimenopause. Calm, authoritative, spacious. Built around Playfair Display + Inter.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thyroidfit-method
Tags: editorial, wellness, coaching, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* =============================================================
   Tokens
   ============================================================= */
:root {
  --bg:           #FAFAF8;
  --bg-dark:      #0F0F0F;
  --bg-accent:    #EAF5F2;
  --text:         #0F0F0F;
  --text-muted:   #6B6B6B;
  --text-light:   #AFAFAF;
  --accent:       #1D9E75;
  --accent-dark:  #0F6E56;
  --border:       #E8E8E5;
  --mid:          #C5C5C0;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* =============================================================
   Reset
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-serif); font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* =============================================================
   Layout helpers
   ============================================================= */
.tf-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.tf-section { padding: 120px 0; }
.tf-section--tight { padding: 80px 0; }

.tf-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.tf-label--on-dark { color: var(--accent); }

.tf-eyebrow-rule { width: 48px; height: 2px; background: var(--accent); }

/* =============================================================
   Buttons + links
   ============================================================= */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 36px;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
  padding: 13px 35px;
}
.btn-secondary:hover { background: var(--text); color: #fff; }

.link-arrow {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
}
.link-arrow::after { content: ' →'; }
.link-arrow:hover { color: var(--accent-dark); }

/* =============================================================
   Navigation
   ============================================================= */
.tf-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s ease;
  border-bottom: 1px solid transparent;
}
.tf-nav.scrolled { border-bottom-color: var(--border); }

.tf-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.tf-logo__mark {
  width: 34px;
  height: 30px;
  flex-shrink: 0;
  display: block;
}
.tf-logo__text { display: inline-block; line-height: 1; }
.tf-logo__name {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--text);
}
.tf-logo__sub {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 9px;
  color: var(--text-muted);
  margin-top: 3px;
  text-transform: uppercase;
}

.tf-nav__right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.tf-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.tf-nav__links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}
.tf-nav__links a:hover,
.tf-nav__links .current-menu-item > a {
  color: var(--text);
}

.tf-hamburger {
  display: none;
  background: none;
  border: 0;
  width: 22px;
  height: 22px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.tf-hamburger span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.tf-hamburger span:nth-child(1) { top: 4px; }
.tf-hamburger span:nth-child(2) { top: 10px; }
.tf-hamburger span:nth-child(3) { top: 16px; }

/* Mobile overlay */
.tf-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.tf-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.tf-mobile-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.tf-mobile-overlay a {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.tf-mobile-overlay__close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 32px;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

/* =============================================================
   Hero
   ============================================================= */
.tf-hero {
  background: var(--bg);
  padding-top: 72px;
}
.tf-hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 80px 0 0;
}
.tf-hero__headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.tf-hero__sub {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.tf-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tf-hero__trust {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.tf-hero__trust span::before { content: '✦  '; color: var(--accent); }

.tf-hero__media {
  position: relative;
}
.tf-hero__photo {
  background: #E2DED9;
  height: 560px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.tf-hero__photo::after {
  content: 'Your photo here';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #AFAFAF;
}
.tf-hero__photo.has-image::after { content: none; }

.tf-pill {
  display: inline-block;
  background: var(--bg-accent);
  color: var(--accent);
  padding: 7px 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
  border-radius: 3px;
}

.tf-stats {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 40px 0 80px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.tf-stat { text-align: center; }
.tf-stat__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--text);
  line-height: 1;
}
.tf-stat__label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 6px;
  text-transform: uppercase;
}

/* =============================================================
   Pull quote
   ============================================================= */
.tf-pullquote {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
}
.tf-pullquote .tf-eyebrow-rule { margin: 0 auto 28px; }
.tf-pullquote__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: #fff;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto;
}
.tf-pullquote__attr {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 20px;
  text-transform: uppercase;
}

/* =============================================================
   The Method
   ============================================================= */
.tf-method__head { max-width: 720px; margin-bottom: 60px; }
.tf-method__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.tf-method__sub {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 20px 0 0;
}
.tf-method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.tf-method__col {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
}
.tf-method__col:last-child { border-right: 0; }
.tf-method__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 52px;
  color: #E5E5E5;
  margin-bottom: 24px;
  line-height: 1;
}
.tf-method__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
}
.tf-method__body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.tf-method__cta {
  text-align: center;
  margin-top: 40px;
}

/* =============================================================
   Free Resource
   ============================================================= */
.tf-resource { background: var(--bg-accent); }
.tf-resource__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}
.tf-resource__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.tf-resource__body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px 0 32px;
  max-width: 440px;
}
.tf-resource__form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  max-width: 460px;
}
.tf-resource__form input[type="email"] {
  border: 0;
  border-bottom: 1px solid var(--mid);
  background: transparent;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  flex: 1;
  outline: none;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.tf-resource__form input[type="email"]:focus { border-bottom-color: var(--accent); }
.tf-resource__form input[type="email"]::placeholder { color: var(--text-light); }
.tf-resource__fine {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-light);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.tf-doc {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid rgba(29, 158, 117, 0.2);
}
.tf-doc__mark { width: 32px; height: auto; margin-bottom: 22px; }
.tf-doc__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text);
  text-transform: uppercase;
}
.tf-doc__brand {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11px;
  color: var(--accent);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.tf-doc__divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 18px 0 0;
}
.tf-doc__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.tf-doc__line {
  height: 8px;
  background: #F0F0EE;
  border-radius: 2px;
}
.tf-doc__bar {
  height: 4px;
  background: var(--accent);
  margin-top: 24px;
}

/* =============================================================
   About
   ============================================================= */
.tf-about__inner {
  display: grid;
  grid-template-columns: 40fr 55fr;
  gap: 80px;
  align-items: center;
}
.tf-about__photo {
  background: #E2DED9;
  height: 640px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.tf-about__photo:not(.has-image)::after {
  content: 'Portrait';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #AFAFAF;
}
.tf-about__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.tf-about__p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.tf-about__creds {
  margin: 28px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tf-creds-pill {
  background: #F1F1EF;
  color: var(--text-muted);
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 3px;
  text-transform: uppercase;
}

/* =============================================================
   Testimonials
   ============================================================= */
.tf-testimonials {
  background: var(--bg-dark);
  padding: 120px 0;
}
.tf-testimonials__head { text-align: center; margin-bottom: 60px; }
.tf-testimonials__h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 44px;
  color: #fff;
  letter-spacing: -0.01em;
}
.tf-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tf-tcard {
  border: 1px solid #222;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
}
.tf-tcard__stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}
.tf-tcard__stars span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.tf-tcard__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 24px;
}
.tf-tcard__author {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* =============================================================
   Products
   ============================================================= */
.tf-products__head { margin-bottom: 60px; }
.tf-products__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.tf-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tf-pcard {
  border: 1px solid var(--border);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tf-pcard:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.tf-pcard__type {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.tf-pcard__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.tf-pcard__price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
}
.tf-pcard__divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0 0 20px;
}
.tf-pcard__desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}

/* =============================================================
   Instagram
   ============================================================= */
.tf-ig { border-top: 1px solid var(--border); }
.tf-ig__head { text-align: center; margin-bottom: 40px; }
.tf-ig__handle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--text);
}
.tf-ig__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.tf-ig__cell {
  aspect-ratio: 1;
  background: #E5E2DE;
  position: relative;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-position: center;
  transition: opacity 0.2s ease;
}
.tf-ig__cell:nth-child(even):not(.has-image) { background-color: #DDDAD6; }
.tf-ig__cell:hover { opacity: 0.85; }
.tf-ig__cell:not(.has-image)::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.35) 50%, transparent 55%);
}
.tf-ig__cell__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9C9C97;
}
.tf-ig__cell.has-image .tf-ig__cell__placeholder { display: none; }
.tf-ig__cta { text-align: center; margin-top: 32px; }

/* =============================================================
   Footer
   ============================================================= */
.tf-footer {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
}
.tf-footer__rule {
  height: 2px;
  background: var(--accent);
  width: 100%;
}
.tf-footer__inner { padding: 80px 0 40px; }
.tf-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.tf-footer__brand .tf-logo__name { color: #fff; }
.tf-footer__brand .tf-logo__sub { color: #555; }
.tf-footer__tagline {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #555;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}
.tf-footer__heading {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.tf-footer__links li { margin-bottom: 10px; }
.tf-footer__links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #555;
  transition: color 0.15s ease;
}
.tf-footer__links a:hover { color: #fff; }

.tf-footer__bottom {
  border-top: 1px solid #1A1A1A;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #3A3A3A;
  letter-spacing: 0.04em;
}

/* =============================================================
   Scroll-in animations
   ============================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =============================================================
   Generic article / page templates
   ============================================================= */
.tf-article {
  padding: 160px 0 120px;
  max-width: 760px;
  margin: 0 auto;
}
.tf-article h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.tf-article p,
.tf-article li {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
}
.tf-article a { color: var(--accent); text-decoration: underline; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1100px) {
  .tf-container { padding: 0 32px; }
  .tf-hero__headline { font-size: 48px; }
}

@media (max-width: 900px) {
  .tf-method__grid { grid-template-columns: 1fr; }
  .tf-method__col { border-right: 0; border-bottom: 1px solid var(--border); }
  .tf-method__col:last-child { border-bottom: 0; }
  .tf-resource__inner,
  .tf-about__inner,
  .tf-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .tf-hero__inner { padding: 32px 0 0; }
  .tf-testimonials__grid,
  .tf-products__grid { grid-template-columns: 1fr; }
  .tf-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .tf-ig__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .tf-container { padding: 0 24px; }
  .tf-section { padding: 60px 0; }
  .tf-section--tight { padding: 56px 0; }
  .tf-nav { padding: 0 24px; }
  .tf-nav__links { display: none; }
  .tf-nav__cta { display: none; }
  .tf-hamburger { display: block; }
  .tf-hero__headline { font-size: 40px; }
  .tf-hero__sub { font-size: 16px; }
  .tf-hero__photo { height: 420px; }
  .tf-pullquote__quote { font-size: 22px; }
  .tf-method__h2,
  .tf-products__h2,
  .tf-testimonials__h2 { font-size: 32px; }
  .tf-resource__h2 { font-size: 30px; }
  .tf-about__h2 { font-size: 28px; }
  .tf-about__photo { height: 420px; }
  .tf-stats { gap: 40px; padding-bottom: 60px; }
  .tf-stat__num { font-size: 28px; }
  .tf-method__col { padding: 40px 28px; }
  .tf-resource__form { flex-direction: column; }
  .tf-footer__top { grid-template-columns: 1fr; gap: 36px; }
  .tf-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media print {
  .tf-nav, .tf-mobile-overlay, .tf-hamburger, .tf-footer { display: none; }
}


/* =============================================================
   Page templates (About, Free Resource, Shop, Work With Me, Contact)
   ============================================================= */

.tf-page-hero { padding: 140px 0 80px; background: var(--bg); }
.tf-page-hero__inner { max-width: 760px; }
.tf-page-hero--center .tf-container { max-width: 760px; margin: 0 auto; text-align: center; }
.tf-page-hero__h1 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -0.02em; margin: 16px 0 24px; }
.tf-page-hero__sub { font-family: var(--font-sans); font-size: 17px; line-height: 1.75; color: var(--text-muted); margin: 0; }
.tf-page-hero__rule { width: 100%; height: 1px; background: var(--border); margin-top: 60px; }

/* Story */
.tf-story { padding: 80px 0 120px; }
.tf-story__inner { display: grid; grid-template-columns: 40fr 55fr; gap: 80px; align-items: flex-start; }
.tf-story__photo { background: #E2DED9; height: 680px; display: flex; align-items: center; justify-content: center; color: #AFAFAF; font-family: var(--font-sans); font-size: 12px; }
.tf-story__pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.tf-pill { background: #F1F1EF; padding: 6px 14px; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.08em; color: var(--text); }
.tf-story__pull { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--text); margin: 28px 0; line-height: 1.4; }
.tf-story__p { font-family: var(--font-sans); font-size: 16px; line-height: 1.8; color: var(--text-muted); margin: 0 0 24px; }
.tf-story__cta { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Values (dark) */
.tf-values { background: var(--bg-dark); padding: 100px 0; color: #fff; }
.tf-values__head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.tf-values__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; color: #fff; margin: 14px 0 0; }
.tf-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.tf-values__col { padding: 44px 32px; border-right: 1px solid #1E1E1E; }
.tf-values__col:last-child { border-right: 0; }
.tf-values__num { font-family: var(--font-serif); font-style: italic; font-size: 40px; color: #1E1E1E; line-height: 1; }
.tf-values__title { font-family: var(--font-sans); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin: 16px 0 10px; }
.tf-values__body { font-family: var(--font-sans); font-size: 14px; line-height: 1.7; color: #555; margin: 0; }

/* Credentials */
.tf-creds { padding: 80px 0; }
.tf-creds__inner { display: grid; grid-template-columns: 60fr 40fr; gap: 80px; align-items: center; }
.tf-creds__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); margin: 14px 0 32px; line-height: 1.1; }
.tf-creds__list { list-style: none; padding: 0; margin: 0; }
.tf-creds__list li { display: flex; align-items: center; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--border); font-family: var(--font-sans); font-size: 15px; color: var(--text); }
.tf-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; display: inline-block; }
.tf-creds__pull { font-family: var(--font-serif); font-style: italic; font-size: 28px; line-height: 1.5; color: var(--text); margin: 0 0 28px; }

/* CTA banner */
.tf-cta-banner { background: var(--bg-accent); padding: 80px 0; text-align: center; }
.tf-cta-banner__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.15; margin: 0 0 16px; }
.tf-cta-banner__sub { font-family: var(--font-sans); font-size: 16px; color: var(--text-muted); margin: 0 0 32px; }
.tf-cta-banner__row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Free Resource hero */
.tf-fr-hero { background: var(--bg-accent); padding: 100px 0; }
.tf-fr-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tf-fr-hero__h1 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -0.02em; margin: 16px 0 24px; }
.tf-fr-hero__sub { font-family: var(--font-sans); font-size: 17px; line-height: 1.75; color: var(--text-muted); margin: 0 0 32px; }
.tf-fr-form { display: flex; flex-direction: column; gap: 12px; max-width: 480px; }
.tf-fr-form--center { margin: 32px auto 0; }
.tf-fr-form__label { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.tf-fr-form__input { border: 0; border-bottom: 1px solid var(--mid); background: transparent; padding: 14px 0; font-family: var(--font-sans); font-size: 16px; outline: none; }
.tf-fr-form__input:focus { border-color: var(--accent); }
.tf-fr-form__fine { font-family: var(--font-sans); font-size: 11px; color: var(--text-light); margin: 4px 0 0; }
.tf-fr-hero__proof { font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); margin-top: 24px; }

/* Document preview */
.tf-fr-doc { background: #fff; border: 1px solid rgba(29,158,117,0.15); padding: 48px 40px; }
.tf-fr-doc__head { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.tf-fr-doc__t1 { font-family: var(--font-sans); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; }
.tf-fr-doc__t2 { font-family: var(--font-sans); font-size: 12px; color: var(--accent); }
.tf-fr-doc__div { height: 1px; background: var(--border); margin-bottom: 16px; }
.tf-fr-doc__cols { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 8px; font-family: var(--font-sans); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; color: var(--text-muted); padding: 6px 0; }
.tf-fr-doc__row { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 8px; align-items: center; height: 32px; padding: 0 4px; }
.tf-fr-doc__row:nth-child(odd) { background: #FAFAF8; }
.tf-fr-doc__row span { display: block; height: 8px; background: #F0F0EE; }
.tf-fr-doc__bar { height: 4px; background: var(--accent); margin-top: 16px; }

/* Inside the tracker */
.tf-inside { padding: 100px 0; }
.tf-inside__head { max-width: 640px; margin-bottom: 60px; }
.tf-inside__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px); margin: 14px 0 0; }
.tf-inside__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); }
.tf-inside__col { padding: 44px 40px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tf-inside__col:nth-child(2n) { border-right: 0; }
.tf-inside__col:nth-last-child(-n+2) { border-bottom: 0; }
.tf-inside__num { font-family: var(--font-serif); font-style: italic; font-size: 40px; color: #EEEDE9; line-height: 1; }
.tf-inside__title { font-family: var(--font-serif); font-weight: 700; font-size: 22px; margin: 12px 0 12px; }
.tf-inside__body { font-family: var(--font-sans); font-size: 15px; line-height: 1.75; color: var(--text-muted); margin: 0; }

/* Why this matters (dark) */
.tf-why { background: var(--bg-dark); padding: 100px 0; color: #fff; }
.tf-why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tf-why__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.15; color: #fff; margin: 0 0 24px; }
.tf-why__body { font-family: var(--font-sans); font-size: 16px; line-height: 1.75; color: #777; margin: 0 0 32px; }
.tf-why__stat { padding: 32px 0; border-bottom: 1px solid #1E1E1E; }
.tf-why__num { font-family: var(--font-serif); font-style: italic; font-size: 52px; color: var(--accent); line-height: 1; }
.tf-why__lbl { font-family: var(--font-sans); font-size: 14px; color: #555; margin-top: 8px; }

/* Mini testimonials */
.tf-mini-t { padding: 100px 0; }
.tf-mini-t__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.tf-mini-t__quote { font-family: var(--font-serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--text); margin: 24px 0 12px; }
.tf-mini-t__author { font-family: var(--font-sans); font-size: 12px; color: var(--text-light); }

/* Final CTA */
.tf-final-cta { background: var(--bg-accent); padding: 80px 0; text-align: center; }
.tf-final-cta__inner { max-width: 540px; margin: 0 auto; }
.tf-final-cta h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); margin: 0 0 16px; }
.tf-final-cta p { font-family: var(--font-sans); font-size: 16px; color: var(--text-muted); margin: 0 0 24px; }
.tf-final-cta__alt { margin-top: 24px; font-size: 14px; color: var(--text-muted); }

/* Shop */
.tf-shop-grid { padding: 80px 0; }
.tf-shop__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.tf-shop__card { border: 1px solid var(--border); padding: 44px 36px; display: flex; flex-direction: column; position: relative; background: #fff; }
.tf-shop__card--featured { border-top: 3px solid var(--accent); }
.tf-shop__pop { position: absolute; top: -14px; left: 36px; background: var(--bg-accent); color: var(--accent); font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.1em; padding: 4px 12px; }
.tf-shop__tag { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.tf-shop__name { font-family: var(--font-serif); font-weight: 700; font-size: 24px; line-height: 1.2; margin: 0 0 12px; }
.tf-shop__price { font-family: var(--font-serif); font-weight: 700; font-size: 48px; color: var(--accent); margin-bottom: 20px; line-height: 1; }
.tf-shop__div { height: 1px; background: var(--border); margin-bottom: 20px; }
.tf-shop__desc { font-family: var(--font-sans); font-size: 15px; line-height: 1.7; color: var(--text-muted); flex: 1; margin: 0 0 20px; }
.tf-shop__list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.tf-shop__list li { display: flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); }

/* Coaching block on shop */
.tf-coaching { background: var(--bg-accent); padding: 100px 0; }
.tf-coaching__inner { display: grid; grid-template-columns: 55fr 45fr; gap: 80px; align-items: center; }
.tf-coaching__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); margin: 14px 0 20px; }
.tf-coaching__body { font-family: var(--font-sans); font-size: 16px; line-height: 1.75; color: var(--text-muted); margin: 0; }
.tf-coaching__list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.tf-coaching__list li { display: flex; align-items: center; gap: 12px; font-family: var(--font-sans); font-size: 15px; color: var(--text); }
.tf-coaching__price { font-family: var(--font-serif); font-weight: 700; font-size: 52px; color: var(--accent); line-height: 1; margin-bottom: 20px; display: flex; align-items: baseline; gap: 12px; }
.tf-coaching__price span { font-family: var(--font-sans); font-weight: 400; font-size: 13px; color: var(--text-muted); }
.tf-coaching__photo { background: #D8D4CF; height: 520px; display: flex; align-items: center; justify-content: center; color: #AFAFAF; font-family: var(--font-sans); font-size: 12px; }
.tf-coaching__pill { display: inline-block; background: var(--bg-dark); color: #fff; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.1em; padding: 8px 20px; margin-top: 16px; }

/* Guarantee strip */
.tf-guarantee { background: var(--bg-dark); padding: 60px 0; color: #fff; }
.tf-guarantee__row { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.tf-guarantee__item { text-align: center; max-width: 240px; }
.tf-guarantee__dot { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); margin: 0 auto 12px; }
.tf-guarantee__t { font-family: var(--font-sans); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.tf-guarantee__b { font-family: var(--font-sans); font-size: 13px; color: #555; margin: 8px 0 0; line-height: 1.6; }

/* Work With Me hero */
.tf-wwm-hero { background: var(--bg); padding: 100px 0; }
.tf-wwm-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tf-wwm-hero__h1 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -0.02em; margin: 16px 0 24px; }
.tf-wwm-hero__sub { font-family: var(--font-sans); font-size: 17px; line-height: 1.75; color: var(--text-muted); margin: 0 0 24px; }
.tf-wwm-hero__price { font-family: var(--font-serif); font-style: italic; font-size: 64px; color: var(--accent); line-height: 1; margin-bottom: 24px; }
.tf-wwm-hero__price span { font-family: var(--font-sans); font-style: normal; font-size: 14px; color: var(--text-muted); }
.tf-wwm-hero__fine { font-family: var(--font-sans); font-size: 12px; color: var(--text-light); margin: 20px 0 0; }
.tf-wwm-hero__photo { background: #E2DED9; height: 560px; display: flex; align-items: center; justify-content: center; color: #AFAFAF; font-family: var(--font-sans); font-size: 12px; }
.tf-wwm-hero__card { border: 1px solid var(--border); padding: 28px 32px; margin-top: 16px; background: #fff; }
.tf-wwm-hero__card__t { font-family: var(--font-sans); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; }
.tf-wwm-hero__card__b { font-family: var(--font-sans); font-size: 15px; color: var(--text-muted); margin: 8px 0 16px; }
.tf-wwm-hero__card__btn { width: 100%; text-align: center; }

/* Included grid (dark) */
.tf-included { background: var(--bg-dark); padding: 100px 0; color: #fff; }
.tf-included__head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.tf-included__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px); color: #fff; margin: 14px 0 16px; }
.tf-included__sub { font-family: var(--font-sans); font-size: 16px; color: #777; margin: 0; }
.tf-included__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.tf-included__col { padding: 40px 36px; border: 1px solid #1E1E1E; margin: -0.5px; }
.tf-included__num { font-family: var(--font-serif); font-style: italic; font-size: 32px; color: var(--accent); line-height: 1; }
.tf-included__title { font-family: var(--font-sans); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin: 12px 0 8px; }
.tf-included__body { font-family: var(--font-sans); font-size: 14px; line-height: 1.7; color: #555; margin: 0; }

/* Process */
.tf-process { padding: 100px 0; text-align: center; }
.tf-process__head { max-width: 640px; margin: 0 auto 60px; }
.tf-process__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); margin: 14px 0 0; }
.tf-process__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; max-width: 900px; margin: 0 auto; }
.tf-process__step { display: flex; flex-direction: column; align-items: center; }
.tf-process__num { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 700; font-size: 18px; }
.tf-process__title { font-family: var(--font-serif); font-weight: 700; font-size: 22px; margin: 20px 0 12px; }
.tf-process__body { font-family: var(--font-sans); font-size: 15px; line-height: 1.7; color: var(--text-muted); max-width: 240px; margin: 0; }
.tf-process__cta { margin-top: 60px; }

/* Calendly */
.tf-calendly { background: var(--bg-accent); padding: 80px 0; }
.tf-calendly__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.tf-calendly__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); margin: 14px 0 16px; }
.tf-calendly__sub { font-family: var(--font-sans); font-size: 16px; color: var(--text-muted); margin: 0; }
.tf-calendly__embed { background: #fff; border: 1px solid var(--border); min-height: 400px; }
.tf-calendly__placeholder { padding: 80px 40px; text-align: center; }
.tf-calendly__placeholder div { font-family: var(--font-sans); font-weight: 700; font-size: 14px; letter-spacing: 0.1em; color: var(--text-muted); }
.tf-calendly__placeholder p { font-family: var(--font-sans); font-size: 13px; color: var(--text-light); margin: 8px 0 0; }

/* FAQ */
.tf-faq { padding: 100px 0; }
.tf-faq__head { text-align: center; margin-bottom: 40px; }
.tf-faq__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); margin: 14px 0 0; }
.tf-faq__list { max-width: 760px; margin: 0 auto; }
.tf-faq__item { border-bottom: 1px solid var(--border); }
.tf-faq__q { width: 100%; background: none; border: 0; display: flex; justify-content: space-between; align-items: center; padding: 28px 0; cursor: pointer; text-align: left; font-family: var(--font-serif); font-weight: 700; font-size: 18px; color: var(--text); }
.tf-faq__sign { font-family: var(--font-sans); font-weight: 300; font-size: 24px; color: var(--accent); transition: transform 0.3s; }
.tf-faq__item.open .tf-faq__sign { transform: rotate(45deg); }
.tf-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.tf-faq__item.open .tf-faq__a { max-height: 320px; }
.tf-faq__a p { font-family: var(--font-sans); font-size: 15px; line-height: 1.75; color: var(--text-muted); padding: 0 0 24px; margin: 0; }

/* Final strip */
.tf-final-strip { background: var(--bg-dark); padding: 80px 0; color: #fff; text-align: center; }
.tf-final-strip__inner h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); color: #fff; margin: 0 0 32px; }
.tf-final-strip__fine { font-family: var(--font-sans); font-size: 12px; color: #444; margin: 16px 0 0; }

/* Contact */
.tf-contact-cards { padding: 40px 0 80px; }
.tf-contact-cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tf-contact__card { border: 1px solid var(--border); padding: 44px 36px; text-align: center; }
.tf-contact__icon { width: 40px; height: 40px; border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.tf-contact__title { font-family: var(--font-sans); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.tf-contact__body { display: block; font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); text-decoration: none; margin-bottom: 8px; }
.tf-contact__fine { font-family: var(--font-sans); font-size: 11px; color: var(--text-light); margin: 0; }

.tf-contact-form { padding: 40px 0 120px; }
.tf-contact-form__inner { display: grid; grid-template-columns: 55fr 45fr; gap: 80px; }
.tf-contact__form__h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 40px); margin: 0 0 32px; }
.tf-contact__form { display: flex; flex-direction: column; gap: 4px; }
.tf-contact__field { border: 0; border-bottom: 1px solid var(--mid); padding: 14px 0; font-family: var(--font-sans); font-size: 15px; background: transparent; outline: none; margin-bottom: 12px; }
.tf-contact__field:focus { border-color: var(--accent); }
.tf-contact__field--ta { border: 1px solid var(--border); padding: 14px; min-height: 140px; resize: vertical; margin-top: 8px; }
.tf-contact__field--select { -webkit-appearance: none; appearance: none; background: transparent url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B6B6B' fill='none'/%3E%3C/svg%3E") no-repeat right 0 center; padding-right: 24px; }
.tf-contact__form .btn-primary { align-self: flex-start; margin-top: 16px; }
.tf-contact__faq__h3 { font-family: var(--font-serif); font-weight: 700; font-size: 26px; margin: 0 0 28px; }
.tf-mini-faq { padding: 20px 0; border-bottom: 1px solid var(--border); }
.tf-mini-faq__q { font-family: var(--font-sans); font-weight: 700; font-size: 14px; color: var(--text); }
.tf-mini-faq__a { font-family: var(--font-sans); font-size: 14px; line-height: 1.65; color: var(--text-muted); margin: 6px 0 0; }

/* Follow */
.tf-follow { background: var(--bg-dark); padding: 80px 0; color: #fff; text-align: center; }
.tf-follow__inner h2 { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(28px, 3.2vw, 40px); color: #fff; margin: 0 0 16px; }
.tf-follow__inner p { font-family: var(--font-sans); font-size: 16px; color: #777; max-width: 480px; margin: 0 auto 40px; }
.tf-follow__row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.tf-follow__row a { color: #fff; text-decoration: none; display: flex; flex-direction: column; gap: 4px; font-family: var(--font-sans); }
.tf-follow__row strong { font-weight: 700; font-size: 14px; }
.tf-follow__row span { font-size: 13px; color: #555; }
.tf-follow__row a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .tf-story__inner,
  .tf-fr-hero__inner,
  .tf-creds__inner,
  .tf-why__inner,
  .tf-mini-t__grid,
  .tf-shop__grid,
  .tf-coaching__inner,
  .tf-wwm-hero__inner,
  .tf-included__grid,
  .tf-process__row,
  .tf-contact-cards__grid,
  .tf-contact-form__inner { grid-template-columns: 1fr; gap: 48px; }
  .tf-values__grid { grid-template-columns: 1fr 1fr; }
  .tf-values__col { border-bottom: 1px solid #1E1E1E; }
  .tf-inside__grid { grid-template-columns: 1fr; }
  .tf-inside__col { border-right: 0; }
  .tf-story__photo, .tf-coaching__photo, .tf-wwm-hero__photo { height: 380px; }
}
@media (max-width: 600px) {
  .tf-page-hero { padding: 100px 0 60px; }
  .tf-values__grid { grid-template-columns: 1fr; }
}
