@view-transition { navigation: auto; }

:root {
  --ink: #061716;
  --ink-soft: #0a2826;
  --teal: #073b3a;
  --teal-bright: #2c6e6a;
  --paper: #f4f2eb;
  --paper-warm: #ece9df;
  --mist: #d6e3df;
  --coral: #ff7657;
  --coral-deep: #ed5f42;
  --white: #fff;
  --text: #152321;
  --muted: #65716e;
  --line: rgba(7, 59, 58, .16);
  --line-light: rgba(255, 255, 255, .18);
  --shell: min(1440px, calc(100vw - 64px));
  --narrow: min(980px, calc(100vw - 64px));
  --ease: cubic-bezier(.2, .75, .25, 1);
  --shadow: 0 36px 120px rgba(2, 24, 23, .20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--ink); background: var(--coral); }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { width: var(--narrow); margin-inline: auto; }
.skip {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 10001;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 8px;
}
.skip:focus { top: 16px; }

/* Global motion helpers */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="scale"].is-visible { transform: none; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10003;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--coral);
}

.motion-toggle {
  position: fixed;
  z-index: 500;
  right: 18px;
  bottom: 18px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(6, 23, 22, .82);
  color: var(--paper);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  cursor: pointer;
}
.motion-toggle span { font-size: 0; }
.motion-toggle span::before { content: "◌"; font-size: 21px; }
html[data-motion="off"] .motion-toggle span::before { content: "●"; }

/* Header */
.noticebar {
  position: relative;
  z-index: 310;
  background: var(--ink);
  color: rgba(255,255,255,.58);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.noticebar .shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 9px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(244, 242, 235, .86);
  border-bottom: 1px solid rgba(7,59,58,.10);
  backdrop-filter: blur(22px) saturate(1.3);
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.headerin {
  min-height: 84px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 34px;
}
.logo { position: relative; z-index: 2; }
.logo img { width: 178px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -.01em;
}
.nav a {
  position: relative;
  padding-block: 8px;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 2px;
  background: var(--coral);
  transition: right .35s var(--ease);
}
.nav a:hover::after,
.nav a.active::after { right: 0; }
.menu {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.015em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease, color .3s ease;
}
.btn::after { content: "↗"; margin-left: 13px; font-size: 1.05em; }
.btn:hover { transform: translateY(-3px); }
.btncoral { color: var(--ink); background: var(--coral); box-shadow: 0 14px 40px rgba(255,118,87,.25); }
.btncoral:hover { background: #ff896d; box-shadow: 0 20px 54px rgba(255,118,87,.35); }
.btnteal { color: var(--paper); background: var(--ink); }
.btnline { color: currentColor; border-color: currentColor; background: transparent; }

/* Type system */
h1, h2, h3, h4 {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.02;
  letter-spacing: -.058em;
  text-wrap: balance;
}
h1 { font-size: clamp(4.6rem, 9.5vw, 10.8rem); }
h2 { font-size: clamp(3rem, 6.2vw, 7rem); }
h3 { font-size: clamp(1.55rem, 2.8vw, 3.1rem); line-height: 1.08; }
h4 { font-size: 1rem; letter-spacing: -.02em; }
.editorial { font-family: Newsreader, Georgia, serif; font-style: italic; font-weight: 500; letter-spacing: -.04em; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--coral);
}
.lede { max-width: 700px; font-size: clamp(1.08rem, 1.7vw, 1.42rem); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Home hero */
.page-home .noticebar,
.page-home .header { position: absolute; left: 0; right: 0; }
.page-home .noticebar { top: 0; background: transparent; }
.page-home .header { top: 35px; color: var(--paper); background: transparent; border-bottom-color: rgba(255,255,255,.16); }
.page-home .header.is-scrolled {
  position: fixed;
  top: 0;
  color: var(--paper);
  background: rgba(5, 25, 24, .86);
  border-bottom-color: rgba(255,255,255,.13);
}
.page-home .logo img { filter: brightness(0) invert(1); }
.page-home .header .btncoral { color: var(--ink); }

.hero-award {
  position: relative;
  min-height: 100svh;
  color: var(--paper);
  background: var(--ink);
  overflow: clip;
}
.hero-award__media {
  position: absolute;
  inset: 0;
  background: url("images/places/newcastle.jpg") center/cover no-repeat;
}
.hero-award__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .82;
  filter: saturate(.76) contrast(1.08) brightness(.62);
}
.hero-award__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,20,19,.95) 0%, rgba(3,20,19,.70) 40%, rgba(3,20,19,.20) 72%, rgba(3,20,19,.54) 100%),
    linear-gradient(180deg, rgba(3,20,19,.40), transparent 40%, rgba(3,20,19,.80));
}
.hero-award__grid {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 50px;
  padding-top: 180px;
  padding-bottom: clamp(46px, 7vh, 90px);
}
.hero-award__copy { max-width: 1120px; }
.hero-award h1 { max-width: 11ch; }
.hero-award h1 span { display: block; }
.hero-award h1 .editorial { color: var(--coral); }
.hero-award .lede { margin: 30px 0 0; color: rgba(255,255,255,.72); }
.hero-award__aside {
  align-self: end;
  border-left: 1px solid rgba(255,255,255,.25);
  padding-left: 24px;
  padding-bottom: 8px;
}
.hero-award__aside strong { display: block; font-family: Manrope; font-size: 1.1rem; }
.hero-award__aside p { margin: 8px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.hero-index {
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-ring {
  position: absolute;
  z-index: 1;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  right: -14vw;
  top: 12vh;
}
.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: inherit;
}
.hero-ring::after { inset: 30%; border-color: rgba(255,118,87,.35); }

/* Manifesto */
.manifesto {
  position: relative;
  padding: clamp(120px, 16vw, 260px) 0;
  background: var(--paper);
  overflow: hidden;
}
.manifesto::before {
  content: "BUYER";
  position: absolute;
  top: 8%;
  right: -3%;
  color: rgba(7,59,58,.045);
  font: 800 clamp(10rem, 26vw, 30rem)/.8 Manrope;
  letter-spacing: -.1em;
}
.manifesto__statement {
  position: relative;
  max-width: 1290px;
  font: 700 clamp(3.4rem, 7.7vw, 9.2rem)/.98 Manrope;
  letter-spacing: -.065em;
}
.manifesto__statement .muted { color: #9ba39e; }
.manifesto__statement .editorial { color: var(--teal); }
.manifesto__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.manifesto__foot p { max-width: 560px; margin: 0; color: var(--muted); font-size: 18px; }

/* Kinetic strip */
.kinetic {
  overflow: hidden;
  color: var(--paper);
  background: var(--coral);
  border-block: 1px solid rgba(6,23,22,.18);
}
.kinetic__track {
  display: flex;
  width: max-content;
  padding-block: 18px;
  animation: ticker 22s linear infinite;
}
.kinetic__track span {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 28px;
  color: var(--ink);
  font: 800 clamp(1.3rem, 2.4vw, 2.6rem)/1 Manrope;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.kinetic__track span::after { content: "✦"; font-size: .7em; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Region experience */
.region {
  position: relative;
  padding: clamp(110px, 14vw, 220px) 0;
  color: var(--paper);
  background: var(--ink);
  overflow: clip;
}
.region__intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 70px;
}
.region__intro p { max-width: 560px; color: rgba(255,255,255,.63); font-size: 18px; }
.region-map {
  position: absolute;
  right: -6vw;
  top: 90px;
  width: min(54vw, 760px);
  opacity: .34;
  pointer-events: none;
}
.region-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 34vw);
  gap: 22px;
  width: calc(100% + (100vw - var(--shell)) / 2);
  overflow-x: auto;
  padding: 0 calc((100vw - var(--shell))/2) 26px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--coral) rgba(255,255,255,.08);
}
.place-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--teal);
  border-radius: 4px;
  isolation: isolate;
}
.place-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(2,18,17,.88) 100%);
}
.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 1s var(--ease);
}
.place-card:hover img { transform: scale(1.055); filter: saturate(1.05); }
.place-card__copy {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}
.place-card__copy span { color: var(--coral); font-size: 10px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.place-card__copy h3 { margin-top: 8px; max-width: 12ch; }
.place-card__copy p { max-width: 430px; color: rgba(255,255,255,.65); }
.place-card__copy a { display: inline-flex; margin-top: 10px; font-weight: 800; }
.place-card__copy a::after { content: "↗"; margin-left: 10px; }

/* Process editorial */
.process {
  padding: clamp(120px, 15vw, 230px) 0;
  background: var(--paper);
}
.process__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.process__sticky { position: sticky; top: 130px; }
.process__sticky p { max-width: 470px; color: var(--muted); font-size: 18px; }
.process-list { border-top: 1px solid var(--line); }
.process-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  padding: 38px 0 46px;
  border-bottom: 1px solid var(--line);
}
.process-step__num {
  color: var(--coral);
  font: 800 clamp(3.2rem, 5vw, 6rem)/1 Manrope;
  letter-spacing: -.08em;
}
.process-step p { max-width: 620px; color: var(--muted); }

/* Intelligence stage */
.intelligence-stage {
  position: relative;
  padding: clamp(120px, 15vw, 220px) 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 72% 44%, rgba(44,110,106,.34), transparent 30%),
    var(--ink);
  overflow: hidden;
}
.intelligence-stage__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.intelligence-stage p { color: rgba(255,255,255,.64); }
.radar {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.radar::before,
.radar::after {
  content: "";
  position: absolute;
  width: min(540px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
}
.radar::after { width: min(350px, 54vw); border-color: rgba(255,118,87,.35); }
.radar-sweep {
  position: absolute;
  width: min(540px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,118,87,.0) 0deg, rgba(255,118,87,.0) 310deg, rgba(255,118,87,.26) 354deg, rgba(255,118,87,.0) 360deg);
  animation: radar 8s linear infinite;
}
@keyframes radar { to { transform: rotate(360deg); } }
.data-orbit { position: absolute; inset: 0; }
.data-pill {
  position: absolute;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}
.data-pill strong { display: block; font: 800 1.15rem Manrope; }
.data-pill span { color: rgba(255,255,255,.52); font-size: 11px; }
.data-pill:nth-child(1){left:5%;top:15%}.data-pill:nth-child(2){right:0;top:24%}.data-pill:nth-child(3){left:8%;bottom:18%}.data-pill:nth-child(4){right:10%;bottom:10%}
.intelligence-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid var(--coral);
  color: var(--coral);
  font: 800 2rem Manrope;
  transform: rotate(45deg);
}
.intelligence-mark span { transform: rotate(-45deg); }

/* Portal showcase */
.portal-stage {
  position: relative;
  padding: clamp(110px, 15vw, 220px) 0;
  background: var(--paper-warm);
  overflow: clip;
}
.portal-stage::before {
  content: "PORTAL";
  position: absolute;
  left: -2vw;
  top: 9%;
  color: rgba(7,59,58,.045);
  font: 800 clamp(12rem, 30vw, 34rem)/.8 Manrope;
  letter-spacing: -.12em;
}
.portal-stage__head { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 75px; }
.portal-stage__head p { color: var(--muted); font-size: 18px; }
.portal-device {
  position: relative;
  width: min(1180px, 96%);
  margin-inline: auto;
  padding: 16px;
  background: #102c2a;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 34px;
  box-shadow: 0 70px 150px rgba(7,59,58,.24);
  transform: perspective(1400px) rotateX(3deg) rotateY(-2deg);
}
.portal-device::before {
  content: "";
  display: block;
  height: 26px;
  margin: -2px -2px 12px;
  border-radius: 21px 21px 0 0;
  background: radial-gradient(circle at 20px 13px,#ff7657 0 4px,transparent 4.5px),radial-gradient(circle at 38px 13px,#e5be64 0 4px,transparent 4.5px),radial-gradient(circle at 56px 13px,#74b48c 0 4px,transparent 4.5px);
}
.portal-device img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 18px;
  background: var(--paper);
}
.portal-callout {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(7,59,58,.12);
  box-shadow: 0 20px 55px rgba(7,59,58,.15);
  backdrop-filter: blur(14px);
}
.portal-callout strong { display: block; font: 800 1.35rem Manrope; }
.portal-callout span { font-size: 12px; color: var(--muted); }
.portal-callout.one { right: -4%; top: 18%; }
.portal-callout.two { left: -4%; bottom: 14%; }

/* Matterport */
.walkthrough-stage {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 820px;
  color: var(--paper);
  background: var(--ink);
}
.walkthrough-stage__media {
  position: relative;
  min-height: 820px;
  background: url("images/places/interior.jpg") center/cover no-repeat;
  overflow: hidden;
}
.walkthrough-stage__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.75); }
.walkthrough-stage__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, var(--ink)); }
.walkthrough-crosshair {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -60px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
}
.walkthrough-crosshair::before,
.walkthrough-crosshair::after { content: ""; position: absolute; background: var(--coral); }
.walkthrough-crosshair::before { width: 24px; height: 2px; left: 48px; top: 59px; }
.walkthrough-crosshair::after { height: 24px; width: 2px; left: 59px; top: 48px; }
.walkthrough-stage__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px, 7vw, 110px); }
.walkthrough-stage__copy p { color: rgba(255,255,255,.62); }

/* Editorial service list */
.services-editorial { padding: clamp(120px, 15vw, 220px) 0; background: var(--paper); }
.services-editorial__head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.services-editorial__head p { max-width: 560px; color: var(--muted); }
.service-line {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr 180px;
  align-items: center;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.service-line:last-child { border-bottom: 1px solid var(--line); }
.service-line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(101%);
  background: var(--mist);
  transition: transform .45s var(--ease);
}
.service-line:hover::before { transform: none; }
.service-line > * { position: relative; z-index: 1; }
.service-line__num { color: var(--coral); font: 800 1rem Manrope; }
.service-line h3 { font-size: clamp(2rem, 4vw, 4.7rem); }
.service-line a { justify-self: end; font-weight: 800; }
.service-line a::after { content: "↗"; margin-left: 9px; }

/* Guides */
.guides-stage { padding: clamp(110px, 13vw, 190px) 0; color: var(--paper); background: var(--teal); }
.guides-stage__head { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.guides-stage__head p { color: rgba(255,255,255,.64); }
.guide-magazine { display: grid; grid-template-columns: 1.3fr .7fr; gap: 22px; }
.guide-feature,
.guide-stack a { position: relative; overflow: hidden; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); }
.guide-feature { min-height: 620px; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; }
.guide-feature::before { content: "01"; position: absolute; right: -12px; top: -34px; color: rgba(255,255,255,.06); font: 800 18rem/.8 Manrope; }
.guide-feature h3 { max-width: 12ch; font-size: clamp(3rem, 6vw, 7rem); }
.guide-feature p { max-width: 520px; color: rgba(255,255,255,.62); }
.guide-stack { display: grid; gap: 22px; }
.guide-stack a { min-height: 299px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; transition: background .35s ease, transform .35s var(--ease); }
.guide-stack a:hover { background: var(--coral); color: var(--ink); transform: translateX(-8px); }
.guide-stack a:hover p { color: rgba(6,23,22,.66); }
.guide-stack p { color: rgba(255,255,255,.58); }

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink);
  background: var(--coral);
  overflow: hidden;
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(6,23,22,.20);
  border-radius: 50%;
}
.final-cta::before { left: -260px; top: -260px; }
.final-cta::after { right: -240px; bottom: -300px; }
.final-cta__inner { position: relative; z-index: 1; max-width: 1120px; padding: 100px 24px; }
.final-cta h2 { font-size: clamp(4rem, 10vw, 11rem); }
.final-cta p { max-width: 680px; margin: 30px auto 0; font-size: 20px; }
.final-cta .btn { margin-top: 34px; color: var(--paper); background: var(--ink); }

/* Footer */
.footer { padding: 90px 0 30px; color: var(--paper); background: #031817; }
.footergrid { display: grid; grid-template-columns: 1.6fr repeat(3, .8fr); gap: 70px; }
.footer img { max-width: 220px; }
.footer h4 { margin: 0 0 18px; color: var(--paper); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer p, .footer a { color: rgba(255,255,255,.56); font-size: 13px; }
.footer a { transition: color .25s ease; }
.footer a:hover { color: var(--coral); }
.bottom { margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.38); font-size: 11px; }

/* Internal page heroes */
.breadcrumbs {
  color: rgba(255,255,255,.56);
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 13px 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 10px; color: var(--coral); }
.pagehero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 80px;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}
.pagehero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,118,87,.22), transparent 20%),
    linear-gradient(125deg, rgba(44,110,106,.24), transparent 42%);
}
.pagehero::after {
  content: attr(data-ghost);
  position: absolute;
  right: -2vw;
  bottom: -5vw;
  color: rgba(255,255,255,.035);
  font: 800 clamp(11rem, 28vw, 31rem)/.8 Manrope;
  letter-spacing: -.12em;
}
.pagehero .shell { position: relative; z-index: 1; }
.pagehero h1 { max-width: 12ch; font-size: clamp(4.3rem, 9vw, 10rem); }
.pagehero p:not(.eyebrow) { max-width: 780px; margin: 28px 0 0; color: rgba(255,255,255,.65); font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
body.route-areas .pagehero::before { background: linear-gradient(90deg, rgba(3,20,19,.90), rgba(3,20,19,.40)), url("images/places/bamburgh.jpg") center/cover; }
body.route-guides .pagehero::before { background: radial-gradient(circle at 80% 30%, rgba(255,118,87,.22), transparent 24%), linear-gradient(140deg,#061716,#0c4d49); }
body.route-services .pagehero::before { background: linear-gradient(135deg,#061716 30%,#134d49 100%); }
body.route-intelligence .pagehero::before { background: radial-gradient(circle at 75% 30%, rgba(255,118,87,.24), transparent 22%), repeating-radial-gradient(circle at 75% 30%, rgba(214,227,223,.12) 0 1px, transparent 1px 52px), #061716; }
body.route-buyer-walkthroughs .pagehero::before { background: linear-gradient(90deg,rgba(3,20,19,.92),rgba(3,20,19,.20)),url("images/places/interior.jpg") center/cover; }

.section { position: relative; padding: clamp(95px, 11vw, 170px) 0; background: var(--paper); }
.section.dark { color: var(--paper); background: var(--ink); }
.section.mist { background: var(--paper-warm); }
.sectionhead { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 65px; }
.sectionhead p { margin: 0; color: var(--muted); font-size: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.prose { max-width: 860px; }
.prose > p { font-size: clamp(1.04rem, 1.4vw, 1.2rem); color: #465450; }
.prose > p:first-of-type::first-letter {
  float: left;
  margin: .05em .12em 0 0;
  color: var(--coral);
  font: 500 4.4em/.75 Newsreader, Georgia, serif;
}
.prose h2 { margin-top: 70px; font-size: clamp(2.8rem, 5vw, 5.8rem); }
.prose h3 { margin-top: 40px; font-size: clamp(1.7rem, 3vw, 3rem); }
.prose ul { padding-left: 1.3em; }
.prose li { margin: 10px 0; }
.prose a { text-decoration: underline; text-decoration-color: var(--coral); text-underline-offset: 4px; }

/* Reworked boxes and cards */
.cards,
.servicegrid,
.locationgrid,
.guidegrid,
.pricegrid,
.evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card,
.servicecard,
.locationcard,
.guide,
.price,
.evidence > div {
  min-width: 0;
  background: var(--paper);
  border: 0;
  border-radius: 0;
  padding: clamp(28px, 3vw, 44px);
}
.card,
.servicecard,
.locationcard,
.price,
.evidence > div {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.card .eyebrow { margin-bottom: auto; }
.card h3,
.servicecard h3,
.locationcard h3 { margin: 34px 0 14px; }
.card p,
.servicecard p,
.locationcard p,
.price p { color: var(--muted); }
.servicecard a,
.locationcard a { margin-top: auto; padding-top: 26px; font-weight: 800; }
.servicecard a::after,
.locationcard a::after { content: "↗"; margin-left: 10px; color: var(--coral); }
.servicecard:hover,
.locationcard:hover { background: var(--mist); }
.price { align-items: flex-start; }
.price strong { display: block; margin: 18px 0; color: var(--teal); font: 800 clamp(2rem, 3vw, 3.6rem)/1 Manrope; }
.evidence { grid-template-columns: repeat(4, 1fr); }
.evidence strong { display: block; color: var(--coral); font: 800 1.6rem Manrope; }
.evidence span { color: var(--muted); font-size: 13px; }

.list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.list li { display: grid; gap: 5px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.list strong { font-family: Manrope; font-size: 1.12rem; }
.list span { color: var(--muted); font-size: 14px; }
.dark .list { border-color: var(--line-light); }
.dark .list li { border-color: var(--line-light); }
.dark .list span { color: rgba(255,255,255,.55); }

/* Guide author and CTA, fixed alignment */
.authorbox {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 64px;
  padding: 34px;
  background: var(--mist);
  border: 1px solid rgba(7,59,58,.10);
}
.authoravatar {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--teal);
  font: 800 2rem Manrope;
}
.authorbox h3 { margin: 0 0 8px; font-size: clamp(1.55rem, 2.4vw, 2.5rem); }
.authorbox p { margin: 0; color: var(--muted); }
.ctaband {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  margin-top: 52px;
  padding: 38px 42px;
  color: var(--ink);
  background: var(--coral);
}
.ctaband h3 { max-width: 650px; margin: 0; font-size: clamp(2rem, 3.5vw, 4.2rem); line-height: 1.02; }
.ctaband .btn { align-self: center; color: var(--paper); background: var(--teal); }

/* Accordion and form */
.accordion { display: grid; border-top: 1px solid var(--line); }
.accordion details { padding: 28px 0; border-bottom: 1px solid var(--line); }
.accordion summary { cursor: pointer; font: 800 clamp(1.2rem, 2.2vw, 2.1rem) Manrope; letter-spacing: -.035em; }
.accordion p { max-width: 800px; color: var(--muted); }
.form,
.tool {
  padding: clamp(28px, 4vw, 54px);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(7,59,58,.10);
}
.formgrid,
.toolgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 850; letter-spacing: .02em; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  background: transparent;
  outline: none;
  transition: border-color .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--coral); }
.field textarea { min-height: 140px; resize: vertical; }
.toolresult { margin-top: 24px; padding: 28px; background: var(--mist); }
.comparetable { width: 100%; margin-top: 20px; border-collapse: collapse; }
.comparetable th,
.comparetable td { padding: 14px 8px; border-bottom: 1px solid var(--line); text-align: left; }
.notice { margin: 26px 0; padding: 22px 24px; color: var(--teal); background: var(--mist); border-left: 4px solid var(--coral); }
.tagrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { padding: 7px 10px; border: 1px solid var(--line); font-size: 11px; font-weight: 800; }
.portal { width: 100%; height: auto; object-fit: contain; background: var(--paper); box-shadow: var(--shadow); }

/* Mobile */
@media (max-width: 1120px) {
  :root { --shell: min(100% - 42px, 1440px); --narrow: min(100% - 42px, 980px); }
  .headerin { grid-template-columns: 1fr auto; }
  .headerin > .btn { display: none; }
  .menu { display: block; position: relative; z-index: 303; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 302;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 110px 30px 50px;
    color: var(--paper);
    background: rgba(3,24,23,.98);
    transform: translateY(-105%);
    transition: transform .55s var(--ease);
  }
  .nav.open { transform: none; }
  .nav a { font: 700 clamp(2.1rem, 6vw, 4rem)/1.1 Manrope; }
  .hero-award__grid { grid-template-columns: 1fr; }
  .hero-award__aside { max-width: 360px; }
  .manifesto__foot,
  .region__intro,
  .process__grid,
  .intelligence-stage__grid,
  .portal-stage__head,
  .services-editorial__head,
  .guides-stage__head,
  .split,
  .sectionhead { grid-template-columns: 1fr; }
  .process__sticky { position: relative; top: auto; }
  .walkthrough-stage { grid-template-columns: 1fr; }
  .walkthrough-stage__media { min-height: 620px; }
  .walkthrough-stage__media::after { background: linear-gradient(180deg, transparent 55%, var(--ink)); }
  .guide-magazine { grid-template-columns: 1fr; }
  .guide-feature { min-height: 520px; }
  .footergrid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footergrid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1440px); --narrow: min(100% - 28px, 980px); }
  body::before { opacity: .035; }
  .noticebar .shell { justify-content: center; text-align: center; }
  .noticebar span:last-child { display: none; }
  .headerin { min-height: 72px; }
  .logo img { width: 150px; }
  .page-home .header { top: 33px; }
  .hero-award__grid { padding-top: 150px; padding-bottom: 42px; }
  .hero-award h1 { font-size: clamp(3.7rem, 17vw, 6.2rem); max-width: 9ch; line-height: .96; }
  .hero-index { display: none; }
  .hero-ring { width: 85vw; right: -52vw; }
  .manifesto { padding-block: 105px; }
  .manifesto__statement { font-size: clamp(3rem, 13vw, 5.7rem); }
  .manifesto__foot { gap: 30px; }
  .region { padding-block: 100px; }
  .region-map { width: 90vw; right: -30vw; opacity: .18; }
  .region-track { grid-auto-columns: 86vw; }
  .place-card { min-height: 540px; }
  .process { padding-block: 100px; }
  .process-step { grid-template-columns: 70px 1fr; gap: 18px; }
  .process-step__num { font-size: 3.5rem; }
  .intelligence-stage { padding-block: 100px; }
  .radar { min-height: 520px; }
  .data-pill { min-width: 128px; padding: 11px; }
  .portal-stage { padding-block: 100px; }
  .portal-device { width: 100%; padding: 8px; border-radius: 20px; transform: none; }
  .portal-device img { border-radius: 12px; }
  .portal-callout { position: static; display: inline-block; margin: 14px 8px 0 0; }
  .walkthrough-stage__media { min-height: 500px; }
  .walkthrough-stage__copy { padding: 60px 24px 80px; }
  .services-editorial { padding-block: 100px; }
  .service-line { grid-template-columns: 54px 1fr; }
  .service-line a { grid-column: 2; justify-self: start; }
  .guide-feature { min-height: 480px; }
  .final-cta { min-height: 70vh; }
  .footergrid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footergrid > div:first-child { grid-column: 1 / -1; }
  .pagehero { min-height: 560px; padding-block: 92px 62px; }
  .pagehero h1 { font-size: clamp(3.65rem, 15vw, 6.2rem); }
  .section { padding-block: 85px; }
  .cards,
  .servicegrid,
  .locationgrid,
  .guidegrid,
  .pricegrid,
  .evidence { grid-template-columns: 1fr; }
  .card,
  .servicecard,
  .locationcard,
  .price,
  .evidence > div { min-height: 240px; }
  .authorbox { grid-template-columns: 82px 1fr; padding: 24px; }
  .authoravatar { width: 82px; }
  .ctaband { grid-template-columns: 1fr; min-height: 0; padding: 30px; }
  .ctaband .btn { justify-self: start; }
  .formgrid,
  .toolgrid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
}

@media (max-width: 480px) {
  .footergrid { grid-template-columns: 1fr; }
  .authorbox { grid-template-columns: 1fr; }
  .hero-award__aside { border-left: 0; border-top: 1px solid rgba(255,255,255,.24); padding: 18px 0 0; }
  .place-card { min-height: 500px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
html[data-motion="off"] *,
html[data-motion="off"] *::before,
html[data-motion="off"] *::after {
  animation-play-state: paused !important;
  transition-duration: .001ms !important;
}

/* Place specific visual art direction */
body.page-newcastle .pagehero::before { background: linear-gradient(90deg,rgba(3,20,19,.92),rgba(3,20,19,.32)),url("images/places/newcastle.jpg") center/cover; }
body.page-northumberland .pagehero::before,
body.page-bamburgh .pagehero::before { background: linear-gradient(90deg,rgba(3,20,19,.90),rgba(3,20,19,.24)),url("images/places/bamburgh.jpg") center/cover; }
body.page-durham .pagehero::before { background: linear-gradient(90deg,rgba(3,20,19,.90),rgba(3,20,19,.28)),url("images/places/durham.jpg") center/cover; }
body.page-gateshead .pagehero::before { background: linear-gradient(90deg,rgba(3,20,19,.90),rgba(3,20,19,.28)),url("images/places/angel.jpg") center/cover; }
body.page-north-tyneside .pagehero::before,
body.page-tynemouth .pagehero::before { background: linear-gradient(90deg,rgba(3,20,19,.90),rgba(3,20,19,.26)),url("images/places/tynemouth.jpg") center/cover; }
body.page-morpeth .pagehero::before,
body.page-ponteland .pagehero::before,
body.page-jesmond .pagehero::before,
body.page-sunderland .pagehero::before { background: linear-gradient(120deg,rgba(3,20,19,.93),rgba(3,20,19,.32)),url("images/places/newcastle.jpg") center/cover; }
.area-visual { position: relative; height: min(72vw, 760px); min-height: 430px; overflow: hidden; background: var(--teal); }
.area-visual img { width: 100%; height: 100%; object-fit: cover; }
.area-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 55%,rgba(3,20,19,.70)); }
.area-visual__caption { position:absolute; z-index:2; left:max(24px,calc((100vw - var(--shell))/2)); right:24px; bottom:28px; color:var(--paper); font-size:11px; letter-spacing:.14em; text-transform:uppercase; }


/* ========================================================================
   Layout QA pass 2026 07 20
   These overrides remove accidental overlap, clipping and off canvas UI.
   ======================================================================== */

html { scroll-padding-top: 104px; }
section, [id] { scroll-margin-top: 104px; }

/* Give every grid child permission to shrink rather than push outside a box. */
.hero-award__grid > *,
.manifesto__foot > *,
.region__intro > *,
.process__grid > *,
.intelligence-stage__grid > *,
.portal-stage__head > *,
.services-editorial__head > *,
.guides-stage__head > *,
.split > *,
.sectionhead > *,
.service-line > *,
.ctaband > *,
.authorbox > * { min-width: 0; }

h1, h2, h3, h4, p, a, span, strong {
  overflow-wrap: break-word;
  word-break: normal;
}

/* The motion control was visually sitting over content. The site still obeys
   the operating system reduced motion preference, so the floating control is removed. */
.motion-toggle { display: none !important; }

/* Ticker is deliberately cropped inside its own band and can never expand the page. */
.kinetic { max-width: 100vw; contain: paint; }
.kinetic__track { max-width: none; will-change: transform; }

/* Region cards use a predictable media layer and a dedicated safe text area. */
.region-track { overscroll-behavior-inline: contain; }
.place-card { min-width: 0; }
.place-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.place-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: calc(100% - 56px);
}
.place-card__copy h3 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  line-height: 1.03;
}
.place-card__copy p { margin: 14px 0 0; line-height: 1.5; }
.place-card__copy a { margin-top: 16px; }

/* Portal is now an image plus a separate benefits row. Nothing sits outside
   the frame and the original 16 by 10 interface ratio is preserved. */
.portal-stage { overflow: hidden; }
.portal-stage__head {
  z-index: 2;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .7fr);
  gap: clamp(38px, 7vw, 96px);
  margin-bottom: clamp(52px, 7vw, 92px);
}
.portal-stage__head h2 { max-width: 9ch; }
.portal-stage__head > p { max-width: 560px; justify-self: end; margin: 0; }
.portal-showcase {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin-inline: auto;
}
.portal-device {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  transform: none;
}
.portal-device img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}
.portal-callouts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}
.portal-callout,
.portal-callout.one,
.portal-callout.two {
  position: relative;
  inset: auto;
  min-width: 0;
  padding: 24px 28px;
  background: rgba(255,255,255,.86);
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.portal-callout strong { font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.15; }
.portal-callout span { display: block; margin-top: 7px; line-height: 1.45; }

/* Content cards align from the top. Links remain locked to a consistent base line. */
.card,
.servicecard,
.locationcard,
.price,
.evidence > div {
  justify-content: flex-start;
  align-content: start;
}
.card .eyebrow { margin-bottom: 0; }
.card h3,
.servicecard h3,
.locationcard h3 { margin-top: 28px; }
.servicecard a,
.locationcard a { margin-top: auto; }

/* Editorial service rows need enough height for large type at every breakpoint. */
.service-line {
  min-height: clamp(128px, 11vw, 168px);
  overflow: clip;
}
.service-line h3 { line-height: 1.02; }
.service-line::before { pointer-events: none; }

/* Keep the decorative guide number inside its own panel. */
.guide-feature::before { right: 12px; }
.guide-feature h3 { max-width: 11ch; line-height: .98; }
.guide-feature,
.guide-stack a { isolation: isolate; }
.guide-feature > *,
.guide-stack a > * { position: relative; z-index: 1; }

/* Review and consultation panels use consistent vertical centring. */
.authorbox > div:last-child { align-self: center; }
.ctaband { overflow: hidden; }
.ctaband .btn { white-space: nowrap; }

/* Fix the closed mobile navigation. backdrop filter was creating a containing
   block, so the fixed menu was only moving relative to the header and remained visible. */
@media (max-width: 1120px) {
  .header { backdrop-filter: none; }
  .nav {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    overflow-y: auto;
    transform: translate3d(0, -110%, 0);
  }
  .nav.open { transform: translate3d(0, 0, 0); }
  .portal-stage__head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
  }
  .portal-stage__head > p { justify-self: start; }
  .portal-stage__head h2 { max-width: 11ch; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 80px; }
  section, [id] { scroll-margin-top: 80px; }
  .hero-award h1 {
    max-width: 8.8ch;
    font-size: clamp(3.35rem, 15.8vw, 5.65rem);
    line-height: .98;
  }
  .manifesto__statement { line-height: 1.01; }
  .region__intro { margin-bottom: 48px; }
  .place-card__copy {
    left: 22px;
    right: 22px;
    bottom: 24px;
    max-width: calc(100% - 44px);
  }
  .place-card__copy h3 { max-width: 12ch; font-size: clamp(1.9rem, 9.2vw, 2.65rem); }
  .portal-stage__head { margin-bottom: 40px; }
  .portal-device { padding: 8px; border-radius: 20px; }
  .portal-device::before { height: 20px; margin-bottom: 8px; }
  .portal-callouts { grid-template-columns: 1fr; margin-top: 12px; }
  .portal-callout { padding: 21px 22px; }
  .service-line {
    min-height: 0;
    padding: 34px 0 38px;
    row-gap: 16px;
  }
  .service-line h3 { font-size: clamp(1.9rem, 9vw, 2.75rem); }
  .guide-feature h3 { font-size: clamp(2.7rem, 13vw, 4.8rem); }
  .ctaband { gap: 24px; }
  .ctaband .btn { width: 100%; white-space: normal; text-align: center; }
}

@media (max-width: 420px) {
  .hero-award h1 { font-size: clamp(3.05rem, 15.4vw, 4.8rem); }
  .pagehero h1 { max-width: 100%; font-size: clamp(3rem, 14vw, 4.9rem); line-height: 1; }
  .authorbox { grid-template-columns: 1fr; text-align: left; }
  .authoravatar { width: 76px; }
}

/* Final narrow screen typography polish */
h1, h2, h3, h4 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
@media (max-width: 760px) {
  .region-map { right: -58vw; top: 130px; opacity: .075; }
  .place-card__copy h3 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.05;
  }
}
@media (max-width: 760px) {
  .region-map { display: none; }
}

/* Prevent off canvas reveal transforms from increasing the document width. */
html, body {
  max-width: 100%;
  overflow-x: clip;
}
