@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --forest: #123d2b;
  --pine: #1d5538;
  --deep-forest: #0b2c20;
  --ivory: #f7f2e8;
  --warm-white: #fffdf8;
  --limestone: #ded5c6;
  --ink: #1c2420;
  --muted: #647168;
  --sage: #78917b;
  --gold: #c5a45d;
  --red: #a43b35;
  --shadow: 0 24px 70px rgba(18, 61, 43, 0.12);
  --radius: 22px;
  --container: 1240px;
  --font-cormorant: "Cormorant Garamond";
  --font-manrope: "Manrope";
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-manrope), "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select {
  font-family: var(--font-manrope), "Segoe UI", sans-serif;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: var(--deep-forest);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--warm-white);
  color: var(--forest);
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

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

.section {
  padding-block: 108px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pine);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #c4d5c6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-cormorant), Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
}

h3 {
  line-height: 1.15;
}

em {
  color: var(--gold);
  font-weight: 500;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 12px 28px rgba(18, 61, 43, 0.18);
}

.button--primary:hover {
  background: var(--deep-forest);
  box-shadow: 0 16px 34px rgba(18, 61, 43, 0.24);
}

.button--full {
  width: 100%;
}

.button--light {
  background: var(--ivory);
  color: var(--forest);
}

.button--light:hover {
  background: white;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.header-inner {
  display: grid;
  width: min(calc(100% - 56px), 1360px);
  min-height: 82px;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}

.brand-logo-shell {
  display: grid;
  width: 92px;
  height: 54px;
  overflow: hidden;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  padding: 2px 8px;
}

.brand-logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 0.78rem;
  font-weight: 700;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.button--header {
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
}

.button--header:hover {
  background: white;
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--deep-forest);
  color: white;
}

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

.hero-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03);
}

.hero-media img:nth-child(1) {
  object-position: center 58%;
}

.hero-media img:nth-child(2) {
  object-position: center 40%;
}

.hero-media img:nth-child(3) {
  object-position: center 60%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 30, 21, 0.97) 0%, rgba(7, 30, 21, 0.82) 41%, rgba(7, 30, 21, 0.4) 71%, rgba(7, 30, 21, 0.56) 100%),
    linear-gradient(0deg, rgba(7, 30, 21, 0.6), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 80px), var(--container));
  min-height: 850px;
  align-items: center;
  margin-inline: auto;
  padding-block: 145px 80px;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.72fr);
  gap: 80px;
}

.hero-copy {
  max-width: 760px;
  padding-bottom: 30px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker span {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 810px;
  margin-bottom: 26px;
  font-size: clamp(4.1rem, 7vw, 7.1rem);
  line-height: 0.83;
}

.hero h1 em {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72em;
}

.hero-intro {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.hero-trust {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 17px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.hero-trust strong {
  color: white;
  letter-spacing: 0.04em;
}

.hero-form-wrap {
  scroll-margin-top: 30px;
}

.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 32px;
  backdrop-filter: blur(18px);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading h2 {
  margin-bottom: 10px;
  font-size: 2.25rem;
  line-height: 1.03;
}

.form-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  color: #303c35;
  font-size: 0.72rem;
  font-weight: 800;
}

.optional {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 500;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 49px;
  appearance: none;
  border: 1px solid #d8d3c9;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 0 13px;
  font-size: 0.78rem;
  font-weight: 500;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%), linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position: calc(100% - 16px) 21px, calc(100% - 11px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 32px;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(29, 85, 56, 0.12);
}

.phone-field {
  display: flex;
  height: 49px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d8d3c9;
  border-radius: 12px;
  background: white;
}

.phone-field > span:first-child {
  padding-left: 13px;
  color: var(--muted);
  font-weight: 600;
}

.phone-field input {
  height: 47px;
  border: 0;
  padding-left: 8px;
  box-shadow: none !important;
}

.honeypot {
  display: none !important;
}

.lead-form .button {
  margin-top: 18px;
}

.consent {
  margin: 10px 8px 0;
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1.45;
  text-align: center;
}

.form-message {
  margin: 12px 0 0;
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 0.69rem;
  font-weight: 650;
}

.form-message--error {
  background: #fbecea;
  color: var(--red);
}

.form-message--success {
  background: #e8f3ea;
  color: var(--forest);
}

.proof-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--limestone);
  background: var(--ivory);
}

.proof-strip-inner {
  display: grid;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip-inner > div {
  display: flex;
  min-height: 106px;
  align-items: center;
  gap: 14px;
  padding: 24px 34px;
}

.proof-strip-inner > div + div {
  border-left: 1px solid var(--limestone);
}

.proof-check {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 0.75rem;
}

.proof-strip p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.proof-strip strong {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.2rem;
}

.proof-strip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.overview {
  background: var(--warm-white);
}

.overview-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10%;
}

.section-heading h2 {
  max-width: 760px;
}

.overview-copy {
  border-left: 1px solid var(--limestone);
  padding-left: 42px;
  color: var(--muted);
}

.overview-copy p:last-child {
  margin-bottom: 0;
}

.overview-copy .large-copy {
  color: var(--ink);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.35;
}

.stat-grid {
  display: grid;
  margin-top: 72px;
  grid-template-columns: 1fr 1fr 1.2fr 0.9fr;
  gap: 14px;
}

.stat {
  position: relative;
  display: flex;
  min-height: 270px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--limestone);
  border-radius: var(--radius);
  background: var(--ivory);
  padding: 28px;
}

.stat > span:not(.image-label) {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat strong {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.stat small {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.72rem;
}

.stat--dark {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.stat--dark > span:not(.image-label),
.stat--dark small {
  color: rgba(255, 255, 255, 0.65);
}

.stat--gold {
  border-color: #d4ba81;
  background: #dac38f;
  color: var(--deep-forest);
}

.stat--gold > span:not(.image-label),
.stat--gold small {
  color: rgba(11, 44, 32, 0.7);
}

.stat--gold strong {
  font-size: clamp(2.55rem, 4vw, 4rem);
}

.stat--image {
  border: 0;
  padding: 0;
}

.stat--image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 28, 20, 0.62), transparent 60%);
  content: "";
}

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

.image-label {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: white;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reasons {
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 12%;
}

.split-heading > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.8;
}

.reason-grid {
  display: grid;
  margin-top: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  grid-template-columns: repeat(4, 1fr);
}

.reason-grid article {
  min-height: 320px;
  padding: 34px 30px 25px;
  transition: background 180ms ease, transform 180ms ease;
}

.reason-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.reason-grid article:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-3px);
}

.reason-grid span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
}

.reason-grid h3 {
  margin: 90px 0 16px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.65rem;
}

.reason-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.7;
}

.location {
  background: var(--ivory);
}

.location-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10%;
}

.location-copy h2 {
  margin-bottom: 28px;
}

.location-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
}

.location-note {
  margin-top: 45px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.location-note strong {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.18rem;
}

.location-note p {
  max-width: 530px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.corridor-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--deep-forest);
  box-shadow: var(--shadow);
  color: white;
  padding: 40px 44px 32px;
}

.corridor-card::before {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.corridor-title {
  margin-bottom: 35px;
  color: #c3d0c5;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.corridor-card ol {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.corridor-card ol::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 7px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.corridor-card li {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-left: 36px;
}

.corridor-card li::before {
  position: absolute;
  left: 2px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--sage);
  border-radius: 50%;
  background: var(--deep-forest);
  content: "";
}

.corridor-card li.active {
  margin-block: 6px;
  border-radius: 12px;
  background: rgba(197, 164, 93, 0.14);
  padding-right: 15px;
}

.corridor-card li.active::before {
  left: 2px;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(197, 164, 93, 0.13);
}

.corridor-card li span {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.corridor-card li small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
}

.corridor-disclaimer {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.6rem;
  line-height: 1.5;
}

.approvals {
  background: var(--warm-white);
}

.split-heading--ink > p {
  color: var(--muted);
}

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

.approval-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  border: 1px solid var(--limestone);
  border-radius: var(--radius);
  background: var(--ivory);
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.approval-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(18, 61, 43, 0.09);
}

.approval-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.approval-topline > span:first-child {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}

.status-pill {
  border: 1px solid #bad0bd;
  border-radius: 999px;
  background: #e9f1e8;
  color: var(--forest);
  padding: 6px 10px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.approval-card h3 {
  margin: 75px 0 18px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 2rem;
}

.approval-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.approval-card > strong {
  margin-top: auto;
  font-size: 0.75rem;
}

.approval-card > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  border-top: 1px solid var(--limestone);
  padding-top: 14px;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
}

.plain-language {
  display: grid;
  margin-top: 30px;
  border-radius: var(--radius);
  background: var(--forest);
  color: white;
  padding: 44px;
  grid-template-columns: 0.38fr 1fr;
  gap: 8%;
}

.plain-language > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.plain-language p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.plain-language strong {
  display: block;
  margin-bottom: 7px;
  color: white;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.2rem;
}

.gallery {
  background: var(--ivory);
}

.section-heading--row {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.55fr;
  gap: 12%;
}

.section-heading--row > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: 1.3fr 0.9fr;
  grid-template-rows: 390px 390px;
  gap: 16px;
}

.gallery-grid figure,
.gallery-plan {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #d8d6cf;
}

.gallery-video {
  grid-row: 1 / 3;
}

.gallery-video video,
.gallery-video > img,
.gallery-still img,
.gallery-plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-plan img {
  object-position: center;
  transition: transform 500ms ease;
}

.gallery-plan:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption,
.gallery-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  background: rgba(7, 30, 21, 0.82);
  color: white;
  padding: 13px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.gallery-grid figcaption span {
  color: var(--gold);
}

.gallery-overlay {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.gallery-overlay strong {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.2rem;
}

.gallery-overlay small {
  color: rgba(255, 255, 255, 0.65);
}

.due-diligence {
  background: var(--deep-forest);
  color: white;
}

.due-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr;
  gap: 10%;
}

.due-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.due-heading h2 {
  margin-bottom: 26px;
}

.due-heading > p:last-child {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.6);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  min-height: 125px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 65px 1fr;
  gap: 25px;
}

.checklist li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.checklist span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}

.checklist p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.7;
}

.checklist strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.3rem;
}

.faq {
  background: var(--warm-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.1fr;
  gap: 10%;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 24px;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.faq-heading .text-link {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--limestone);
}

.faq-list details {
  border-bottom: 1px solid var(--limestone);
}

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--ink);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.35rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid var(--limestone);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--font-manrope), sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--forest);
  color: white;
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 700px;
  margin: -4px 60px 28px 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.final-cta {
  padding-block: 100px;
  background: var(--forest);
  color: white;
}

.final-cta-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 10%;
}

.final-copy h2 {
  font-size: clamp(3.4rem, 6vw, 6.6rem);
}

.final-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.67);
}

.contact-lines {
  display: flex;
  margin-top: 45px;
  gap: 40px;
}

.contact-lines a {
  display: flex;
  flex-direction: column;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.2rem;
}

.contact-lines span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-manrope), sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-form--compact {
  padding: 34px;
}

.site-footer {
  background: #071e15;
  color: white;
  padding: 78px 0 34px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr;
  gap: 8%;
}

.brand--footer {
  margin-bottom: 22px;
}

.footer-brand > p {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.77rem;
}

.footer-main h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-main a,
.footer-main p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.footer-main a:hover {
  color: white;
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 25px;
}

.footer-legal p {
  max-width: 910px;
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.58rem;
  line-height: 1.65;
}

.footer-legal p:last-child {
  flex: 0 0 auto;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-inner {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.6vw, 5.8rem);
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reason-grid article:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .reason-grid article:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 82px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 30, 21, 0.98) 0%, rgba(7, 30, 21, 0.77) 65%, rgba(7, 30, 21, 0.6) 100%);
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media img:nth-child(3) {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding: 155px 0 76px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-form-wrap {
    max-width: 620px;
  }

  .overview-grid,
  .location-grid,
  .due-grid,
  .faq-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .overview-copy {
    border-top: 1px solid var(--limestone);
    border-left: 0;
    padding-top: 30px;
    padding-left: 0;
  }

  .split-heading,
  .section-heading--row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-heading > p,
  .section-heading--row > p {
    max-width: 620px;
  }

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

  .approval-card {
    min-height: 350px;
  }

  .approval-card h3 {
    margin-top: 55px;
  }

  .plain-language {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 520px 380px 420px;
  }

  .gallery-video {
    grid-row: auto;
  }

  .due-heading,
  .faq-heading {
    position: static;
  }

  .final-copy h2 {
    font-size: clamp(3.3rem, 10vw, 5.6rem);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .container,
  .proof-strip-inner {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding-block: 72px;
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    width: calc(100% - 36px);
    min-height: 72px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .brand small {
    font-size: 0.54rem;
  }

  .brand-logo-shell {
    width: 78px;
    height: 46px;
  }

  .button--header {
    display: none;
  }

  .header-inner {
    display: flex;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding: 125px 0 68px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media img:nth-child(2) {
    display: none;
  }

  .hero-intro {
    font-size: 0.92rem;
  }

  .hero-kicker {
    align-items: flex-start;
    font-size: 0.6rem;
    line-height: 1.5;
  }

  .hero-kicker span {
    margin-top: 7px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-trust {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .lead-form {
    border-radius: 20px;
    padding: 24px 20px;
  }

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

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

  .proof-strip-inner > div {
    min-height: 90px;
    padding: 20px 6px;
  }

  .proof-strip-inner > div + div {
    border-top: 1px solid var(--limestone);
    border-left: 0;
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .stat-grid {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 230px;
  }

  .stat--image {
    min-height: 310px;
  }

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

  .reason-grid article {
    min-height: 250px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0 !important;
  }

  .reason-grid article:first-child {
    border-top: 0;
  }

  .reason-grid h3 {
    margin-top: 65px;
  }

  .corridor-card {
    padding: 32px 24px 26px;
  }

  .corridor-card li {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }

  .corridor-card li.active {
    padding: 10px 12px 10px 36px;
  }

  .approval-grid {
    margin-top: 48px;
  }

  .approval-card {
    min-height: 390px;
    padding: 25px;
  }

  .plain-language {
    padding: 30px 24px;
  }

  .plain-language > div {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    margin-top: 45px;
    grid-template-rows: 450px 310px 350px;
  }

  .checklist li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 1.12rem;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .final-cta {
    padding-block: 78px;
  }

  .contact-lines {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    min-height: calc(66px + env(safe-area-inset-bottom));
    border-top: 1px solid #d5d0c6;
    background: rgba(255, 253, 248, 0.96);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    grid-template-columns: 0.68fr 1.32fr;
    gap: 8px;
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--forest);
    border-radius: 999px;
    color: var(--forest);
    font-size: 0.76rem;
    font-weight: 800;
  }

  .mobile-action-bar a:last-child {
    background: var(--forest);
    color: white;
  }
}

@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;
  }
}

/* WordPress conversion enhancements */
.site-header {
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(7, 30, 21, 0.96);
  box-shadow: 0 10px 35px rgba(5, 24, 16, 0.2);
  backdrop-filter: blur(14px);
}

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

.hero-qualification {
  max-width: 520px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
}

.lead-form textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 1px solid #d8d3c9;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 12px 13px;
  font-size: 0.78rem;
  font-weight: 500;
  outline: none;
}

.lead-form textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(29, 85, 56, 0.12);
}

.lead-form .consent-check {
  display: grid;
  align-items: start;
  margin-top: 16px;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.5;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  appearance: auto;
  accent-color: var(--forest);
}

.consent-check a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.form-success-actions {
  margin-top: 14px;
}

.form-success-actions[hidden] {
  display: none;
}

.button--whatsapp {
  background: #167c49;
  color: white;
  box-shadow: 0 12px 28px rgba(22, 124, 73, 0.2);
}

.form-reset {
  display: block;
  margin-top: 12px;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.project-pack {
  background: var(--deep-forest);
  color: white;
  padding-block: 58px;
}

.project-pack__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 1.3fr auto;
  gap: 54px;
}

.project-pack h2 {
  max-width: 480px;
  font-size: clamp(2.2rem, 3.2vw, 3.65rem);
}

.project-pack ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
  list-style: none;
}

.project-pack li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 650;
}

.project-pack li span {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 800;
}

.plan-section {
  background: #eee7dc;
}

.allocation-grid {
  display: grid;
  margin-top: 62px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.allocation-grid article {
  min-height: 220px;
  border: 1px solid var(--limestone);
  border-radius: 20px;
  background: var(--warm-white);
  padding: 25px;
}

.allocation-grid p {
  min-height: 44px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.allocation-grid strong {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.allocation-grid > article > span {
  margin-left: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.allocation-grid small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.63rem;
}

.plan-preview {
  display: grid;
  min-height: 580px;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 26px;
  background: var(--forest);
  color: white;
  grid-template-columns: 1.15fr 0.85fr;
}

.plan-preview > img {
  width: 100%;
  height: 100%;
  max-height: 660px;
  object-fit: cover;
  object-position: center 18%;
}

.plan-preview > div {
  align-self: center;
  padding: 60px;
}

.plan-preview h3 {
  max-width: 460px;
  margin: 0 0 20px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.plan-preview p:not(.eyebrow) {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.plan-preview .button {
  margin-top: 16px;
}

.media-showcase {
  display: grid;
  min-height: 720px;
  margin-top: 60px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.media-video,
.media-layout {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #cfc9be;
}

.media-video video,
.media-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-video figcaption,
.media-layout > span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: rgba(7, 30, 21, 0.88);
  color: white;
  padding: 15px 17px;
  backdrop-filter: blur(12px);
}

.media-video figcaption strong,
.media-layout strong {
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 1.28rem;
}

.media-video figcaption span,
.media-layout small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.62rem;
}

.photo-grid {
  display: grid;
  margin-top: 16px;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.photo-grid button {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 0;
  border-radius: 16px;
  background: #d7d1c7;
  padding: 0;
  color: white;
  cursor: zoom-in;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.photo-grid button:hover img {
  transform: scale(1.035);
}

.photo-grid button > span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border-radius: 9px;
  background: rgba(7, 30, 21, 0.82);
  padding: 8px;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  backdrop-filter: blur(9px);
}

.social-updates {
  margin-top: 92px;
}

.social-updates__heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 10%;
}

.social-updates__heading h3 {
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.social-updates__heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.7;
}

.social-updates__grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.social-updates article {
  overflow: hidden;
  border: 1px solid var(--limestone);
  border-radius: 22px;
  background: var(--warm-white);
  padding: 18px;
}

.social-updates article > span {
  display: block;
  margin: 2px 2px 13px;
  color: var(--forest);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-updates iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  border-radius: 14px;
  background: #f0ece4;
}

.social-updates article > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin: 12px 2px 0;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 800;
}

.concept-band {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  margin-top: 70px;
  border-radius: 28px;
  background: var(--warm-white);
  grid-template-columns: 0.8fr 1.2fr;
}

.concept-band > div {
  align-self: center;
  padding: 55px;
}

.concept-band h3 {
  margin: 0 0 16px;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.concept-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.76rem;
}

.concept-band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-band > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: rgba(7, 30, 21, 0.92);
  color: white;
  padding: 9px 13px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #167c49;
  box-shadow: 0 16px 38px rgba(7, 30, 21, 0.26);
  color: white;
  padding: 12px 19px;
  font-size: 0.75rem;
  font-weight: 800;
}

.floating-whatsapp span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.lightbox {
  width: min(920px, calc(100% - 30px));
  max-height: 90vh;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #071e15;
  color: white;
  padding: 12px;
}

.lightbox::backdrop {
  background: rgba(3, 15, 10, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 30, 21, 0.9);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox p {
  margin: 9px 4px 1px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
}

.mgp-standard-page {
  background: var(--ivory);
}

.standard-header,
.standard-footer {
  background: var(--deep-forest);
  color: white;
}

.standard-header .container,
.standard-footer .container {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.standard-content {
  min-height: 65vh;
  padding-block: 110px;
}

.standard-content h1 {
  margin-bottom: 45px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.standard-content__body {
  max-width: 800px;
}

.standard-content__body h2 {
  margin: 45px 0 15px;
  font-size: 2.2rem;
}

.standard-content__body p {
  color: var(--muted);
}

.standard-footer p {
  margin: 0;
  font-size: 0.72rem;
}

.standard-footer a {
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .project-pack__inner {
    grid-template-columns: 1fr 1fr;
  }

  .project-pack__inner > .button {
    grid-column: 1 / 3;
    justify-self: start;
  }

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

@media (max-width: 900px) {
  .project-pack__inner,
  .plan-preview,
  .media-showcase,
  .concept-band,
  .social-updates__heading {
    grid-template-columns: 1fr;
  }

  .project-pack__inner > .button {
    grid-column: auto;
  }

  .allocation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-preview > img {
    max-height: 520px;
  }

  .media-showcase {
    min-height: auto;
  }

  .media-video,
  .media-layout {
    min-height: 620px;
  }

  .concept-band > img {
    max-height: 440px;
  }

  .social-updates__heading {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .admin-bar .site-header.is-scrolled {
    top: 46px;
  }

  .project-pack {
    padding-block: 54px;
  }

  .project-pack__inner {
    gap: 34px;
  }

  .project-pack ul {
    grid-template-columns: 1fr;
  }

  .allocation-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .allocation-grid article {
    min-height: 190px;
  }

  .plan-preview {
    min-height: auto;
  }

  .plan-preview > img {
    height: 420px;
  }

  .plan-preview > div,
  .concept-band > div {
    padding: 34px 24px;
  }

  .media-showcase {
    margin-top: 42px;
  }

  .media-video,
  .media-layout {
    min-height: 480px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid button {
    min-height: 240px;
  }

  .concept-band {
    min-height: auto;
    margin-top: 52px;
  }

  .social-updates {
    margin-top: 68px;
  }

  .social-updates__grid {
    grid-template-columns: 1fr;
  }

  .social-updates iframe {
    height: 660px;
  }

  .concept-band > img {
    min-height: 260px;
  }

  .floating-whatsapp {
    display: none;
  }

  .standard-header .button {
    display: none;
  }

  .standard-content {
    padding-block: 80px;
  }

	.lead-form label {
		font-size: 0.78rem;
	}

	.lead-form input,
	.lead-form select,
	.lead-form textarea {
		font-size: 1rem;
	}

	.lead-form .consent-check {
		font-size: 0.78rem;
	}

	.consent {
		font-size: 0.7rem;
	}
}

@media (min-width: 681px) and (max-height: 820px) {
	.floating-whatsapp {
		right: auto;
		left: 18px;
		width: 52px;
		height: 52px;
		justify-content: center;
		border-radius: 50%;
		padding: 0;
		font-size: 0;
	}

	.floating-whatsapp span {
		font-size: 1rem;
	}
}

@media (max-width: 390px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}
