/*
Theme Name: Aura Property
Theme URI: https://example.com/aura-property
Author: Aura Property
Author URI: https://example.com
Description: Custom WordPress theme for Aura Sales, Lettings, Investments and Refurbishments.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aura-property
*/

:root {
  --aura-black: #050505;
  --aura-ink: #111111;
  --aura-charcoal: #292929;
  --aura-paper: #ffffff;
  --aura-soft: #f4f4f4;
  --aura-line: #dedede;
  --aura-muted: #686868;
  --aura-white: #ffffff;
  --aura-red: #e31b2f;
  --aura-orange: #ff8a18;
  --aura-yellow: #ffd21f;
  --aura-gold: #d7a94f;
  --aura-gold-soft: #f3d690;
  --aura-green: #12a85a;
  --aura-blue: #1284d8;
  --aura-purple: #4b2aa4;
  --section-colour: var(--aura-red);
  --aura-max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #f8f6f1;
  color: var(--aura-ink);
  font-family: Manrope, Satoshi, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.wp-block-button__link:focus-visible {
  outline: 2px solid var(--aura-gold);
  outline-offset: 4px;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--aura-line);
  border-radius: 0;
  background: transparent;
  color: var(--aura-ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #050505;
  color: var(--aura-white);
  border-bottom: 1px solid rgba(215, 169, 79, 0.18);
  backdrop-filter: none;
}

.header-inner,
.wrap {
  width: min(var(--aura-max), calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 172px;
}

.brand-mark {
  width: 150px;
  height: auto;
  filter: none;
}

.brand-word {
  display: grid;
  line-height: 1;
}

.brand-word strong {
  font-size: 1.55rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.brand-word span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav li {
  list-style: none;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: var(--aura-white);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--nav-accent, var(--aura-gold));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a[href*="/sales/"],
.main-nav .menu-item a[href*="/sales/"] {
  --nav-accent: var(--aura-red);
}

.main-nav a[href*="/lettings/"],
.main-nav .menu-item a[href*="/lettings/"] {
  --nav-accent: var(--aura-blue);
}

.main-nav a[href*="/investments/"],
.main-nav .menu-item a[href*="/investments/"] {
  --nav-accent: var(--aura-green);
}

.main-nav a[href*="/refurbishments/"],
.main-nav .menu-item a[href*="/refurbishments/"] {
  --nav-accent: var(--aura-orange);
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border: 0;
  border-radius: 4px;
  background: var(--section-colour, var(--aura-red));
  color: var(--aura-white);
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  position: relative;
  min-height: 0;
  padding: 8px 0 9px;
  border: 0;
  border-bottom: 1px solid var(--aura-gold);
  border-radius: 0;
  background: transparent;
  color: var(--aura-white);
  box-shadow: none;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 140ms ease, border-color 140ms ease;
}

.button:hover,
.header-cta:hover,
.wp-block-button__link:hover {
  transform: translate3d(var(--button-x, 0), var(--button-y, -1px), 0);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.header-cta:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--aura-white);
}

.button.secondary {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  box-shadow: none;
}

.button.dark {
  background: var(--aura-black);
  color: var(--aura-white);
}

.mobile-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
  color: var(--aura-white);
}

.mobile-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.mobile-toggle::before,
.mobile-toggle::after {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, top 160ms ease, box-shadow 160ms ease;
}

.mobile-toggle::before {
  top: 17px;
  box-shadow: 0 7px 0 currentColor;
}

.mobile-toggle::after {
  top: 31px;
}

.mobile-toggle[aria-expanded="true"]::before {
  top: 23px;
  box-shadow: none;
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"]::after {
  top: 23px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  --hero-x: 74%;
  --hero-y: 32%;
  min-height: 70vh;
  isolation: isolate;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--aura-white);
  background: #d9d8d0;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.02);
  filter: brightness(1.18) saturate(1.05);
  animation: auraHeroDrift 18s ease-in-out alternate infinite;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.04) 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.08));
  content: "";
}

.hero::before {
  display: none;
}

.hero-media::after {
  display: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  padding: 86px 0;
  min-height: calc(70vh - 78px);
}

.hero-content {
  width: min(100%, 1040px);
  margin: 0;
  padding: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--section-colour, var(--aura-red));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-inline: auto;
  max-width: 920px;
  font-size: clamp(2.55rem, 5.6vw, 5.35rem);
  font-weight: 820;
}

h2 {
  font-size: clamp(1.8rem, 3.35vw, 3.45rem);
  font-weight: 800;
}

h3 {
  font-size: 1.35rem;
  font-weight: 760;
}

.hero-copy {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
}

.hero-route-chooser {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(34px, 5vw, 58px);
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.22);
}

.hero-route-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "meta meta";
  gap: 6px 10px;
  min-height: 96px;
  padding: 16px 18px;
  border-radius: 999px;
  color: var(--aura-ink);
  text-align: left;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.hero-route-card:hover {
  background: var(--section-colour);
  color: var(--aura-white);
  transform: translateY(-1px);
}

.hero-route-card span {
  grid-area: num;
  color: var(--section-colour);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-route-card:hover span,
.hero-route-card:hover em {
  color: rgba(255, 255, 255, 0.78);
}

.hero-route-card strong {
  grid-area: title;
  font-size: 1.16rem;
  line-height: 1;
}

.hero-route-card em {
  grid-area: meta;
  color: var(--aura-muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.28;
}

.hero-command {
  position: relative;
  overflow: hidden;
  align-self: center;
  padding: 0 0 0 22px;
  border: 0;
  border-left: 1px solid rgba(215, 169, 79, 0.42);
  border-radius: 0;
  background: transparent;
  color: var(--aura-white);
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 260ms ease;
}

.hero-command::before {
  display: none;
}

.command-top,
.command-row {
  position: relative;
  z-index: 1;
}

.command-top {
  display: grid;
  gap: 6px;
  padding: 0 0 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  text-align: left;
  text-transform: uppercase;
}

.command-top strong {
  color: var(--aura-white);
}

.hero-film-card {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 250px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 6px;
  color: var(--aura-white);
  isolation: isolate;
}

.hero-film-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}

.hero-film-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.16) 66%),
    linear-gradient(135deg, rgba(227, 27, 47, 0.36), transparent 48%);
  content: "";
}

.hero-film-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.05);
}

.hero-film-card .play-chip {
  top: 16px;
  right: 16px;
}

.hero-film-card small,
.hero-film-card strong {
  align-self: end;
  margin-inline: 18px;
}

.hero-film-card small {
  margin-top: auto;
  color: var(--aura-gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-film-card strong {
  max-width: 300px;
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 1.2rem;
  line-height: 1.08;
}

.command-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-areas:
    "num title"
    "num meta";
  gap: 2px 14px;
  min-height: 74px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--aura-white);
}

.command-row::after {
  position: absolute;
  inset: 8px -12px;
  z-index: -1;
  border-radius: 4px;
  background: color-mix(in srgb, var(--section-colour) 10%, transparent);
  content: "";
  opacity: 0;
  transition: opacity 140ms ease;
}

.command-row:hover::after {
  opacity: 1;
}

.command-row:hover span {
  transform: none;
}

.command-row span {
  grid-area: num;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--section-colour) 72%, rgba(255, 255, 255, 0.34));
  background: color-mix(in srgb, var(--section-colour) 82%, transparent);
  color: var(--aura-white);
  font-weight: 850;
  transition: transform 180ms ease;
}

.command-row strong {
  grid-area: title;
  font-size: 1.22rem;
  line-height: 1.1;
}

.command-row em {
  grid-area: meta;
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-size: 0.9rem;
}

.hero-ticker {
  display: none;
}

.hero-ticker div {
  display: flex;
  width: max-content;
  animation: auraTicker 26s linear infinite;
}

.hero-ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding-inline: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.hero-actions,
.section-actions,
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-search-panel {
  width: min(100%, 760px);
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.34);
  color: var(--aura-white);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-search-panel > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 50px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-search-row strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.2;
}

.hero-search-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 4px;
  background: var(--aura-white);
  color: var(--aura-black);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-search-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-search-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid color-mix(in srgb, var(--section-colour) 56%, rgba(255, 255, 255, 0.28));
  border-radius: 999px;
  background: color-mix(in srgb, var(--section-colour) 18%, rgba(255, 255, 255, 0.08));
  color: var(--aura-white);
  font-size: 0.76rem;
  font-weight: 850;
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 690px;
  margin-top: 26px;
}

.hero-signature span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 820;
  backdrop-filter: blur(14px);
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding-bottom: 4px;
  color: var(--section-colour, var(--aura-red));
  font-weight: 800;
}

.text-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  content: "";
  transform: scaleX(0.52);
  transform-origin: left;
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.home-review-strip {
  overflow: hidden;
  padding: 24px 0;
  background: #050505;
  color: var(--aura-white);
}

.review-marquee {
  width: 100%;
  overflow: hidden;
}

.review-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: auraTicker 46s linear infinite;
}

.review-marquee blockquote {
  flex: 0 0 min(560px, 80vw);
  margin: 0;
  padding: 18px 22px;
  border-left: 1px solid rgba(215, 169, 79, 0.54);
  background: rgba(255, 255, 255, 0.06);
}

.review-marquee .review-stars {
  margin-bottom: 10px;
}

.review-marquee .review-stars svg {
  width: 13px;
  height: 13px;
}

.review-marquee p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.45;
}

.review-marquee cite {
  display: block;
  margin-top: 10px;
  color: var(--aura-gold-soft);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sell-section {
  padding-top: clamp(96px, 9vw, 136px);
  background: #ffffff;
  color: var(--aura-ink);
}

.sell-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
}

.sell-intro h2 {
  max-width: 760px;
}

.sell-intro p {
  max-width: 720px;
  color: var(--aura-muted);
  font-size: 1.12rem;
}

.portal-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #f8f6f1;
}

.portal-proof img {
  width: auto;
  max-width: min(150px, 100%);
  height: clamp(24px, 3vw, 34px);
  object-fit: contain;
  justify-self: center;
}

.sell-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 64px);
  background: rgba(17, 17, 17, 0.1);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.sell-flow article {
  min-height: 230px;
  padding: clamp(20px, 2.5vw, 30px);
  background: #ffffff;
}

.sell-flow span {
  color: var(--aura-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.sell-flow strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.02;
}

.sell-flow p {
  margin: 14px 0 0;
  color: var(--aura-muted);
  font-size: 0.96rem;
}

.property-head {
  margin-top: clamp(72px, 8vw, 118px);
}

.lettings-section {
  overflow: hidden;
  background: #f5f1e9;
  color: var(--aura-ink);
}

.lettings-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.lettings-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--aura-muted);
  font-size: 1.12rem;
}

.lettings-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lettings-steps article {
  min-height: 210px;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.06);
}

.lettings-steps span {
  color: var(--aura-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lettings-steps p {
  margin: 18px 0 0;
  color: var(--aura-muted);
}

.floating-consultation {
  position: fixed;
  right: max(22px, calc((100vw - var(--aura-max)) / 2 + 22px));
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  background: var(--aura-gold);
  color: var(--aura-black);
  box-shadow: 0 18px 38px rgba(5, 5, 5, 0.22);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.floating-consultation:hover {
  background: var(--aura-gold-soft);
  transform: translateY(-2px);
}

.floating-consultation.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-consultation.is-visible:hover {
  transform: translateY(-2px);
}

.route-decision {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: clamp(76px, 8vw, 118px);
  padding-bottom: clamp(78px, 9vw, 126px);
  background: #f8f6f1;
  color: var(--aura-ink);
}

.route-decision::before {
  display: none;
}

.route-decision::after {
  display: none;
}

.route-decision .wrap {
  position: relative;
  z-index: 1;
}

.route-decision .section-head {
  align-items: end;
  margin-bottom: 0;
}

.route-decision .section-head h2 {
  max-width: 720px;
}

.route-decision .section-head p {
  max-width: 520px;
  color: var(--aura-muted);
}

.route-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: stretch;
  margin-top: clamp(34px, 5vw, 60px);
}

.route-story::before {
  display: none;
}

.route-story-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.route-story-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  z-index: 1;
  min-height: 226px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--aura-ink);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.route-story-item::before {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--section-colour) 82%, rgba(215, 169, 79, 0.42)), transparent);
  content: "";
  opacity: 0.72;
}

.route-story-item::after {
  display: none;
}

.route-story-item:hover {
  border-color: color-mix(in srgb, var(--section-colour) 34%, rgba(17, 17, 17, 0.12));
  background: var(--aura-white);
  transform: translateY(-1px);
}

.route-story-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--section-colour) 72%, rgba(215, 169, 79, 0.48));
  border-radius: 50%;
  background: var(--section-colour);
  color: var(--aura-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--section-colour) 9%, transparent);
}

.route-story-copy {
  display: grid;
  gap: 8px;
}

.route-story-copy em {
  color: var(--aura-muted);
  font-size: 0.72rem;
  font-weight: 850;
  font-style: normal;
  line-height: 1.25;
  text-transform: uppercase;
}

.route-story-copy strong {
  max-width: 420px;
  font-size: clamp(1.18rem, 1.7vw, 1.72rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.route-story-copy small {
  max-width: 360px;
  color: var(--aura-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.route-story-action {
  grid-column: 2;
  align-self: end;
  justify-self: start;
  margin-top: 8px;
  color: var(--section-colour);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-story-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  align-self: stretch;
  min-height: 466px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.route-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.route-story-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 58%);
  content: "";
}

.route-story-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding-left: 16px;
  border-left: 2px solid var(--aura-gold);
  color: var(--aura-white);
}

.route-story-visual figcaption span {
  color: var(--aura-gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-story-visual figcaption strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.trust-panel {
  position: relative;
  overflow: hidden;
  padding-top: clamp(82px, 9vw, 132px);
  padding-bottom: clamp(82px, 9vw, 132px);
  background: #ffffff;
  color: var(--aura-ink);
}

.trust-panel::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 84px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.18), transparent);
  content: "";
  pointer-events: none;
}

.trust-panel .wrap {
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.trust-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--aura-muted);
  font-size: 1.08rem;
}

.trust-scorecard {
  display: grid;
  gap: 14px;
}

.score-card {
  padding: 22px 24px;
  border-left: 2px solid var(--aura-gold);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
}

.score-card span {
  display: block;
  color: var(--aura-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.score-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.08;
}

.score-card p {
  margin: 10px 0 0;
  color: var(--aura-muted);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  justify-content: center;
  margin-top: clamp(38px, 5vw, 64px);
  padding-block: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: transparent;
}

.partner-strip img {
  width: auto;
  max-width: min(160px, 100%);
  height: clamp(24px, 2.6vw, 32px);
  object-fit: contain;
  justify-self: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.testimonial-grid blockquote {
  min-height: 190px;
  margin: 0;
  padding: 22px 22px 20px;
  border-top: 3px solid var(--aura-red);
  background: var(--aura-white);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.06);
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
  color: var(--aura-gold);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-grid p {
  margin: 0;
  color: var(--aura-ink);
  font-size: 1rem;
  line-height: 1.5;
}

.testimonial-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--aura-muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-theatre {
  position: relative;
  --section-colour: var(--aura-red);
  overflow: hidden;
  padding-top: clamp(118px, 12vw, 174px);
  padding-bottom: clamp(148px, 14vw, 220px);
  background: #ffffff;
  color: var(--aura-ink);
}

.market-theatre::before {
  display: none;
}

.market-theatre::after {
  display: none;
}

.theatre-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(390px, 0.95fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.theatre-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--aura-muted);
  font-size: 1.12rem;
}

.theatre-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 16px;
  align-items: end;
}

.board-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.12);
}

.board-image-large {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.board-image-small {
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.board-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.board-image-small img {
  aspect-ratio: 4 / 3;
}

.board-image figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.58);
  color: var(--aura-white);
  font-size: 0.78rem;
  font-weight: 820;
  backdrop-filter: blur(12px);
}

.board-note {
  position: absolute;
  left: 18%;
  right: 10%;
  bottom: 0;
  z-index: 3;
  padding: 6px 0 6px 24px;
  border: 0;
  border-left: 2px solid var(--aura-gold);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  color: var(--aura-ink);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.board-note span {
  display: block;
  color: var(--aura-red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.board-note strong {
  display: block;
  margin-top: 8px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.board-note p {
  margin: 10px 0 0;
  color: var(--aura-muted);
}

.section {
  position: relative;
  padding: 96px 0;
}

.trust-panel + .market-theatre {
  margin-top: 0;
}

.market-theatre + .aura-lab::before,
.aura-lab + .proof-console::before {
  display: none;
}

.aura-lab + .proof-console::before {
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.95), transparent);
}

.aura-lab {
  margin-top: 0;
  padding-top: clamp(104px, 10vw, 154px);
  padding-bottom: clamp(104px, 10vw, 154px);
  background: #f5f1e9;
  color: var(--aura-ink);
}

.aura-lab::after {
  display: none;
}

.lab-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.78fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.lab-grid > div:first-child p:not(.eyebrow) {
  max-width: 620px;
  color: var(--aura-muted);
  font-size: 1.15rem;
}

.device-wall {
  position: relative;
  min-height: 520px;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  width: min(48%, 220px);
  min-width: 168px;
  aspect-ratio: 9 / 16;
  border: 10px solid var(--aura-white);
  border-radius: 34px;
  background: var(--aura-white);
  box-shadow: none;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.16));
  transform: translateY(var(--parallax-y, 0)) rotate(-7deg);
  transition: transform 260ms ease, filter 220ms ease;
}

.phone-card:hover {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.22));
}

.phone-card:nth-child(1) {
  left: 0;
  bottom: 18px;
}

.phone-card:nth-child(2) {
  left: 35%;
  top: 0;
  transform: translateY(var(--parallax-y, 0)) rotate(5deg);
}

.phone-card:nth-child(3) {
  right: 0;
  bottom: 0;
  transform: translateY(var(--parallax-y, 0)) rotate(9deg);
}

.phone-card img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.phone-card:hover img {
  transform: scale(1.06);
}

.phone-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(71, 47, 26, 0.64), transparent 54%);
  content: "";
}

.phone-card span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 16px;
  z-index: 1;
  color: var(--aura-white);
  font-size: 0.84rem;
  font-weight: 850;
}

.proof-console {
  margin-top: 0;
  padding-top: clamp(104px, 10vw, 150px);
  padding-bottom: clamp(104px, 10vw, 150px);
  background: var(--aura-paper);
}

.proof-console > .wrap {
  position: relative;
  z-index: 1;
}

.proof-flow {
  position: relative;
  display: flex;
  gap: clamp(20px, 5vw, 86px);
  align-items: flex-start;
  margin-top: clamp(44px, 6vw, 86px);
}

.proof-flow::before {
  position: absolute;
  left: 2%;
  right: 8%;
  top: 34%;
  height: 1px;
  background: rgba(215, 169, 79, 0.34);
  content: "";
  transform: rotate(2deg);
}

.proof-step {
  position: relative;
  overflow: visible;
  flex: 1 1 0;
  min-height: 310px;
  padding: 0 0 0 clamp(18px, 2.5vw, 34px);
  border-left: 1px solid color-mix(in srgb, var(--section-colour) 46%, rgba(215, 169, 79, 0.28));
  border-radius: 0;
  background: transparent;
  color: var(--aura-ink);
  box-shadow: none;
}

.proof-step:nth-child(2) {
  margin-top: 78px;
}

.proof-step:nth-child(3) {
  margin-top: 26px;
}

.proof-step::before {
  position: absolute;
  left: -9px;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--section-colour);
  content: "";
  box-shadow: 0 0 0 12px color-mix(in srgb, var(--section-colour) 12%, transparent);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.proof-step:hover::before {
  transform: none;
  box-shadow: 0 0 0 12px color-mix(in srgb, var(--section-colour) 12%, transparent);
}

.proof-step > * {
  position: relative;
  z-index: 1;
}

.proof-step span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 118px;
  border-radius: 0;
  background: transparent;
  color: var(--section-colour);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.82;
  font-weight: 860;
}

.proof-step > p:first-child {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 118px;
  border-radius: 0;
  background: transparent;
  color: var(--section-colour);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.82;
  font-weight: 860;
}

.proof-step p {
  color: var(--aura-muted);
}

.proof-step h3 {
  max-width: 280px;
}

.section.dark {
  background:
    radial-gradient(circle at 76% 20%, color-mix(in srgb, var(--section-colour) 22%, transparent), transparent 34%),
    #050505;
  color: var(--aura-white);
}

.section.soft {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 42%),
    var(--aura-soft);
}

.home .proof-console + .section.soft {
  margin-top: 0;
  padding-top: clamp(104px, 10vw, 150px);
  padding-bottom: clamp(104px, 10vw, 150px);
  overflow: hidden;
  background: #f8f6f1;
}

.home .section.soft + .transformation-stage,
.home .featured-property-stage + .transformation-stage {
  margin-top: 0;
  padding-top: clamp(104px, 10vw, 150px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.52fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p {
  margin: 0;
  color: var(--aura-muted);
  font-size: 1.08rem;
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.feature-grid {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: flex-start;
  margin-top: 54px;
}

.feature {
  position: relative;
  flex: 1 1 0;
  padding: 0 0 0 24px;
  background: transparent;
  border: 0;
  border-left: 1px solid color-mix(in srgb, var(--section-colour, var(--aura-gold)) 45%, var(--aura-line));
  border-radius: 0;
}

.feature:nth-child(2) {
  margin-top: 42px;
}

.feature:nth-child(3) {
  margin-top: 14px;
}

.feature::before {
  position: absolute;
  left: -6px;
  top: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--section-colour, var(--aura-gold));
  content: "";
  box-shadow: 0 0 0 9px color-mix(in srgb, var(--section-colour, var(--aura-gold)) 12%, transparent);
}

.feature p,
.card p,
.property-card p,
.project-card p,
.profile-copy p {
  color: var(--aura-muted);
}

.dark .feature {
  background: transparent;
  border-color: color-mix(in srgb, var(--section-colour, var(--aura-gold)) 48%, rgba(255, 255, 255, 0.2));
}

.dark .feature p {
  color: rgba(255, 255, 255, 0.68);
}

.about-feature-grid,
.contact-route-grid {
  grid-template-columns: 1fr;
}

.contact-route-grid {
  display: grid;
  gap: 0;
}

.contact-route-grid .feature {
  min-height: 0;
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid color-mix(in srgb, var(--section-colour, var(--aura-gold)) 18%, var(--aura-line));
}

.contact-route-grid .feature:nth-child(2),
.contact-route-grid .feature:nth-child(3) {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.enquiry-entry {
  margin-top: -62px;
  padding-top: clamp(118px, 12vw, 178px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, color-mix(in srgb, var(--section-colour) 12%, transparent), transparent 24rem),
    radial-gradient(circle at 88% 82%, rgba(215, 169, 79, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), #f7f5f0);
}

.enquiry-entry .contact-grid {
  position: relative;
}

.enquiry-entry .contact-grid::before {
  position: absolute;
  left: 30%;
  right: 8%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--section-colour) 52%, rgba(215, 169, 79, 0.32)), transparent);
  content: "";
  transform: rotate(-1.8deg);
}

.contact-panel {
  position: sticky;
  top: 108px;
  padding: 0 0 0 24px;
  border: 0;
  border-left: 1px solid rgba(215, 169, 79, 0.42);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-panel p {
  color: var(--aura-muted);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a {
  position: relative;
  display: block;
  padding: 12px 0;
  border-left: 0;
  border-bottom: 1px solid var(--aura-line);
  border-radius: 0;
  background: transparent;
  font-weight: 850;
  transition: color 160ms ease, padding-left 160ms ease;
}

.contact-methods a::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--section-colour, var(--aura-gold));
  content: "";
  transition: width 180ms ease;
}

.contact-methods a:hover {
  padding-left: 10px;
  color: var(--section-colour, var(--aura-red));
}

.contact-methods a:hover::before {
  width: 62px;
}

.enquiry-steps {
  position: relative;
  z-index: 1;
}

.featured-property-stage {
  overflow: hidden;
  padding-top: clamp(96px, 9vw, 132px);
  padding-bottom: clamp(96px, 9vw, 132px);
  background: #ffffff;
  color: var(--aura-ink);
}

.property-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.68fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.property-showcase-media {
  position: relative;
  display: block;
  min-height: clamp(460px, 56vw, 720px);
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  color: var(--aura-white);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
}

.property-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 640ms ease, filter 640ms ease;
}

.property-showcase-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 46%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.42), transparent 36%);
  content: "";
}

.property-showcase-media:hover img {
  transform: scale(1.05);
  filter: saturate(1.14) contrast(1.04);
}

.property-showcase-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding-left: 16px;
  border-left: 2px solid var(--aura-gold);
  color: var(--aura-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.property-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: var(--aura-white);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
}

.property-showcase-copy h3 {
  font-size: clamp(2rem, 3.8vw, 4.35rem);
  line-height: 0.96;
}

.property-showcase-copy > p {
  max-width: 560px;
  color: var(--aura-muted);
  font-size: 1.06rem;
}

.showcase-price {
  margin: 20px 0 0;
  color: var(--aura-ink) !important;
  font-size: 1.18rem !important;
  font-weight: 850;
}

.showcase-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.showcase-facts span {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 2px solid var(--section-colour);
  color: var(--aura-muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.showcase-facts strong {
  color: var(--aura-ink);
  font-size: 1rem;
}

.property-grid,
.project-grid,
.post-grid {
  display: grid;
  gap: 24px;
  align-items: flex-start;
}

.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-grid,
.project-grid {
  gap: clamp(24px, 3vw, 34px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 18px;
}

.property-grid > :first-child,
.project-grid > :first-child {
  min-width: 0;
}

.property-grid > :nth-child(2),
.project-grid > :nth-child(2) {
  min-width: 0;
}

.property-grid > :nth-child(3),
.project-grid > :nth-child(3) {
  min-width: 0;
}

.post-grid > * {
  flex: 1 1 0;
  min-width: 0;
}

.post-grid > :nth-child(2) {
  margin-top: clamp(32px, 5vw, 74px);
}

.post-grid > :nth-child(3) {
  margin-top: clamp(10px, 3vw, 38px);
}

.property-grid > :first-child img,
.project-grid > :first-child img {
  aspect-ratio: 16 / 10;
}

.property-grid > :not(:first-child),
.project-grid > :not(:first-child) {
  display: block;
}

.property-grid > :not(:first-child) img,
.project-grid > :not(:first-child) img {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.property-grid > :nth-child(2),
.project-grid > :nth-child(2) {
  margin-top: 0;
}

.property-grid > :nth-child(3),
.project-grid > :nth-child(3) {
  margin-top: 0;
}

.property-card,
.project-card,
.post-card {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 180ms ease;
}

.property-card::after,
.project-card::after,
.post-card::after {
  display: none;
}

.property-card:hover,
.project-card:hover,
.post-card:hover {
  transform: translateY(-4px);
}

.property-card > a:first-child,
.project-card > a:first-child {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}

.property-card img,
.project-card img,
.post-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: none;
  transition: transform 420ms ease, filter 420ms ease;
}

.video-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.16) contrast(1.04);
}

.listing-status-chip,
.listing-brand-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.listing-status-chip {
  left: 10px;
  top: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--section-colour);
}

.listing-brand-chip {
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--aura-white);
}

.play-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.play-chip::before {
  position: absolute;
  left: 19px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid var(--aura-white);
  content: "";
}

.play-chip::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
  animation: auraPulse 1.8s ease-in-out infinite;
}

.card-body {
  padding: 14px 0 28px;
}

.property-card .card-body > p:first-child {
  margin: 0 0 6px;
  color: var(--aura-ink);
  font-size: 0.92rem;
  line-height: 1.25;
}

.property-card h3 {
  font-size: 0.96rem;
  line-height: 1.3;
}

.listing-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  color: var(--aura-ink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-facts span,
.listing-facts .pill {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.listing-facts span::before,
.listing-facts .pill::before {
  width: 4px;
  height: 4px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.investment-strip {
  overflow: hidden;
  padding-top: clamp(96px, 10vw, 146px);
  padding-bottom: clamp(100px, 10vw, 156px);
  background: #ffffff;
  color: var(--aura-ink);
}

.investment-rail {
  display: grid;
  grid-auto-columns: minmax(190px, 1fr);
  grid-auto-flow: column;
  gap: 14px;
  align-items: stretch;
  margin-top: 32px;
}

.investment-tile {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border-radius: 8px;
  background: #111;
  color: var(--aura-white);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.investment-tile:nth-child(even) {
  margin-top: 24px;
}

.investment-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.18);
}

.investment-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.investment-tile::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18) 62%),
    linear-gradient(135deg, color-mix(in srgb, var(--section-colour) 32%, transparent), transparent 46%);
  content: "";
}

.investment-tile:hover img {
  transform: scale(1.07);
  filter: saturate(1.14) contrast(1.05);
}

.investment-tile span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--section-colour);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.investment-tile strong {
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.02;
}

.investment-tile em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--section-colour, var(--aura-red));
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill::before {
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  border-radius: 4px;
  clip-path: polygon(0 2%, 100% 0, 97% 100%, 0 96%);
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.transformation-stage {
  position: relative;
  overflow: hidden;
}

.transformation-stage::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(221, 123, 31, 0.2), transparent 32%),
    linear-gradient(90deg, transparent, rgba(227, 27, 47, 0.08));
  content: "";
}

.before-after-frame {
  position: relative;
  display: grid;
  min-height: 560px;
  isolation: isolate;
}

.before-after-frame figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: 4px;
  clip-path: polygon(0 0, 100% 4%, 97% 100%, 3% 96%);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.22);
  transition: transform 260ms ease;
}

.before-after-frame figure:first-child {
  left: 0;
  top: 38px;
  width: 62%;
  transform: translateY(var(--parallax-y, 0)) rotate(-4deg);
}

.before-after-frame figure:last-child {
  right: 0;
  bottom: 20px;
  z-index: 2;
  width: 74%;
  transform: translateY(var(--parallax-y, 0)) rotate(4deg);
}

.before-after-frame:hover figure:first-child {
  transform: translateY(var(--parallax-y, 0));
}

.before-after-frame:hover figure:last-child {
  transform: translateY(var(--parallax-y, 0));
}

.before-after-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.before-after-frame figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--aura-white);
  font-size: 0.82rem;
  font-weight: 850;
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 4 / 3;
  margin-top: 46px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.stat {
  padding-top: 16px;
  border-top: 2px solid var(--section-colour, var(--aura-red));
}

.stat strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
}

.stat span {
  color: var(--aura-muted);
  font-size: 0.9rem;
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  position: relative;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.lizzie-studio {
  overflow: hidden;
  background: #ffffff;
}

.profile-photo {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: linear-gradient(135deg, #ded8ce, #ffffff);
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.portrait-system {
  position: relative;
}

.quote-float {
  position: absolute;
  right: -34px;
  bottom: 28px;
  max-width: 220px;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--aura-gold);
  border-radius: 0;
  background: transparent;
  color: var(--aura-ink);
  box-shadow: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quote-float span {
  display: block;
  color: var(--aura-red);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quote-float strong {
  display: block;
  margin-top: 4px;
  line-height: 1.2;
}

.social-grid {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  align-items: flex-start;
}

.social-tile {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 3px;
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 3% 96%);
  background: #d8c5aa;
  color: var(--aura-white);
}

.social-tile img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.social-tile:hover img {
  transform: scale(1.08);
}

.social-tile > span:not(.play-chip) {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 0 0 0 14px;
  border-left: 2px solid var(--aura-gold);
  border-radius: 0;
  background: transparent;
  font-weight: 750;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.reel-grid {
  align-items: start;
}

.reel-card:nth-child(even) {
  margin-top: 54px;
}

.reel-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 58%);
  content: "";
}

.reel-card > span:not(.play-chip),
.reel-card .play-chip {
  z-index: 2;
}

.instagram-reel-grid {
  align-items: start;
}

.instagram-reel-card {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 560px;
  padding: 22px 18px 24px;
  border: 10px solid var(--aura-white);
  border-radius: 34px;
  background: #111;
  color: var(--aura-white);
  box-shadow: none;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.13));
  transform: rotate(-2deg);
  transition: transform 180ms ease, filter 180ms ease;
}

.instagram-reel-card:nth-child(even) {
  margin-top: 54px;
  transform: rotate(2deg);
}

.instagram-reel-card:nth-child(3) {
  margin-top: 18px;
  transform: rotate(1deg);
}

.instagram-reel-card:hover {
  transform: translateY(-9px) rotate(0deg);
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.2));
}

.instagram-reel-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.instagram-reel-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.06);
}

.instagram-reel-card::after {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border-radius: 24px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.08)),
    linear-gradient(135deg, rgba(227, 27, 47, 0.26), transparent 42%);
  content: "";
}

.instagram-reel-card > span,
.instagram-reel-card strong,
.instagram-reel-card em {
  position: relative;
  z-index: 2;
}

.instagram-reel-card .play-chip {
  top: 26px;
  right: 26px;
}

.reel-source,
.reel-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reel-source {
  margin-bottom: auto;
  background: rgba(255, 255, 255, 0.9);
  color: var(--aura-black);
}

.reel-label {
  margin-top: 220px;
  background: var(--aura-red);
  color: var(--aura-white);
}

.instagram-reel-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.instagram-reel-card em {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 800;
}

.service-sales {
  --service-font: Georgia, "Times New Roman", serif;
  --service-surface: #fff9f7;
  --service-ink: #2a1115;
}

.service-lettings {
  --service-font: Manrope, Satoshi, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --service-surface: #f3f9ff;
  --service-ink: #0d2538;
}

.service-investments {
  --service-font: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --service-surface: #f3fbf6;
  --service-ink: #102819;
}

.service-refurbishments {
  --service-font: Manrope, Satoshi, Avenir Next Condensed, Arial Narrow, ui-sans-serif, system-ui, sans-serif;
  --service-surface: #fff8ef;
  --service-ink: #301c0b;
}

.page-hero h1,
.service-signature h2,
.audience-fit h2 {
  font-family: var(--service-font, inherit);
}

.service-investments .page-hero h1,
.service-investments .service-signature h2,
.service-investments .audience-fit h2 {
  font-size: clamp(2.35rem, 5vw, 5.05rem);
  line-height: 1.08;
}

.service-signature {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: clamp(72px, 8vw, 118px) 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--section-colour) 18%, transparent), transparent 58%),
    var(--aura-black);
  color: var(--aura-white);
}

.service-signature::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(215, 169, 79, 0.14), transparent 24rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 42%);
  content: "";
  opacity: 0.52;
}

.signature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.signature-grid h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
}

.signature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.tone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tone-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--section-colour) 54%, rgba(255, 255, 255, 0.22));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
}

.service-media-strip {
  position: relative;
  overflow: hidden;
  margin-top: -42px;
  padding-top: clamp(126px, 12vw, 188px);
  padding-bottom: clamp(106px, 10vw, 156px);
  background:
    radial-gradient(circle at 16% 22%, color-mix(in srgb, var(--section-colour) 16%, transparent), transparent 34%),
    #fff7ec;
  color: var(--aura-ink);
}

.service-media-strip::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 169, 79, 0.16), transparent 24rem),
    linear-gradient(130deg, rgba(255, 255, 255, 0.48), transparent 46%);
  content: "";
}

.service-media-strip::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  background: linear-gradient(180deg, transparent, var(--service-surface, #f7f4ee));
  content: "";
  pointer-events: none;
}

.media-runway {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.runway-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--aura-muted);
  font-size: 1.12rem;
}

.runway-reels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.runway-reels .reel-card:first-child {
  margin-top: 52px;
}

.audience-fit {
  position: relative;
  margin-top: -54px;
  padding-top: clamp(126px, 11vw, 178px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
    var(--service-surface, var(--aura-soft));
}

.audience-fit > .wrap {
  position: relative;
  z-index: 1;
}

.audience-card-grid {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: flex-start;
  margin-top: 48px;
}

.audience-card {
  position: relative;
  flex: 1 1 0;
  overflow: visible;
  padding-left: 18px;
  border: 0;
  border-left: 1px solid color-mix(in srgb, var(--section-colour) 38%, var(--aura-line));
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease;
}

.audience-card::after {
  position: absolute;
  left: 18px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--section-colour), transparent);
  content: "";
  opacity: 0.62;
}

.audience-card:nth-child(2) {
  margin-top: 34px;
}

.audience-card:nth-child(3) {
  margin-top: 12px;
}

.audience-card:hover {
  transform: translateY(-6px);
}

.audience-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 4px;
  clip-path: polygon(0 2%, 100% 0, 98% 100%, 0 96%);
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}

.audience-card div {
  padding: 22px 0 26px;
}

.audience-card span {
  display: block;
  color: var(--section-colour);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin-top: 12px;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--aura-muted);
}

.proof-tool {
  position: relative;
  overflow: hidden;
  margin-top: -38px;
  padding-top: clamp(124px, 11vw, 176px);
  padding-bottom: clamp(116px, 11vw, 170px);
  background:
    radial-gradient(circle at 10% 22%, color-mix(in srgb, var(--section-colour) 14%, transparent), transparent 34%),
    linear-gradient(180deg, #ffffff, var(--service-surface, #f4f4f4));
}

.proof-tool::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  background: linear-gradient(180deg, transparent, #ffffff);
  content: "";
  pointer-events: none;
}

.proof-tool-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.proof-tool-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--aura-muted);
  font-size: 1.1rem;
}

.proof-console-card {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 38px) 0 clamp(22px, 4vw, 38px) clamp(22px, 4vw, 38px);
  border: 0;
  border-left: 1px solid color-mix(in srgb, var(--section-colour) 46%, var(--aura-line));
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.proof-score {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: end;
  padding: 0 0 22px;
  border-bottom: 1px solid color-mix(in srgb, var(--section-colour) 28%, var(--aura-line));
  border-radius: 0;
  background: transparent;
  color: var(--aura-ink);
}

.proof-score span {
  color: var(--aura-muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-score strong {
  grid-row: span 2;
  color: var(--section-colour);
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 0.82;
}

.proof-score em {
  color: var(--aura-muted);
  font-style: normal;
  font-weight: 760;
}

.proof-metrics {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  align-items: flex-start;
}

.proof-metric {
  flex: 1 1 0;
  padding: 0 0 0 16px;
  border: 0;
  border-left: 1px solid color-mix(in srgb, var(--section-colour) 44%, var(--aura-line));
  border-radius: 0;
  background: transparent;
}

.proof-metric span {
  display: block;
  color: var(--aura-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.proof-metric strong {
  display: block;
  margin-top: 8px;
  color: var(--section-colour);
  font-size: 1.55rem;
  line-height: 1;
}

.proof-checklist {
  display: grid;
  gap: 0;
}

.proof-check {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--section-colour) 18%, var(--aura-line));
  border-radius: 0;
  background: transparent;
}

.proof-check span {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--section-colour);
}

.proof-check span::after {
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--aura-white);
  border-bottom: 2px solid var(--aura-white);
  content: "";
  transform: rotate(42deg);
}

.proof-check p {
  margin: 0;
  color: var(--aura-ink);
  font-weight: 720;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 132px;
  background:
    radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--section-colour, var(--aura-red)) 22%, transparent), transparent 26rem),
    radial-gradient(circle at 12% 84%, rgba(215, 169, 79, 0.14), transparent 25rem),
    linear-gradient(180deg, #ffffff, #f7f4ee 74%, rgba(5, 5, 5, 0.08));
  color: var(--aura-ink);
}

.page-hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 128px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92));
  content: "";
  pointer-events: none;
}

.route-switcher {
  position: sticky;
  top: 78px;
  z-index: 40;
  margin-top: -54px;
  padding: 0;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

body.admin-bar .route-switcher {
  top: 110px;
}

.route-switcher-grid {
  display: flex;
  gap: clamp(14px, 3vw, 42px);
  align-items: center;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.route-switcher-grid::-webkit-scrollbar {
  display: none;
}

.route-switcher-item {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--aura-ink);
  transition: color 180ms ease, transform 180ms ease;
}

.route-switcher-item::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--section-colour);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.route-switcher-item:hover,
.route-switcher-item.is-active {
  color: var(--aura-black);
  transform: translateY(-1px);
}

.route-switcher-item.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.route-switcher-item span {
  color: var(--section-colour);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-switcher-item strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.route-switcher-item em {
  display: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.52fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.page-hero p {
  max-width: 760px;
  color: var(--aura-muted);
  font-size: 1.18rem;
}

.page-hero h1 {
  color: var(--service-ink, var(--aura-ink));
}

.page-hero-visual {
  position: relative;
}

.page-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  clip-path: polygon(0 2%, 100% 0, 97% 100%, 0 95%);
  object-fit: cover;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.16);
}

.page-hero-visual::before {
  position: absolute;
  inset: 20px -20px -20px 20px;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--section-colour) 52%, transparent);
  border-radius: 4px;
  content: "";
}

.hero-proof-note {
  position: absolute;
  left: -26px;
  bottom: 30px;
  max-width: 250px;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--section-colour);
  border-radius: 0;
  background: transparent;
  color: var(--aura-white);
  box-shadow: none;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.78);
}

.hero-proof-note span {
  display: block;
  color: var(--section-colour);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-proof-note strong {
  display: block;
  margin-top: 6px;
  line-height: 1.1;
}

.service-journey {
  background:
    radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--section-colour) 13%, transparent), transparent 24rem),
    linear-gradient(180deg, #ffffff, var(--service-surface, #f7f4ee));
}

.journey-grid {
  position: relative;
  display: flex;
  gap: clamp(22px, 5vw, 78px);
  align-items: flex-start;
  margin-top: 54px;
  border-top: 0;
}

.journey-grid::before {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--section-colour) 52%, transparent), transparent);
  content: "";
}

.journey-step {
  position: relative;
  flex: 1 1 0;
  min-height: 240px;
  padding: 0;
  border-right: 0;
}

.journey-step:nth-child(2) {
  margin-top: 52px;
}

.journey-step:nth-child(3) {
  margin-top: 18px;
}

.journey-step::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--section-colour);
  content: "";
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--section-colour) 12%, transparent);
}

.journey-step span {
  display: block;
  margin-bottom: 72px;
  color: var(--section-colour);
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.86;
  font-weight: 860;
}

.journey-step p {
  color: var(--aura-muted);
}

.service-detail-panel {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(17, 17, 17, 0.92)),
    #050505;
  color: var(--aura-white);
}

.detail-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(340px, 0.86fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.detail-panel-grid > div:first-child p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.detail-list {
  display: grid;
  gap: 4px;
}

.detail-item {
  position: relative;
  overflow: hidden;
  padding: 24px 0 24px 28px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
}

.detail-item::before {
  position: absolute;
  left: 0;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--section-colour);
  content: "";
  box-shadow: 0 0 0 9px color-mix(in srgb, var(--section-colour) 14%, transparent);
}

.detail-item span {
  display: block;
  color: var(--section-colour);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-item h3 {
  margin-top: 10px;
}

.detail-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.outcome-panel {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(17, 17, 17, 0.9)),
    #050505;
  color: var(--aura-white);
}

.outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.74fr);
  gap: 46px;
  align-items: start;
}

.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcome-item {
  padding: 20px 0 20px 28px;
  border-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
}

.outcome-item::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 14px 1px -28px;
  border-radius: 50%;
  background: var(--section-colour);
  content: "";
}

.content-area {
  padding: clamp(74px, 9vw, 126px) 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(215, 169, 79, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff, #f7f5f0);
}

.content-area > .wrap > *:first-child {
  margin-top: 0;
}

.content-area > .wrap {
  max-width: 920px;
}

.content-area > .section-head {
  max-width: var(--aura-max);
}

.content-area .post-grid,
.content-area .property-grid,
.content-area .project-grid {
  max-width: var(--aura-max);
}

.content-area figure {
  margin: 0 0 clamp(34px, 5vw, 62px);
}

.content-area figure img {
  width: 100%;
  border-radius: 4px;
  clip-path: polygon(0 0, 100% 2%, 98% 100%, 0 96%);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.12);
}

.content-area p,
.content-area li {
  color: var(--aura-muted);
  font-size: 1.06rem;
}

.content-area h2,
.content-area h3 {
  margin-top: clamp(36px, 5vw, 60px);
}

.navigation.pagination {
  margin-top: clamp(42px, 6vw, 76px);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.page-numbers {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 4px 0;
  color: var(--aura-muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-numbers::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--section-colour, var(--aura-gold)), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

.page-numbers.current,
.page-numbers:hover {
  color: var(--aura-ink);
}

.page-numbers.current::after,
.page-numbers:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.evidence-gallery {
  position: relative;
  overflow: hidden;
  margin-top: -48px;
  padding-top: clamp(118px, 11vw, 170px);
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--section-colour, var(--aura-gold)) 12%, transparent), transparent 24rem),
    radial-gradient(circle at 92% 82%, rgba(215, 169, 79, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), #f7f5f0);
}

.evidence-gallery::before {
  position: absolute;
  left: 8%;
  right: 12%;
  top: clamp(92px, 8vw, 132px);
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--section-colour, var(--aura-gold)) 52%, rgba(215, 169, 79, 0.4)), transparent);
  content: "";
  transform: rotate(-1.4deg);
}

.evidence-gallery > .wrap {
  position: relative;
  z-index: 1;
}

.evidence-gallery .property-grid,
.evidence-gallery .project-grid {
  padding-top: clamp(22px, 4vw, 54px);
}

.site-footer {
  background: #050505;
  color: var(--aura-white);
  padding: 58px 0 28px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 46px;
  padding: 0 0 34px;
  border: 0;
  border-bottom: 1px solid rgba(215, 169, 79, 0.3);
  border-radius: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(215, 169, 79, 0.12), transparent 18rem),
    transparent;
}

.footer-cta h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.footer-route-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 42px);
  align-items: center;
  margin-bottom: 42px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-route {
  position: relative;
  display: inline-flex;
  flex: 1 1 190px;
  min-height: 0;
  gap: 12px;
  align-items: baseline;
  padding: 0 0 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 180ms ease;
}

.footer-route::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--section-colour), transparent);
  content: "";
  opacity: 0.58;
}

.footer-route:hover {
  transform: translateY(-4px);
}

.footer-route span {
  color: var(--section-colour);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-route strong {
  color: var(--aura-white);
  line-height: 1.15;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(30px, 5vw, 76px);
  align-items: flex-start;
  padding-top: 6px;
}

.footer-grid > div {
  flex: 1 1 160px;
  min-width: 150px;
}

.footer-grid > div:first-child {
  flex: 2.2 1 330px;
  max-width: 520px;
}

.footer-grid > div:first-child p {
  max-width: 420px;
  margin-top: 18px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--aura-gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid a {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 160ms ease, padding-left 160ms ease;
}

.footer-grid a::before {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--aura-gold);
  content: "";
  transition: width 180ms ease;
}

.footer-grid a:hover {
  padding-left: 10px;
  color: var(--aura-white);
}

.footer-grid a:hover::before {
  width: 54px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.service-sales {
  --section-colour: var(--aura-red);
}

.service-lettings {
  --section-colour: var(--aura-blue);
}

.service-investments {
  --section-colour: var(--aura-green);
}

.service-refurbishments {
  --section-colour: var(--aura-orange);
}

.reveal-item {
  opacity: 1;
  clip-path: none;
  filter: none;
  transition: none;
}

.reveal-item.is-visible {
  opacity: 1;
  clip-path: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-item {
    opacity: 1;
    clip-path: none;
    filter: none;
  }
}

@keyframes auraHeroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes auraTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: #050505;
    border-top: 1px solid rgba(215, 169, 79, 0.2);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
  }

  .header-cta {
    display: none;
  }

  .feature-grid,
  .journey-grid,
  .audience-card-grid,
  .project-grid,
  .post-grid,
  .social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .journey-grid,
  .audience-card-grid {
    display: flex;
  }

  .social-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .social-grid::-webkit-scrollbar {
    display: none;
  }

  .instagram-reel-card {
    flex: 0 0 min(42vw, 320px);
  }

  .hero-route-chooser {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 680px);
    border-radius: 22px;
  }

  .hero-route-card {
    border-radius: 14px;
  }

  .route-story {
    grid-template-columns: 1fr;
  }

  .route-story::before {
    right: 4%;
  }

  .route-story-visual {
    min-height: 420px;
    max-width: 520px;
    transform: rotate(0deg);
  }

  .proof-flow {
    display: block;
  }

  .proof-flow::before {
    display: none;
  }

  .proof-step,
  .proof-step:nth-child(2),
  .proof-step:nth-child(3) {
    min-height: 0;
    margin-top: 0;
    margin-bottom: 32px;
  }

  .property-grid,
  .project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sell-intro,
  .lettings-grid {
    grid-template-columns: 1fr;
  }

  .portal-proof {
    max-width: 420px;
  }

  .sell-flow,
  .lettings-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investment-rail {
    display: flex;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .investment-rail::-webkit-scrollbar {
    display: none;
  }

  .investment-tile {
    flex: 0 0 min(42vw, 280px);
    scroll-snap-align: start;
  }

  .property-grid > :nth-child(2),
  .property-grid > :nth-child(3),
  .project-grid > :nth-child(2),
  .project-grid > :nth-child(3) {
    margin-top: 0;
  }

  .section-head,
  .hero-shell,
  .page-hero-grid,
  .signature-grid,
  .lab-grid,
  .trust-grid,
  .theatre-grid,
  .property-showcase,
  .detail-panel-grid,
  .proof-tool-grid,
  .media-runway,
  .split,
  .outcome-grid,
  .profile-panel,
  .contact-grid,
  .footer-cta,
  .footer-route-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-command {
    align-self: center;
  }

  .hero-film-card {
    max-width: 520px;
  }

  .route-switcher {
    position: relative;
    margin-top: 0;
    top: auto;
  }

  body.admin-bar .route-switcher {
    top: auto;
  }

  .route-switcher-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-wall {
    min-height: 430px;
  }

  .audience-card:nth-child(2),
  .audience-card:nth-child(3),
  .feature:nth-child(2),
  .feature:nth-child(3),
  .journey-step:nth-child(2),
  .journey-step:nth-child(3),
  .runway-reels .reel-card:first-child,
  .reel-card:nth-child(even),
  .instagram-reel-card:nth-child(even) {
    margin-top: 0;
  }

  .theatre-board {
    min-height: 520px;
  }

  .page-hero-visual {
    max-width: 520px;
  }

  .contact-panel {
    position: static;
  }

  .service-media-strip,
  .audience-fit,
  .proof-tool,
  .enquiry-entry,
  .evidence-gallery {
    margin-top: 0;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .enquiry-entry .contact-grid::before,
  .evidence-gallery::before {
    display: none;
  }

  .service-signature {
    padding: 82px 0;
  }

  .proof-console-card {
    padding-left: 24px;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .wrap {
    width: min(var(--aura-max), calc(100% - 28px));
  }

  .brand-mark {
    width: 118px;
  }

  .header-inner {
    min-height: 88px;
    gap: 16px;
  }

  .mobile-toggle {
    width: 46px;
    height: 46px;
    border-color: rgba(215, 169, 79, 0.72);
  }

  .hero {
    min-height: 70vh;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 4rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .home-review-strip {
    padding: 18px 0;
  }

  .review-marquee-track {
    gap: 12px;
    animation-duration: 54s;
  }

  .review-marquee blockquote {
    flex-basis: min(320px, 86vw);
    padding: 16px 18px;
  }

  .hero-search-panel {
    padding: 13px;
  }

  .hero-search-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-search-row a {
    width: 100%;
  }

  .hero-content {
    width: auto;
    padding-bottom: 0;
  }

  .hero-route-chooser {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
  }

  .hero-route-card {
    min-height: 68px;
    border-radius: 12px;
  }

  .sell-section {
    padding-top: 76px;
  }

  .portal-proof,
  .sell-flow,
  .lettings-steps {
    grid-template-columns: 1fr;
  }

  .portal-proof {
    gap: 16px;
    max-width: none;
    padding: 20px;
  }

  .portal-proof img {
    height: 24px;
  }

  .sell-flow article,
  .lettings-steps article {
    min-height: 0;
  }

  .floating-consultation {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 12px 18px;
  }

  .route-story {
    gap: 30px;
  }

  .route-story::before {
    display: none;
  }

  .route-story-item,
  .route-story-item:nth-child(2),
  .route-story-item:nth-child(4) {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    margin-left: 0;
    min-height: 0;
    padding: 18px;
  }

  .route-story-item:hover {
    transform: none;
  }

  .route-story-number {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--section-colour) 12%, transparent);
  }

  .route-story-action {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
    white-space: normal;
  }

  .route-story-copy strong {
    font-size: clamp(1.22rem, 6vw, 1.72rem);
  }

  .route-story-visual {
    min-height: 300px;
  }

  .feature-grid,
  .journey-grid,
  .runway-reels,
  .audience-card-grid,
  .property-grid,
  .project-grid,
  .post-grid,
  .proof-metrics,
  .route-story-list,
  .partner-strip,
  .testimonial-grid,
  .stat-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .instagram-reel-card {
    flex: initial;
    min-height: 560px;
    transform: none;
  }

  .instagram-reel-card:nth-child(even),
  .instagram-reel-card:nth-child(3),
  .instagram-reel-card:hover {
    transform: none;
  }

  .journey-grid {
    display: block;
    gap: 22px;
  }

  .journey-step {
    min-height: 0;
    margin-bottom: 30px;
    padding: 0 0 0 22px;
    border: 0;
    border-left: 1px solid color-mix(in srgb, var(--section-colour) 38%, var(--aura-line));
    border-radius: 0;
    background: transparent;
  }

  .journey-step::before {
    left: -7px;
    top: 0;
  }

  .journey-step span {
    margin-bottom: 42px;
  }

  .property-grid > :first-child,
  .project-grid > :first-child {
    grid-row: auto;
  }

  .property-grid > :not(:first-child),
  .project-grid > :not(:first-child) {
    grid-template-columns: 1fr;
  }

  .property-grid > :first-child img,
  .project-grid > :first-child img,
  .property-grid > :not(:first-child) img,
  .project-grid > :not(:first-child) img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .investment-strip {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .investment-tile {
    flex-basis: min(78vw, 300px);
    min-height: 330px;
  }

  .investment-tile:nth-child(even) {
    margin-top: 0;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 76px 0 92px;
  }

  .page-hero-grid {
    gap: 30px;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 10.4vw, 3.95rem);
    line-height: 0.98;
  }

  .service-investments .page-hero h1 {
    font-size: clamp(2rem, 8.2vw, 3.2rem);
  }

  .page-hero p {
    font-size: 1.04rem;
  }

  .page-hero .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .page-hero .button {
    min-height: 44px;
    padding: 11px 15px;
    font-size: 0.92rem;
  }

  .page-hero-visual img {
    aspect-ratio: 16 / 11;
  }

  .route-switcher-grid {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 10px 0;
  }

  .route-switcher-item {
    min-height: 42px;
  }

  .hero-shell {
    padding: 54px 0 62px;
    min-height: auto;
  }

  .hero-command {
    width: 100%;
    padding: 0 0 0 18px;
    border-radius: 0;
  }

  .hero-film-card {
    min-height: 210px;
  }

  .market-theatre {
    padding-top: 110px;
    padding-bottom: 78px;
  }

  .trust-panel + .market-theatre,
  .aura-lab,
  .proof-console,
  .home .proof-console + .section.soft,
  .home .section.soft + .transformation-stage,
  .home .featured-property-stage + .transformation-stage {
    margin-top: 0;
  }

  .aura-lab {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .proof-console {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .home .proof-console + .section.soft,
  .home .section.soft + .transformation-stage,
  .home .featured-property-stage + .transformation-stage {
    padding-top: 88px;
  }

  .featured-property-stage {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .property-showcase {
    gap: 18px;
  }

  .property-showcase-media {
    min-height: 340px;
  }

  .property-showcase-copy {
    padding: 22px;
  }

  .showcase-facts {
    grid-template-columns: 1fr;
  }

  .theatre-board {
    grid-template-columns: 1fr;
  }

  .board-image-large,
  .board-image-small,
  .board-note {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .board-image-small,
  .board-note {
    margin-top: 16px;
  }

  .page-hero-visual::before {
    inset: 14px -10px -10px 14px;
  }

  .hero-proof-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

  .device-wall {
    min-height: 500px;
  }

  .phone-card {
    width: 58%;
  }

  .phone-card:nth-child(2) {
    left: 42%;
  }

  .before-after-frame {
    min-height: 460px;
  }

  .quote-float {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 0 0 0 14px;
    border-left: 2px solid var(--aura-gold);
    background: transparent;
    border-radius: 0;
  }

  .feature {
    padding: 0 0 0 22px;
  }

  .card-body {
    padding: 18px 0 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
