/* Popolo — fluid Canva match (design width 1366)
   Terracotta #CE806E · Pistachio #D0DBC8 · Eggshell #F5F0EA · Onyx #1D1D1B */

@font-face {
  font-family: "Voska";
  src: url("../assets/fonts/Voska.otf") format("opentype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stereonic XS";
  src: url("../assets/fonts/Stereonic-XS.otf") format("opentype");
  font-weight: 100 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sweet Sans Pro";
  src: url("../assets/fonts/SweetSansProMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --terracotta: #CE806E;
  --terracotta-deep: #B86B5A;
  --pistachio: #D0DBC8;
  --sage: #D0DBC8;
  --eggshell: #F5F0EA;
  --onyx: #1D1D1B;
  --footer: #343434;
  --white: #fff;
  --map-sage: #D0DBC8;
  --muted: #3a3a38;
  --font-serif: "Voska", Georgia, serif;
  --font-display: "Stereonic XS", system-ui, sans-serif;
  --font-sans: "Sweet Sans Pro", system-ui, sans-serif;

  /* Mobile: comfortable rem rhythm (not Canva px-scaled) */
  --u: 1px;
  --pad-x: 1.25rem;
  --content-max: 40rem;
  --section-y: 3.25rem;
  --gap-lg: 1.75rem;
  --gap-md: 1.25rem;
  --fs-body: 1rem;
  --fs-h1: 2.75rem;
  --fs-h2: 2rem;
  --fs-h3: 1.35rem;
  --fs-kicker: 0.8rem;
  --fs-btn: 0.78rem;
  --btn-pad-y: 0.9rem;
  --btn-pad-x: 1.75rem;
  --hero-logo: 3.25rem;
  --hero-tag: 0.78rem;
  --map-size: min(100%, 20rem);
}

/* Desktop / wide: fluid design-canvas unit relative to 1366.
   Cap ~1.28× so content grows to ~1550–1750 without exploding on 4K.
   Floor keeps mid-width tablets from collapsing type. */
@media (min-width: 768px) {
  :root {
    --u: clamp(0.72px, calc(100vw / 1366), 1.28px);
    --pad-x: calc(var(--u) * 72);
    --content-max: calc(var(--u) * 1200);
    --section-y: calc(var(--u) * 88);
    --gap-lg: calc(var(--u) * 48);
    --gap-md: calc(var(--u) * 28);
    --fs-body: calc(var(--u) * 17);
    --fs-h1: calc(var(--u) * 52);
    --fs-h2: calc(var(--u) * 44);
    --fs-h3: calc(var(--u) * 28);
    --fs-kicker: calc(var(--u) * 13);
    --fs-btn: calc(var(--u) * 13);
    --btn-pad-y: calc(var(--u) * 14);
    --btn-pad-x: calc(var(--u) * 34);
    --hero-logo: calc(var(--u) * 88);
    --hero-tag: calc(var(--u) * 15);
    --map-size: calc(var(--u) * 340);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  color: var(--onyx);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 1rem; top: 1rem; z-index: 99;
  background: #fff; padding: .5rem 1rem;
}

.container {
  width: min(100% - 2 * var(--pad-x), var(--content-max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: var(--fs-btn);
  text-transform: uppercase;
  transition: filter .15s, transform .15s;
  min-height: 2.75rem;
}
.btn:hover { filter: brightness(0.96); transform: translateY(-1px); }
.btn--pill {
  border-radius: 999px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
}
.btn--terracotta { background: var(--terracotta); color: var(--white); }
.btn--sage { background: var(--pistachio); color: var(--onyx); }
.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

/* ——— Headings / rules ——— */
.heading {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}
.heading--light { color: var(--white); }
.heading--terracotta { color: var(--terracotta); }
.heading--dark { color: var(--onyx); }
.heading--center { text-align: center; }
.heading--stack span { display: block; }
.heading--sm {
  font-size: var(--fs-h3);
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

/* Stereonic XS thin master: keep weight on light fills */
.heading--sm,
.euro-kicker,
.euro-right .heading--sm {
  -webkit-text-stroke: 0.35px currentColor;
  paint-order: stroke fill;
}

.rule {
  border: 0;
  height: 1px;
  margin: calc(var(--u) * 14) 0 calc(var(--u) * 20);
  max-width: calc(var(--u) * 176);
}
.rule--light { background: rgba(255,255,255,.85); }
.rule--terracotta { background: var(--terracotta); }

.center-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: calc(var(--u) * 44);
}

/* ——— Sections ——— */
.section { position: relative; overflow: hidden; }
.section--terracotta { background: var(--terracotta); color: var(--white); }
.section--eggshell { background: var(--eggshell); color: var(--onyx); }
.section--sage { background: var(--pistachio); color: var(--onyx); }

/* Deco */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco--arc {
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 50%;
}
.deco--arc-tr {
  width: min(70vw, calc(var(--u) * 520));
  height: min(70vw, calc(var(--u) * 520));
  top: -12%;
  right: -18%;
}
.deco--arc-bl {
  width: min(55vw, calc(var(--u) * 400));
  height: min(55vw, calc(var(--u) * 400));
  bottom: 6%;
  left: -20%;
}
.deco--semi {
  width: calc(var(--u) * 200);
  height: calc(var(--u) * 200);
  background: var(--terracotta);
  border-radius: 50%;
}
.deco--semi-left { left: -9%; top: 18%; }
.deco--semi-right { right: -9%; top: 52%; }
.deco--semi-sm {
  width: calc(var(--u) * 140);
  height: calc(var(--u) * 140);
  top: 6%;
  right: -4%;
}
.deco--arc-euro {
  width: min(60vw, calc(var(--u) * 480));
  height: min(60vw, calc(var(--u) * 480));
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  left: -18%;
  top: 48%;
  opacity: 0.55;
}

/* ——— HERO (full-bleed; overlays scale) ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--white);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,20,20,.2) 0%, rgba(20,20,20,.05) 40%, transparent 60%);
}
.hero__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--gap-md);
  padding: calc(var(--u) * 40) var(--pad-x) 0;
}
.hero__brand { max-width: calc(var(--u) * 420); }
.hero__logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--hero-logo);
  line-height: 0.95;
  margin: 0 0 calc(var(--u) * 14);
}
.hero__tagline {
  margin: 0;
  font-size: var(--hero-tag);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.45;
  font-weight: 400;
}
.hero__tagline span { display: block; }
.hero__register { flex-shrink: 0; margin-top: calc(var(--u) * 6); }

/* ——— NEIGHBOURHOOD ——— */
.neighbourhood {
  padding: var(--section-y) 0 calc(var(--section-y) * 0.85);
}
.gw-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--u) * 40) calc(var(--u) * 48);
  align-items: start;
  margin-bottom: calc(var(--u) * 40);
}
.gw-copy .heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h2);
  letter-spacing: 0.14em;
}
.gw-copy p {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.7;
  max-width: calc(var(--u) * 520);
}
.gw-map-wrap {
  justify-self: end;
  width: min(100%, var(--map-size));
  max-width: 100%;
}
.map-frame {
  background: var(--map-sage);
  border: 3px solid var(--white);
  aspect-ratio: 1;
}
.map-svg { width: 100%; height: auto; display: block; }
.map-caption {
  display: inline-block;
  margin-top: calc(var(--u) * 14);
  font-size: calc(var(--u) * 12);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pistachio);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.map-caption:hover { color: var(--white); }

.gw-steps {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: calc(var(--u) * 36) calc(var(--u) * 40);
  align-items: start;
  margin-bottom: calc(var(--u) * 36);
}
.gw-steps-copy .heading {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.14em;
  font-size: var(--fs-h3);
}
.gw-steps-copy p {
  margin: 0;
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: calc(var(--u) * 500);
}
.gw-photo { margin: 0; overflow: hidden; }
.gw-photo img { width: 100%; height: 100%; object-fit: cover; }
.gw-photo--tall {
  aspect-ratio: 3/4;
  max-height: calc(var(--u) * 460);
}
.gw-photo--wide { aspect-ratio: 16/9; }
.gw-photo--square { aspect-ratio: 1; }
.gw-collage {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: calc(var(--u) * 24);
  align-items: end;
}

/* ——— EUROPEAN ——— */
.european {
  padding: var(--section-y) 0 calc(var(--section-y) * 0.75);
}
.european > .container > .heading {
  font-size: var(--fs-h1);
  margin-bottom: calc(var(--u) * 28);
}
.euro-kitchen { margin: 0 0 calc(var(--u) * 36); }
.euro-kitchen img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}
.euro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: calc(var(--u) * 40) calc(var(--u) * 48);
  align-items: start;
}
.euro-left, .euro-right { min-width: 0; }
.euro-kicker {
  margin: 0 0 calc(var(--u) * 14);
  font-family: var(--font-display);
  font-size: var(--fs-kicker);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.45;
}
.euro-kicker span { display: block; }
.euro-bedroom { margin: 0; }
.euro-bedroom img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.euro-body {
  margin: 0 0 calc(var(--u) * 22);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--muted);
  max-width: calc(var(--u) * 440);
}
.euro-living { margin: 0; }
.euro-living img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.euro-right .heading--sm {
  margin: 0 0 calc(var(--u) * 4);
}

/* ——— FEATURES ——— */
.features {
  padding: calc(var(--section-y) * 0.55) 0 var(--section-y);
}
.features .heading {
  font-size: var(--fs-h1);
  margin-bottom: var(--gap-md);
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
}
.feat { margin-bottom: calc(var(--u) * 28); }
.feat:last-child { margin-bottom: 0; }
.feat h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: calc(var(--u) * 17);
  color: var(--terracotta);
}
.feat p {
  margin: 0;
  font-size: calc(var(--u) * 15.5);
  line-height: 1.65;
  color: var(--muted);
  max-width: calc(var(--u) * 420);
}

/* ——— HOMES ——— */
.homes { padding: var(--section-y) 0; }
.homes .heading {
  font-size: var(--fs-h1);
  margin-bottom: var(--gap-md);
  text-align: left;
  width: fit-content;
  /* Match the first floorplan column: a 60% stack centered in a half-width grid cell. */
  margin-left: calc((100% - (var(--u) * 36)) * 0.1);
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--u) * 40) calc(var(--u) * 36);
  align-items: start;
}
.plan-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan-thumb {
  display: block;
  background: var(--white);
  overflow: visible;
  margin-bottom: calc(var(--u) * 12);
  text-decoration: none;
  width: 100%;
  padding: calc(var(--u) * 6);
  box-sizing: border-box;
}
.plan-stack {
  width: 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.plan-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--white);
}
.plan-name {
  margin: 0 0 0.15rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: calc(var(--u) * 24);
  color: var(--terracotta);
  text-align: left;
}
.plan-beds {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: calc(var(--u) * 12.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 400;
  text-align: left;
  /* Stereonic XS is a thin master — hairline stroke for legibility on sage */
  -webkit-text-stroke: 0.4px var(--terracotta-deep);
  paint-order: stroke fill;
}
.plan-specs {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: calc(var(--u) * 13);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: left;
}
.plan-dl {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: calc(var(--u) * 12);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.plan-dl:hover { opacity: 1; }

/* ——— REGISTER ——— */
.register { padding: var(--section-y) 0; }
#reg-heading { scroll-margin-top: 1.25rem; }
.register-inner {
  max-width: calc(var(--u) * 720);
  margin-inline: auto;
}
.register .heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: calc(var(--u) * 34);
  letter-spacing: 0.2em;
  margin-bottom: calc(var(--u) * 32);
  line-height: 1;
  /* Stereonic XS thin master: enough stroke for weight, then compress tall glyphs */
  -webkit-text-stroke: 0.85px currentColor;
  paint-order: stroke fill;
  transform: scaleY(0.88);
  transform-origin: center center;
}
.reg-form { margin: 0; }
.reg-hp {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.reg-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--u) * 18) calc(var(--u) * 22);
  margin-bottom: calc(var(--u) * 28);
}
.field label {
  display: block;
  font-size: calc(var(--u) * 11);
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.field input {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: calc(var(--u) * 15) calc(var(--u) * 20);
  background: var(--white);
  color: var(--onyx);
  outline: none;
  min-height: 2.75rem;
}
.field input:focus { box-shadow: 0 0 0 2px rgba(29,29,27,.25); }
.reg-meta {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: var(--gap-md);
  align-items: start;
  margin-bottom: calc(var(--u) * 32);
}
.realtor { border: 0; margin: 0; padding: 0; }
.realtor legend {
  font-size: calc(var(--u) * 11);
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
  font-weight: 500;
}
.radio {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: calc(var(--u) * 17);
  min-height: 2rem;
}
.radio input {
  appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: transparent;
  position: relative;
  flex-shrink: 0;
}
.radio input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--white);
}
.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: calc(var(--u) * 12);
  line-height: 1.5;
  cursor: pointer;
}
.consent input {
  appearance: none;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: transparent;
  position: relative;
}
.consent input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--white);
}
.form-status {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.25em;
}

/* ——— FOOTER ——— */
.footer {
  background: var(--footer);
  color: var(--white);
  padding: calc(var(--section-y) * 0.75) 0 2rem;
  border-top: 6px solid var(--terracotta);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--gap-lg);
  align-items: end;
  margin-bottom: calc(var(--u) * 40);
}
.footer-block { margin-bottom: calc(var(--u) * 24); }
.footer-block h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: calc(var(--u) * 18);
}
.footer-block p {
  margin: 0;
  font-size: calc(var(--u) * 12.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
  font-weight: 300;
}
.footer-block a { text-decoration: none; }
.footer-block a:hover { text-decoration: underline; }
.footer-disclaimer {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: calc(var(--u) * 11.5);
  letter-spacing: 0.14em;
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  font-family: inherit;
}
.footer-disclaimer[aria-expanded="true"] {
  opacity: 0.85;
}
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--u) * 32) calc(var(--u) * 48);
  justify-content: flex-end;
  align-items: flex-end;
}
.partner-logo {
  display: block;
  height: auto;
  width: auto;
  max-width: min(100%, calc(var(--u) * 220));
  max-height: calc(var(--u) * 72);
  object-fit: contain;
  object-position: left bottom;
}
.partner-logo--fw {
  max-width: min(100%, calc(var(--u) * 260));
}

.disclaimer-text {
  margin: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
  font-size: calc(var(--u) * 11);
  line-height: 1.55;
  opacity: 0;
  max-width: calc(var(--u) * 720);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, padding-top 0.35s ease, border-color 0.35s ease;
}
.disclaimer-text.is-open {
  max-height: 12rem;
  opacity: 0.55;
  padding-top: 1.25rem;
  border-top-color: rgba(255,255,255,.12);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20,20,20,.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem 1.25rem;
  box-sizing: border-box;
}
.lightbox[hidden] { display: none !important; }
.lightbox__img {
  width: auto;
  height: auto;
  max-width: min(1100px, 96vw);
  max-height: min(92vh, 1400px);
  object-fit: contain;
  background: #fff;
  padding: 0.75rem;
  box-sizing: border-box;
}
.lightbox__cap {
  color: #fff;
  margin: 0.75rem 0 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.lightbox__close {
  position: fixed;
  z-index: 1002;
  top: calc(var(--vv-offset-top, 0px) + max(0.65rem, env(safe-area-inset-top)));
  left: calc(var(--vv-offset-left, 0px) + var(--vv-width, 100vw) - 2.75rem - max(0.65rem, env(safe-area-inset-right)));
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(29, 29, 27, 0.82);
  color: #fff;
  font-size: 1.85rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ——— Tablet / mobile: intentional reflow ——— */
@media (max-width: 900px) {
  .homes .heading { margin-left: 20%; }
  .gw-top,
  .gw-steps,
  .gw-collage,
  .euro-grid,
  .feat-grid,
  .plan-grid,
  .footer-grid,
  .reg-meta {
    grid-template-columns: 1fr;
  }
  .gw-map-wrap {
    justify-self: start;
    width: min(100%, 22rem);
  }
  .gw-photo--tall { max-height: none; }
  .footer-right { justify-content: flex-start; }
  .deco--semi-left,
  .deco--semi-right,
  .deco--semi-sm { display: none; }
  .gw-copy p,
  .gw-steps-copy p,
  .euro-body,
  .feat p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --pad-x: 1.15rem;
    --section-y: 2.75rem;
    --fs-h1: 2.15rem;
    --fs-h2: 1.65rem;
    --fs-h3: 1.2rem;
    --hero-logo: 2.85rem;
  }
  .hero { min-height: 85svh; }
  .hero__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo register"
      "tag tag";
    align-items: center;
    column-gap: 0.7rem;
    row-gap: 0.5rem;
    padding-top: 1.15rem;
  }
  .hero__brand {
    display: contents;
    max-width: none;
  }
  .hero__logo {
    grid-area: logo;
    margin: 0;
    font-size: clamp(1.85rem, 10.5vw, 2.7rem);
  }
  .hero__tagline { grid-area: tag; }
  .hero__register {
    grid-area: register;
    align-self: center;
    justify-self: end;
    margin-top: 0;
    width: auto;
    max-width: none;
    white-space: nowrap;
  }
  .reg-fields { grid-template-columns: 1fr; }
  .btn {
    width: 100%;
    max-width: 20rem;
  }
  .hero__register.btn {
    width: auto;
    max-width: none;
  }
  .plan-grid { gap: 1.75rem; }
  .center-cta { margin-top: 2rem; }
  .feat { margin-bottom: 1.5rem; }
  .feat h3 { font-size: 1.05rem; }
  .feat p { font-size: 0.95rem; }
  .register .heading { font-size: 1.65rem; }
  .field input { padding: 0.95rem 1.15rem; }
  .consent { font-size: 0.75rem; }
  .deco--arc-tr,
  .deco--arc-bl,
  .deco--arc-euro { opacity: 0.35; }
}
