/* ==========================================================================
   TOKENS
   ========================================================================== */
.tkr {
  /* Brand — confirmed 21 Jul 2026 */
  --navy:        #243551;
  --navy-deep:   #1b2740;
  --navy-soft:   #35486a;
  --grey:        #e0e0db;   /* warm grey — page ground */
  --grey-warm:   #ececeA;
  --brass:       #c0975b;   /* 4.6:1 against navy — passes AA for text */
  --brass-dark:  #a37e46;
  --ink:         #1a2233;
  --ink-soft:    #4a5568;
  --line:        rgba(36,53,81,.14);
  --white:       #fbfbfa;

  /* Type */
  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm — generous spacing so everything breathes */
  --gut:  clamp(1.5rem, 5vw, 3rem);
  --sect: clamp(4.5rem, 10vw, 8rem);
  --max:  1200px;
  --r:    3px;

  --shadow: 0 1px 2px rgba(27,39,64,.05), 0 8px 24px rgba(27,39,64,.07);
  --shadow-lg: 0 2px 4px rgba(27,39,64,.06), 0 20px 50px rgba(27,39,64,.13);
}

/* ==========================================================================
   RESET — scoped
   ========================================================================== */
/* Kill the browser's default body margin — otherwise an 8px white frame shows
   around the whole site on the standalone (Netlify) build. */
html, body { margin: 0; padding: 0; background: #e0e0db; }

.tkr, .tkr *, .tkr *::before, .tkr *::after { box-sizing: border-box; }
.tkr { margin: 0; }
.tkr h1, .tkr h2, .tkr h3, .tkr h4, .tkr p, .tkr ul, .tkr ol, .tkr figure, .tkr blockquote { margin: 0; }
.tkr ul, .tkr ol { padding: 0; list-style: none; }
.tkr img, .tkr svg, .tkr video { display: block; max-width: 100%; height: auto; }
.tkr button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
.tkr a { color: inherit; text-decoration: none; }

.tkr {
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--grey);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.tkr :focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .tkr *, .tkr *::before, .tkr *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   PRIMITIVES
   ========================================================================== */
.tkr-wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.tkr-sect { padding-block: var(--sect); }

.tkr-h1, .tkr-h2, .tkr-h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -.015em; text-wrap: balance; }
.tkr-h1 { font-size: clamp(1.9rem, 1.2rem + 2.9vw, 3.15rem); }
.tkr-h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.4rem); }
/* Belt and braces: nothing may push the page wider than the viewport.
   (A nowrap headline did exactly that at 390px.) */
.tkr, .tkr * { min-width: 0; }
.tkr-h1, .tkr-h2, .tkr-h3 { overflow-wrap: break-word; }
.tkr-h3 { font-size: clamp(1.2rem, 1.08rem + .5vw, 1.45rem); line-height: 1.25; }

.tkr-eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 1rem;
}
.tkr-eyebrow--on-navy { color: var(--brass); }

.tkr-lead { font-size: clamp(.98rem, .95rem + .2vw, 1.05rem); color: var(--ink-soft); line-height: 1.62; }
.tkr-measure { max-width: 62ch; }

/* rem, not ch — `ch` resolves against the container's 1rem font-size, which
   made these far too narrow for the 2.75rem serif headings inside them. */
.tkr-sect-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.tkr-sect-head .tkr-lead { margin-top: 1rem; max-width: 54ch; }

/* Buttons ---------------------------------------------------------------- */
.tkr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.9em;
  font-size: .96rem; font-weight: 600; letter-spacing: .01em;
  border-radius: 100px;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
  text-align: center;
  white-space: nowrap;
}
.tkr-btn:active { transform: translateY(1px); }

/* NOTE: these are prefixed with `.tkr` deliberately. `.tkr a { color: inherit }`
   is (0,1,1) and would otherwise out-specify a bare `.tkr-btn--navy` (0,1,0),
   which made the header button render dark-navy text on a navy pill. */
.tkr .tkr-btn--brass  { background: var(--brass); color: var(--navy-deep); box-shadow: var(--shadow); }
.tkr .tkr-btn--brass:hover { background: #cea86d; color: var(--navy-deep); }

.tkr .tkr-btn--navy   { background: var(--navy); color: var(--white); }
.tkr .tkr-btn--navy:hover { background: var(--navy-soft); color: var(--white); }

.tkr .tkr-btn--ghost  { border: 1px solid rgba(255,255,255,.4); color: var(--white); }
.tkr .tkr-btn--ghost:hover { border-color: var(--brass); color: var(--brass); }

.tkr .tkr-btn--outline { border: 1px solid var(--navy); color: var(--navy); }
.tkr .tkr-btn--outline:hover { background: var(--navy); color: var(--white); }

/* Placeholder blocks ----------------------------------------------------- */
.tkr-ph {
  position: relative;
  display: grid; place-items: center;
  background-color: #cdcdc7;
  background-image: repeating-linear-gradient(45deg,
    rgba(36,53,81,.09) 0 12px, transparent 12px 24px);
  color: var(--navy);
  overflow: hidden;
}
.tkr-ph::after {
  content: attr(data-label);
  font-family: var(--sans);
  font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  background: rgba(251,251,250,.93);
  border: 1px solid rgba(36,53,81,.2);
  padding: .5em 1em;
  border-radius: 2px;
  text-align: center;
  max-width: 85%;
  line-height: 1.4;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.tkr-hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(224,224,219,.9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.tkr-hdr[data-stuck="true"] { border-bottom-color: var(--line); background: rgba(224,224,219,.97); }

/* Header spans wider than the 1200px content column so the logo sits closer
   to the page edge and the nav has room to breathe. */
.tkr-hdr .tkr-wrap { max-width: 1400px; }
.tkr-hdr__in { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); min-height: 72px; }

.tkr-logo { display: flex; align-items: center; color: var(--navy); flex-shrink: 0; }
.tkr-logo img { height: clamp(26px, 2.8vw, 34px); width: auto; display: block; }

.tkr-nav { display: none; margin-left: auto; }
.tkr-nav ul { display: flex; gap: clamp(1.1rem, 2vw, 2rem); }
.tkr-nav a {
  font-size: .92rem; color: var(--ink-soft);
  padding-block: .4rem; position: relative; transition: color .16s ease;
  white-space: nowrap;
}
.tkr-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--brass); transition: right .22s ease;
}
.tkr-nav a:hover { color: var(--navy); }
.tkr-nav a:hover::after { right: 0; }

.tkr-hdr__cta { display: none; align-items: center; gap: 1.25rem; margin-left: auto; }
.tkr-hdr__tel { font-size: .95rem; font-weight: 600; color: var(--navy); white-space: nowrap; }
.tkr-hdr__tel small { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); }

@media (min-width: 1000px) {
  .tkr-nav { display: block; }
  .tkr-hdr__cta { display: flex; margin-left: 0; }
  .tkr-hdr__in { justify-content: space-between; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.tkr-hero { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.tkr-hero__bg { position: absolute; inset: 0; }
.tkr-hero__bg .tkr-ph { width: 100%; height: 100%; background-color: #2f4265; }
/* Sits on top of the placeholder. If the file is missing, JS removes it and
   the striped placeholder shows through — so a broken path never ships a
   broken-image icon. object-position favours the right of the frame, keeping
   the busiest part of the photo behind the form card rather than the headline. */
.tkr-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 70% 50%;
}
/* keep the placeholder label out of the headline — parked bottom-right */
.tkr-hero__bg .tkr-ph::after {
  position: absolute; right: 1rem; bottom: 1rem;
  background: rgba(27,39,64,.85); color: var(--grey); border-color: rgba(192,151,91,.5);
  font-size: .6rem; max-width: 22ch;
}
.tkr-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(27,39,64,.96) 0%, rgba(27,39,64,.9) 42%, rgba(27,39,64,.62) 72%, rgba(27,39,64,.5) 100%);
}
/* Single column below 940 — the sideways gradient would leave white text
   sitting over the bright part of the photo, so go near-uniform instead. */
@media (max-width: 939px) {
  .tkr-hero__scrim { background: linear-gradient(180deg, rgba(27,39,64,.93) 0%, rgba(27,39,64,.88) 100%); }
}
.tkr-hero__in { position: relative; z-index: 2; padding-block: clamp(3rem, 8vw, 6rem); }
.tkr-hero__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 940px) { .tkr-hero__grid { grid-template-columns: 1.08fr .92fr; } }

.tkr-hero__h1 { color: var(--white); }
.tkr-hero__h1 em { font-style: normal; color: var(--brass); }
.tkr-hero__sub { margin-top: 1.35rem; max-width: 48ch; color: rgba(251,251,250,.82); font-size: clamp(.98rem, .95rem + .22vw, 1.08rem); }

/* `.tkr .tkr-chips` (0,2,0) so margin-top beats the reset `.tkr ul {margin:0}` (0,1,1). */
.tkr .tkr-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.9rem; }
.tkr-chip {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .55em 1.05em;
  font-size: .85rem; font-weight: 600;
  border: 1px solid rgba(192,151,91,.45);
  border-radius: 100px;
  color: var(--grey);
  background: rgba(192,151,91,.09);
}
.tkr-chip svg { flex-shrink: 0; color: var(--brass); }

.tkr-hero__tels { display: flex; flex-wrap: wrap; gap: 1.75rem; margin-top: 2.25rem; }
.tkr-hero__tel { font-size: .9rem; color: rgba(251,251,250,.7); }
.tkr-hero__tel strong { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--white); letter-spacing: .01em; }
.tkr-hero__tel strong:hover { color: var(--brass); }

/* Form card -------------------------------------------------------------- */
.tkr-formcard {
  background: var(--white);
  border-top: 3px solid var(--brass);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--ink);
}
.tkr-formcard__h { font-family: var(--serif); font-size: 1.5rem; line-height: 1.2; }
.tkr-formcard__p { font-size: .93rem; color: var(--ink-soft); margin-top: .6rem; }
.tkr-formcard__slot { margin-top: 1.4rem; }
.tkr-formcard__slot .tkr-ph { min-height: 290px; border-radius: 2px; }
/* GHL form iframe. form_embed.js posts the real content height and resizes
   the iframe; this min-height stops it collapsing before that runs. */
.tkr-formcard__slot iframe { display: block; width: 100%; min-height: 560px; border: none; border-radius: 2px; }
.tkr-formcard__foot {
  margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5em;
}
.tkr-formcard__foot svg { color: var(--brass-dark); flex-shrink: 0; }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.tkr-strip { background: var(--navy-deep); color: rgba(251,251,250,.75); border-top: 1px solid rgba(192,151,91,.22); }
.tkr-strip ul {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem; padding-block: 1.9rem; text-align: center;
}
@media (min-width: 780px) { .tkr-strip ul { grid-template-columns: repeat(4, 1fr); } }
.tkr-strip strong { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-weight: 400; color: var(--brass); line-height: 1; }
.tkr-strip span { display: block; font-size: .82rem; letter-spacing: .04em; margin-top: .5rem; }

/* ==========================================================================
   VIDEO TESTIMONIALS
   ========================================================================== */
.tkr-vids { background: var(--grey-warm); }
.tkr-vidgrid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 640px) { .tkr-vidgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .tkr-vidgrid { grid-template-columns: repeat(3, 1fr); } }

.tkr-vid { position: relative; text-align: left; width: 100%; }
/* 16:9 — the testimonial footage is 1920x1080 landscape, not portrait phone
   video. A portrait thumb would have cropped the sides off the speaker. */
.tkr-vid__thumb {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease;
}
.tkr-vid:hover .tkr-vid__thumb { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tkr-vid__thumb .tkr-ph { width: 100%; height: 100%; }
.tkr-vid__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tkr-vid__play {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
  background: linear-gradient(to top, rgba(27,39,64,.5), rgba(27,39,64,0) 55%);
}
.tkr-vid__play i {
  display: grid; place-items: center;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(251,251,250,.94); color: var(--navy);
  box-shadow: 0 4px 18px rgba(27,39,64,.3);
  transition: transform .25s ease, background-color .25s ease;
}
.tkr-vid:hover .tkr-vid__play i { transform: scale(1.09); background: var(--brass); }
.tkr-vid__meta { margin-top: .95rem; }
.tkr-vid__name { font-family: var(--serif); font-size: 1.12rem; color: var(--navy); }
.tkr-vid__town { font-size: .84rem; color: var(--ink-soft); letter-spacing: .04em; }
.tkr-vid__quote { margin-top: .5rem; font-size: .93rem; color: var(--ink-soft); font-style: italic; }

/* Lightbox */
.tkr-lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(19,27,45,.93);
  display: grid; place-items: center; padding: var(--gut);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.tkr-lb[data-open="true"] { opacity: 1; visibility: visible; }
.tkr-lb__box { width: min(1000px, 100%); }
.tkr-lb__frame { aspect-ratio: 16 / 9; max-height: 78vh; margin-inline: auto; background: #000; border-radius: var(--r); overflow: hidden; }
.tkr-lb__frame .tkr-ph { width: 100%; height: 100%; }
.tkr-lb__close {
  display: block; margin: 1rem auto 0;
  color: var(--grey); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
}
.tkr-lb__close:hover { color: var(--brass); }

/* ==========================================================================
   BEFORE / AFTER
   ========================================================================== */
.tkr-ba__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
@media (min-width: 900px) { .tkr-ba__grid { grid-template-columns: repeat(2, 1fr); } }

.tkr-ba__cap { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: baseline; }
.tkr-ba__town { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); }
.tkr-ba__detail { font-size: .87rem; color: var(--ink-soft); }

/* Drag slider */
/* 4:3 for BOTH home sliders so they match (symmetry). Portrait sources get
   centre-cropped — future photos should be shot landscape to avoid this. */
.tkr-slider {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow); user-select: none; touch-action: pan-y;
  cursor: ew-resize;
}
.tkr-slider__layer { position: absolute; inset: 0; }
.tkr-slider__layer .tkr-ph { width: 100%; height: 100%; }
.tkr-slider__layer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tkr-slider__layer--after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.tkr-slider__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: var(--white); transform: translateX(-1px); z-index: 3;
  box-shadow: 0 0 12px rgba(27,39,64,.4);
}
.tkr-slider__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--navy);
  display: grid; place-items: center;
  box-shadow: 0 3px 14px rgba(27,39,64,.35);
  border: 2px solid var(--brass);
}
/* Pulses to signal the slider is draggable; JS adds `is-touched` on first
   interaction to stop it. */
.tkr-slider:not(.is-touched) .tkr-slider__knob { animation: tkr-knob 2.4s ease-in-out infinite; }
@keyframes tkr-knob {
  0%, 100% { box-shadow: 0 3px 14px rgba(27,39,64,.35), 0 0 0 0 rgba(192,151,91,.5); }
  50%      { box-shadow: 0 3px 14px rgba(27,39,64,.35), 0 0 0 12px rgba(192,151,91,0); }
}
.tkr-slider__tag {
  position: absolute; bottom: .85rem; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: .42em .9em; border-radius: 100px;
  background: rgba(27,39,64,.8); color: var(--grey); backdrop-filter: blur(4px);
}
.tkr-slider__tag--b { left: .85rem; }
.tkr-slider__tag--a { right: .85rem; background: rgba(192,151,91,.92); color: var(--navy-deep); }

/* "Drag" hint pill, top-centre. Fades out once the slider is touched. */
.tkr-slider__hint {
  position: absolute; top: .85rem; left: 50%; transform: translateX(-50%); z-index: 4;
  display: inline-flex; align-items: center; gap: .4em;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .45em 1em; border-radius: 100px;
  background: rgba(251,251,250,.94); color: var(--navy);
  box-shadow: 0 2px 10px rgba(27,39,64,.25);
  transition: opacity .3s ease;
  pointer-events: none;
}
.tkr-slider.is-touched .tkr-slider__hint { opacity: 0; }
.tkr-slider__hint svg { animation: tkr-nudge 1.6s ease-in-out infinite; }
@keyframes tkr-nudge { 0%,100% { transform: translateX(-2px); } 50% { transform: translateX(2px); } }

/* Portrait variant for pairs shot in portrait (KR2). Centred and width-capped
   so it doesn't tower over the landscape project beside it. */
.tkr-slider--portrait { aspect-ratio: 4 / 5; max-width: 430px; margin-inline: auto; }

/* Caption card beneath each project */
.tkr-ba__cap {
  margin-top: 1.1rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem 1rem;
}
.tkr-ba__town { font-family: var(--serif); font-size: 1.22rem; color: var(--navy); }
.tkr-ba__detail { font-size: .86rem; color: var(--ink-soft); }
.tkr-ba__chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; }
.tkr-ba__chip {
  font-size: .74rem; font-weight: 600; letter-spacing: .02em;
  padding: .35em .8em; border-radius: 100px;
  background: var(--grey-warm); border: 1px solid var(--line); color: var(--ink-soft);
}
.tkr-ba__chip--days { background: rgba(192,151,91,.14); border-color: rgba(192,151,91,.4); color: var(--brass-dark); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.tkr-proc { background: var(--navy); color: var(--grey); }
.tkr-proc .tkr-h2 { color: var(--white); }
.tkr-proc .tkr-lead { color: rgba(251,251,250,.75); }
.tkr-steps { display: grid; gap: clamp(1.75rem, 3.5vw, 2.5rem); counter-reset: s; }
@media (min-width: 760px) { .tkr-steps { grid-template-columns: repeat(4, 1fr); } }
.tkr-step { position: relative; padding-top: 2.4rem; border-top: 1px solid rgba(192,151,91,.3); counter-increment: s; }
.tkr-step::before {
  content: "0" counter(s);
  position: absolute; top: 1rem; left: 0;
  font-family: var(--serif); font-size: .95rem; letter-spacing: .1em; color: var(--brass);
}
.tkr-step h3 { font-family: var(--serif); font-size: 1.22rem; font-weight: 400; color: var(--white); line-height: 1.25; }
.tkr-step p { margin-top: .7rem; font-size: .93rem; color: rgba(251,251,250,.72); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.tkr-svcs { display: grid; gap: clamp(1rem, 2.2vw, 1.4rem); }
@media (min-width: 620px) { .tkr-svcs { grid-template-columns: repeat(2, 1fr); } }
/* 4 columns so the four non-flagship services fill exactly one row — at 3
   columns the fourth was orphaned on a row of its own. */
@media (min-width: 1040px) { .tkr-svcs { grid-template-columns: repeat(4, 1fr); } }

.tkr-svc {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tkr-svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tkr-svc__img { aspect-ratio: 16 / 10; position: relative; }
.tkr-svc__img .tkr-ph { width: 100%; height: 100%; }
.tkr-svc__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tkr-svc__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tkr-svc__body h3 { font-family: var(--serif); font-size: 1.32rem; font-weight: 400; color: var(--navy); }
.tkr-svc__body p { margin-top: .6rem; font-size: .93rem; color: var(--ink-soft); flex: 1; }
.tkr-svc__more { margin-top: 1.1rem; font-size: .87rem; font-weight: 600; color: var(--brass-dark); display: inline-flex; align-items: center; gap: .45em; }
.tkr-svc:hover .tkr-svc__more { gap: .8em; }

.tkr-svc--flag { grid-column: 1 / -1; }
@media (min-width: 1040px) {
  .tkr-svc--flag { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
  .tkr-svc--flag .tkr-svc__img { flex: 1 1 52%; aspect-ratio: auto; }
  .tkr-svc--flag .tkr-svc__body { flex: 1 1 48%; justify-content: center; padding: clamp(2rem, 4vw, 3.25rem); }
  .tkr-svc--flag .tkr-svc__body h3 { font-size: clamp(1.7rem, 1.4rem + 1vw, 2.3rem); }
  .tkr-svc--flag .tkr-svc__body p { flex: 0; font-size: 1rem; }
}

/* ==========================================================================
   MEET ALAN
   ========================================================================== */
.tkr-alan { background: var(--grey-warm); }
.tkr-alan__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
/* Image on the RIGHT — alternates against the image-left flagship service card
   above it, giving the page a left/right rhythm without centring everything. */
@media (min-width: 860px) {
  .tkr-alan__grid { grid-template-columns: 1.2fr .8fr; }
  .tkr-alan__body { order: 1; }
  .tkr-alan__ph   { order: 2; }
}
.tkr-alan__ph { aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.tkr-alan__ph .tkr-ph { width: 100%; height: 100%; }
/* object-position frames Alan's face on the right of the source crop and
   pushes the empty left/kitchen out of view. */
.tkr-alan__ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 82% 28%; }
.tkr-alan__body p { margin-top: 1.15rem; color: var(--ink-soft); }
.tkr-alan__body p:first-of-type { font-size: clamp(1.1rem, 1rem + .45vw, 1.28rem); color: var(--ink); font-family: var(--serif); line-height: 1.5; }
.tkr-alan__sign {
  margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.15rem; color: var(--navy);
}
.tkr-alan__sign span { display: block; font-family: var(--sans); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-top: .25rem; }

/* ==========================================================================
   WHY US
   ========================================================================== */
.tkr-why { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
@media (min-width: 700px) { .tkr-why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .tkr-why { grid-template-columns: repeat(3, 1fr); } }
.tkr-why li h3 { font-family: var(--serif); font-size: 1.22rem; font-weight: 400; color: var(--navy); display: flex; align-items: center; gap: .6em; }
.tkr-why li h3 svg { color: var(--brass-dark); flex-shrink: 0; }
.tkr-why li p { margin-top: .65rem; font-size: .95rem; color: var(--ink-soft); }

/* ==========================================================================
   AREAS
   ========================================================================== */
.tkr-areas { background: var(--white); }
.tkr-regions { display: grid; gap: clamp(1.5rem, 3vw, 2rem); }
@media (min-width: 820px) { .tkr-regions { grid-template-columns: repeat(2, 1fr); } }

.tkr-region {
  border: 1px solid var(--line); border-top: 3px solid var(--brass);
  border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--grey-warm);
  display: flex; flex-direction: column;
}
.tkr-region h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--navy); }
.tkr-region__pc { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-top: .4rem; }
.tkr-region__towns { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.35rem; flex: 1; align-content: flex-start; }
.tkr-region__towns a {
  font-size: .86rem; padding: .4em .85em;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-soft); transition: all .16s ease;
}
.tkr-region__towns a:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.tkr-region__tel { margin-top: 1.6rem; padding-top: 1.35rem; border-top: 1px solid var(--line); }
.tkr-region__tel small { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.tkr-region__tel a { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); }
.tkr-region__tel a:hover { color: var(--brass-dark); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.tkr-cta { background: var(--navy); color: var(--grey); text-align: center; }
.tkr-cta .tkr-h2 { color: var(--white); }
.tkr-cta p { margin: 1.15rem auto 0; max-width: 52ch; color: rgba(251,251,250,.76); }
.tkr-cta__btns { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.25rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.tkr-ft { background: var(--navy-deep); color: rgba(251,251,250,.62); font-size: .9rem; }
.tkr-ft__grid { display: grid; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 760px) { .tkr-ft__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.tkr-ft h4 { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.1rem; }
.tkr-ft a:hover { color: var(--brass); }
.tkr-ft li + li { margin-top: .55rem; }
.tkr-ft__logo { display: inline-flex; color: var(--grey); }
.tkr-ft__logo img { height: 34px; width: auto; display: block; }
.tkr-ft__blurb { margin-top: 1rem; max-width: 38ch; }
.tkr-ft__legal {
  border-top: 1px solid rgba(251,251,250,.1);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .8rem;
}

/* ==========================================================================
   MOBILE STICKY BAR
   ========================================================================== */
.tkr-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--navy-deep);
  border-top: 1px solid rgba(192,151,91,.3);
  padding-bottom: env(safe-area-inset-bottom);
}
.tkr-bar a {
  display: flex; align-items: center; justify-content: center; gap: .5em;
  padding: 1.05rem .5rem;
  font-size: .92rem; font-weight: 600; color: var(--grey);
}
.tkr-bar a + a { background: var(--brass); color: var(--navy-deep); }
@media (min-width: 1000px) { .tkr-bar { display: none; } }
@media (max-width: 999px) { .tkr-ft { padding-bottom: 2rem; } }

/* ==========================================================================
   GOOGLE RATING BADGE
   ========================================================================== */
.tkr-stars { display: inline-flex; gap: .1em; color: #fbbc04; }
.tkr-stars svg { width: 1em; height: 1em; }

.tkr-grate {
  display: inline-flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  margin-top: 1.75rem;
  padding: .7rem 1.15rem;
  background: rgba(251,251,250,.07);
  border: 1px solid rgba(251,251,250,.16);
  border-radius: 100px;
  font-size: .89rem;
}
.tkr-grate__num { font-weight: 700; color: var(--white); }
.tkr-grate__txt { color: rgba(251,251,250,.72); }
.tkr-grate__g { font-weight: 600; color: var(--white); }

/* ==========================================================================
   WRITTEN REVIEWS
   ========================================================================== */
.tkr-revs { background: var(--white); }
.tkr-revhead { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(2rem, 4vw, 3rem); }
.tkr-revscore { text-align: center; padding: 1.25rem 1.75rem; border: 1px solid var(--line); border-radius: var(--r); background: var(--grey-warm); }
.tkr-revscore strong { display: block; font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--navy); }
.tkr-revscore .tkr-stars { margin-top: .5rem; font-size: 1.05rem; }
.tkr-revscore small { display: block; margin-top: .5rem; font-size: .8rem; color: var(--ink-soft); }

.tkr-revgrid { display: grid; gap: clamp(1rem, 2.2vw, 1.4rem); }
@media (min-width: 700px) { .tkr-revgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .tkr-revgrid { grid-template-columns: repeat(3, 1fr); } }

.tkr-rev {
  background: var(--grey-warm);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  display: flex; flex-direction: column;
}
.tkr-rev .tkr-stars { font-size: 1rem; }
.tkr-rev blockquote { margin-top: .9rem; font-size: .96rem; color: var(--ink); line-height: 1.6; flex: 1; }
.tkr-rev figcaption { margin-top: 1.15rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .87rem; }
.tkr-rev figcaption strong { display: block; color: var(--navy); font-weight: 600; }
.tkr-rev figcaption span { color: var(--ink-soft); }

/* ==========================================================================
   FOOTER AREA LISTS
   ========================================================================== */
.tkr-ft__areas { border-top: 1px solid rgba(251,251,250,.1); padding-block: clamp(2rem, 4vw, 3rem); }
.tkr-ft__areagrid { display: grid; gap: 2rem; }
@media (min-width: 700px) { .tkr-ft__areagrid { grid-template-columns: 1.6fr 1fr; } }
.tkr-ft__arealist { display: flex; flex-wrap: wrap; gap: .4rem .5rem; }
.tkr-ft__arealist a {
  font-size: .84rem; color: rgba(251,251,250,.68);
  padding: .3em .7em; border: 1px solid rgba(251,251,250,.14); border-radius: 100px;
  transition: all .16s ease;
}
.tkr-ft__arealist a:hover { color: var(--navy-deep); background: var(--brass); border-color: var(--brass); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
/* IMPORTANT: content is only hidden once JS has added `.tkr-anim` and has
   confirmed it can observe and reveal it. Never hide on `.tkr-reveal` alone —
   if the script fails, the observer is unsupported, or the CSS loads without
   the JS, the whole page would render blank. Progressive enhancement only. */
.tkr-anim .tkr-reveal { opacity: 0; transform: translateY(20px); }
.tkr-anim .tkr-reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
/* Hero copy animates on load rather than on scroll */
.tkr-anim.tkr-hero .tkr-reveal, .tkr-anim .tkr-hero .tkr-reveal { transform: translateY(14px); }

@media (prefers-reduced-motion: reduce) {
  .tkr-anim .tkr-reveal, .tkr-anim .tkr-reveal.is-in {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ==========================================================================
   INNER-PAGE COMPONENTS (services / faqs / gallery / book)
   ========================================================================== */

/* Page banner — a compact navy hero for inner pages */
.tkr-phero { position: relative; background: var(--navy); color: var(--white); overflow: hidden; }
.tkr-phero__bg { position: absolute; inset: 0; }
.tkr-phero__bg img { width: 100%; height: 100%; object-fit: cover; }
.tkr-phero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,39,64,.86), rgba(27,39,64,.92)); }
.tkr-phero__in { position: relative; z-index: 2; padding-block: clamp(2.75rem, 7vw, 5rem); }
.tkr-phero__crumb { font-size: .8rem; letter-spacing: .04em; color: rgba(251,251,250,.6); margin-bottom: 1rem; }
.tkr-phero__crumb a:hover { color: var(--brass); }
.tkr-phero h1 { color: var(--white); max-width: 20ch; }
.tkr-phero__sub { margin-top: 1.1rem; max-width: 56ch; color: rgba(251,251,250,.8); font-size: clamp(1rem, .96rem + .28vw, 1.12rem); }

/* Prose */
.tkr-prose { max-width: 68ch; }
.tkr-prose p { margin-top: 1.1rem; color: var(--ink-soft); }
.tkr-prose h2 { margin-top: 2.5rem; }
.tkr-prose h3 { margin-top: 1.75rem; color: var(--navy); }

/* FAQ — two-column: sticky intro + CTA on the left, accordion on the right,
   so it fills the width and doesn't float as a lonely centred column. */
.tkr-faqwrap { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 920px) {
  .tkr-faqwrap { grid-template-columns: minmax(240px, .78fr) 1.22fr; align-items: start; }
  .tkr-faqwrap__aside { position: sticky; top: 100px; }
}
.tkr-faqwrap__lead { font-family: var(--serif); font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); line-height: 1.45; color: var(--navy); }
.tkr-faqcta { margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; }
.tkr-faqcta small { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-dark); font-weight: 600; }

/* card accordion with a clear active state: an open question gets a brass
   accent bar, a warm tint, a soft lift and a filled icon so it's obvious. */
.tkr-faq { display: grid; gap: .7rem; }
.tkr-faq__item {
  position: relative; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  transition: border-color .2s ease, box-shadow .25s ease, background-color .2s ease, transform .2s ease;
}
/* brass accent bar down the left, revealed on open */
.tkr-faq__item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; z-index: 0;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
/* keep question/answer above the accent bar so the first letter isn't clipped */
.tkr-faq__q, .tkr-faq__a { position: relative; z-index: 1; }
.tkr-faq__item:hover { border-color: rgba(192,151,91,.5); background: #fdfbf7; }
.tkr-faq__item[data-open="true"] {
  border-color: rgba(192,151,91,.55); background: #faf6ee;
  box-shadow: 0 8px 26px rgba(36,53,81,.10);
}
.tkr-faq__item[data-open="true"]::before { transform: scaleX(1); }

/* `.tkr .tkr-faq__q` (0,2,0) so it beats the reset `.tkr button {padding:0}`
   (0,1,1). Without the extra `.tkr` the padding is silently dropped. */
.tkr .tkr-faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem clamp(1.5rem, 2.5vw, 2rem);
  font-family: var(--serif); font-size: clamp(1.06rem, 1rem + .38vw, 1.24rem); line-height: 1.35;
  color: var(--navy); cursor: pointer; transition: color .18s ease;
}
.tkr-faq__q:hover { color: var(--brass-dark); }

.tkr-faq__icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(192,151,91,.13); position: relative;
  transition: background-color .25s ease, transform .3s ease;
}
.tkr-faq__item[data-open="true"] .tkr-faq__icon { background: var(--brass); transform: rotate(180deg); }
.tkr-faq__icon::before, .tkr-faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--brass-dark);
  transform: translate(-50%, -50%); transition: transform .28s ease, background-color .25s ease;
}
.tkr-faq__item[data-open="true"] .tkr-faq__icon::before,
.tkr-faq__item[data-open="true"] .tkr-faq__icon::after { background: var(--navy-deep); }
.tkr-faq__icon::before { width: 12px; height: 2px; }
.tkr-faq__icon::after  { width: 2px; height: 12px; }
.tkr-faq__item[data-open="true"] .tkr-faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.tkr-faq__a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.tkr-faq__item[data-open="true"] .tkr-faq__a { max-height: 600px; }
.tkr-faq__a p { padding: 0 clamp(1.5rem, 2.5vw, 2rem) 1.6rem; color: var(--ink-soft); margin: 0; max-width: 66ch; line-height: 1.7; }
/* No-JS: show all answers */
.tkr-nojs .tkr-faq__a { max-height: none; }

/* Gallery grid */
/* ==========================================================================
   BEFORE/AFTER WALL (gallery) — full-width rows, before left / after right.
   Desktop: side by side. Mobile: stacked (before over after) so each stays
   large and legible. Consistent 4:3 cells throughout for symmetry.
   ========================================================================== */
.tkr-wall { display: grid; gap: clamp(2.25rem, 4.5vw, 3.5rem); }
.tkr-wall__pair {
  display: grid; grid-template-columns: 1fr; gap: 4px;
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
}
@media (min-width: 700px) { .tkr-wall__pair { grid-template-columns: 1fr 1fr; } }
.tkr-wall__cell { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--grey-warm); }
.tkr-wall__cell .tkr-ph { width: 100%; height: 100%; }
.tkr-wall__cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tkr-wall__tag {
  position: absolute; top: .85rem; left: .85rem; z-index: 2;
  font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: .42em .9em; border-radius: 100px;
  background: rgba(27,39,64,.82); color: var(--grey); backdrop-filter: blur(4px);
}
.tkr-wall__cell--after .tkr-wall__tag { left: auto; right: .85rem; background: rgba(192,151,91,.94); color: var(--navy-deep); }
.tkr-wall__cap { margin-top: 1.1rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem; }
.tkr-wall__town { font-family: var(--serif); font-size: 1.22rem; color: var(--navy); }
.tkr-wall__detail { font-size: .86rem; color: var(--ink-soft); }
.tkr-wall__chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }

.tkr-gallery { display: grid; gap: clamp(.75rem, 1.5vw, 1.1rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .tkr-gallery { grid-template-columns: repeat(3, 1fr); } }
.tkr-gallery figure { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.tkr-gallery .tkr-ph { width: 100%; height: 100%; }
.tkr-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tkr-gallery figcaption {
  position: absolute; left: .6rem; bottom: .6rem; z-index: 2;
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35em .75em; border-radius: 100px; background: rgba(27,39,64,.82); color: var(--grey);
}
.tkr-gallery figcaption.is-after { background: rgba(192,151,91,.92); color: var(--navy-deep); }

/* Book / contact layout */
.tkr-book { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .tkr-book { grid-template-columns: 1fr 1.05fr; } }
.tkr-book__points { margin-top: 1.75rem; display: grid; gap: 1.15rem; }
.tkr-book__point { display: flex; gap: .85rem; }
.tkr-book__point svg { flex-shrink: 0; color: var(--brass-dark); margin-top: 2px; }
.tkr-book__point strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 1.08rem; }
.tkr-book__point span { font-size: .93rem; color: var(--ink-soft); }
.tkr-book__form {
  background: var(--white); border-top: 3px solid var(--brass); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: clamp(1.35rem, 3vw, 2rem);
}
.tkr-book__form h2 { font-family: var(--serif); font-weight: 400; color: var(--navy); font-size: 1.5rem; }
.tkr-book__form iframe { display: block; width: 100%; min-height: 640px; border: none; border-radius: 2px; margin-top: 1.1rem; }

/* Contact detail cards */
.tkr-contacts { display: grid; gap: 1.25rem; }
@media (min-width: 620px) { .tkr-contacts { grid-template-columns: repeat(2, 1fr); } }
/* Flex column + tel pushed to the bottom (margin-top:auto) so the phone numbers
   line up across both cards even when the text above is a different length. */
.tkr-contact { border: 1px solid var(--line); border-top: 3px solid var(--brass); border-radius: var(--r); padding: 1.5rem; background: var(--grey-warm); display: flex; flex-direction: column; }
.tkr-contact h3 { font-family: var(--serif); font-weight: 400; color: var(--navy); font-size: 1.3rem; }
.tkr-contact p { margin-top: .5rem; font-size: .93rem; color: var(--ink-soft); }
.tkr-contact a.tkr-contact__tel { display: inline-block; margin-top: auto; padding-top: 1rem; font-family: var(--serif); font-size: 1.5rem; color: var(--navy); }
.tkr-contact a.tkr-contact__tel:hover { color: var(--brass-dark); }

/* Active nav item */
.tkr-nav a[aria-current="page"] { color: var(--navy); }
.tkr-nav a[aria-current="page"]::after { right: 0; }

/* ==========================================================================
   CUSTOM FORM (replaces GHL iframe — posts to a webhook)
   ========================================================================== */
.tkr-form { display: grid; gap: 1rem; }
.tkr-form__row { display: grid; gap: 1rem; }
@media (min-width: 480px) { .tkr-form__row { grid-template-columns: 1fr 1fr; } }

.tkr-field { display: grid; gap: .35rem; }
.tkr-field label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.tkr-field label .req { color: var(--brass-dark); }
.tkr-field input, .tkr-field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: .72em .85em; border: 1px solid var(--line); border-radius: 3px;
  background: var(--white);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.tkr-field input::placeholder, .tkr-field textarea::placeholder { color: #9aa2b1; }
.tkr-field input:focus, .tkr-field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(192,151,91,.16);
}
.tkr-field textarea { resize: vertical; min-height: 96px; }
.tkr-field--invalid input, .tkr-field--invalid textarea { border-color: #c0392b; background: #fdf6f5; }
.tkr-field__err { font-size: .75rem; color: #c0392b; display: none; }
.tkr-field--invalid .tkr-field__err { display: block; }

.tkr-consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .78rem; color: var(--ink-soft); line-height: 1.5; }
.tkr-consent input { margin-top: .18rem; flex-shrink: 0; width: 17px; height: 17px; accent-color: var(--brass-dark); }
.tkr-consent a { color: var(--brass-dark); text-decoration: underline; }
.tkr-consent.tkr-field--invalid { color: #c0392b; }

/* Honeypot — hidden from users, catches bots */
.tkr-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* `.tkr .tkr-form__submit` (0,2,0) so the vertical padding beats the reset
   `.tkr button {padding:0}` (0,1,1). Horizontal padding stays from .tkr-btn. */
.tkr .tkr-form__submit { width: 100%; margin-top: .25rem; padding-top: 1.3em; padding-bottom: 1.3em; }
.tkr-form__msg {
  display: none; font-size: .9rem; line-height: 1.5;
  padding: .85em 1.1em; border-radius: 3px;
}
.tkr-form__msg.is-ok  { display: block; background: #eaf5ee; border: 1px solid #b7dbc4; color: #1e6b3a; }
.tkr-form__msg.is-err { display: block; background: #fdf0ee; border: 1px solid #e6b7ae; color: #a03123; }
.tkr-form[data-sending="true"] .tkr-form__submit { opacity: .6; pointer-events: none; }

.tkr-book__form .tkr-form { margin-top: 1.25rem; }

/* ==========================================================================
   COOKIE BANNER (injected by site.js on first visit)
   ========================================================================== */
.tkr-cookie {
  position: fixed; left: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  right: auto; width: min(440px, calc(100% - 2rem)); z-index: 120;
  background: var(--navy); color: var(--grey);
  border: 1px solid rgba(192,151,91,.3); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 1.2rem 1.35rem;
  transform: translateY(150%); opacity: 0;
  transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .45s ease;
}
.tkr-cookie.is-in { transform: none; opacity: 1; }
.tkr-cookie p { font-size: .84rem; line-height: 1.55; color: rgba(251,251,250,.82); margin: 0; }
.tkr-cookie a { color: var(--brass); text-decoration: underline; }
.tkr-cookie__btns { display: flex; gap: .6rem; margin-top: 1rem; flex-wrap: wrap; }
.tkr-cookie__btns .tkr-btn { padding: .58em 1.25em; font-size: .85rem; }
/* Clear the mobile sticky call/book bar so they don't overlap */
@media (max-width: 999px) {
  .tkr-cookie { bottom: calc(4.5rem + env(safe-area-inset-bottom)); left: 1rem; width: calc(100% - 2rem); }
}
@media (prefers-reduced-motion: reduce) {
  .tkr-cookie { transition: opacity .3s ease; transform: none; }
}

/* Before/after wall — "coming soon" reserved slots */
.tkr-wall__soon {
  display: grid; place-items: center; gap: .5rem;
  aspect-ratio: 9 / 2; border: 2px dashed rgba(36,53,81,.22); border-radius: 12px;
  background: rgba(36,53,81,.035); color: var(--ink-soft); text-align: center; padding: 1rem;
}
.tkr-wall__soon svg { color: rgba(36,53,81,.28); }
.tkr-wall__soon span { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 600px) { .tkr-wall__soon { aspect-ratio: 3 / 1; } }

/* ==========================================================================
   VIDEO REVIEW FEATURE (service / area pages)
   ========================================================================== */
.tkr-vidfeature { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 860px) { .tkr-vidfeature { grid-template-columns: 1.05fr .95fr; } }
.tkr-vidfeature__player { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); }
.tkr-vidfeature__player .tkr-ph { width: 100%; height: 100%; }
.tkr-vidfeature__player img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tkr-vidfeature__play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; background: linear-gradient(to top, rgba(27,39,64,.5), rgba(27,39,64,.05) 60%); transition: background-color .25s ease; }
.tkr-vidfeature__player:hover .tkr-vidfeature__play { background: linear-gradient(to top, rgba(27,39,64,.55), rgba(27,39,64,.1) 60%); }
.tkr-vidfeature__play i { display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50%; background: rgba(251,251,250,.95); color: var(--navy); box-shadow: 0 6px 20px rgba(27,39,64,.3); transition: transform .25s ease, background-color .25s ease; }
.tkr-vidfeature__player:hover .tkr-vidfeature__play i { transform: scale(1.08); background: var(--brass); }
.tkr-vidfeature__cap { position: absolute; left: 1rem; bottom: 1rem; z-index: 3; color: var(--white); }
.tkr-vidfeature__cap strong { display: block; font-family: var(--serif); font-size: 1.15rem; }
.tkr-vidfeature__cap span { font-size: .82rem; color: rgba(251,251,250,.8); }
.tkr-vidfeature__body h2 { margin-bottom: 0; }
.tkr-vidfeature__body p { margin: 1rem 0 1.75rem; color: var(--ink-soft); max-width: 46ch; }

/* Recent-work image strip */
.tkr-workstrip { display: grid; gap: clamp(.75rem, 1.5vw, 1.1rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .tkr-workstrip { grid-template-columns: repeat(3, 1fr); } }
.tkr-workstrip figure { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.tkr-workstrip .tkr-ph { width: 100%; height: 100%; }
.tkr-workstrip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   MOBILE MENU (burger + full-screen overlay) — injected by site.js
   ========================================================================== */
/* Floating toggle — fixed & above the overlay (z 210 > menu 200) so its lines
   can animate into an X on top of the open menu. */
.tkr-burger {
  display: none; position: fixed; top: 13px; right: clamp(1rem, 4vw, 1.5rem); z-index: 210;
  width: 46px; height: 46px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border-radius: 8px;
}
@media (max-width: 999px) { .tkr-burger { display: flex; } }
.tkr-burger span {
  display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .35s cubic-bezier(.5,.15,.2,1), opacity .2s ease, background-color .3s ease;
}
/* → X, and go light so it reads on the navy overlay */
.tkr-burger[aria-expanded="true"] span { background: var(--grey); }
.tkr-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.tkr-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.tkr-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.tkr-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--navy); color: var(--grey);
  display: flex; flex-direction: column; padding: clamp(1.1rem, 5vw, 2rem) var(--gut) clamp(1.5rem, 5vw, 2.5rem);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .32s ease, transform .32s ease, visibility .32s;
  overflow-y: auto;
}
.tkr-menu[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
.tkr-menu__top { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.tkr-menu__logo { font-family: var(--serif); letter-spacing: .16em; text-transform: uppercase; color: var(--grey); font-size: .95rem; white-space: nowrap; }
.tkr-menu__close { width: 44px; height: 44px; display: grid; place-items: center; color: var(--grey); }
.tkr-menu__close:hover { color: var(--brass); }
.tkr-menu__links { display: flex; flex-direction: column; margin-top: clamp(1.5rem, 5vw, 3rem); flex: 1; }
.tkr-menu__links a {
  font-family: var(--serif); font-size: clamp(1.7rem, 8vw, 2.4rem); color: var(--grey);
  padding: .5em 0; border-bottom: 1px solid rgba(251,251,250,.1);
  display: flex; align-items: center; justify-content: space-between; transition: color .2s ease, padding-left .2s ease;
}
.tkr-menu__links a::after { content: "\2192"; color: var(--brass); opacity: 0; transition: opacity .2s ease; font-size: .7em; }
.tkr-menu__links a:hover, .tkr-menu__links a[aria-current="page"] { color: var(--brass); padding-left: .4rem; }
.tkr-menu__links a:hover::after, .tkr-menu__links a[aria-current="page"]::after { opacity: 1; }
.tkr-menu__cta { display: grid; gap: 1rem; padding-top: 1.75rem; }
.tkr-menu__tel { text-align: center; color: rgba(251,251,250,.75); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.tkr-menu__tel strong { display: block; font-family: var(--serif); font-size: 1.6rem; letter-spacing: 0; text-transform: none; color: var(--white); margin-top: .2rem; }
.tkr-menu__tel strong:hover { color: var(--brass); }

/* ==========================================================================
   MOBILE HERO — one message, one action (CRO). On mobile we drop the inline
   form and the phone block: the CTA button + sticky Call/Book bar carry it,
   and the form lives on the focused /book page. Desktop keeps both.
   ========================================================================== */
@media (max-width: 939px) {
  .tkr-hero__in { padding-block: clamp(1.75rem, 6vw, 2.5rem); }
  .tkr-eyebrow { margin-bottom: .7rem; }
  .tkr-hero__sub { margin-top: .9rem; }
  .tkr .tkr-chips { gap: .5rem; margin-top: 1.2rem; }
  .tkr-chip { font-size: .8rem; padding: .5em .85em; }
  .tkr-hero__tels { display: none; }   /* redundant with sticky Call bar */
  .tkr-formcard { display: none; }      /* form moves to /book — cleaner hero */
  .tkr .tkr-hero__btn { display: flex; margin-top: 1.35rem; }
}
.tkr-hero__btn { display: none; margin-top: 1.6rem; width: 100%; }

/* Footer CTA + socials */
.tkr-ft__cta { margin-top: 1.6rem; }
.tkr-ft__social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.tkr-ft__social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(251,251,250,.22); border-radius: 50%; color: rgba(251,251,250,.75); transition: border-color .18s ease, color .18s ease, background-color .18s ease; }
.tkr-ft__social a:hover { border-color: var(--brass); color: var(--brass); }
.tkr-ft__social svg { width: 18px; height: 18px; display: block; }
.tkr-ft__area { margin-top: 1rem; color: rgba(251,251,250,.5); font-size: .85rem; }


/* ---- Project before/after cards (gallery) — dual mini-carousels -------- */
.tkr-projs { display: flex; flex-direction: column; gap: 2.75rem; }
.tkr-proj__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tkr-proj__side { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r); background: #0d1420; box-shadow: var(--shadow); }
.tkr-proj__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .35s ease; }
.tkr-proj__slide.is-active { opacity: 1; }
.tkr-proj__tag { position: absolute; top: 10px; left: 10px; z-index: 3; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .32em .72em; border-radius: 5px; color: #fff; background: rgba(0,0,0,.55); }
.tkr-proj__tag--a { background: var(--brass); color: var(--navy-deep); }
.tkr .tkr-proj__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.86); color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,.3); cursor: pointer; padding: 0; transition: background .15s ease, transform .15s ease; }
.tkr .tkr-proj__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.tkr-proj__nav--prev { left: 8px; }
.tkr-proj__nav--next { right: 8px; }
.tkr-proj__nav svg { width: 17px; height: 17px; }
.tkr-proj__count { position: absolute; bottom: 8px; right: 8px; z-index: 3; font-size: .7rem; color: #fff; background: rgba(0,0,0,.55); padding: .22em .62em; border-radius: 20px; letter-spacing: .03em; }
.tkr-proj__cap { margin-top: .95rem; }
.tkr-proj__name { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); font-weight: 600; }
.tkr-proj__town { color: var(--ink-soft); }
@media (max-width: 620px) { .tkr-proj__pair { grid-template-columns: 1fr; } }


/* ---- Video reviews: horizontal scroll carousel (scales to any count) --- */
.tkr-vids__controls { display: flex; justify-content: flex-end; gap: .5rem; margin-bottom: 1.1rem; }
.tkr .tkr-vidnav { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(36,53,81,.22); background: #fff; color: var(--navy); cursor: pointer; padding: 0; transition: background .15s ease, color .15s ease; }
.tkr .tkr-vidnav:hover { background: var(--navy); color: #fff; }
.tkr .tkr-vidnav svg { width: 20px; height: 20px; }
.tkr-vidgrid { display: flex; gap: 1.5rem; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: .25rem; }
.tkr-vidgrid::-webkit-scrollbar { display: none; }
.tkr-vid { flex: 0 0 84%; width: auto; scroll-snap-align: start; }
@media (min-width: 640px) { .tkr-vid { flex-basis: 46%; } }
@media (min-width: 980px) { .tkr-vid { flex-basis: calc((100% - 3rem) / 3); } }
@media (max-width: 639px) { .tkr-vids__controls { display: none; } }

/* Equal-height video cards regardless of 1- vs 2-line quote */
.tkr-vid__quote { min-height: 3.2em; }


/* ============================================================
   MOBILE UX REFINEMENTS (chat-widget overlap, centring, etc.)
   ============================================================ */
/* Sticky bottom bar removed (per request) */
.tkr-bar { display: none !important; }

@media (max-width: 767px) {
  /* Header logo a touch bigger */
  .tkr-logo img { height: 33px; }

  /* Breadcrumb hidden on mobile (BreadcrumbList schema stays for SEO) */
  .tkr-phero__crumb { display: none; }

  /* Tighten eyebrows so long ones sit on one line (e.g. "The owner, not a salesman") */
  .tkr-eyebrow { letter-spacing: .1em; font-size: .7rem; }

  /* ---- Centre the homepage hero ---- */
  .tkr-hero__grid > div { text-align: center; }
  .tkr-hero__sub { margin-inline: auto; }
  .tkr .tkr-chips { justify-content: center; gap: .45rem; }
  .tkr-chip { font-size: .72rem; padding: .42em .68em; }
  .tkr .tkr-hero__btn { width: auto; margin-inline: auto; padding-left: 2.2em; padding-right: 2.2em; }

  /* ---- Centre inner-page heroes (phero) + their CTAs ---- */
  .tkr-phero__in { text-align: center; }
  .tkr-phero__sub { margin-inline: auto; }
  .tkr-phero__in > div { justify-content: center; }

  /* ---- Centre section headings ---- */
  .tkr-sect-head { text-align: center; margin-inline: auto; }

  /* Centre section headings/eyebrows in the two-column intro blocks (body stays left) */
  .tkr-alan__body { text-align: center; }
  .tkr-alan__body p:not(.tkr-eyebrow) { text-align: left; }
  .tkr-alan__sign { text-align: center; }
}
