/**
 * 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. BASE ELEMENT RESETS are written `.tf :where(p)` — 0,1,0. That is a narrow
 *    band and both edges matter. Written `.tf p` (0,1,1) they outrank
 *    single-class components and break their margins (this bunched the header).
 *    Written `:where(.tf) :where(p)` (0,0,0) they lose to HELLO's own element
 *    rules and the headings fall back to Hello's sans (this killed the hero
 *    serif). 0,1,0 beats Hello, ties with components, source order decides.
 * 8. 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
 */

/* Self-hosted, so no request leaves for Google and no visitor IP goes with it.
   Both are variable fonts: one file per family covers every weight we use.
   Fraunces carries its optical-size axis, which font-optical-sizing drives.
   SIL Open Font Licence; the licences sit beside the files. */
@font-face {
	font-family: "Fraunces";
	src: url("fonts/fraunces-var.woff2") format("woff2-variations"), url("fonts/fraunces-var.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter Tight";
	src: url("fonts/inter-tight-var.woff2") format("woff2-variations"), url("fonts/inter-tight-var.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

.tf-site {
	/* Taken from the vector artwork, not sampled off a low-res PNG. */
	--green: #21302b;
	--green-2: #2b3e37;
	--moss: #417c3c;      /* brand green: marks, rules, backgrounds */
	--moss-ink: #3a6e35;  /* darkened for small text — the brand green is
	                         4.46:1 on paper, a whisker under AA */
	--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 Tight", "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;
}

/* No sideways pan, ever. The drawer is position:fixed so it sizes to the
   VIEWPORT; if the document is even a pixel wider, swiping sideways slides the
   page out from under it and you see the dark sections past its edge. `clip`
   rather than `hidden` because clip does not create a scroll container, so the
   sticky header still sticks. */
html, .tf-site { overflow-x: clip; }

.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 :where(h1, h2, 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 :where(h1) { font-size: clamp(2rem, 4.6vw, 3.3rem); }
.tf :where(h2) { font-size: clamp(1.6rem, 3.1vw, 2.4rem); }
.tf :where(h3) { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
.tf :where(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-ink); 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: three tiers, the mark in the middle ---------------- */

.tf-head { position: sticky; top: 0; z-index: 90; background: var(--paper); transition: box-shadow .2s ease; }
.tf-head.is-stuck { box-shadow: 0 10px 30px -24px rgba(36, 48, 48, .85); }

/* A grid, not auto margins: the centre column holds the mark whatever the
   sides are doing, and nothing can be pushed out of place by a reset. */
.tf-head-brand-in {
	display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
	gap: 1.5rem; min-height: 116px;
	transition: min-height .25s ease;
}
.tf-head-side { display: flex; align-items: center; gap: .9rem; }
.tf-head-right { justify-content: flex-end; }

.tf-logo { display: flex; align-items: center; justify-content: center; }
.tf-logo-mark { display: none; }
.tf-mark-img { height: 48px !important; width: auto !important; display: block; transition: height .25s ease; }
.tf-logo-img { height: 80px !important; width: auto !important; display: block; transition: height .25s ease; }
.tf-wordmark { display: grid; text-align: center; line-height: 1.05; }
.tf-wordmark-a { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--green); }
.tf-wordmark-b { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--moss); }

.tf-head-claim-p {
	margin: 0; padding-left: .9rem; border-left: 1px solid var(--line);
	font-size: .82rem; color: var(--muted); max-width: 22ch; line-height: 1.35;
}
.tf-head-social { display: flex; gap: .35rem; }
.tf-site .tf-head-social a {
	display: grid; place-items: center; width: 38px; height: 38px;
	border: 1px solid var(--line); border-radius: 50%; color: var(--green);
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.tf-site .tf-head-social a:hover { background: var(--green); color: var(--paper); border-color: var(--green); }
.tf .tf-head-call { padding: .74rem 1.15rem; font-size: .95rem; }

/* condensed once you start reading */
.tf-head.is-stuck .tf-head-brand-in { min-height: 74px; }
.tf-head.is-stuck .tf-logo-img { height: 50px !important; }
.tf-head.is-stuck .tf-head-claim-p { display: none; }
.tf-head.is-stuck .tf-nav a { padding: .6rem 0 .7rem; }

/* tier three */
.tf-head-nav { position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.tf-head-nav-in { display: flex; justify-content: center; }
.tf-nav ul { display: flex; gap: 1.9rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; }
.tf-site .tf-nav a {
	position: relative; display: block;
	font-family: var(--serif); font-size: 1.06rem; font-weight: 600; letter-spacing: -.005em;
	color: var(--green);
	padding: .85rem 0 .95rem;
	transition: color .18s ease, padding .25s ease;
}
.tf-site .tf-nav a:hover { color: var(--moss); }
/* the underline is a fence panel: a rail with a post at each end */
.tf-nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: .42rem; 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); }

/* the preview that drops under the nav */
.tf-drop { position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 22px 40px -32px rgba(36, 48, 48, .8); z-index: 5; }
.tf-drop[hidden] { display: none; }
.tf-drop-panel { display: none; }
.tf-drop-panel.is-on { display: block; }
.tf-drop-in { display: grid; grid-template-columns: 300px 1fr; gap: 1.8rem; align-items: center; padding: 1.4rem 0; }
.tf-drop-media { margin: 0 !important; }
.tf-drop-media img { width: 100% !important; height: 160px !important; object-fit: cover; display: block; border-radius: var(--radius); }
.tf-drop-copy h3 { margin: 0 0 .3rem; }
.tf-drop-p { margin: 0 0 .7rem; color: var(--muted); max-width: 52ch; }

.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 .42s cubic-bezier(.16,.84,.34,1), opacity .28s 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; grid-template-rows: 1fr auto;
	/* Closing: the panel lifts away faster than it arrived. */
	clip-path: inset(0 0 100% 0);
	visibility: hidden;
	transition: clip-path .46s cubic-bezier(.6, 0, .35, 1), visibility 0s linear .46s;
}
[data-tf-menu="open"] .tf-drawer {
	clip-path: inset(0 0 0 0);
	visibility: visible;
	/* Opening: slower, and eased so it settles rather than stops. */
	transition: clip-path .82s cubic-bezier(.16, .84, .34, 1), visibility 0s;
}
.tf-drawer-in, .tf-drawer-dock { opacity: 0; transform: translateY(12px); transition: opacity .26s ease, transform .26s ease; }
[data-tf-menu="open"] .tf-drawer-in,
[data-tf-menu="open"] .tf-drawer-dock { opacity: 1; transform: none; transition: opacity .52s ease .18s, transform .66s cubic-bezier(.16,.84,.34,1) .18s; }
.tf-drawer-in {
	width: min(100% - 3rem, 520px); margin-inline: auto;
	padding: calc(var(--tf-head-h, 8.5rem) + .9rem) 0 1.2rem;
	align-self: stretch; min-height: 0;
	overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
	scroll-padding-top: calc(var(--tf-head-h, 8.5rem) + 1.1rem);
}
.tf-drawer:focus { outline: none; }
.tf-site .tf-drawer-rating {
	display: inline-flex; align-items: center; gap: .55rem;
	color: var(--paper); font-size: .88rem; margin-bottom: 1.1rem;
}
.tf-drawer-rating strong { color: var(--paper); }
.tf-drawer-rating .tf-stars { color: var(--gold); }
.tf-drawer-h {
	font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
	color: var(--gold); margin: 0 0 .7rem;
}
.tf-drawer-tiles { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.tf-drawer-pills { list-style: none; margin: 0 0 1.1rem; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.tf-drawer-tiles li, .tf-drawer-pills li {
	opacity: 0; transform: translateY(12px);
	transition: opacity .22s ease, transform .22s ease;
}
[data-tf-menu="open"] .tf-drawer-tiles li,
[data-tf-menu="open"] .tf-drawer-pills li {
	opacity: 1; transform: none;
	transition: opacity .5s ease, transform .6s cubic-bezier(.16, .84, .34, 1);
	transition-delay: calc(var(--i) * 56ms + 240ms);
}
.tf-site .tf-drawer-tiles a {
	display: grid; gap: .05rem; padding: .7rem .8rem; height: 100%;
	border: 1px solid var(--line-dark); border-radius: var(--radius); color: var(--paper);
	transition: border-color .18s ease, background-color .18s ease;
}
.tf-site .tf-drawer-tiles a:hover { border-color: var(--gold); background: rgba(200, 138, 61, .1); }
.tf-drawer-n { font-family: var(--serif); font-size: .78rem; color: var(--gold); }
.tf-drawer-t { font-family: var(--serif); font-size: 1.02rem; font-weight: 600; line-height: 1.2; }
.tf-site .tf-drawer-tiles a[aria-current="page"] { border-color: var(--gold); }
.tf-site .tf-drawer-tiles a[aria-current="page"] .tf-drawer-t { color: var(--gold); }
.tf-site .tf-drawer-pills a {
	display: block; padding: .45rem .9rem; border: 1px solid var(--line-dark);
	border-radius: 999px; font-size: .92rem; color: var(--paper);
	transition: border-color .18s ease, color .18s ease;
}
.tf-site .tf-drawer-pills a:hover { border-color: var(--gold); color: var(--gold); }
.tf-site .tf-drawer-pills a[aria-current="page"] { border-color: var(--gold); color: var(--gold); }
.tf-drawer-foot {
	display: grid; gap: .7rem; justify-items: start;
	border-top: 1px solid var(--line-dark); padding-top: 1.2rem; margin-top: .3rem;
}
.tf-drawer-row { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1rem; }
.tf-drawer-label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0; }
/* Sans, not serif, and sized to clear 40 characters on one line at 390px. */
.tf-site .tf-drawer-mail {
	font-size: .92rem; font-weight: 500; color: var(--paper); max-width: 100%;
	border-bottom: 1px solid rgba(200, 138, 61, .55); padding-bottom: 2px;
	overflow-wrap: break-word;
}
.tf-site .tf-drawer-mail:hover { border-bottom-color: var(--gold); color: var(--gold); }

.tf-site .tf-drawer .tf-head-social a { border-color: var(--line-dark); color: var(--paper); }
.tf-site .tf-drawer .tf-head-social a:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
/* The mark, not the full logo: symmetrical, so it needs no optical nudge, and
   it balances the block by weight rather than by being centred under it. */
.tf-drawer-mark { display: block; opacity: .9; }
.tf-drawer-mark .tf-mark-img { height: 60px !important; width: auto !important; }

/* The drawer ends with the same two boxes as the dock elsewhere. */
.tf-drawer-dock { display: flex; gap: 1px; background: var(--line-dark); padding-bottom: env(safe-area-inset-bottom, 0px); }
.tf-site .tf-drawer-dock a {
	flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
	padding: 1.05rem .5rem; font-weight: 600; font-size: .96rem;
}
.tf-site .tf-drawer-dock .tf-dock-call { background: var(--gold); color: var(--green); }
.tf-site .tf-drawer-dock .tf-dock-quote { background: var(--paper); color: var(--green); }

/* ---------------- 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-ink); 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: -30%; height: 160%; 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-ink); 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: figures, then a ledger ---------------- */

.tf-creds { background: var(--white); }
.tf-figs {
	list-style: none; margin: 0 0 clamp(2rem, 4vw, 3.2rem); padding: 0 0 clamp(1.6rem, 3vw, 2.4rem);
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
	border-bottom: 1px solid var(--line);
}
.tf-figs li { display: grid; align-content: start; gap: .2rem; }
.tf-site .tf-figs a { display: grid; gap: .2rem; color: inherit; }
.tf-fig {
	font-family: var(--serif); font-weight: 600; color: var(--gold);
	font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; letter-spacing: -.02em;
	font-variant-numeric: tabular-nums;
}
.tf-fig-l { color: var(--muted); font-size: .95rem; max-width: 22ch; }
.tf-site .tf-figs a:hover .tf-fig { color: var(--green); }

.tf-reasons { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.tf-reasons li {
	border-top: 1px solid var(--line);
	transition: background-color .2s ease, padding-left .25s ease;
}
.tf-reasons li:last-child { border-bottom: 1px solid var(--line); }
.tf-reasons li:hover { background: var(--paper); padding-left: .7rem; }
.tf-reasons summary {
	display: grid; grid-template-columns: 2.6rem 1fr auto; gap: .9rem; align-items: baseline;
	padding: clamp(1rem, 2vw, 1.5rem) .6rem; cursor: pointer; list-style: none;
}
.tf-reasons summary::-webkit-details-marker { display: none; }
.tf-reasons summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }
.tf-reason-n {
	font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--gold);
	font-variant-numeric: tabular-nums;
}
.tf-reasons summary h3 { margin: 0; font-size: clamp(1.1rem, 2vw, 1.5rem); }
.tf-reason-chev { width: 11px; height: 11px; border-right: 2px solid var(--moss); border-bottom: 2px solid var(--moss); transform: rotate(45deg) translateY(-2px); transition: transform .25s ease; align-self: center; }
.tf-reasons details[open] .tf-reason-chev { transform: rotate(-135deg) translateY(-2px); }
.tf-reason-body { padding: 0 .6rem clamp(1rem, 2vw, 1.5rem) calc(2.6rem + .9rem); }
.tf-reason-body p { margin: 0; color: var(--muted); max-width: 72ch; }
/* Desktop: every reason open, nothing to click, no chevron. */
.tf-reasons.is-open summary { cursor: default; }
.tf-reasons.is-open .tf-reason-chev { display: none; }
.tf-reasons.is-open summary { grid-template-columns: 2.6rem 1fr; }
.tf-proof {
	display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem;
	font-size: .84rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	color: var(--green); border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}
.tf-proof-flat { border-bottom-color: transparent; color: var(--moss-ink); }
.tf-proof-flat .tf-ico { color: var(--moss); }
.tf-site a.tf-proof:hover { color: var(--moss); }

.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 ----------------
   Four panels butted together, tinted light to dark so the colour itself
   carries the job from first visit to final sweep-up. On desktop they land one
   after another with the rail stepping on each time. On a phone the fence lies
   on its side and fills with scroll, which is what Kit approved. */

.tf-steps { background: var(--white); }
.tf-fence { position: relative; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-radius: var(--radius); overflow: hidden; }
.tf-fence-rail { position: absolute; left: 0; right: 0; top: 38px; height: 3px; background: rgba(36, 48, 48, .16); z-index: 2; }
.tf-fence-fill { display: block; height: 100%; width: calc(var(--p, 0) * 100%); background: var(--gold); transition: width .85s cubic-bezier(.33, .8, .45, 1); }

.tf-bay { position: relative; padding: 68px 1.5rem 1.8rem; min-height: 100%; }
.tf-bay:nth-child(2) { background: #f4f1e9; }
.tf-bay:nth-child(3) { background: #e8e1d3; }
.tf-bay:nth-child(4) { background: #d9e0d5; }
.tf-bay:nth-child(5) { background: var(--green); }
.tf-bay:nth-child(5) h3 { color: var(--paper); }
.tf-bay:nth-child(5) p { color: var(--muted-dark); }
.tf-bay:nth-child(5) .tf-bay-when { color: var(--gold); }

.tf-bay-post { position: absolute; top: 16px; left: 1.5rem; width: 3px; height: 46px; background: rgba(36, 48, 48, .2); z-index: 3; transition: background-color .35s ease; }
.tf-bay:nth-child(5) .tf-bay-post { background: rgba(244, 241, 233, .25); }
.tf-bay-cap { position: absolute; top: 16px; left: -5px; width: 13px; height: 13px; background: rgba(36, 48, 48, .2); border-radius: 2px; transform: rotate(45deg); transition: background-color .6s ease; }
.tf-bay.is-done .tf-bay-post, .tf-bay.is-done .tf-bay-cap { background: var(--gold); }

.tf-bay-when { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moss-ink); margin-bottom: .4rem; }
.tf-bay h3 { margin: 0 0 .45rem; display: flex; align-items: baseline; gap: .55rem; font-size: 1.18rem; }
.tf-bay-n { font-size: .8rem; color: var(--gold); font-weight: 600; font-variant-numeric: tabular-nums; }
.tf-bay p { margin: 0; font-size: .94rem; color: var(--muted); }

/* Sequenced arrival. The class is added by site.js, so without JavaScript all
   four panels are simply there. */
.tf-fence.is-seq .tf-bay { opacity: 0; transform: translateY(10px); }
.tf-fence.is-seq .tf-bay.is-in {
	opacity: 1; transform: none;
	transition: opacity .8s ease, transform .8s cubic-bezier(.33, .8, .45, 1);
}

/* ---------------- 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); position: relative; overflow: hidden; }
/* The mark, very large and very quiet, so the flattest panel on the site has
   some texture without anything extra to read. */
.tf-areas-mark { position: absolute; right: -3%; bottom: -14%; width: clamp(240px, 32vw, 440px); opacity: .055; pointer-events: none; }
.tf-areas-mark .tf-mark-img { height: auto !important; width: 100% !important; }
.tf-areas > .tf-wrap { position: relative; z-index: 1; }
.tf-areas h2 { color: var(--paper); }
.tf-areas p { color: var(--muted-dark); }
.tf-areas-in { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: start; }
.tf-areas-head h2::after { background: var(--gold); }
.tf-areas-head .tf-more { margin-top: 1.6rem; }
.tf-areas-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.tf-area-h { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 0 0 .7rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line-dark); }
.tf-area-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.tf-area-group li { color: var(--paper); font-size: 1.02rem; }
.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); }
.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; }

/* ---------------- cta ----------------
   A photograph under a deep green wash. Centred, where the statement band is
   left-aligned, so the two read as different things. */

.tf-cta { background: var(--green); color: var(--paper); }
.tf-cta-photo { position: relative; overflow: hidden; isolation: isolate; }
.tf-cta-media { position: absolute; inset: 0; z-index: 0; }
.tf-cta-media img { width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.tf-cta-photo::after {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(180deg, rgba(36, 48, 48, .46) 0%, rgba(36, 48, 48, .66) 100%),
		radial-gradient(125% 95% at 50% 42%, rgba(36, 48, 48, .12), rgba(36, 48, 48, .68) 100%);
}
.tf-cta-in { position: relative; z-index: 2; text-align: center; max-width: 60ch; }
.tf-cta h2 { color: var(--paper); }
.tf-cta h2::after { margin-inline: auto; }
.tf-cta .tf-cta-p { margin: 0 auto; color: rgba(244, 241, 233, .88); max-width: 52ch; }
.tf-cta .tf-actions { margin: 1.8rem auto 0; max-width: none; justify-content: center; }
.tf-cta .tf-btn-line { color: var(--paper); border-color: rgba(244, 241, 233, .45); }
.tf-cta .tf-btn-line:hover { background: rgba(244, 241, 233, .12); border-color: var(--paper); color: var(--paper); }

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

.tf-form-in { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4.5vw, 3.5rem); align-items: start; }
.tf-form-copy { grid-column: 1; grid-row: 1; }
.tf-form-aside { grid-column: 1; grid-row: 2; }
.tf-form-box { grid-column: 2; grid-row: 1 / span 2; }
.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); padding-bottom: env(safe-area-inset-bottom, 0px); transform: translateY(110%); 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: flex; align-items: center; justify-content: center;
	padding: 0; line-height: 0; box-shadow: var(--shadow);
}
/* .tf-ico carries vertical-align: -.2em for inline use, which pushes it off
   centre inside a flex button. Neutralised here. */
.tf-site .tf-top .tf-ico { width: 20px; height: 20px; vertical-align: 0; display: block; }
.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: .72fr 1.55fr; gap: clamp(2rem, 4vw, 4rem); }
.tf-foot-mark { margin-bottom: 1.3rem; }
.tf-logo-rev { height: 66px !important; width: auto !important; display: block; }
.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); margin: 0; max-width: 26ch; }
/* Its own line on desktop, where it reads as a separate point. */
.tf-foot-since { display: block; margin-top: .5em; }
.tf-foot-cred .tf-foot-list { gap: .6rem; }
.tf-foot-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.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: 1.1rem 0 0; padding: 0; display: flex; gap: .5rem; }
.tf-site .tf-foot-social a {
	display: grid; place-items: center; width: 40px; height: 40px;
	border: 1px solid var(--line-dark); border-radius: 50%; color: var(--paper);
	transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.tf-site .tf-foot-social a:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }
.tf-foot-social .tf-ico { width: 18px; height: 18px; vertical-align: 0; }
.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-areas-in { grid-template-columns: 1fr; }
	.tf-head-claim { display: none; }
	.tf-foot-top { grid-template-columns: 1fr; }
	.tf-foot-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.tf-strip, .tf-head-nav, .tf-head-claim-p { display: none; }
	.tf-head-brand-in .tf-head-social { display: none; }
	/* Footer, condensed. On a phone the page links duplicate the menu, the
	   wordmark duplicates the mark above it, and the town list is a wall. */
	.tf-foot-cred, .tf-foot-name, .tf-foot-sub, .tf-foot-areas { display: none; }
	.tf-foot { padding-block: 2.2rem 4.8rem; }
	.tf-foot-top { gap: 1.6rem; }
	.tf-foot-cols { grid-template-columns: 1fr; gap: 1.4rem; }
	/* Mark and socials share a row, so the text keeps full width and the
	   block loses a whole tier of depth. */
	.tf-foot-brand {
		display: grid; grid-template-columns: auto 1fr;
		grid-template-areas: "mark social" "blurb blurb";
		align-items: center; column-gap: 1rem;
	}
	.tf-foot-mark { grid-area: mark; margin: 0; }
	.tf-foot-social { grid-area: social; justify-self: end; margin: 0; }
	.tf-foot-blurb { grid-area: blurb; margin: .9rem 0 0; max-width: none; }
	/* On a phone it flows on as a sentence rather than costing a whole line. */
	.tf-foot-since { display: inline; margin: 0; }
	.tf-logo-rev { height: 58px !important; }
	.tf-site .tf-foot-social a { width: 36px; height: 36px; }
	.tf-foot-small { margin-top: 1.4rem; padding-top: 1rem; gap: .3rem 1.2rem; }
	.tf-burger { display: inline-flex; }
	.tf-head-brand-in { min-height: 72px; gap: .8rem; }
	/* Full logo here, the T alone in the drawer — the mark is not repeated. */
	.tf-logo-img { height: 52px !important; }
	.tf-head.is-stuck .tf-logo-img { height: 42px !important; }
	.tf .tf-head-call { padding: .6rem .8rem; font-size: .88rem; }
	.tf-areas-in { grid-template-columns: 1fr; }
	.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 { grid-template-columns: 1fr; }
	/* three figures side by side rather than stacked */
	.tf-figs { grid-template-columns: repeat(3, 1fr); gap: .8rem; padding-bottom: 1.4rem; margin-bottom: 1.4rem; }
	.tf-fig { font-size: clamp(1.8rem, 9vw, 2.4rem); }
	.tf-fig-l { font-size: .78rem; line-height: 1.3; }
	.tf-reasons summary { grid-template-columns: 2.2rem 1fr auto; gap: .7rem; padding: .95rem .2rem; }
	.tf-reason-body { padding: 0 .2rem 1.1rem calc(2.2rem + .7rem); }
	.tf-reasons li:hover { padding-left: 0; }
	/* the fence turns on its side: rail down the left, posts across it */
	.tf-fence { grid-template-columns: 1fr; gap: 1.6rem; border-radius: 0; overflow: visible; }
	.tf-fence-rail { left: 5px; right: auto; top: 6px; bottom: 6px; width: 3px; height: auto; }
	.tf-fence-fill { width: 100%; height: calc(var(--p, 0) * 100%); transition: height .12s linear; }
	.tf-bay, .tf-bay:nth-child(n) { background: none; padding: 0 0 0 2.2rem; min-height: 0; }
	.tf-bay:nth-child(5) h3 { color: var(--green); }
	.tf-bay:nth-child(5) p { color: var(--muted); }
	.tf-bay:nth-child(5) .tf-bay-post { background: rgba(36, 48, 48, .2); }
	.tf-bay-post { top: 8px; left: -1px; width: 25px; height: 3px; }
	.tf-bay-cap { top: -5px; left: auto; right: -6px; transform: rotate(45deg) scale(1); }
	/* copy, then the form, then the licence panel */
	.tf-form-copy, .tf-form-box, .tf-form-aside { grid-column: 1; grid-row: auto; }
	.tf-form-copy { order: 1; }
	.tf-form-box { order: 2; }
	.tf-form-aside { order: 3; }
	/* the town list was a full screen in one column */
	.tf-areas-cols { grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem; }
	.tf-area-group ul { gap: .3rem; }
	.tf-area-group li { font-size: .95rem; }
	.tf-area-h { margin-bottom: .5rem; padding-bottom: .4rem; }
	.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-areas-mark { width: 200px; right: -8%; bottom: -8%; opacity: .05; }
	.tf-burger-label { display: none; }
	.tf .tf-head-call span { display: none; }
	.tf .tf-head-call { padding: .7rem .85rem; }
	.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-areas-cols { grid-template-columns: 1fr 1fr; }
	.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-drawer { clip-path: none !important; }
	.tf-rise { opacity: 1; transform: none; }
	.tf-parallax-media { transform: none !important; }
	.tf-fence-fill { width: 100%; }
	.tf-bay .tf-bay-post, .tf-bay .tf-bay-cap { background: var(--gold); }
}

/* ---------------- commercial & agricultural ---------------- */

.tf-commercial { background: var(--paper-2); }
.tf-comm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); }
.tf-comm { background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--moss); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); }
.tf-comm h3 { margin: 0 0 .4rem; }
.tf-comm p { color: var(--muted); margin: 0; }
.tf-draft-note {
	background: var(--gold-soft); border-left: 3px solid var(--gold);
	padding: .7rem 1rem; margin: 0 0 1.6rem; font-size: .88rem; color: var(--green);
}

/* ---------------- questions ---------------- */

.tf-faq { background: var(--white); }
.tf-faq-in { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: start; }
.tf-faq-head p { color: var(--muted); }
.tf-faq-list { list-style: none; margin: 0; padding: 0; }
.tf-faq-list li { border-top: 1px solid var(--line); }
.tf-faq-list li:last-child { border-bottom: 1px solid var(--line); }
.tf-faq-list summary {
	display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
	padding: 1.05rem .2rem; cursor: pointer; list-style: none;
}
.tf-faq-list summary::-webkit-details-marker { display: none; }
.tf-faq-list summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }
.tf-faq-q { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--green); }
.tf-faq-a { padding: 0 .2rem 1.2rem; }
.tf-faq-a p { margin: 0; color: var(--muted); max-width: 66ch; }
.tf-faq-a .tf-sample-flag { margin-bottom: .4rem; }

/* ---------------- 404 ---------------- */

.tf-404 { background: var(--paper); }
.tf-404-in { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.tf-404-links { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .1rem; max-width: 30rem; }
.tf-404-links li { border-top: 1px solid var(--line); }
.tf-404-links li:last-child { border-bottom: 1px solid var(--line); }
.tf-site .tf-404-links a {
	display: flex; align-items: center; gap: .6rem; padding: .8rem .2rem;
	font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--green);
	transition: padding-left .2s ease, color .2s ease;
}
.tf-site .tf-404-links a:hover { padding-left: .7rem; color: var(--moss); }
.tf-404-links .tf-ico { color: var(--gold); }
.tf-404-call { margin-top: 1.4rem; color: var(--muted); }
.tf-site .tf-404-call a { color: var(--green); border-bottom: 1px solid var(--gold); }
.tf-404-art svg { width: 100%; height: auto; display: block; }
.tf-404-ground { fill: var(--line); }
.tf-404-panel rect, .tf-404-panel path { fill: var(--moss); }
.tf-404-gap rect { fill: var(--gold); opacity: .85; }

/* ---------------- legal pages ---------------- */

.tf-legal { background: var(--white); }
.tf-legal-in { max-width: 72ch; }
.tf-legal-in h2 { margin-top: 2.2rem; font-size: clamp(1.25rem, 2vw, 1.6rem); }
.tf-legal-in h2:first-of-type { margin-top: 0; }
.tf-legal-in h2::after { content: none; }
.tf-legal-date { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.tf-site .tf-legal-in a { color: var(--green); border-bottom: 1px solid var(--gold); }

@media (max-width: 900px) {
	.tf-comm-grid, .tf-faq-in, .tf-404-in { grid-template-columns: 1fr; }
	.tf-404-art { order: -1; max-width: 300px; }
	.tf-faq-head .tf-more { margin-top: 1.2rem; }
}

/* ---------------- consent banner (only appears if cookie-based analytics is on) ---------------- */

.tf-consent {
	position: fixed; inset: auto 1rem 1rem; z-index: 130;
	background: var(--green); color: var(--paper);
	border-radius: var(--radius); box-shadow: 0 24px 60px -30px rgba(0, 0, 0, .9);
	padding: 1.2rem 1.4rem;
	max-width: 34rem; margin-inline: auto;
	padding-bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
}
.tf-consent[hidden] { display: none; }
.tf-consent p { margin: 0 0 1rem; font-size: .9rem; color: var(--muted-dark); }
.tf-consent strong { color: var(--paper); }
.tf-site .tf-consent a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.tf-consent-buttons { display: flex; gap: .6rem; flex-wrap: wrap; }
.tf-consent .tf-btn { padding: .7rem 1.1rem; font-size: .92rem; }
.tf-consent .tf-btn-line { color: var(--paper); border-color: rgba(244, 241, 233, .4); }
.tf-consent .tf-btn-line:hover { background: rgba(244, 241, 233, .12); border-color: var(--paper); color: var(--paper); }

@media (max-width: 620px) {
	.tf-consent { bottom: 4.6rem; left: .7rem; right: .7rem; }
}

/* ---------------- reviews, before there are any real ones ---------------- */

.tf-reviews-lean-in { display: grid; grid-template-columns: 1fr auto; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.tf-reviews-lean-in p { color: var(--muted); max-width: 46ch; margin: 0; }
.tf-reviews-lean-score { display: grid; justify-items: center; gap: .4rem; text-align: center; }
.tf-lean-fig { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 600; color: var(--gold) !important; line-height: 1; margin: 0 !important; }
.tf-reviews-lean-score .tf-btn { margin-top: .6rem; }

@media (max-width: 760px) {
	.tf-reviews-lean-in { grid-template-columns: 1fr; }
	.tf-reviews-lean-score { justify-items: start; text-align: left; }
}
