:root {
  --ink: #19363c;
  --ink-soft: #4a6064;
  --petrol: #123f46;
  --petrol-deep: #0b3036;
  --terracotta: #a6422c;
  --terracotta-dark: #84301f;
  --apricot: #f4c5a4;
  --apricot-soft: #fff0e5;
  --ivory: #fff9f3;
  --sage: #dde8df;
  --white: #ffffff;
  --line: #cfdbd7;
  --line-warm: #e6cbb8;
  --shadow: 0 22px 54px rgba(18, 63, 70, 0.13);
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #c4583d;
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--petrol-deep);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.operator-bar {
  padding: 8px 20px;
  color: #f8fbfa;
  background: var(--petrol-deep);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.015em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(18, 63, 70, 0.11);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "domain nav logo";
  align-items: center;
  gap: 30px;
}

.domain-mark {
  grid-area: domain;
  color: var(--petrol-deep);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 790;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: clamp(17px, 2.2vw, 32px);
}

.site-nav a {
  position: relative;
  color: #294f55;
  font-size: 16px;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a::before {
  position: absolute;
  right: 50%;
  bottom: -9px;
  left: 50%;
  height: 3px;
  border-radius: 3px;
  background: var(--terracotta);
  content: "";
  transition: right 160ms ease, left 160ms ease;
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  right: 0;
  left: 0;
}

.logo-link {
  grid-area: logo;
  width: 126px;
  padding: 3px;
}

.logo-link img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

.menu-toggle {
  grid-area: menu;
  display: none;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--petrol);
  background: var(--white);
  font-size: 16px;
  font-weight: 740;
  cursor: pointer;
}

.menu-icon {
  width: 20px;
  display: grid;
  gap: 4px;
}

.menu-icon i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--petrol-deep);
  line-height: 1.12;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(44px, 4.4vw, 58px);
  letter-spacing: -0.047em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.2vw, 41px);
  letter-spacing: -0.034em;
}

h3 {
  margin-bottom: 9px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--terracotta-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  position: relative;
  padding: clamp(48px, 6vw, 86px) 0 clamp(62px, 8vw, 108px);
  overflow: hidden;
  background: var(--ivory);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -160px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(244, 197, 164, 0.45);
}

.hero::after {
  bottom: 36px;
  left: -45px;
  width: 105px;
  height: 105px;
  background: rgba(221, 232, 223, 0.76);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "copy media"
    "actions media";
  align-items: center;
  gap: 30px 58px;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #3e575b;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  grid-area: actions;
  align-self: start;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8eeea;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 4px;
  color: #fff;
  background: rgba(9, 42, 47, 0.84);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.25;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
}

.hero-media {
  grid-area: media;
  min-height: 545px;
  aspect-ratio: 1.15;
  border-radius: 18px 112px 18px 112px;
}

.hero-media img {
  object-position: 46% center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 2px solid transparent;
  border-radius: 9px;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--terracotta);
  box-shadow: 0 12px 24px rgba(166, 66, 44, 0.2);
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-secondary {
  color: var(--petrol-deep);
  border-color: #9eb5b7;
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--terracotta);
  background: var(--apricot-soft);
}

.secondary-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 19px;
}

.secondary-routes a {
  display: inline-grid;
  color: var(--petrol);
  font-size: 16px;
  font-weight: 730;
  line-height: 1.3;
  text-decoration-color: rgba(18, 63, 70, 0.38);
  text-underline-offset: 5px;
}

.secondary-routes span {
  margin-bottom: 3px;
  color: #697c7f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-basis {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.success-inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 0.68fr) minmax(320px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  border: 1px solid var(--line-warm);
  border-radius: 20px;
  background: #fffdf9;
  box-shadow: 0 16px 38px rgba(70, 48, 37, 0.09);
}

.success-inner h2 {
  margin: 0;
  font-size: 28px;
}

.success-inner p {
  margin: 0;
  color: #43585c;
}

.pulse-mark {
  position: relative;
  width: 56px;
  height: 56px;
  border: 3px solid var(--terracotta);
  border-radius: 50%;
}

.pulse-mark::before,
.pulse-mark::after {
  position: absolute;
  top: 50%;
  height: 3px;
  background: var(--terracotta);
  content: "";
  transform: translateY(-50%);
}

.pulse-mark::before {
  left: 9px;
  width: 15px;
}

.pulse-mark::after {
  right: 9px;
  width: 20px;
  clip-path: polygon(0 40%, 28% 40%, 42% 0, 58% 100%, 72% 40%, 100% 40%, 100% 60%, 77% 60%, 58% 100%, 42% 18%, 33% 60%, 0 60%);
}

.section {
  padding: clamp(78px, 9vw, 126px) 0;
}

.conversation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.conversation-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 21px;
  color: var(--ink-soft);
}

.conversation-media {
  min-height: 560px;
  aspect-ratio: 1.05;
  border-radius: 90px 18px 18px 18px;
}

.conversation-media img {
  object-position: 52% center;
}

.energy-rail {
  margin: 34px 0 0;
  padding-left: 25px;
  border-left: 4px solid var(--apricot);
}

.energy-rail > div {
  padding: 12px 0;
}

.energy-rail dt {
  margin-bottom: 3px;
  color: var(--terracotta-dark);
  font-weight: 800;
}

.energy-rail dd {
  margin: 0;
  color: #40585c;
}

.activity-section {
  color: #eef7f5;
  background: var(--petrol-deep);
}

.activity-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.66fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.activity-section h2,
.activity-section h3 {
  color: var(--white);
}

.activity-section .eyebrow {
  color: #f5b89f;
}

.activity-heading {
  position: sticky;
  top: 132px;
}

.activity-heading > p:last-child {
  margin: 0;
  color: #c8dbd8;
}

.activity-line {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-line::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 25px;
  width: 2px;
  background: rgba(244, 197, 164, 0.48);
  content: "";
}

.activity-line li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 25px;
  padding: 6px 0 30px;
}

.activity-line li:last-child {
  padding-bottom: 0;
}

.activity-line > li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid #f2a98d;
  border-radius: 50%;
  color: #ffd8c8;
  background: var(--petrol-deep);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.activity-line p {
  margin: 0;
  color: #c8dbd8;
}

.reliability-section {
  background: var(--apricot-soft);
}

.reliability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.organisation-media {
  aspect-ratio: 3 / 2;
  border-radius: 18px 18px 96px 18px;
}

.organisation-media img {
  object-position: 50% center;
}

.reliability-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
}

.quiet-panel {
  margin-top: 32px;
  padding: 26px 28px;
  border-left: 5px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.72);
}

.quiet-panel h3 {
  margin-bottom: 10px;
}

.quiet-panel p {
  margin: 0;
  color: #455c60;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.support-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.support-points {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.support-points li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line);
}

.support-points li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--terracotta);
  border-left: 3px solid var(--terracotta);
  content: "";
  transform: rotate(-45deg);
}

.exchange-media {
  min-height: 510px;
  aspect-ratio: 1.15;
  border-radius: 18px 100px 18px 18px;
}

.exchange-media img {
  object-position: 46% center;
}

.property-routes {
  padding: clamp(76px, 9vw, 116px) 0;
  background: var(--sage);
}

.property-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
}

.property-intro {
  position: sticky;
  top: 132px;
}

.property-list {
  display: grid;
  gap: 16px;
}

.property-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid #b8c9bd;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.property-list article:last-child {
  background: rgba(255, 255, 255, 0.58);
}

.property-list h3 {
  margin-bottom: 10px;
}

.property-list p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}

.property-list article span {
  display: block;
  margin-bottom: 18px;
  color: var(--terracotta-dark);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.11em;
}

.trust-section {
  padding: 64px 0;
  color: var(--white);
  background: var(--petrol);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 38px;
}

.trust-section h2 {
  margin: 0;
  color: var(--white);
  font-size: 31px;
}

.trust-section .eyebrow {
  color: #ffc5ac;
}

.trust-inner > p {
  margin: 0;
  color: #d4e4e1;
}

.trust-fact {
  min-width: 220px;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.trust-fact strong,
.trust-fact span {
  display: block;
}

.trust-fact strong {
  color: #fff;
  font-size: 24px;
}

.trust-fact span {
  color: #c7dad7;
  font-size: 15px;
}

.form-section {
  padding: clamp(80px, 9vw, 124px) 0;
  background: var(--ivory);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.5fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(38px, 7vw, 92px);
}

.form-intro {
  position: sticky;
  top: 128px;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line-warm);
  border-radius: 24px 72px 24px 24px;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(64, 42, 31, 0.09);
}

.error-summary {
  padding: 16px 18px;
  border: 2px solid #a43c28;
  border-radius: 9px;
  color: #6e2618;
  background: #fff3ef;
}

.error-summary strong {
  display: block;
  margin-bottom: 6px;
}

.error-summary ul {
  margin: 0;
  padding-left: 22px;
}

.error-summary a {
  font-weight: 720;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.concern-fieldset legend {
  margin-bottom: 12px;
  color: var(--petrol-deep);
  font-weight: 770;
}

.concern-options {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 10px;
}

.concern-options label {
  position: relative;
  cursor: pointer;
}

.concern-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.concern-options span {
  display: flex;
  min-height: 74px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 13px 14px;
  border: 2px solid #bdccca;
  border-radius: 9px;
  color: #294f55;
  background: #fff;
  font-size: 15px;
  font-weight: 730;
  line-height: 1.3;
}

.concern-options small {
  margin-bottom: 3px;
  color: #6a7e80;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concern-options input:checked + span {
  color: #fff;
  border-color: var(--terracotta);
  background: var(--terracotta);
  box-shadow: 0 8px 16px rgba(166, 66, 44, 0.17);
}

.concern-options input:checked + span small {
  color: #ffe4d8;
}

.concern-options input:focus-visible + span {
  outline: 3px solid var(--petrol);
  outline-offset: 3px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--petrol-deep);
  font-weight: 730;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid #a9bcba;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 164px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover {
  border-color: #678489;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a43c28;
  box-shadow: 0 0 0 2px rgba(164, 60, 40, 0.14);
}

.optional-details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.optional-details summary {
  padding: 17px 34px 17px 0;
  color: var(--petrol-deep);
  font-weight: 770;
  cursor: pointer;
}

.optional-details summary::marker {
  color: var(--terracotta);
}

.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 2px 0 24px;
}

.field-wide {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: #40595d;
  font-size: 16px;
  cursor: pointer;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--terracotta);
}

.consent input[aria-invalid="true"] {
  outline: 3px solid rgba(164, 60, 40, 0.34);
  outline-offset: 2px;
}

.consent a {
  color: var(--petrol);
  font-weight: 730;
  text-underline-offset: 3px;
}

.submit-button {
  justify-self: start;
  min-width: min(100%, 310px);
  border: 0;
  cursor: pointer;
}

.form-status,
.confidentiality {
  margin: 0;
  font-size: 16px;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  padding: 14px 16px;
  border-left: 4px solid #a43c28;
  color: #6e2618;
  background: #fff3ef;
}

.confidentiality {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #415d61;
  font-weight: 660;
}

.personal-contact {
  padding: 58px 0 64px;
  color: var(--white);
  background: var(--petrol-deep);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  gap: 44px;
}

.personal-contact h2 {
  max-width: 680px;
  margin-bottom: 12px;
  color: var(--white);
}

.personal-contact .eyebrow {
  color: #ffc1a6;
}

.contact-name {
  margin: 0;
  color: #d2e2df;
  font-weight: 730;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: grid;
  min-width: 270px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 18px;
  font-weight: 730;
  text-decoration: none;
}

.contact-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-links span {
  color: #bcd2ce;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  padding: 26px 0;
  color: #d7e3e1;
  background: #08262b;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-inner a {
  color: #fff;
  text-underline-offset: 4px;
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 20px;
  }

  .site-nav {
    gap: 17px;
  }

  .logo-link {
    width: 108px;
  }

  .hero-grid {
    gap: 28px 36px;
  }

  .hero-media {
    height: 500px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .success-inner {
    grid-template-columns: auto 0.7fr 1fr;
  }

  .conversation-media {
    min-height: 480px;
  }

  .exchange-media {
    height: 480px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .property-list article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .property-list .button {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 92px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "domain menu logo"
      "nav nav nav";
    gap: 12px;
  }

  .domain-mark {
    min-width: 0;
    white-space: normal;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 18px;
  }

  .js .site-nav[data-open="false"] {
    display: none;
  }

  .site-nav a {
    padding: 11px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::before {
    display: none;
  }

  .logo-link {
    width: 88px;
  }

  .logo-link img {
    height: 54px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "actions";
    gap: 29px;
  }

  .hero-media {
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 18px 74px 18px 74px;
  }

  .hero-media img {
    object-position: 45% center;
  }

  .success-basis {
    margin-top: 0;
    padding-top: 24px;
  }

  .success-inner {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .success-inner > p:last-child {
    grid-column: 1 / -1;
  }

  .conversation-grid,
  .activity-layout,
  .reliability-grid,
  .support-grid,
  .property-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .conversation-grid,
  .reliability-grid,
  .support-grid {
    gap: 42px;
  }

  .conversation-media,
  .exchange-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .activity-heading,
  .property-intro,
  .form-intro {
    position: static;
  }

  .activity-layout,
  .property-layout,
  .form-layout {
    gap: 32px;
  }

  .reliability-grid .organisation-media {
    order: 2;
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-inner > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .operator-bar {
    padding-inline: 12px;
    font-size: 13px;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-toggle {
    width: 46px;
    justify-content: center;
    padding: 9px;
  }

  .logo-link {
    width: 74px;
  }

  .logo-link img {
    height: 48px;
  }

  .hero {
    padding: 42px 0 58px;
  }

  .hero::before {
    top: -100px;
    right: -120px;
    width: 300px;
    height: 300px;
    border-width: 48px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  h2 {
    font-size: clamp(29px, 8.5vw, 36px);
  }

  h3 {
    font-size: 21px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .button-primary {
    width: 100%;
  }

  .secondary-routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .secondary-routes a {
    min-height: 62px;
    padding: 10px 12px;
    border: 1px solid #b9c9c7;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.78);
  }

  .success-inner {
    padding: 24px;
  }

  .pulse-mark {
    width: 46px;
    height: 46px;
  }

  .success-inner h2 {
    font-size: 26px;
  }

  .section {
    padding: 72px 0;
  }

  .energy-rail {
    padding-left: 20px;
  }

  .activity-line li {
    grid-template-columns: 46px 1fr;
    gap: 17px;
  }

  .activity-line::before {
    left: 22px;
  }

  .activity-line > li > span {
    width: 46px;
    height: 46px;
  }

  .quiet-panel {
    padding: 23px 20px;
  }

  .property-list article {
    padding: 25px 21px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trust-inner > div:first-child {
    grid-column: auto;
  }

  .trust-fact {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-left: 0;
  }

  .contact-form {
    gap: 20px;
    padding: 24px 18px;
    border-radius: 18px 42px 18px 18px;
  }

  .concern-options {
    grid-template-columns: 1fr;
  }

  .concern-options span {
    min-height: 58px;
  }

  .optional-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .submit-button {
    width: 100%;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-links a {
    min-width: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .domain-mark {
    font-size: 19px;
  }

  .logo-link {
    width: 66px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .hero-media img {
    object-position: 42% center;
  }

  .secondary-routes {
    grid-template-columns: 1fr;
  }

  .success-inner {
    grid-template-columns: 1fr;
  }

  .pulse-mark {
    display: none;
  }

  .success-inner > p:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .menu-toggle,
  .hero-actions,
  .submit-button,
  .site-footer nav {
    display: none !important;
  }

  .site-header,
  .activity-heading,
  .property-intro,
  .form-intro {
    position: static;
  }

  .image-frame {
    break-inside: avoid;
    box-shadow: none;
  }
}
