/* Tailor Made Excel — design system
   Dark, editorial, condensed display type + mono labels + bold colour blocks. */

:root {
  --bg: #171512;
  --bg-2: #201d19;
  --ink: #f3f1e7;
  --muted: #aaa59a;
  --line: rgba(243, 241, 231, 0.14);
  --line-strong: rgba(243, 241, 231, 0.3);
  --green: #34d17a;
  --green-deep: #1d7a4b;
  --green-ink: #0f3b26;
  --cream: #f3f1e7;
  --cream-ink: #171512;
  --coral: #fd7043;
  --teal: #0e6b7a;
  --display: 'Bebas Neue', 'Oswald', Impact, 'Arial Narrow', sans-serif;
  --body: 'Manrope', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 48px);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
}
/* film grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
body > * { position: relative; z-index: 1; }
main { flex: 1; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }

/* Type scale */
.display { font-family: var(--display); text-transform: uppercase; line-height: .92; letter-spacing: .005em; }
.display-xl { font-size: clamp(3.4rem, 9.5vw, 9rem); }
.display-lg { font-size: clamp(2.8rem, 6.5vw, 5.6rem); }
.display-md { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.display-sm { font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1; }
.mono { font-family: var(--mono); font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow { display: block; font-family: var(--mono); font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.5; max-width: 62ch; color: var(--ink); }
.muted { color: var(--muted); }
.accent { color: var(--green); }
.ghost { color: transparent; -webkit-text-stroke: 1px var(--line-strong); }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.narrow { width: min(820px, 100% - 2 * var(--gutter)); margin-inline: auto; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--green); color: var(--green-ink); padding: 10px 16px; z-index: 100; font-family: var(--mono); }
.skip-link:focus { left: 8px; }

/* Buttons & links */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 0 28px; min-height: 56px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--display); font-size: 1.25rem; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap; transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--green-ink); }
.btn-primary:hover { background: #4ee08d; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); }
.btn-dark { background: var(--cream-ink); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--cream-ink); }
.btn svg { width: 18px; height: 18px; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); text-transform: uppercase;
  font-size: 1.25rem; letter-spacing: .04em; text-decoration: none; color: inherit;
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .25s; }
.arrow-link:hover svg { transform: translate(4px, 4px); }

.tag { display: inline-block; font-family: var(--mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; padding: 8px 12px; border: 1px solid currentColor; opacity: .85; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(23, 21, 18, .86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 34px; height: auto; }
.brand span { font-family: var(--display); font-size: 1.75rem; letter-spacing: .03em; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { font-family: var(--mono); font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--ink); padding: 10px 14px; border-bottom: 1px solid transparent; white-space: nowrap; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { min-height: 46px; padding: 0 20px; font-size: 1.05rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; color: var(--ink); width: 54px; height: 44px; }
.nav-toggle span { display: block; height: 2px; background: currentColor; margin: 7px 0; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; background: var(--bg); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 24px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-family: var(--display); font-size: 2.4rem; letter-spacing: .02em; text-transform: uppercase; padding: 12px 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) { .header-cta .btn { display: none; } .brand span { font-size: 1.5rem; } }

/* Sections */
.section { padding-block: clamp(64px, 9vw, 128px); }
.section-tight { padding-block: clamp(40px, 6vw, 80px); }
.section-head { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: clamp(32px, 5vw, 64px); }
.section-head .lead { margin: 0; }
.section-head h2 + p:not(.lead) { color: var(--muted); max-width: 60ch; margin: 0; }
@media (min-width: 900px) { .section-head.two-col { grid-template-columns: 1.2fr .8fr; align-items: end; } }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Hero */
.hero { padding-block: clamp(40px, 7vw, 96px) clamp(40px, 6vw, 80px); }
.hero h1 { max-width: 16ch; margin: 0 0 32px; }
.hero-row { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: end; margin-bottom: clamp(32px, 5vw, 56px); }
@media (min-width: 900px) { .hero-row { grid-template-columns: 1.4fr 1fr; } }
.hero-side { display: grid; gap: 22px; }
.hero-side .lead { margin: 0; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 28px; font-family: var(--mono); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.hero-meta strong { color: var(--ink); font-weight: 500; }

/* Hero showcase panel */
.showcase { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; min-height: 460px; overflow: hidden; border-radius: var(--radius); }
.showcase-left { background: var(--cream); color: var(--cream-ink); padding: clamp(24px, 4vw, 48px); display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.showcase-right { background: var(--green-deep); position: relative; overflow: hidden; }
.showcase-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .55; }
.showcase-right::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(29,122,75,.15), rgba(15,59,38,.85)); }
.showcase-right .big { position: absolute; left: 28px; bottom: 20px; font-family: var(--display); font-size: clamp(4rem, 11vw, 10rem); line-height: .85; color: var(--cream); text-transform: uppercase; z-index: 1; }
.showcase-right .big small { display: block; font-family: var(--mono); font-size: .75rem; letter-spacing: .12em; margin-bottom: 8px; color: var(--green); }
.showcase-cta { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; box-shadow: 0 10px 40px rgba(0,0,0,.35); }
.sheet { font-family: var(--mono); font-size: .78rem; border: 1px solid rgba(23,21,18,.18); background: #fff; border-radius: 3px; overflow: hidden; }
.sheet-bar { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-bottom: 1px solid rgba(23,21,18,.15); background: #faf8f0; }
.sheet-bar b { background: var(--cream-ink); color: var(--cream); padding: 2px 8px; font-weight: 500; }
.sheet-bar span { color: var(--green-deep); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sheet table { border-collapse: collapse; width: 100%; }
.sheet td, .sheet th { border: 1px solid rgba(23,21,18,.12); padding: 6px 8px; text-align: left; font-weight: 400; white-space: nowrap; }
.sheet th { background: #f1efe6; color: #6b665c; font-size: .7rem; }
.sheet td.num { text-align: right; }
.sheet td.hl { background: rgba(52,209,122,.25); }
.sheet td.ok { color: var(--green-deep); }
.sheet td.bad { color: #c0392b; }
.showcase-caption { display: flex; justify-content: space-between; gap: 16px; align-items: end; }
.showcase-caption h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: .95; max-width: 12ch; }
.showcase-caption p { font-family: var(--mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: #6b665c; margin: 0; }
@media (max-width: 760px) {
  .showcase { grid-template-columns: 1fr; min-height: 0; }
  .showcase-right { min-height: 260px; }
  .showcase-cta { top: auto; bottom: 200px; }
}

/* Marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 48px; animation: marquee 60s linear infinite; font-family: var(--mono); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.marquee-track span::before { content: "●"; color: var(--green); margin-right: 48px; font-size: .5rem; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Stacked work cards */
.stack { display: grid; gap: 24px; }
.work { position: sticky; top: 100px; padding: clamp(24px, 4vw, 48px); border-radius: var(--radius); display: grid; grid-template-columns: 1fr; gap: 28px; box-shadow: 0 -10px 40px rgba(0,0,0,.25); }
@media (min-width: 900px) { .work { grid-template-columns: 1fr 1fr; } }
.work-green { background: var(--green-deep); color: var(--cream); }
.work-cream { background: var(--cream); color: var(--cream-ink); }
.work-coral { background: var(--coral); color: var(--cream-ink); }
.work-teal { background: var(--teal); color: var(--cream); }
.work-head { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; align-items: center; font-family: var(--mono); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.work h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: .95; margin-bottom: 20px; max-width: 18ch; }
.work p { opacity: .9; max-width: 52ch; }
.work-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; border-top: 1px solid currentColor; padding-top: 22px; margin-top: 26px; }
.work-stats strong { display: block; font-family: var(--display); font-size: 2.6rem; line-height: 1; margin-bottom: 4px; }
.work-stats span { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.work-visual { align-self: stretch; display: grid; place-items: center; min-height: 240px; border-radius: var(--radius); background: rgba(0,0,0,.18); padding: 24px; }
.work-cream .work-visual { background: rgba(23,21,18,.06); }
.work-visual svg { width: 100%; max-width: 420px; height: auto; }

/* Service rows */
.rows { border-top: 1px solid var(--line); }
.row { display: grid; grid-template-columns: 64px 1fr auto; gap: 24px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; transition: padding-left .25s; }
.row:hover { padding-left: 12px; }
.row:hover .row-title { color: var(--green); }
.row-num { font-family: var(--mono); font-size: .8rem; color: var(--muted); }
.row-title { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.7rem, 3.2vw, 2.8rem); line-height: 1; transition: color .2s; }
.row-desc { color: var(--muted); margin: 8px 0 0; max-width: 60ch; font-size: .98rem; }
.row-arrow { width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; transition: background .2s, color .2s; }
.row-arrow svg { width: 16px; height: 16px; }
.row:hover .row-arrow { background: var(--green); color: var(--green-ink); border-color: var(--green); }
@media (max-width: 640px) { .row { grid-template-columns: 1fr auto; } .row-num { display: none; } }

/* Big quote */
.quote-block { position: relative; min-height: 560px; display: flex; align-items: flex-end; padding: clamp(24px, 4vw, 48px); border-radius: var(--radius); overflow: hidden; background: var(--green-ink); }
.quote-block img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; mix-blend-mode: luminosity; }
.quote-block::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,59,38,.1) 0%, rgba(15,59,38,.92) 70%); }
.quote-inner { position: relative; max-width: 780px; }
.quote-inner blockquote { margin: 0 0 28px; font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.45; }
.quote-inner blockquote::before { content: "“"; color: var(--green); font-family: var(--display); font-size: 2.4rem; line-height: 0; vertical-align: -.3em; margin-right: 6px; }
.quote-inner .name { font-family: var(--display); text-transform: uppercase; font-size: 2rem; line-height: 1; }
.quote-inner .role { font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-top: 8px; }

/* Numbers */
.numbers { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (min-width: 800px) { .numbers { grid-template-columns: repeat(4, 1fr); } }
.number { padding: 32px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.number strong { display: block; font-family: var(--display); font-size: clamp(3.4rem, 6vw, 5.6rem); line-height: .9; color: var(--green); }
.number span { font-family: var(--mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 10px; }

/* Cards */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.card { background: var(--bg-2); border: 1px solid var(--line); padding: 28px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 12px; }
.card h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.7rem; line-height: 1; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.card-cream { background: var(--cream); color: var(--cream-ink); border-color: transparent; }
.card-cream p { color: #4d483f; }
.card-link { text-decoration: none; transition: border-color .2s, transform .2s; }
.card-link:hover { border-color: var(--green); transform: translateY(-3px); }
.card .more { margin-top: auto; padding-top: 10px; }

/* Testimonials */
.testimonial { background: var(--bg-2); border: 1px solid var(--line); padding: 28px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 16px; }
.testimonial .stars { color: var(--green); font-size: .9rem; letter-spacing: 2px; }
.testimonial blockquote { margin: 0; font-size: 1rem; line-height: 1.55; }
.testimonial blockquote p { margin: 0; }
.testimonial figcaption { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: auto; }
.testimonial figcaption strong { display: block; color: var(--ink); font-weight: 500; }
.rating { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; border: 1px solid var(--line-strong); padding: 12px 18px; border-radius: 999px; }
.rating strong { font-family: var(--display); font-size: 1.7rem; line-height: 1; }
.rating .stars { color: var(--green); letter-spacing: 2px; }
.rating small { font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.chips li { font-family: var(--mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; padding: 10px 14px; border: 1px solid var(--line-strong); }
.card-cream .chips { gap: 8px; }
.card-cream .chips li { font-size: .68rem; padding: 7px 10px; border-color: rgba(23,21,18,.4); }

/* FAQ */
.faq-wrap { max-width: 900px; }
.faq-wrap h2 { margin-bottom: 28px; }
.faq details, .faq-wrap details { border-bottom: 1px solid var(--line); }
.faq-wrap details:first-of-type, .faq details:first-of-type { border-top: 1px solid var(--line); }
.faq-wrap summary, .faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 22px 0; font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; line-height: 1; }
.faq-wrap summary::-webkit-details-marker, .faq summary::-webkit-details-marker { display: none; }
.faq-wrap summary::after, .faq summary::after { content: "+"; color: var(--green); font-size: 1.8rem; flex-shrink: 0; }
.faq-wrap details[open] summary::after, .faq details[open] summary::after { content: "–"; }
.faq-wrap details p, .faq details p { color: var(--muted); margin: 0 0 22px; max-width: 70ch; }

/* CTA block */
.cta-block { background: var(--green); color: var(--green-ink); padding: clamp(32px, 6vw, 72px); border-radius: var(--radius); display: grid; gap: 28px; align-items: end; }
@media (min-width: 900px) { .cta-block { grid-template-columns: 1.3fr auto; } }
.cta-block h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.8rem, 7vw, 6rem); line-height: .9; }
.cta-block p { margin: 16px 0 0; max-width: 50ch; font-size: 1.05rem; }
.cta-block .btn-dark:hover { background: #2a2622; }
.cta-coral { background: var(--coral); }

/* Page hero (inner) */
.page-intro { max-width: 900px; }
.page-intro .lead { margin-bottom: 28px; }
.page-hero { padding-block: clamp(40px, 6vw, 80px) clamp(28px, 4vw, 56px); }
.page-hero h1 { max-width: 16ch; margin-bottom: 28px; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-wrap: wrap; gap: 10px; font-family: var(--mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; opacity: .5; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }

/* Split */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.steps { counter-reset: step; display: grid; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--display); font-size: 2.2rem; line-height: 1; color: var(--green); }
.step h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; line-height: 1; margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; font-size: .98rem; }

/* Prose */
.prose { max-width: 72ch; }
.prose h2 { font-family: var(--display); text-transform: uppercase; font-size: 2rem; line-height: 1; margin: 2em 0 .6em; }
.prose h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.4rem; line-height: 1; margin: 1.6em 0 .5em; color: var(--green); }
.prose p, .prose li { color: #d9d6cc; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--green); }
.prose .meta { font-family: var(--mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (min-width: 960px) { .contact-layout { grid-template-columns: minmax(0, 1fr) 340px; } }
.form-panel { background: #f6f5ef; color: #192f29; padding: clamp(16px, 3vw, 32px); border-radius: var(--radius); }
.form-panel .note { background: #ebf1e8; color: #256748; padding: 14px 16px; border-radius: 8px; font-size: .9rem; line-height: 1.55; margin-bottom: 16px; font-family: var(--body); }
.form-panel .note strong { display: block; font-weight: 700; }
#tme-enquiry-frame { display: block; width: 100%; height: 950px; border: 0; background: transparent; }
@media (max-width: 600px) { #tme-enquiry-frame { height: 1240px; } }
.contact-aside { display: grid; gap: 16px; }
.contact-aside .card a { color: var(--ink); text-decoration: none; }
.contact-aside .card a:hover { color: var(--green); }
.contact-line { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.contact-line svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(48px, 7vw, 96px) 32px; margin-top: auto; }
.footer-top { display: grid; gap: 40px; margin-bottom: clamp(40px, 6vw, 72px); }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-wordmark { font-family: var(--display); text-transform: uppercase; font-size: clamp(3rem, 7vw, 5.5rem); line-height: .9; }
.footer-wordmark span { color: var(--green); }
.footer-top p { color: var(--muted); max-width: 36ch; margin-top: 18px; font-size: .95rem; }
.site-footer h3 { font-family: var(--mono); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer ul a { text-decoration: none; color: var(--ink); font-size: .98rem; }
.site-footer ul a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 20px; display: grid; gap: 8px; font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 900px) { .footer-bottom { grid-template-columns: 1fr auto; } }

/* Sticky mobile CTA */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px)); background: rgba(23,21,18,.94); border-top: 1px solid var(--line); z-index: 50; backdrop-filter: blur(8px); }
  .mobile-cta .btn { min-height: 48px; font-size: 1.05rem; padding: 0 12px; }
  body { padding-bottom: 76px; }
  body.no-mobile-cta { padding-bottom: 0; }
  body.no-mobile-cta .mobile-cta { display: none; }
}

/* Reveal on scroll (JS-enhanced; content is visible without JS) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* Utilities */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; } .mt-6 { margin-top: 72px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 16px; } .mb-4 { margin-bottom: 32px; }
.center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
