/* ============================================================
   Outerworks — "The 10-Year Fence" offer + area-page system
   Scoped brand layer. Loaded AFTER site.css on the offer page
   and area pages only, so it overrides the shared :root tokens
   to the exact brand system without touching the rest of the site.
   Partnership voice ("we / our team") throughout the copy.
   ============================================================ */

:root {
  /* Exact brand tokens */
  --forest: #13733A;   /* primary */
  --forest-2: #0F5C2E;
  --moss: #2D5240;
  --fern: #2D5240;
  --fern-2: #13733A;
  --gold: #C8912A;
  --gold-2: #E8B84B;   /* gold light */
  --stone: #F5F0E8;    /* background */
  --paper: #F5F0E8;
  --pebble: #E8E1D6;
  --clay: #9E8E7A;
  --bark: #4A3728;
  --ink: #241A11;      /* readable near-bark text */
  --ink-soft: #4A3728;
  --line-dark: rgba(19,115,58,0.14);

  /* Fonts */
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

/* Primary CTA — one gold button, high contrast, nothing competes with it */
.tyf .btn {
  background: var(--gold);
  color: #241A11;
  box-shadow: 0 14px 28px rgba(200,145,42,.28);
}
.tyf .btn:hover { background: var(--gold-2); color: #241A11; }

/* Headings pick up Barlow Condensed with a touch more weight/tracking */
.tyf h1, .tyf h2, .tyf h3,
.tyf .section-title, .tyf .page-hero-title {
  font-family: var(--font-head);
  letter-spacing: .005em;
}

/* ---------- Compact hero so price bands sit near the top ---------- */
.tyf .tyf-hero {
  position: relative;
  background: linear-gradient(160deg, var(--forest) 0%, var(--moss) 70%, var(--forest-2) 100%);
  color: var(--stone);
  padding: clamp(88px, 12vh, 132px) 0 clamp(48px, 7vh, 76px);
  overflow: hidden;
}
.tyf .tyf-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(200,145,42,.22), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 2px, transparent 2px 46px);
  pointer-events: none;
}
.tyf .tyf-hero .container { position: relative; z-index: 1; }
.tyf .tyf-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .14em; font-weight: 600;
  font-size: .78rem; color: var(--gold-2);
  border: 1px solid rgba(232,184,75,.4);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.tyf .tyf-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.02; margin: 0 0 18px; max-width: 15ch; color: #fff;
}
.tyf .tyf-hero h1 .accent { color: var(--gold-2); }
.tyf .tyf-hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 46ch; margin: 0 0 30px; color: rgba(245,240,232,.9);
}
.tyf .tyf-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.tyf .tyf-hero-guarantee {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; font-size: .8rem; color: rgba(245,240,232,.7);
}

/* Generic section rhythm for the offer page */
.tyf .tyf-section { padding: clamp(56px, 8vh, 96px) 0; }
.tyf .tyf-section.alt { background: var(--pebble); }
.tyf .tyf-eyebrow {
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .16em; font-weight: 600; font-size: .82rem;
  color: var(--gold); margin: 0 0 12px;
}
.tyf .tyf-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.05; color: var(--forest); margin: 0 0 14px; font-weight: 600;
}
.tyf .tyf-lead { font-size: 1.08rem; max-width: 58ch; color: var(--ink-soft); margin: 0 0 8px; }

/* ---------- Value stack ---------- */
.tyf .value-stack {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .tyf .value-stack { grid-template-columns: 1fr 1fr; } }
.tyf .value-stack li {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--pebble);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.tyf .value-stack .tick {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 999px;
  background: var(--forest); color: #fff; display: grid; place-items: center;
}
.tyf .value-stack .tick svg { width: 15px; height: 15px; }
.tyf .value-stack b { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.tyf .value-stack span { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Pricing menu ---------- */
.tyf .pricing-grid {
  display: grid; gap: 20px; margin-top: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .tyf .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.tyf .price-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--pebble);
  border-radius: var(--radius-md); padding: 26px 24px;
  box-shadow: 0 18px 40px rgba(19,115,58,.06);
}
.tyf .price-card.is-featured {
  border: 2px solid var(--gold);
  box-shadow: 0 24px 54px rgba(200,145,42,.18);
}
@media (min-width: 900px) { .tyf .price-card.is-featured { transform: translateY(-10px); } }
.tyf .price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #241A11;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: .72rem; padding: 6px 14px; border-radius: 999px;
  white-space: nowrap;
}
.tyf .price-tier {
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  color: var(--forest); margin: 0 0 4px;
}
.tyf .price-name { color: var(--clay); font-size: .95rem; margin: 0 0 16px; }
.tyf .price-amount {
  font-family: var(--font-head); font-size: 2.3rem; font-weight: 700;
  color: var(--ink); line-height: 1; margin: 0 0 4px;
}
.tyf .price-amount .unit { font-size: 1rem; color: var(--clay); font-weight: 500; }
.tyf .price-from { font-size: .82rem; color: var(--clay); text-transform: uppercase; letter-spacing: .1em; margin: 0 0 18px; }
.tyf .price-spec { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 9px; }
.tyf .price-spec li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.tyf .price-spec li::before { content: "—"; color: var(--gold); font-weight: 700; }
.tyf .price-card .btn { margin-top: auto; width: 100%; }
.tyf .pricing-note {
  margin-top: 22px; padding: 16px 20px; border-radius: var(--radius-sm);
  background: var(--forest); color: var(--stone); font-size: .95rem;
  display: flex; flex-wrap: wrap; gap: 6px 22px;
}
.tyf .pricing-note b { color: var(--gold-2); }

/* ---------- Proof / before-after ---------- */
.tyf .proof-grid {
  display: grid; gap: 16px; margin-top: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .tyf .proof-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .tyf .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.tyf .proof-item {
  border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--pebble);
  background: #fff;
}
.tyf .proof-ph {
  aspect-ratio: 4 / 3; display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, var(--pebble) 0 14px, #efe8dc 14px 28px);
  color: var(--clay); font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; padding: 12px;
}
.tyf .proof-item.before .proof-ph { background: repeating-linear-gradient(45deg, #e3d8c6 0 14px, #d8ccb6 14px 28px); }
.tyf .proof-cap { padding: 10px 14px; font-size: .85rem; color: var(--ink-soft); }
.tyf .proof-cap .tag {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; font-size: .68rem;
  padding: 2px 8px; border-radius: 999px; margin-right: 6px;
}
.tyf .proof-cap .tag.before { background: var(--clay); color: #fff; }
.tyf .proof-cap .tag.after { background: var(--forest); color: #fff; }

.tyf .review-embed {
  margin-top: 26px; border: 1px dashed var(--gold); border-radius: var(--radius-sm);
  background: rgba(200,145,42,.06); padding: 22px 24px; text-align: center;
}
.tyf .review-embed .stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 2px; }
.tyf .review-embed b { color: var(--forest); }

/* ---------- Guarantee block ---------- */
.tyf .guarantee-panel {
  border: 2px solid var(--gold); border-radius: var(--radius-md);
  background: #fff; padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 24px 54px rgba(200,145,42,.12);
}
.tyf .guarantee-grid {
  display: grid; gap: 22px; margin-top: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .tyf .guarantee-grid { grid-template-columns: repeat(3, 1fr); } }
.tyf .guarantee-item { padding-top: 18px; border-top: 3px solid var(--gold); }
.tyf .guarantee-item h3 {
  font-family: var(--font-head); color: var(--forest); font-size: 1.35rem;
  margin: 0 0 8px; font-weight: 700;
}
.tyf .guarantee-item p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- FAQ ---------- */
.tyf .faq-list { margin-top: 26px; display: grid; gap: 12px; }
.tyf .faq {
  background: #fff; border: 1px solid var(--pebble); border-radius: var(--radius-sm);
  overflow: hidden;
}
.tyf .faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem;
  color: var(--forest); display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.tyf .faq summary::-webkit-details-marker { display: none; }
.tyf .faq summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; }
.tyf .faq[open] summary::after { content: "\2212"; }
.tyf .faq .faq-body { padding: 0 22px 20px; color: var(--ink-soft); }
.tyf .faq .faq-body p { margin: 0; }

/* ---------- Lead form ---------- */
.tyf .lead-wrap {
  display: grid; gap: 34px; align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .tyf .lead-wrap { grid-template-columns: 1.05fr .95fr; } }
.tyf .lead-card {
  background: #fff; border: 1px solid var(--pebble); border-radius: var(--radius-md);
  padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-soft);
}
.tyf .lead-card h3 { font-family: var(--font-head); color: var(--forest); font-size: 1.5rem; margin: 0 0 6px; }
.tyf .lead-card .form-sub { color: var(--clay); margin: 0 0 18px; font-size: .95rem; }
.tyf .lead-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .tyf .lead-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.tyf .lead-field label {
  display: block; font-family: var(--font-head); font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; font-size: .78rem;
  color: var(--moss); margin-bottom: 6px;
}
.tyf .lead-field input,
.tyf .lead-field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-xs);
  border: 1px solid var(--pebble); background: var(--stone); color: var(--ink);
}
.tyf .lead-field input:focus,
.tyf .lead-field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.tyf .lead-field input[type="file"] { padding: 9px 10px; background: #fff; font-size: .9rem; }
.tyf .lead-actions { margin-top: 18px; }
.tyf .lead-actions .btn { width: 100%; }
.tyf .lead-help { margin-top: 12px; font-size: .82rem; color: var(--clay); }
.tyf .form-status { margin-top: 12px; font-weight: 600; min-height: 1.2em; }
.tyf .form-status.is-error { color: #b23b2e; }
.tyf .form-status.is-success { color: var(--forest); }

/* ---------- Sticky mobile CTA ---------- */
.tyf-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--forest); box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.tyf-sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; min-height: 50px; border-radius: 999px;
  background: var(--gold); color: #241A11; font-weight: 800;
}
@media (max-width: 860px) {
  .tyf-sticky-cta { display: block; }
  body.tyf { padding-bottom: 74px; }
  /* keep the floating WhatsApp FAB clear of the sticky bar */
  .quick-contact { bottom: 84px !important; }
}

/* ---------- Area page intro ---------- */
.tyf .area-intro-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 860px) { .tyf .area-intro-grid { grid-template-columns: 1.1fr .9fr; } }
.tyf .area-facts { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.tyf .area-facts li { display: flex; gap: 10px; color: var(--ink-soft); }
.tyf .area-facts li::before { content: "\2713"; color: var(--forest); font-weight: 800; }
.tyf .todo-flag {
  display: inline-block; margin-left: 8px; font-family: var(--font-body);
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: #8a5a00; background: #ffe9c2; border: 1px solid #f0c869;
  padding: 1px 7px; border-radius: 6px; vertical-align: middle;
}

/* ============================================================
   Site-wide component library for the rebuilt Outerworks site.
   All scoped under .tyf (every page carries `tyf` on <body>),
   built on the same exact brand tokens above.
   ============================================================ */

/* Nav — highlight the offer link */
.tyf .nav-main .nav-offer,
.tyf .mobile-nav .nav-offer {
  color: var(--gold-ink, #8a571a); font-weight: 700;
}
.tyf .nav-main .nav-offer { position: relative; }

/* Centered section head */
.tyf .tyf-head { max-width: 760px; }
.tyf .tyf-head.center { margin-inline: auto; text-align: center; }
.tyf .tyf-head.center .tyf-lead { margin-inline: auto; }

/* Hero variant with a photo background (home + service pages) */
.tyf .tyf-hero.has-media { padding-top: clamp(104px, 15vh, 168px); }
.tyf .tyf-hero-media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.tyf .tyf-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(11,61,34,.92) 0%, rgba(19,115,58,.78) 55%, rgba(11,61,34,.9) 100%);
}
.tyf .tyf-hero.has-media .container { position: relative; z-index: 2; }
.tyf .tyf-hero.has-media::after { z-index: 1; }
.tyf .tyf-hero-eyebrow-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 20px; }

/* Trust strip — qualitative, no fabricated numbers */
.tyf .trust-strip {
  display: grid; gap: 14px; margin-top: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .tyf .trust-strip { grid-template-columns: repeat(4, 1fr); } }
.tyf .trust-item { display: flex; gap: 12px; align-items: center; }
.tyf .trust-item .ti-ico {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; background: rgba(19,115,58,.08); color: var(--forest);
}
.tyf .trust-item .ti-ico svg { width: 22px; height: 22px; }
.tyf .trust-item b { display: block; color: var(--ink); font-size: .98rem; }
.tyf .trust-item span { color: var(--clay); font-size: .85rem; }

/* Services grid */
.tyf .svc-grid {
  display: grid; gap: 18px; margin-top: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .tyf .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .tyf .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.tyf .svc-card {
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: 1px solid var(--pebble); border-radius: var(--radius-md);
  padding: 24px 22px; box-shadow: 0 14px 34px rgba(19,115,58,.05);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.tyf .svc-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(19,115,58,.12); border-color: rgba(200,145,42,.4); }
.tyf .svc-card .svc-ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--forest); color: #fff; margin-bottom: 4px;
}
.tyf .svc-card .svc-ico svg { width: 24px; height: 24px; }
.tyf .svc-card h3 { font-family: var(--font-head); color: var(--forest); font-size: 1.4rem; margin: 0; font-weight: 700; }
.tyf .svc-card p { margin: 0; color: var(--ink-soft); font-size: .96rem; flex: 1; }
.tyf .svc-card .svc-link {
  font-family: var(--font-head); font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  font-size: .82rem; color: var(--gold-ink, #8a571a); display: inline-flex; align-items: center; gap: 6px;
}
.tyf .svc-card .svc-link::after { content: "\2192"; }

/* Numbered steps */
.tyf .tyf-steps {
  display: grid; gap: 18px; margin-top: 30px; counter-reset: step;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .tyf .tyf-steps { grid-template-columns: repeat(3, 1fr); } }
.tyf .tyf-steps.four { }
@media (min-width: 900px) { .tyf .tyf-steps.four { grid-template-columns: repeat(4, 1fr); } }
.tyf .step {
  background: #fff; border: 1px solid var(--pebble); border-radius: var(--radius-md); padding: 24px 22px;
}
.tyf .step .step-n {
  width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(200,145,42,.14); color: var(--gold-ink, #8a571a);
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 14px;
}
.tyf .step h3 { font-family: var(--font-head); color: var(--forest); font-size: 1.25rem; margin: 0 0 6px; font-weight: 700; }
.tyf .step p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* Split feature row (text + photo) */
.tyf .tyf-split { display: grid; gap: 30px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .tyf .tyf-split { grid-template-columns: 1fr 1fr; gap: 46px; }
  .tyf .tyf-split.reverse .tyf-split-media { order: -1; }
}
.tyf .tyf-split-media {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 300px;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-soft); border: 1px solid var(--pebble);
}
.tyf .tyf-check { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.tyf .tyf-check li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.tyf .tyf-check li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--forest); margin-top: 1px; }
.tyf .tyf-check li b { color: var(--ink); }

/* Coverage / area grid */
.tyf .area-grid { display: grid; gap: 12px; margin-top: 26px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 620px) { .tyf .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .tyf .area-grid { grid-template-columns: repeat(4, 1fr); } }
.tyf .area-tile {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: #fff; border: 1px solid var(--pebble); border-radius: var(--radius-sm);
  padding: 14px 16px; font-weight: 600; color: var(--forest);
  transition: border-color .2s, transform .2s;
}
.tyf a.area-tile:hover { border-color: var(--gold); transform: translateY(-2px); }
.tyf .area-tile .at-pc { font-size: .78rem; color: var(--clay); font-weight: 600; }
.tyf .area-tile.todo { color: var(--clay); }

/* Gallery grid (real photos) */
.tyf .gal-grid { display: grid; gap: 14px; margin-top: 28px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .tyf .gal-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .tyf .gal-grid { grid-template-columns: repeat(3, 1fr); } }
.tyf .gal-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--pebble) center/cover no-repeat; border: 1px solid var(--pebble);
}
.tyf .gal-item span {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  font-size: .74rem; color: #fff; background: rgba(11,61,34,.72); padding: 4px 10px; border-radius: 999px;
}

/* CTA band */
.tyf .cta-band {
  background: linear-gradient(150deg, var(--forest) 0%, var(--moss) 70%, var(--forest-2) 100%);
  color: var(--stone); border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 56px);
  text-align: center; position: relative; overflow: hidden;
}
.tyf .cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 0%, rgba(200,145,42,.22), transparent 55%); pointer-events: none;
}
.tyf .cta-band > * { position: relative; z-index: 1; }
.tyf .cta-band h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.7rem); color: #fff; margin: 0 0 12px; font-weight: 600; }
.tyf .cta-band p { max-width: 54ch; margin: 0 auto 22px; color: rgba(245,240,232,.9); }
.tyf .cta-band .cta-sub { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; color: rgba(245,240,232,.7); margin-top: 16px; }

/* Reviews prompt (no fabricated testimonials) */
.tyf .reviews-cta {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
  border: 1px dashed var(--gold); border-radius: var(--radius-md);
  background: rgba(200,145,42,.06); padding: 24px 26px; margin-top: 28px;
}
.tyf .reviews-cta .stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 3px; }
.tyf .reviews-cta b { color: var(--forest); }

/* Contact method cards */
.tyf .contact-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 28px; }
@media (min-width: 640px) { .tyf .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .tyf .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.tyf .contact-tile {
  background: #fff; border: 1px solid var(--pebble); border-radius: var(--radius-md); padding: 22px;
}
.tyf .contact-tile .ct-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(19,115,58,.08); color: var(--forest); margin-bottom: 12px; }
.tyf .contact-tile .ct-ico svg { width: 22px; height: 22px; }
.tyf .contact-tile h3 { font-family: var(--font-head); color: var(--forest); font-size: 1.2rem; margin: 0 0 4px; }
.tyf .contact-tile a { color: var(--ink); font-weight: 600; }
.tyf .contact-tile p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

/* Prose (legal / long text) */
.tyf .prose { max-width: 760px; }
.tyf .prose h2 { font-family: var(--font-head); color: var(--forest); font-size: 1.5rem; margin: 30px 0 10px; }
.tyf .prose p, .tyf .prose li { color: var(--ink-soft); line-height: 1.7; }
