:root {
  --ink: #0a0a09;
  --paper: #f3f2ef;
  --ivory: #fbfaf7;
  --smoke: #d8d8d3;
  --mist: #eff0ec;
  --olive: #424844;
  --muted: #666762;
  --line: rgba(18, 18, 16, 0.13);
  --silver: #c8c9c4;
  --pewter: #868a86;
  --champagne: #c7a76a;
  --champagne-soft: #d8c08a;
  --charcoal: #11110f;
  --white: #fffaf2;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  background: rgba(8, 8, 7, 0.74);
  border-bottom: 1px solid rgba(255, 250, 242, 0.1);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(22px);
}

.brand {
  align-items: center;
  display: flex;
  min-width: 244px;
}

.brand-logo {
  display: block;
  height: auto;
  width: 224px;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 14px;
}

.nav-links a,
.header-call,
.header-phone {
  color: rgba(255, 250, 242, 0.82);
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.header-call:hover,
.header-phone:hover {
  color: var(--white);
}

.nav-links a[aria-current="page"] {
  border-bottom: 1px solid var(--champagne-soft);
}

.header-phone {
  font-size: 13px;
  font-weight: 700;
  margin-left: auto;
  white-space: nowrap;
}

.header-call {
  border: 1px solid rgba(255, 250, 242, 0.34);
  min-width: 106px;
  padding: 10px 18px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.hero {
  color: var(--white);
  min-height: 96vh;
  overflow: hidden;
  position: relative;
}

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

.hero-media {
  background-image: url("assets/hero-cullinan-warm-residence.png");
  background-position: 58% center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 40%, rgba(0, 0, 0, 0.2) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.05) 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 26%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 96vh;
  padding: clamp(128px, 18vh, 172px) clamp(22px, 7vw, 92px) 124px;
  position: relative;
  width: min(760px, 100%);
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--champagne-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
.slogan,
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(56px, 8.8vw, 124px);
  max-width: 9ch;
}

.hero-descriptor {
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 500;
  letter-spacing: 0;
  margin: 12px 0 0;
  text-transform: uppercase;
}

.slogan {
  color: rgba(255, 250, 242, 0.92);
  font-family: Italiana, "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3.6vw, 52px);
  line-height: 1.06;
  margin-top: 18px;
  max-width: 740px;
}

.hero-copy {
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  margin: 30px 0 0;
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--champagne);
  color: #10100f;
}

.button.secondary {
  border-color: rgba(255, 250, 242, 0.38);
  color: var(--white);
}

.arrival-panel {
  align-items: center;
  background: rgba(12, 12, 11, 0.84);
  border: 1px solid rgba(255, 250, 242, 0.14);
  bottom: 28px;
  color: rgba(255, 250, 242, 0.76);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: clamp(22px, 7vw, 92px);
  max-width: min(720px, calc(100% - 44px));
  position: absolute;
  right: auto;
  z-index: 2;
}

.arrival-panel span,
.arrival-panel a {
  border-right: 1px solid rgba(255, 250, 242, 0.12);
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 16px 18px;
  text-transform: uppercase;
}

.arrival-panel span:last-child,
.arrival-panel a:last-child {
  border-right: 0;
}

.arrival-panel a:hover {
  color: var(--white);
}

.intro,
.services,
.fleet,
.booking-band,
.standards,
.concierge,
.trust-strip,
.service-notes {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 76px);
}

.intro {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.intro h2,
.section-heading h2,
.booking-copy h2,
.concierge-copy h2 {
  font-size: clamp(36px, 5vw, 68px);
  max-width: 820px;
}

.intro > p,
.booking-copy > p {
  color: #4d4841;
  font-size: 18px;
  margin: 34px 0 0;
}

.standards {
  background: linear-gradient(90deg, var(--paper), var(--mist));
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 0;
}

.standards article {
  border-left: 1px solid var(--line);
  min-height: 280px;
  padding: clamp(24px, 4vw, 42px);
}

.standards article:last-child {
  border-right: 1px solid var(--line);
}

.standards span,
.journey-grid span {
  color: var(--pewter);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 46px;
  text-transform: uppercase;
}

.standards h3,
.journey-grid h3 {
  font-size: clamp(28px, 3vw, 40px);
}

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

.standards span {
  color: var(--champagne);
}

.trust-strip {
  background: #0d0d0c;
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: clamp(34px, 5vw, 58px);
  padding-top: clamp(34px, 5vw, 58px);
}

.trust-strip div {
  border-left: 1px solid rgba(255, 250, 242, 0.16);
  padding: 0 clamp(18px, 3vw, 36px);
}

.trust-strip div:last-child {
  border-right: 1px solid rgba(255, 250, 242, 0.16);
}

.trust-strip span {
  color: var(--champagne-soft);
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip p {
  color: rgba(255, 250, 242, 0.72);
  margin: 12px 0 0;
}

.services {
  background: var(--charcoal);
  color: var(--white);
}

.home-paths {
  background: var(--charcoal);
  color: var(--white);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 76px);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 38px;
}

.section-heading > p:not(.section-kicker) {
  color: rgba(255, 250, 242, 0.62);
  margin: 0;
  max-width: 360px;
}

.fleet .section-heading > p:not(.section-kicker) {
  color: var(--muted);
}

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

.journey-grid article,
.journey-grid a {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.03));
  border: 1px solid rgba(255, 250, 242, 0.14);
  color: inherit;
  display: block;
  min-height: 320px;
  padding: 30px;
}

.journey-grid a:hover {
  border-color: rgba(216, 192, 138, 0.44);
  transform: translateY(-2px);
}

.journey-grid span {
  color: var(--champagne-soft);
}

.fleet-list h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.journey-grid p {
  color: rgba(255, 250, 242, 0.68);
  margin: 18px 0 0;
}

.fleet {
  background: var(--paper);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.46)),
    url("assets/hero-cullinan-warm-residence.png") center / cover;
  color: var(--white);
  min-height: 58vh;
  padding: clamp(128px, 18vh, 172px) clamp(20px, 6vw, 76px) clamp(62px, 8vw, 96px);
}

.page-hero h1,
.booking-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  margin: 0;
  max-width: 900px;
}

.page-hero p:not(.section-kicker) {
  color: rgba(255, 250, 242, 0.74);
  font-size: clamp(18px, 2vw, 22px);
  margin: 26px 0 0;
  max-width: 680px;
}

.standalone {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 76px);
}

.fleet-list {
  border-top: 1px solid var(--line);
}

.fleet-list article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 150px 1fr 1.1fr;
  padding: 30px 0;
}

.fleet-list p {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.fleet-list span {
  color: #5f574e;
}

.concierge {
  background: var(--olive);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
}

.concierge-copy h2 {
  color: var(--white);
}

.concierge-list {
  border-top: 1px solid rgba(255, 250, 242, 0.22);
}

.concierge-item {
  border-bottom: 1px solid rgba(255, 250, 242, 0.22);
}

.concierge-item button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 250, 242, 0.82);
  cursor: pointer;
  display: flex;
  font-size: clamp(18px, 2.2vw, 25px);
  font: inherit;
  justify-content: space-between;
  margin: 0;
  min-height: 72px;
  padding: 0;
  text-align: left;
  width: 100%;
}

.concierge-item button:hover,
.concierge-item button:focus-visible {
  color: var(--white);
}

.concierge-item button:focus-visible {
  outline: 2px solid rgba(216, 192, 138, 0.45);
  outline-offset: 4px;
}

.concierge-item button span {
  align-items: center;
  color: var(--champagne-soft);
  display: grid;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  height: 34px;
  margin-left: 18px;
  place-items: center;
  width: 34px;
}

.concierge-item button span::before {
  content: "+";
}

.concierge-item button[aria-expanded="true"] span::before {
  content: "−";
}

.concierge-item p {
  color: rgba(255, 250, 242, 0.66);
  display: none;
  font-size: 15px;
  line-height: 1.7;
  margin: -6px 56px 24px 0;
  max-width: 620px;
}

.concierge-item.is-open p {
  display: block;
}

.service-notes {
  background: var(--paper);
}

.service-detail {
  background: var(--paper);
  display: grid;
  gap: clamp(34px, 7vw, 86px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 76px);
}

.service-detail h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.service-detail-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  margin: 24px 0 0;
  max-width: 650px;
}

.service-feature-list {
  border-top: 1px solid var(--line);
}

.service-feature-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  padding: 24px 0;
}

.service-feature-list span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
}

.service-feature-list h3 {
  font-size: clamp(25px, 3vw, 34px);
}

.service-feature-list p {
  color: var(--muted);
  margin: 10px 0 0;
}

.service-cta {
  align-items: center;
  background: #0d0d0c;
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: clamp(48px, 7vw, 82px) clamp(20px, 6vw, 76px);
}

.service-cta h2 {
  font-size: clamp(36px, 5vw, 62px);
  max-width: 750px;
}

.service-cta p {
  color: rgba(255, 250, 242, 0.68);
  margin: 16px 0 0;
  max-width: 650px;
}

.service-notes .section-heading > p:not(.section-kicker) {
  color: var(--muted);
}

.note-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--line);
}

.note-grid article {
  background: var(--paper);
  min-height: 230px;
  padding: 28px;
}

.note-grid h3 {
  font-size: clamp(27px, 3vw, 36px);
}

.note-grid p {
  color: var(--muted);
  margin: 18px 0 0;
}

.booking-band {
  background: #e4ddd0;
  display: grid;
  gap: clamp(30px, 6vw, 76px);
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
}

.page-booking {
  padding-top: clamp(128px, 16vh, 168px);
}

.booking-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.booking-copy a {
  border-bottom: 1px solid currentColor;
}

.area-note {
  border-left: 2px solid var(--champagne);
  color: #5f574e;
  margin-top: 34px;
  padding-left: 18px;
}

.booking-form {
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 26px 70px rgba(36, 31, 24, 0.12);
  padding: clamp(20px, 4vw, 34px);
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row.compact {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}

label {
  color: #403b35;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 16px;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

input,
select,
textarea {
  appearance: none;
  background: #fffaf1;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--champagne);
  outline: 2px solid rgba(199, 167, 106, 0.22);
}

.consent-label {
  align-items: start;
  display: grid;
  font-size: 12px;
  font-weight: 500;
  gap: 10px;
  grid-template-columns: 18px 1fr;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  appearance: auto;
  accent-color: var(--champagne);
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.form-button {
  margin-top: 6px;
  width: 100%;
}

.form-status {
  color: #4d4841;
  font-size: 14px;
  margin: 14px 0 0;
  min-height: 22px;
}

.site-footer {
  align-items: center;
  background: #090909;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 34px clamp(20px, 6vw, 76px);
}

.footer-brand {
  color: var(--champagne-soft);
  font-size: 34px;
}

.footer-descriptor {
  color: rgba(255, 250, 242, 0.62);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-slogan {
  color: rgba(255, 250, 242, 0.84);
  font-family: Italiana, "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.site-footer p {
  margin: 5px 0 0;
}

.success-page {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.44)),
    url("assets/hero-cullinan-warm-residence.png") center / cover;
  color: var(--white);
  display: flex;
  min-height: 100vh;
  padding: clamp(24px, 7vw, 92px);
}

.success-panel {
  max-width: 680px;
}

.success-panel h1 {
  font-size: clamp(68px, 10vw, 128px);
}

.success-panel p:not(.section-kicker) {
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  margin: 26px 0 0;
}

.footer-links {
  color: rgba(255, 250, 242, 0.68);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.contact-panel,
.cta-band {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 76px);
}

.contact-panel {
  background: var(--paper);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-panel a,
.contact-panel div {
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 20px;
  min-height: 210px;
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-panel a[href^="mailto:"] strong {
  font-size: clamp(22px, 2.25vw, 34px);
  line-height: 1.08;
}

.cta-band {
  background: var(--olive);
  color: var(--white);
}

.cta-band h2 {
  font-size: clamp(42px, 5vw, 76px);
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nav-links {
    border-top: 1px solid rgba(255, 250, 242, 0.12);
    display: flex;
    gap: 8px;
    margin: 2px -18px -4px;
    order: 3;
    overflow-x: auto;
    padding: 10px 18px 2px;
    scrollbar-width: none;
    width: calc(100% + 36px);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    border: 1px solid rgba(255, 250, 242, 0.18);
    flex: 0 0 auto;
    font-size: 12px;
    padding: 8px 12px;
    text-transform: uppercase;
  }

  .nav-links a[aria-current="page"] {
    background: rgba(216, 192, 138, 0.16);
    border-color: rgba(216, 192, 138, 0.62);
  }

  .header-phone {
    display: none;
  }

  .intro,
  .booking-band,
  .concierge,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .standards,
  .journey-grid,
  .trust-strip,
  .note-grid,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-list article {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .nav-links {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-left: -14px;
    margin-right: -14px;
    overflow-x: visible;
    padding-left: 14px;
    padding-right: 14px;
    width: calc(100% + 28px);
  }

  .nav-links a {
    font-size: 9px;
    min-width: 0;
    padding: 8px 3px;
    text-align: center;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 154px;
  }

  .header-call {
    font-size: 11px;
    min-width: auto;
    padding: 8px 12px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media {
    background-position: 64% center;
    transform: scale(1.02);
  }

  .hero-content {
    min-height: 100svh;
    padding: 132px 18px 92px;
    width: min(420px, 94%);
  }

  .page-hero {
    padding-top: 150px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 56%, rgba(0, 0, 0, 0.18) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.08) 46%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 24%);
  }

  h1 {
    font-size: clamp(64px, 19vw, 88px);
  }

  .hero-descriptor {
    margin-top: 8px;
  }

  .slogan {
    font-size: clamp(32px, 10vw, 44px);
    margin-top: 13px;
  }

  .hero-copy {
    font-size: 16px;
    margin-top: 22px;
    max-width: 330px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
    max-width: 320px;
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .arrival-panel {
    bottom: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: 18px;
    max-width: calc(100% - 36px);
    width: calc(100% - 36px);
  }

  .arrival-panel span,
  .arrival-panel a {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 250, 242, 0.12);
    font-size: 9px;
    line-height: 1.25;
    padding: 10px 7px;
    text-align: center;
  }

  .arrival-panel span:last-child,
  .arrival-panel a:last-child {
    border-right: 0;
  }

  .standards,
  .journey-grid,
  .trust-strip,
  .note-grid,
  .contact-panel,
  .form-row,
  .form-row.compact {
    grid-template-columns: 1fr;
  }

  .journey-grid article,
  .journey-grid a,
  .standards article,
  .note-grid article {
    min-height: auto;
  }

  .service-cta .button {
    width: 100%;
  }

  .trust-strip div,
  .trust-strip div:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 250, 242, 0.16);
    padding: 22px 0;
  }

  .journey-grid span,
  .standards span {
    margin-bottom: 28px;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
