/* Theme "fresh". Generated from brand tokens by gen_site.py, do not hand edit.
   Every colour and geometry value below comes from the brand config, so a new
   brand is a config change and not a stylesheet fork. */

:root {
  --ink: #092F3A;
  --accent: #D9F268;
  --surface: #F3F5EF;
  --white: #FFFFFF;
  --muted: #58696B;
  --hairline: #DCE3DE;

  --on-accent: #092F3A;
  --on-ink: #FFFFFF;

  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --w-body: 400;
  --w-label: 700;
  --w-head: 800;

  --r-btn: 7px;
  --r-card: 14px;
  --r-section: 16px;

  --maxw: 1280px;
  --gutter: 20px;
  --btn-h: 52px;
}

@media (min-width: 860px) {
  :root {
    --gutter: 48px;
    --btn-h: 62px;
  }
}

/* ---- font, self hosted, no third party request ---------------------------- */
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: var(--w-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.dark :focus-visible { outline-color: var(--accent); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--white);
  padding: 12px 18px; border-radius: 0 0 var(--r-btn) 0;
  font-weight: var(--w-label); text-decoration: none;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: 12px; font-weight: var(--w-label);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
}
.dark .eyebrow { color: var(--accent); }

/* ---- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 18px;
  min-height: var(--btn-h);
  padding: 0 22px;
  border: 0; border-radius: var(--r-btn);
  background: var(--accent); color: var(--on-accent);
  font-weight: var(--w-label); font-size: 16px;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover { filter: brightness(.95); }
.btn:active { transform: translateY(1px); }
.btn--block { width: 100%; }
.btn .arw { flex: none; }

.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: var(--w-label); font-size: 15px;
  text-decoration: none; color: var(--ink);
  border-bottom: 2px solid transparent;
}
.tlink:hover { border-bottom-color: var(--accent); }
.dark .tlink { color: var(--white); }

/* ---- top strip ------------------------------------------------------------ */
.topbar {
  background: var(--ink); color: var(--white);
  min-height: 37px;
  display: flex; align-items: center;
  font-size: 11.5px; font-weight: var(--w-label);
  letter-spacing: .08em; text-transform: uppercase;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: var(--white); text-decoration: none; opacity: .85; }
.topbar a:hover { opacity: 1; }
.topbar__area { display: none; }
@media (min-width: 620px) { .topbar__area { display: inline-flex; gap: 6px; } }

/* ---- nav ------------------------------------------------------------------ */
.nav { background: var(--white); border-bottom: 1px solid var(--hairline); }
.nav .wrap {
  min-height: 84px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
@media (min-width: 860px) { .nav .wrap { min-height: 115px; } }
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { width: 180px; }
@media (max-width: 520px) { .nav__logo img { width: 150px; } }

.nav__links { display: none; gap: 36px; margin-left: auto; }
@media (min-width: 860px) { .nav__links { display: flex; } }
.nav__links > a, .navdd-t {
  text-decoration: none; font-weight: var(--w-label); font-size: 15.5px;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav__links > a:hover, .navdd-t:hover { border-bottom-color: var(--accent); }

/* ---- desktop dropdowns ---------------------------------------------------
   Opens on hover and on keyboard focus, so it is reachable without a mouse. */
.navdd { position: relative; }
.navdd-t { display: inline-flex; align-items: center; gap: 5px; }
.ddc { width: 15px; height: 15px; }
.navdd-m {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 250px; padding: 10px;
  background: var(--white);
  border: 1px solid var(--hairline); border-radius: var(--r-card);
  box-shadow: 0 18px 44px rgba(9, 47, 58, .13);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .14s ease;
  z-index: 60;
}
.navdd:hover .navdd-m,
.navdd:focus-within .navdd-m { opacity: 1; visibility: visible; pointer-events: auto; }
.navdd-m a {
  display: block; padding: 10px 12px; border-radius: 7px;
  text-decoration: none; font-size: 15px; font-weight: 500;
}
.navdd-m a:hover, .navdd-m a:focus-visible { background: var(--surface); }
.navdd-all {
  margin-top: 6px; padding-top: 14px !important;
  border-top: 1px solid var(--hairline);
  font-weight: var(--w-label) !important;
}

/* ---- mobile drawer groups ------------------------------------------------ */
.mobnav .drw-gr { border-bottom: 1px solid var(--hairline); }
.mobnav .drw-gr summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; cursor: pointer; list-style: none;
  font-weight: var(--w-label); font-size: 17px;
}
.mobnav .drw-gr summary::-webkit-details-marker { display: none; }
.mobnav .drw-gr[open] .ddc { transform: rotate(180deg); }
.mobnav .drw-p { padding: 2px 0 14px 14px; }
.mobnav .drw-p a { border-bottom: 0; padding: 10px 0; font-size: 15.5px; font-weight: 500; }
.mobnav .drw-top { display: block; }

.nav__cta { display: none; margin-left: 36px; }
@media (min-width: 860px) { .nav__cta { display: inline-flex; } }

.menu-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; padding: 10px 4px;
  font-weight: var(--w-head); font-size: 17px; cursor: pointer;
}
@media (min-width: 860px) { .menu-btn { display: none; } }

/* Own layout rather than the shared .wrap: `.nav .wrap` outranks `.mobnav`
   on specificity and would force the closed menu back to display:flex. */
.mobnav {
  display: none;
  border-top: 1px solid var(--hairline);
  background: var(--white);
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.mobnav[data-open="true"] { display: block; }
@media (min-width: 860px) { .mobnav { display: none !important; } }
.mobnav nav { padding: 8px 0 20px; }
.mobnav > nav > a {
  display: block; padding: 14px 0; text-decoration: none;
  font-weight: var(--w-label); font-size: 17px;
  border-bottom: 1px solid var(--hairline);
}
.mobnav a { text-decoration: none; }
.mobnav .btn { margin-top: 18px; }

/* ---- hero ----------------------------------------------------------------- */
.hero { padding: 40px 0 8px; }
@media (min-width: 860px) { .hero { padding: 56px 0 24px; } }
.hero__grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 47fr 53fr; gap: 35px; }
}
.hero__kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero__kicker span { color: var(--muted); }

.hero h1 {
  font-weight: var(--w-head);
  font-size: clamp(48px, 11.5vw, 94px);
  line-height: 1.025;
  letter-spacing: -.03em;
}
@media (min-width: 960px) { .hero h1 { font-size: clamp(60px, 6.2vw, 94px); } }
.hero h1 .ul {
  display: inline-block; position: relative;
}
.hero h1 .ul::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.14em;
  height: .17em; background: var(--accent); z-index: -1;
}
.hero h1 .ul { z-index: 0; }

.hero__sub {
  margin-top: 30px; color: var(--muted);
  font-size: clamp(16px, 2.2vw, 18px); max-width: 34ch;
}
.hero__actions {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 32px;
}
.hero__note {
  margin-top: 26px; font-size: 13.5px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--r-card); object-fit: cover;
}
.stamp {
  position: absolute; top: 24px; right: 24px;
  background: var(--ink); color: var(--accent);
  padding: 12px 18px; border-radius: 9px;
  font-size: 12px; font-weight: var(--w-label);
  letter-spacing: .08em; text-transform: uppercase;
}
.cap {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(9, 47, 58, .82); color: var(--white);
  padding: 11px 18px; border-radius: 9px;
  font-size: 14px; font-weight: 500;
}
@media (max-width: 620px) {
  .stamp { top: 14px; right: 14px; padding: 9px 13px; font-size: 11px; }
  .cap { left: 14px; bottom: 14px; padding: 9px 13px; font-size: 13px; }
}

/* ---- service strip -------------------------------------------------------
   A navigation band, not a logo wall. Each name is a link to that service,
   divided by a hairline rather than a decorative glyph. */
.strip { background: var(--surface); margin-top: 32px; }
.strip .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 620px) { .strip .wrap { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .strip .wrap { grid-template-columns: repeat(5, 1fr); } }

.strip__item {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 62px;
  padding: 14px 10px;
  text-align: center; text-decoration: none;
  font-size: 12.5px; font-weight: var(--w-label);
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink);
  transition: background .2s ease, color .2s ease;
}
/* Hairline between items, drawn on the item so it never dangles at a wrap. */
.strip__item + .strip__item::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 20px;
  background: var(--hairline);
}
@media (min-width: 620px) and (max-width: 899px) {
  .strip__item:nth-child(3n + 1)::before { display: none; }
}
@media (max-width: 619px) {
  .strip__item:nth-child(odd)::before { display: none; }
}
.strip__item::after {
  content: "";
  position: absolute; left: 50%; right: 50%; bottom: 12px; height: 2px;
  background: var(--accent);
  transition: left .25s ease, right .25s ease;
}
.strip__item:hover, .strip__item:focus-visible { background: rgba(255, 255, 255, .55); }
.strip__item:hover::after, .strip__item:focus-visible::after { left: 22%; right: 22%; }

/* ---- section shell -------------------------------------------------------- */
.sect { padding: 64px 0; }
@media (min-width: 860px) { .sect { padding: 96px 0; } }
.sect__head { display: grid; gap: 18px; align-items: end; margin-bottom: 40px; }
@media (min-width: 960px) {
  .sect__head { grid-template-columns: 1.25fr 1fr; gap: 48px; margin-bottom: 56px; }
}
.sect h2 {
  font-weight: var(--w-head);
  font-size: clamp(30px, 5.2vw, 46px);
  line-height: 1.08; letter-spacing: -.02em;
  margin-top: 10px;
}
.sect__lede { color: var(--muted); font-size: 16.5px; }
.dark .sect__lede { color: rgba(255,255,255,.76); }

/* ---- service cards -------------------------------------------------------- */
.cards { display: grid; gap: 18px; }
@media (min-width: 700px) { .cards { grid-template-columns: 1fr 1fr; } }
/* Six columns so five cards sit as three then two, both rows full width. */
@media (min-width: 1000px) {
  .cards { grid-template-columns: repeat(6, 1fr); }
  .cards > .card { grid-column: span 2; }
  .cards > .card:nth-child(4), .cards > .card:nth-child(5) { grid-column: span 3; }
}

.card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--r-card); overflow: hidden;
  text-decoration: none; min-height: 300px;
  transition: transform .18s ease;
}
.card:hover { transform: translateY(-3px); }
@media (min-width: 700px) { .card--lead { grid-column: 1 / -1; } }
@media (min-width: 1000px) { .card--lead { grid-column: auto; } }

.card--photo { background: var(--ink); color: var(--white); }
.card--photo img { width: 100%; height: 190px; object-fit: cover; }
.card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
/* Solid colours rather than opacity: a faded number is the first thing to
   fail a contrast check, and these sit on three different card backgrounds. */
.card__num {
  font-size: 12px; font-weight: var(--w-label); letter-spacing: .08em;
  color: var(--muted); margin-bottom: 10px;
}
.card--photo .card__num { color: rgba(255, 255, 255, .88); }
.card--accent .card__num { color: var(--ink); }
.card h3 {
  font-weight: var(--w-head); font-size: clamp(22px, 3vw, 27px);
  line-height: 1.15; letter-spacing: -.015em; margin: 0 0 12px;
}
.card p { font-size: 15px; }
.card--photo p { color: rgba(255,255,255,.8); }
.card--stone { background: var(--surface); color: var(--ink); }
.card--stone p { color: var(--muted); }
.card--accent { background: var(--accent); color: var(--on-accent); }
.card--accent p { color: var(--on-accent); opacity: .78; }
.card__mark { width: 52px; margin-bottom: 26px; }
.card__go { margin-top: auto; padding-top: 18px; align-self: flex-end; }

.commercial {
  display: grid; gap: 14px; margin-top: 34px;
  padding-top: 30px; border-top: 1px solid var(--hairline);
}
@media (min-width: 860px) {
  .commercial { grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
}
.commercial h3 { font-weight: var(--w-head); font-size: clamp(19px, 2.6vw, 23px); margin-top: 6px; }

/* ---- dark approach -------------------------------------------------------- */
.dark { background: var(--ink); color: var(--white); }
.dark h2 { color: var(--white); }
.approach__grid { display: grid; gap: 40px; }
@media (min-width: 960px) { .approach__grid { grid-template-columns: 1fr 1.05fr; gap: 72px; } }
.approach h2 .accent { color: var(--accent); display: block; }
.approach__lede { color: rgba(255,255,255,.76); margin-top: 22px; max-width: 42ch; }
.approach .btn { margin-top: 38px; }

.steps { list-style: none; margin: 0; padding: 0; }
.steps li { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 26px 0; }
.steps li + li { border-top: 1px solid rgba(255,255,255,.16); }
.steps li:first-child { padding-top: 0; }
.steps .n { font-size: 12px; font-weight: var(--w-label); color: var(--accent); padding-top: 6px; }
.steps h3 { font-weight: var(--w-head); font-size: clamp(19px, 2.5vw, 23px); letter-spacing: -.01em; }
.steps p { color: rgba(255,255,255,.72); font-size: 15px; margin-top: 8px; }

/* ---- process -------------------------------------------------------------- */
.process { display: grid; gap: 34px; }
@media (min-width: 860px) { .process { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.process > li, .process > .process__item {
  list-style: none; border-top: 1px solid var(--hairline); padding-top: 22px;
}
.process .n {
  font-weight: var(--w-head); font-size: 40px; line-height: 1;
  color: #7E8B8D; margin-bottom: 26px;
}
.process h3 { font-weight: var(--w-head); font-size: 19px; margin-bottom: 10px; }
.process p { color: var(--muted); font-size: 15px; }

/* ---- coverage ------------------------------------------------------------- */
.coverage {
  background: var(--surface); border-radius: var(--r-section);
  padding: 34px 24px;
}
@media (min-width: 860px) { .coverage { padding: 56px 48px; } }
.coverage__grid { display: grid; gap: 34px; }
@media (min-width: 960px) { .coverage__grid { grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; } }
.coverage h2 { font-size: clamp(28px, 4.6vw, 42px); }
.coverage p { color: var(--muted); margin-top: 18px; max-width: 40ch; }
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; list-style: none; margin: 0; padding: 0; }
.areas li { padding: 13px 0; border-bottom: 1px solid var(--hairline); font-size: 15px; }
.areas li::before { content: "\2197"; color: var(--muted); margin-right: 9px; font-size: 13px; }

/* ---- faq ------------------------------------------------------------------ */
.faq__grid { display: grid; gap: 30px; }
@media (min-width: 960px) { .faq__grid { grid-template-columns: 1fr 1.25fr; gap: 64px; } }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-weight: var(--w-label); font-size: 16.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: var(--w-body); color: var(--muted); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 22px; color: var(--muted); font-size: 15.5px; max-width: 62ch; }

/* ---- quote ---------------------------------------------------------------- */
.quote__grid { display: grid; gap: 36px; }
@media (min-width: 960px) { .quote__grid { grid-template-columns: 1fr 1.02fr; gap: 64px; align-items: center; } }
.quote h2 { font-size: clamp(34px, 6vw, 58px); line-height: 1.06; letter-spacing: -.025em; }
.quote h2 .accent { color: var(--accent); }
.quote__lede { color: rgba(255,255,255,.76); margin-top: 24px; }

.formcard {
  background: var(--white); color: var(--ink);
  border-radius: var(--r-card); padding: 26px 22px;
}
@media (min-width: 620px) { .formcard { padding: 34px 32px; } }
.formcard h3 { font-weight: var(--w-head); font-size: clamp(20px, 3vw, 25px); margin-bottom: 24px; }
.frow { display: grid; gap: 18px; }
@media (min-width: 620px) { .frow--2 { grid-template-columns: 1fr 1fr; } }
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font-size: 16px;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--hairline); border-radius: 8px;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formcard .btn { margin-top: 6px; }

/* ---- footer --------------------------------------------------------------- */
.foot { border-top: 1px solid var(--hairline); padding: 40px 0 120px; }
@media (min-width: 860px) { .foot { padding: 48px 0 48px; } }
.foot__grid { display: grid; gap: 24px; align-items: center; }
@media (min-width: 860px) { .foot__grid { grid-template-columns: auto 1fr auto; gap: 40px; } }
.foot img { width: 180px; }
.foot__tag { font-weight: var(--w-label); font-size: 15px; }
.foot__legal { color: var(--muted); font-size: 13px; line-height: 1.6; }
.foot__contact { margin-top: 6px; font-size: 14px; }
.foot__contact a { color: var(--muted); }
/* Phone chip. Rendered only when the brand config carries a real number. */
.nav__phone {
  display: none; margin-left: 28px;
  font-weight: var(--w-label); font-size: 15.5px; text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 1000px) { .nav__phone { display: inline-flex; } }
.foot__legal a { color: var(--muted); }

/* ---- mobile sticky cta ---------------------------------------------------- */
.stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: var(--white); border-top: 1px solid var(--hairline);
}
@media (min-width: 860px) { .stickycta { display: none; } }

/* ---- inner pages ---------------------------------------------------------- */
.prose { max-width: 68ch; padding: 56px 0 80px; }
.prose h1 { font-weight: var(--w-head); font-size: clamp(32px, 6vw, 48px); line-height: 1.1; letter-spacing: -.02em; }
.prose h2 { font-weight: var(--w-head); font-size: clamp(20px, 3vw, 25px); margin-top: 40px; letter-spacing: -.01em; }
.prose p, .prose li { color: var(--muted); font-size: 16px; margin-top: 14px; }
.prose ul { padding-left: 20px; }
.prose a { color: var(--ink); }

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


/* ---- area tiles ----------------------------------------------------------
   Equal squares. The panel is real glass: it blurs and lifts what is behind
   it rather than sitting on an opaque block, and a slow specular sweep runs
   across it on hover. Everything degrades to a plain readable panel where
   backdrop-filter is unsupported, and holds still under reduced motion. */
.tiles {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .tiles { grid-template-columns: repeat(4, 1fr); } }

.tile {
  position: relative; display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  background: var(--surface);
  isolation: isolate;
}
.tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.09); }

.tile__glass {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 15px;
  border-radius: 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 6px 24px rgba(9, 47, 58, .16), inset 0 1px 0 rgba(255, 255, 255, .85);
  -webkit-backdrop-filter: blur(13px) saturate(180%);
  backdrop-filter: blur(13px) saturate(180%);
  overflow: hidden;
  transition: background .35s ease, transform .35s cubic-bezier(.2, .7, .3, 1),
              box-shadow .35s ease, backdrop-filter .35s ease;
}
/* The specular sweep. A wide soft highlight parked off to the left, which
   travels across the panel when the tile is hovered or focused. */
.tile__glass::before {
  content: "";
  position: absolute; top: -60%; bottom: -60%; left: -75%;
  width: 55%;
  background: linear-gradient(100deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.72) 45%,
      rgba(255,255,255,0) 100%);
  transform: skewX(-16deg);
  transition: left .75s cubic-bezier(.25, .8, .3, 1);
  pointer-events: none;
}
.tile:hover .tile__glass, .tile:focus-visible .tile__glass {
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  backdrop-filter: blur(20px) saturate(200%);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(9, 47, 58, .22), inset 0 1px 0 rgba(255, 255, 255, .95);
}
.tile:hover .tile__glass::before, .tile:focus-visible .tile__glass::before { left: 130%; }

.tile__name {
  font-weight: var(--w-head); font-size: 17px; letter-spacing: -.01em;
  position: relative; z-index: 1;
}
.tile__go {
  display: inline-flex; position: relative; z-index: 1;
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
}
.tile:hover .tile__go, .tile:focus-visible .tile__go { transform: translate(3px, -3px); }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .tile__glass { background: rgba(255, 255, 255, .92); }
  .tile:hover .tile__glass { background: rgba(255, 255, 255, .97); }
}
@media (prefers-reduced-motion: reduce) {
  .tile img, .tile:hover img { transform: none; }
  .tile__glass::before { display: none; }
}

.tiles__attr {
  margin-top: 20px; font-size: 12.5px; color: var(--muted);
}


/* ---- breadcrumbs ---------------------------------------------------------- */
.crumbs { border-bottom: 1px solid var(--hairline); }
.crumbs ol {
  list-style: none; margin: 0; padding: 14px 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .55; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); font-weight: 500; }

/* ---- contextual cross links ---------------------------------------------- */
.crosslink {
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--muted); font-size: 16px; max-width: 68ch;
}
.dark .crosslink { border-top-color: rgba(255,255,255,.16); color: rgba(255,255,255,.76); }
.crosslink a { color: var(--ink); font-weight: 500; }
.dark .crosslink a { color: var(--accent); }