/**
 * Turners Fencing & Landscaping — v0.2.0
 *
 * THE TRAPS, and how they are handled here. Read this before editing.
 *
 * 1. Hello's reset.css sets `a { color: #c36 }` and restyles `button:hover`
 *    and `button:focus`. Both are neutralised once, at the top, instead of
 *    being chased element by element.
 * 2. SPECIFICITY RULE: the neutraliser owns ONE class (`.tf-site a`, 0,1,1).
 *    Every component therefore owns TWO (`.tf .tf-btn`, 0,2,0), because class
 *    count is compared before element count. Break this and the pink returns.
 *    This is what painted the call buttons gold-on-gold in v0.1.0.
 * 3. Hello's reset AND Elementor's frontend css both set `img { height: auto }`
 *    and both load after this file. Every fixed image height carries !important.
 * 4. Elementor zeroes figure margins at 0,3,1. Figure margins carry !important.
 * 5. Hello sets `section { padding-block: … }` at element level, which beats a
 *    plain class. Section padding is written `.tf-site .tf-sec`, never `.tf-sec`.
 * 6. Buttons never have padding or font touched on :hover / :focus. Changing box
 *    metrics on hover is what made buttons jump.
 * 7. Gold (#C88A3D) is 2.6:1 on the paper ground — too weak for text. On light
 *    it is only ever a fill, a rule, or an active-state underline. Text on light
 *    is green or moss. Gold text is allowed on the deep green only (4.6:1).
 *
 * © 2026 Turners Fencing & Landscaping · crafted by Glovedcat
 */

.tf-site {
	--green: #243030;
	--green-2: #2e3c39;
	--moss: #486c48;
	--moss-2: #5c8159;
	--gold: #c88a3d;
	--gold-soft: #f2e3cf;
	--paper: #f4f1e9;
	--paper-2: #eae5d9;
	--line: #d7d0c0;
	--line-dark: rgba(244, 241, 233, .16);
	--ink: #1a2220;
	--body: #414a47;
	--muted: #6b736f;
	--muted-dark: #9aa39e;
	--white: #fff;
	--radius: 3px;
	--shadow: 0 20px 48px -30px rgba(36, 48, 48, .5);
	--wrap: 1220px;
	--serif: "Fraunces", ui-serif, Georgia, serif;
	--sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ---- Hello neutraliser. One class each. Components use two. ---- */
.tf-site a { color: inherit; text-decoration: none; }
.tf-site button:hover, .tf-site button:focus,
.tf-site [type="submit"]:hover, .tf-site [type="submit"]:focus,
.tf-site [type="button"]:hover, .tf-site [type="button"]:focus {
	background: inherit; color: inherit;
}

.tf-site {
	background: var(--paper);
	color: var(--body);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.tf * { box-sizing: border-box; }

.tf h1, .tf h2, .tf h3 {
	font-family: var(--serif);
	font-optical-sizing: auto;
	color: var(--green);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -.012em;
	margin: 0 0 .5em;
}
.tf h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
.tf h2 { font-size: clamp(1.6rem, 3.1vw, 2.4rem); }
.tf h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
.tf p { margin: 0 0 1em; }

.tf-wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.tf-site .tf-sec { padding-block: clamp(3.2rem, 6.5vw, 6rem); padding-inline: 0; }

.tf-sec-head { max-width: 60ch; margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.tf-sec-head p { color: var(--muted); margin: 0; }
.tf-sec-head h2::after {
	content: ""; display: block; width: 52px; height: 2px;
	background: var(--gold); margin: .7rem 0 .9rem;
}
.tf-lead { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--ink); }
.tf-eyebrow {
	font-size: .74rem; letter-spacing: .17em; text-transform: uppercase;
	font-weight: 600; color: var(--moss); margin: 0 0 .9rem;
}
.tf-ico { width: 1.15em; height: 1.15em; flex: none; vertical-align: -.2em; }
.tf-ico-sm { width: .9em; height: .9em; }
.tf-site .tf-skip { position: absolute; left: -9999px; background: var(--green); color: var(--paper); padding: .8rem 1.2rem; z-index: 200; }
.tf-site .tf-skip:focus { left: .5rem; top: .5rem; }

/* ---------------- buttons and links ---------------- */

.tf .tf-btn {
	display: inline-flex; align-items: center; gap: .55rem;
	padding: .88rem 1.45rem; border: 1px solid transparent; border-radius: var(--radius);
	font: 600 .98rem/1.2 var(--sans); cursor: pointer;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.tf .tf-btn-go { background: var(--gold); color: var(--green); }
.tf .tf-btn-go:hover, .tf .tf-btn-go:focus-visible { background: var(--green); color: var(--paper); }
.tf .tf-btn-line { background: transparent; color: var(--green); border-color: var(--line); }
.tf .tf-btn-line:hover, .tf .tf-btn-line:focus-visible { border-color: var(--green); background: var(--white); }

.tf-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.5rem 0 0; }

.tf .tf-link {
	display: inline-flex; align-items: center; gap: .4rem;
	font-weight: 600; color: var(--green);
	border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}
.tf .tf-link:hover { color: var(--moss); }
.tf .tf-link .tf-ico { transition: transform .18s ease; }
.tf .tf-link:hover .tf-ico { transform: translateX(3px); }
.tf .tf-link-sm { font-size: .9rem; }

.tf-ticks { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .55rem; }
.tf-ticks li { display: flex; gap: .65rem; align-items: flex-start; }
.tf-ticks .tf-ico { color: var(--moss); margin-top: .22em; }
.tf-more { margin: 2.2rem 0 0; }

/* ---------------- the strip above the header ---------------- */

.tf-strip { background: var(--green); color: var(--paper); font-size: .82rem; }
.tf-strip-in { display: flex; align-items: center; gap: 1.6rem; padding: .5rem 0; flex-wrap: wrap; }
.tf-strip-in span, .tf-site .tf-strip-rating { display: inline-flex; align-items: center; gap: .4rem; }
.tf-strip .tf-ico { color: var(--gold); width: 1em; height: 1em; }
.tf-site .tf-strip-rating { margin-left: auto; color: var(--paper); border-bottom: 1px solid transparent; }
.tf-site .tf-strip-rating:hover { border-bottom-color: var(--gold); }

/* ---------------- header: light, so his green logo reads ---------------- */

.tf-head {
	position: sticky; top: 0; z-index: 90;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .2s ease;
}
.tf-head.is-stuck { box-shadow: 0 8px 26px -22px rgba(36, 48, 48, .8); }
.tf-head-in { display: flex; align-items: center; gap: 1.5rem; min-height: 78px; }

.tf-logo { display: flex; align-items: center; margin-right: auto; }
.tf-logo-img { height: 48px !important; width: auto !important; display: block; }
.tf-wordmark { display: grid; line-height: 1.05; }
.tf-wordmark-a { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--green); }
.tf-wordmark-b { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--moss); }

.tf-nav ul { display: flex; gap: 1.35rem; list-style: none; margin: 0; padding: 0; }
.tf-site .tf-nav a {
	position: relative; display: block;
	color: var(--green); font-size: .93rem; font-weight: 500;
	padding: .35rem 0 .7rem;
}
.tf-nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 9px;
	background:
		linear-gradient(var(--gold), var(--gold)) 0 100% / 100% 2px no-repeat,
		linear-gradient(var(--gold), var(--gold)) 0 0 / 2px 9px no-repeat,
		linear-gradient(var(--gold), var(--gold)) 100% 0 / 2px 9px no-repeat;
	transform: scaleX(0); transform-origin: left;
	transition: transform .3s cubic-bezier(.2, .7, .3, 1);
}
.tf-nav a:hover::after, .tf-nav a:focus-visible::after,
.tf-nav a[aria-current="page"]::after { transform: scaleX(1); }
.tf-site .tf-nav a[aria-current="page"] { color: var(--moss); }
.tf .tf-head-call {
	align-self: stretch; border-radius: 0; font-size: .95rem;
	padding: 0 1.4rem;
	margin-right: calc(-1 * max(1.25rem, (100vw - var(--wrap)) / 2));
	padding-right: max(1.4rem, (100vw - var(--wrap)) / 2);
}

.tf-burger { display: none; align-items: center; gap: .55rem; background: none; border: 0; color: var(--green); cursor: pointer; padding: .5rem 0; }
.tf-burger-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.tf-bars { position: relative; width: 26px; height: 18px; display: block; }
.tf-bars i { position: absolute; left: 0; right: 0; height: 2px; background: var(--green); transition: transform .3s cubic-bezier(.2,.7,.3,1), opacity .2s ease; }
.tf-bars i:nth-child(1) { top: 1px; }
.tf-bars i:nth-child(2) { top: 8px; }
.tf-bars i:nth-child(3) { top: 15px; }
[data-tf-menu="open"] .tf-bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
[data-tf-menu="open"] .tf-bars i:nth-child(2) { opacity: 0; }
[data-tf-menu="open"] .tf-bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- mobile menu ---------------- */

.tf-drawer {
	position: fixed; inset: 0; z-index: 89; background: var(--green);
	display: grid; align-content: center;
	opacity: 0; visibility: hidden; transform: translateY(-1rem);
	transition: opacity .28s ease, transform .32s cubic-bezier(.2,.7,.3,1), visibility .28s;
}
[data-tf-menu="open"] .tf-drawer { opacity: 1; visibility: visible; transform: none; }
.tf-drawer-in { width: min(100% - 3rem, 520px); margin-inline: auto; padding-top: 70px; }
.tf-drawer nav ul { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.tf-drawer nav li {
	border-bottom: 1px solid var(--line-dark);
	opacity: 0; transform: translateY(12px);
	transition: opacity .35s ease, transform .35s ease;
	transition-delay: calc(var(--i) * 42ms + 80ms);
}
[data-tf-menu="open"] .tf-drawer nav li { opacity: 1; transform: none; }
.tf-site .tf-drawer nav a {
	display: flex; align-items: center; justify-content: space-between;
	padding: .9rem 0; font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--paper);
}
.tf-drawer nav a .tf-ico { color: var(--gold); }
.tf-site .tf-drawer nav a[aria-current="page"] { color: var(--gold); }
.tf-drawer-foot { display: grid; gap: .8rem; justify-items: start; }
.tf-site .tf-drawer-mail { color: var(--muted-dark); font-size: .95rem; }
.tf-drawer-note { color: var(--muted-dark); font-size: .84rem; margin: 0; }

/* ---------------- hero ---------------- */

.tf-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--paper); }
.tf-hero-copy { display: flex; align-items: center; padding-block: clamp(2.8rem, 6vw, 5.5rem); padding-left: max(1.25rem, calc((100vw - var(--wrap)) / 2)); padding-right: clamp(1.25rem, 4vw, 3.5rem); }
.tf-hero-copy-in { max-width: 34rem; }
.tf-hero-copy h1 { max-width: 15ch; }
.tf-hero-copy .tf-lead { max-width: 44ch; }
.tf-hero-media img { width: 100% !important; height: 100% !important; min-height: 380px; object-fit: cover; display: block; }

.tf-credstrip { background: var(--green); color: var(--paper); }
.tf-credbar { list-style: none; margin: 0; padding: .9rem 0; display: flex; flex-wrap: wrap; gap: .5rem 2rem; font-size: .88rem; }
.tf-credbar li { display: flex; align-items: center; gap: .45rem; }
.tf-credbar .tf-ico { color: var(--gold); }

.tf-phero { display: grid; grid-template-columns: 1.02fr .98fr; align-items: stretch; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.tf-phero-copy { display: flex; align-items: center; padding-block: clamp(2.6rem, 5vw, 4.4rem); padding-left: max(1.25rem, calc((100vw - var(--wrap)) / 2)); padding-right: clamp(1.25rem, 4vw, 3rem); }
.tf-phero-copy-in { max-width: 34rem; }
.tf-phero-copy h1 { max-width: 17ch; }
.tf-phero-copy .tf-lead { max-width: 48ch; }
.tf-phero-media img { width: 100% !important; height: 100% !important; min-height: 320px; object-fit: cover; display: block; }
/* No photograph: one column, and the text is capped by its children, never by
   a max-width on a box that already carries 240px of padding each side. */
.tf-phero-solo { grid-template-columns: 1fr; }
.tf-phero-solo .tf-phero-copy { padding-right: max(1.25rem, calc((100vw - var(--wrap)) / 2)); }
.tf-phero-solo .tf-phero-copy-in { max-width: 62ch; }

.tf-crumb { display: flex; gap: .5rem; font-size: .84rem; margin-bottom: .9rem; color: var(--muted); }
.tf-site .tf-crumb a { color: var(--moss); }

/* ---------------- services ---------------- */

.tf-serv-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.tf-serv-stage { display: grid; }
.tf-site .tf-serv-feature {
	grid-area: 1 / 1;
	display: grid; align-content: start;
	background: var(--white); border: 1px solid var(--line);
	border-radius: var(--radius); overflow: hidden;
	opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: opacity .35s ease, transform .35s ease, border-color .2s ease, box-shadow .2s ease;
}
.tf-site .tf-serv-feature.is-on { opacity: 1; visibility: visible; transform: none; }
.tf-site .tf-serv-feature:hover { border-color: var(--green); box-shadow: var(--shadow); }
.tf-serv-img { display: block; overflow: hidden; }
.tf-serv-img img { width: 100% !important; height: 300px !important; object-fit: cover; display: block; transition: transform .5s ease; }
.tf-site .tf-serv-feature:hover .tf-serv-img img { transform: scale(1.04); }
.tf-serv-body { display: grid; gap: .5rem; padding: 1.6rem; align-content: start; }
.tf-serv-h { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--green); }
.tf-serv-p { color: var(--muted); font-size: .95rem; }
.tf-serv-go { display: inline-flex; align-items: center; gap: .4rem; color: var(--moss); font-weight: 600; font-size: .92rem; margin-top: .3rem; }

.tf-serv-list { list-style: none; margin: 0; padding: 0; }
.tf-serv-list li { border-top: 1px solid var(--line); }
.tf-serv-list li:last-child { border-bottom: 1px solid var(--line); }
.tf-site .tf-serv-list a {
	display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: start;
	padding: 1.25rem .4rem; transition: background-color .18s ease, padding-left .18s ease;
}
.tf-site .tf-serv-list a:hover { background: var(--paper-2); padding-left: .9rem; }
.tf-serv-list li.is-on > a { background: var(--paper-2); padding-left: .9rem; }
.tf-serv-list li.is-on .tf-serv-n { color: var(--moss); }
.tf-serv-n { font-family: var(--serif); font-size: .95rem; color: var(--gold); padding-top: .15rem; }
.tf-serv-list .tf-serv-h { font-size: 1.15rem; display: block; margin-bottom: .2rem; }
.tf-serv-list .tf-ico { color: var(--moss); margin-top: .3rem; }

/* ---------------- parallax statement band ---------------- */

.tf-parallax {
	position: relative; overflow: hidden; isolation: isolate;
	min-height: clamp(360px, 52vh, 540px);
	display: grid; align-items: center;
}
/* The media sits taller than the frame so it has room to drift. */
.tf-parallax-media { position: absolute; left: 0; right: 0; top: -14%; height: 128%; z-index: 0; will-change: transform; }
.tf-parallax-media img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.tf-parallax::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(95deg, rgba(36, 48, 48, .96) 0%, rgba(36, 48, 48, .88) 38%, rgba(36, 48, 48, .5) 100%);
}
.tf-parallax-copy { position: relative; z-index: 2; padding-block: clamp(3rem, 6vw, 5rem); }
.tf-parallax-copy blockquote { margin: 0; }
/* Cap the PARAGRAPH, not the blockquote: a ch cap on the blockquote resolves
   in the parent's 17px body font and squeezes display type to two words. */
.tf-parallax-copy blockquote p {
	font-family: var(--serif); font-weight: 400;
	font-size: clamp(1.5rem, 3.2vw, 2.5rem); line-height: 1.22;
	color: var(--paper); margin: 0; max-width: 22ch;
}
.tf-statement-by { color: var(--gold); font-size: .9rem; margin: 1.3rem 0 0; letter-spacing: .05em; }

/* ---------------- copy and story ---------------- */

.tf-copy { background: var(--white); }
.tf-copy-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4.5vw, 3.5rem); align-items: start; }
.tf-copy-solo { grid-template-columns: 1fr; max-width: 68ch; }
.tf-copy-media { margin: 0 !important; }
.tf-copy-media img { width: 100% !important; border-radius: var(--radius); display: block; }

.tf-story-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4.5vw, 3.5rem); align-items: center; }
.tf-story-media { margin: 0 !important; }
.tf-story-media img { width: 100% !important; border-radius: var(--radius); display: block; }

/* ---------------- projects ---------------- */

.tf-projects { background: var(--paper-2); }
.tf-proj-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.tf-site .tf-proj-card {
	display: grid; height: 100%; background: var(--white);
	border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.tf-site .tf-proj-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.tf-proj-img { display: block; overflow: hidden; }
.tf-proj-img img { width: 100% !important; height: 240px !important; object-fit: cover; display: block; transition: transform .5s ease; }
.tf-site .tf-proj-card:hover .tf-proj-img img { transform: scale(1.04); }
.tf-proj-body { padding: 1.4rem; display: grid; gap: .45rem; align-content: start; }
.tf-proj-meta { display: flex; flex-wrap: wrap; gap: .3rem 1rem; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.tf-proj-meta span { display: inline-flex; align-items: center; gap: .3rem; }
.tf-proj-title { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--green); line-height: 1.26; }
.tf-proj-go { display: inline-flex; align-items: center; gap: .4rem; color: var(--moss); font-weight: 600; font-size: .9rem; }

.tf-proj-in { display: grid; grid-template-columns: 1.45fr .55fr; gap: clamp(2rem, 4.5vw, 3.5rem); align-items: start; }
.tf-proj-text { max-width: 68ch; }
.tf-proj-facts { background: var(--green); color: var(--paper); padding: 1.6rem; border-radius: var(--radius); }
.tf-proj-facts h2 { color: var(--paper); font-size: 1.18rem; }
.tf-proj-facts h2::after { content: none; }
.tf-proj-facts dl { margin: 0 0 1.2rem; display: grid; gap: .8rem; }
.tf-proj-facts dt { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.tf-proj-facts dd { margin: 0; color: var(--paper); font-weight: 600; }
.tf-proj-quote { margin: 0 0 1.2rem !important; border-left: 2px solid var(--gold); padding-left: 1rem; }
.tf-proj-quote blockquote { margin: 0; font-style: italic; }
.tf-proj-quote figcaption { font-size: .85rem; color: var(--muted-dark); }
.tf .tf-link-light { color: var(--paper); border-bottom-color: var(--gold); }
.tf .tf-link-light:hover { color: var(--gold); }

/* ---------------- gallery ---------------- */

.tf-gal-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.tf-site .tf-chip {
	border: 1px solid var(--line); background: var(--white); color: var(--green);
	padding: .48rem 1.05rem; border-radius: 999px; cursor: pointer;
	font: 600 .88rem/1.2 var(--sans);
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.tf-site .tf-chip:hover { border-color: var(--green); background: var(--white); color: var(--green); }
.tf-site .tf-chip.is-on { background: var(--green); color: var(--paper); border-color: var(--green); }
.tf-gal-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.tf-site .tf-gal-open { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; overflow: hidden; border-radius: var(--radius); }
.tf-gal-open img { width: 100% !important; height: 215px !important; object-fit: cover; display: block; transition: transform .5s ease; }
.tf-site .tf-gal-open:hover img { transform: scale(1.05); }

.tf-lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(26, 34, 32, .95); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding: 1.5rem; }
.tf-lightbox[hidden] { display: none; }
.tf-lb-fig { margin: 0 !important; display: grid; gap: .8rem; justify-items: center; }
.tf-lb-fig img { max-width: 100%; max-height: 78vh; width: auto !important; height: auto !important; border-radius: var(--radius); }
.tf-lb-fig figcaption { color: var(--paper); text-align: center; display: grid; gap: .4rem; font-size: .94rem; }
.tf-site .tf-lb-close, .tf-site .tf-lb-prev, .tf-site .tf-lb-next {
	background: rgba(244, 241, 233, .12); border: 0; color: var(--paper);
	width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 1.6rem; line-height: 1;
}
.tf-lb-close { position: absolute; top: 1.2rem; right: 1.2rem; font-size: 1.3rem; }
.tf-site .tf-lb-close:hover, .tf-site .tf-lb-prev:hover, .tf-site .tf-lb-next:hover { background: var(--gold); color: var(--green); }

/* ---------------- credentials and the waste panel ---------------- */

.tf-creds { background: var(--white); }
.tf-cred-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.tf-cred { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.45rem; display: grid; gap: .45rem; align-content: start; }
.tf-cred-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold-soft); color: var(--green); margin-bottom: .3rem; }
.tf-cred-ico .tf-ico { width: 21px; height: 21px; }
.tf-cred h3 { margin: 0; }
.tf-cred p { margin: 0; font-size: .93rem; color: var(--muted); }

.tf-sec-waste { background: var(--paper-2); }
.tf-waste-wrap { display: grid; gap: 1.8rem; }
.tf-waste { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); display: grid; gap: 1.2rem; }
.tf-waste-head { display: flex; gap: 1rem; align-items: flex-start; }
.tf-waste-head > .tf-ico { width: 28px; height: 28px; color: var(--moss); flex: none; margin-top: .1rem; }
.tf-waste-h { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--green); margin: 0 0 .3rem; }
.tf-waste-sub { margin: 0; color: var(--muted); font-size: .95rem; }
.tf-waste-facts { display: grid; gap: 1px; margin: 0; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.tf-waste-facts > div { background: var(--paper); padding: .85rem 1rem; }
.tf-waste-facts dt { font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.tf-waste-facts dd { margin: 0; font-weight: 600; color: var(--green); font-size: 1rem; }
.tf-waste-check { margin: 0; display: grid; gap: .3rem; justify-items: start; }
.tf-waste-note { font-size: .87rem; color: var(--muted); }
.tf-waste-compact { padding: 1.2rem; }
.tf-waste-compact .tf-waste-sub { display: none; }

/* ---------------- how a job runs ---------------- */

.tf-steps { background: var(--paper); }
.tf-steps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); }
.tf-steps-list li { border-top: 2px solid var(--gold); padding-top: 1rem; }
.tf-step-n { font-family: var(--serif); font-size: 2rem; color: var(--moss); line-height: 1; display: block; margin-bottom: .35rem; }
.tf-steps-list h3 { margin: 0 0 .35rem; }
.tf-steps-list p { margin: 0; font-size: .93rem; color: var(--muted); }

/* ---------------- reviews ---------------- */

.tf-reviews { background: var(--white); }
.tf-review-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.tf-review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: grid; gap: .55rem; align-content: start; }
.tf-stars { display: inline-flex; color: var(--gold); }
.tf-stars .tf-ico { width: 1rem; height: 1rem; }
.tf-review blockquote { margin: 0; }
.tf-review blockquote p { margin: 0; color: var(--ink); }
.tf-review-by { margin: 0; font-weight: 600; color: var(--green); font-size: .9rem; }
.tf-review-sample { opacity: .8; border-style: dashed; }
.tf-sample-flag { margin: 0; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: #a3341f; font-weight: 700; }

/* ---------------- areas ---------------- */

.tf-areas { background: var(--green); color: var(--paper); overflow: hidden; }
.tf-areas h2 { color: var(--paper); }
.tf-areas .tf-sec-head p { color: var(--muted-dark); }
.tf-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.tf-marquee { margin: clamp(1.4rem, 3vw, 2.4rem) 0 clamp(1.6rem, 3vw, 2.4rem); }
.tf-mq-row { overflow: hidden; }
.tf-mq-row + .tf-mq-row { margin-top: .4rem; }
.tf-mq-track { display: flex; width: max-content; animation: tf-mq 46s linear infinite; }
.tf-mq-rev .tf-mq-track { animation-duration: 62s; animation-direction: reverse; }
@keyframes tf-mq { to { transform: translateX(-50%); } }
.tf-marquee:hover .tf-mq-track, .tf-marquee:focus-within .tf-mq-track { animation-play-state: paused; }
.tf-mq-item {
	display: inline-flex; align-items: center; gap: 1.5rem; padding-right: 1.5rem;
	font-family: var(--serif); font-weight: 500;
	font-size: clamp(1.5rem, 3.2vw, 2.5rem); color: var(--paper); white-space: nowrap;
}
.tf-mq-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; flex: none; }
/* Second row reads as outline, so the two runs never look like one list. */
.tf-mq-rev .tf-mq-item { color: var(--moss-2); }
@supports (-webkit-text-stroke: 1px red) {
	.tf-mq-rev .tf-mq-item { color: transparent; -webkit-text-stroke: 1px var(--moss-2); }
}
.tf-areas .tf-btn-line { color: var(--paper); border-color: var(--line-dark); }
.tf-areas .tf-btn-line:hover { background: rgba(244, 241, 233, .1); border-color: var(--paper); color: var(--paper); }

/* ---------------- cta ---------------- */

.tf-cta { background: var(--paper-2); border-top: 1px solid var(--line); }
.tf-cta-in { display: grid; grid-template-columns: 1.25fr .75fr; gap: 2rem; align-items: center; }
.tf-cta p { margin: 0; color: var(--muted); }
.tf-cta .tf-actions { margin: 0; justify-content: flex-end; }

/* ---------------- form ---------------- */

.tf-form-in { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4.5vw, 3.5rem); align-items: start; }
.tf-form-points { list-style: none; margin: 1.1rem 0 1.6rem; padding: 0; display: grid; gap: .5rem; }
.tf-form-points li { display: flex; gap: .6rem; align-items: center; }
.tf-form-points .tf-ico { color: var(--moss); }
.tf-form-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); }
.tf-field { display: grid; gap: .3rem; margin: 0 0 1rem; }
.tf-field label { font-weight: 600; color: var(--green); font-size: .9rem; }
.tf-field input, .tf-field select, .tf-field textarea {
	width: 100%; padding: .78rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
	font: 400 1rem/1.5 var(--sans); color: var(--ink); background: var(--paper);
}
.tf-field input:focus, .tf-field select:focus, .tf-field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); background: var(--white); }
.tf-submit { margin-top: 1.4rem; }
.tf-form-small { font-size: .82rem; color: var(--muted); margin: .9rem 0 0; }
.tf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tf-note { border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 1.4rem; }
.tf-note p { margin: 0; }
.tf-note-ok { background: #edf4ec; border: 1px solid #b9d5b6; }
.tf-note-bad { background: #fbecea; border: 1px solid #efb9b2; }
.tf-site .tf-form-copy a { color: var(--green); border-bottom: 1px solid var(--gold); }

/* ---------------- dock, back to top, footer ---------------- */

.tf-dock { position: fixed; inset: auto 0 0 0; z-index: 88; display: none; gap: 1px; background: var(--line); transform: translateY(100%); transition: transform .3s ease; }
.tf-dock.is-on { transform: none; }
.tf-site .tf-dock a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem .5rem; font-weight: 600; font-size: .95rem; }
.tf-site .tf-dock-call { background: var(--gold); color: var(--green); }
.tf-site .tf-dock-quote { background: var(--green); color: var(--paper); }

.tf-top-wrap { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 87; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.tf-top-wrap.is-on { opacity: 1; pointer-events: auto; }
.tf-site .tf-top { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--paper); border: 0; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); }
.tf-site .tf-top:hover { background: var(--gold); color: var(--green); }

.tf-foot { background: var(--green); color: var(--muted-dark); padding-block: clamp(3rem, 5.5vw, 4.5rem) 1.5rem; font-size: .94rem; }
.tf-foot-top { display: grid; grid-template-columns: .85fr 2fr; gap: clamp(2rem, 4vw, 3.5rem); }
.tf-foot-mark { margin-bottom: 1.1rem; }
/* Stand-in until Rob supplies reversed artwork: his two greens knocked out to
   solid white. Replace with a real reversed file when one exists. */
.tf-logo-rev { height: 52px !important; width: auto !important; display: block; filter: brightness(0) invert(1); opacity: .92; }
.tf-foot-name { font-family: var(--serif); font-size: 2.1rem; color: var(--paper); margin: 0; line-height: 1; }
.tf-foot-sub { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: .4rem 0 1rem; }
.tf-foot-blurb { color: var(--muted-dark); }
.tf-foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tf-foot-h { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 .85rem; }
.tf-foot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.tf-site .tf-foot-list a, .tf-foot-plain { display: flex; align-items: center; gap: .5rem; color: var(--paper); }
.tf-site .tf-foot-list a:hover { color: var(--gold); }
.tf-foot-list .tf-ico { color: var(--gold); flex: none; }
.tf-foot-plain { color: var(--muted-dark); }
.tf-foot-social { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; gap: 1rem; }
.tf-site .tf-foot-social a { color: var(--paper); display: inline-flex; align-items: center; gap: .3rem; font-size: .9rem; }
.tf-foot-areas { border-top: 1px solid var(--line-dark); margin-top: 2.5rem; padding-top: 1.4rem; font-size: .85rem; color: var(--muted-dark); }
.tf-foot-areas span { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.tf-foot-small { display: flex; flex-wrap: wrap; gap: .5rem 2rem; border-top: 1px solid var(--line-dark); margin-top: 1.4rem; padding-top: 1.3rem; font-size: .83rem; }
.tf-foot-small p { margin: 0; }
.tf-site .tf-foot-small a { color: var(--paper); }

/* ---------------- arrival ---------------- */

.tf-rise { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.3,1); }
.tf-rise.is-in { opacity: 1; transform: none; }

/* ---------------- narrower ---------------- */

@media (max-width: 1080px) {
	.tf-serv-split, .tf-story-in { grid-template-columns: 1fr; }
	.tf-foot-top { grid-template-columns: 1fr; }
	.tf-foot-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
	.tf-nav, .tf-head-call, .tf-strip-hours { display: none; }
	.tf-burger { display: inline-flex; }
	.tf-dock { display: flex; }
	.tf-top-wrap { bottom: 4.6rem; }
	.tf-hero, .tf-phero { grid-template-columns: 1fr; }
	.tf-hero-copy, .tf-phero-copy { padding-inline: 1.25rem; }
	.tf-hero-media img, .tf-phero-media img { height: 300px !important; min-height: 0; }
	.tf-copy-in, .tf-proj-in, .tf-form-in, .tf-cta-in { grid-template-columns: 1fr; }
	.tf-cta .tf-actions { justify-content: flex-start; }
	.tf-foot { padding-bottom: 5rem; }
	.tf-foot-cols { grid-template-columns: 1fr 1fr; }
	.tf-strip-in { justify-content: space-between; gap: .8rem; }
	.tf-site .tf-strip-rating { margin-left: 0; }
}

@media (max-width: 620px) {
	.tf-site { font-size: 16px; }
	.tf-foot-cols { grid-template-columns: 1fr; }
	.tf-gal-grid { grid-template-columns: repeat(2, 1fr); gap: .45rem; }
	.tf-gal-open img { height: 145px !important; }
	.tf-actions .tf-btn { flex: 1; justify-content: center; }
	.tf-lightbox { grid-template-columns: 1fr; padding: 1rem; }
	.tf-lb-prev, .tf-lb-next { position: absolute; bottom: 1.2rem; }
	.tf-lb-prev { left: 1.2rem; }
	.tf-lb-next { right: 1.2rem; }
	.tf-site .tf-serv-list a { grid-template-columns: auto 1fr; }
	.tf-mq-item { gap: 1rem; padding-right: 1rem; }
	.tf-serv-list a > .tf-ico { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.tf *, .tf *::before, .tf *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
	.tf-rise { opacity: 1; transform: none; }
	.tf-mq-track { animation: none; flex-wrap: wrap; width: auto; }
	.tf-parallax-media { transform: none !important; }
}
