@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("assets/fonts/dm-serif-display-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --navy: #1f3d59;
  --blue: #8ab9ed;
  --sand: #d4cebe;
  --charcoal: #36393f;
  --ice: #f7fbfe;
  --yellow: #fdb400;
  --white: #ffffff;
  --ink: #1e2933;
  --muted: #66727c;
  --line: rgba(31, 61, 89, 0.18);
  --shadow: 0 24px 70px rgba(21, 45, 66, 0.12);
  --radius: 8px;
  --shell: min(1180px, calc(100% - 40px));
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 370;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: "DM Sans", Arial, sans-serif;
}

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

a {
  color: inherit;
}

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

p:last-child {
  margin-bottom: 0;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 251, 254, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 35px rgba(31, 61, 89, 0.08);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 158px;
  height: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  box-shadow: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--navy);
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 0.88rem;
}

.button-outline {
  color: var(--navy);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.button-outline-light:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 74px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ice);
}

.hero-pattern {
  position: absolute;
  z-index: -1;
  inset: auto -52px -120px auto;
  width: 310px;
  height: 470px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  opacity: 0.65;
  transform: rotate(-7deg);
}

.hero-pattern span:nth-child(1),
.hero-pattern span:nth-child(6) { background: var(--navy); }
.hero-pattern span:nth-child(2),
.hero-pattern span:nth-child(5) { background: var(--blue); }
.hero-pattern span:nth-child(3) { background: var(--sand); }
.hero-pattern span:nth-child(4) { background: rgba(253, 180, 0, 0.65); }

.hero-grid {
  flex: 1;
  display: grid;
  align-items: center;
  gap: 44px;
  padding-block: 72px 44px;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.eyebrow-light {
  color: var(--blue);
}

h1,
h2 {
  color: var(--navy);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 11vw, 5.4rem);
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.35rem, 7vw, 4.35rem);
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero .lead {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
}

.button-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  width: min(100%, 420px);
  padding: 24px;
  border: 1px solid rgba(31, 61, 89, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.proof-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-mark {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--navy);
  background: var(--blue);
}

.proof-mark::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -32px;
  width: 72px;
  height: 72px;
  background: var(--sand);
}

.proof-mark span {
  position: relative;
  z-index: 1;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.7rem;
}

.proof-address {
  margin-bottom: 18px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.hero-proof > p:last-child {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-visual > img {
  width: 100%;
  min-height: 460px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.hero-visual:hover > img {
  transform: scale(1.015);
}

.hero-location {
  position: absolute;
  right: 18px;
  bottom: 58px;
  left: 18px;
  padding: 20px;
  color: var(--white);
  background: rgba(31, 61, 89, 0.93);
  backdrop-filter: blur(10px);
}

.hero-location > span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-location > strong {
  display: block;
  margin-bottom: 14px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.08;
}

.hero-location > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-visual figcaption,
.city-life-card figcaption,
.atmosphere-gallery figcaption {
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-foot p {
  margin: 0;
}

.hero-foot span {
  color: var(--navy);
  font-size: 1.4rem;
}

.section {
  padding-block: 92px;
}

.split-copy {
  display: grid;
  gap: 44px;
}

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

.section-heading > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.reading-column {
  max-width: 670px;
}

.reading-column p {
  margin-bottom: 24px;
}

.section-intro {
  padding-bottom: 76px;
}

.intro-split .section-heading h2,
.intro-split .reading-column p:last-child {
  margin-bottom: 0;
}

.belief-interlude {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 10vw, 124px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(138, 185, 237, 0.26), rgba(247, 251, 254, 0.96) 62%, rgba(212, 206, 190, 0.24));
}

.belief-interlude::after {
  position: absolute;
  right: -72px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border: 42px solid rgba(138, 185, 237, 0.18);
  content: "";
  transform: rotate(12deg);
}

.belief-content {
  position: relative;
  z-index: 1;
  max-width: 1020px;
}

.belief-lead {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 760;
  letter-spacing: -0.018em;
  line-height: 1.3;
}

.belief-content blockquote {
  max-width: 940px;
  margin: 0;
  padding: 8px 0 8px clamp(22px, 3vw, 38px);
  font-size: clamp(2.25rem, 5.4vw, 4.7rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.belief-support {
  max-width: 780px;
  margin: 32px 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.city-life-section {
  padding-top: 88px;
}

.city-life {
  margin-top: 0;
}

.city-life-copy {
  max-width: 620px;
  margin-bottom: 20px;
}

.city-life-copy h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.city-life-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.city-life-card {
  display: flex;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-direction: column;
  align-self: start;
}

.city-life-card img {
  display: block;
  width: 100%;
  height: clamp(104px, 25vw, 158px);
  max-height: 158px;
  object-fit: cover;
  object-position: center;
}

blockquote {
  position: relative;
  margin-block: 34px;
  padding: 28px 0 28px 26px;
  border-left: 5px solid var(--blue);
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 2.3rem);
  line-height: 1.2;
}

.section-blue {
  color: var(--white);
  background: var(--navy);
}

.section-blue h2,
.section-blue h3,
.section-dark h2,
.section-dark h3,
.signup h2,
.signup h3 {
  color: var(--white);
}

.standout {
  padding: 22px 24px;
  border-left: 5px solid var(--yellow);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 650;
}

.process {
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.process-label {
  margin-bottom: 22px;
  color: var(--blue);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.55rem;
}

.process-line {
  max-width: 920px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  font-weight: 650;
  line-height: 1.45;
}

.process ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
}

.process li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--navy);
  font-weight: 650;
}

.process li span,
.card-number,
.audience-card > span,
.reason > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.benefit-grid {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}

.card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.card-featured {
  background: rgba(138, 185, 237, 0.26);
}

.card-number {
  display: block;
  margin-bottom: 64px;
}

.card h3 {
  margin-bottom: 16px;
}

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

.centered-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 54px;
  text-align: center;
}

.centered-cta p {
  margin: 0;
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

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

.audience-grid {
  display: grid;
  gap: 1px;
  margin-top: 46px;
  border: 1px solid var(--line);
  background: var(--line);
}

.audience-card {
  min-height: 300px;
  padding: 28px;
  background: var(--ice);
}

.audience-card > span {
  display: block;
  margin-bottom: 44px;
}

.audience-card p,
.reason p {
  color: var(--muted);
}

.fit-closing {
  margin-top: 50px;
  text-align: center;
}

.fit-closing p:first-child {
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 740;
}

.fit-closing p:last-child {
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.h-class-intro {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 26px;
  border-left: 5px solid var(--blue);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(31, 61, 89, 0.08);
}

.h-class-intro p {
  margin-bottom: 14px;
  color: var(--ink);
}

.atmosphere-gallery {
  columns: 1;
  column-gap: 16px;
  margin-top: 48px;
}

.atmosphere-gallery figure {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--charcoal);
  break-inside: avoid;
  vertical-align: top;
}

.atmosphere-gallery img {
  width: 100%;
  height: auto;
  transition: transform 700ms ease;
}

.atmosphere-gallery figure:hover img {
  transform: scale(1.02);
}

.section-dark {
  color: rgba(255, 255, 255, 0.84);
  background: var(--charcoal);
}

.section-dark .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.steps-list {
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.steps-list > li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding-block: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

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

.steps-list p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.summary-card {
  margin-top: 54px;
  padding: 28px;
  border: 1px solid rgba(138, 185, 237, 0.45);
  background: rgba(31, 61, 89, 0.32);
}

.summary-card h3 {
  margin-bottom: 26px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.summary-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.summary-card li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.summary-card strong {
  min-width: 42px;
  color: var(--blue);
  font-size: 1.2rem;
}

.summary-card > p {
  color: var(--white);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.55rem;
}

.quality {
  padding-bottom: 0;
  background: var(--white);
}

.quality-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.quality-copy {
  max-width: 620px;
}

.quality-copy strong {
  color: var(--navy);
}

.quality-figure {
  position: relative;
  margin: 0;
}

.quality-video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}

.quality-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-toggle {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: var(--white);
  background: rgba(31, 61, 89, 0.88);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.video-toggle:hover,
.video-toggle:focus-visible {
  background: var(--navy);
}

.quality-figure figcaption {
  padding: 13px 15px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.78rem;
  line-height: 1.45;
}

.proof-grid {
  display: grid;
  gap: 34px;
  margin-top: 64px;
  padding-block: 48px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
}

.proof-grid .eyebrow {
  color: var(--blue);
}

.address-line {
  max-width: 420px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.15rem);
  line-height: 1.2;
}

.heklureitur-brand {
  display: inline-flex;
  max-width: 248px;
  margin: 2px 0 28px;
  transition: opacity 180ms ease;
}

.heklureitur-brand:hover {
  opacity: 0.76;
}

.heklureitur-brand img {
  width: min(100%, 248px);
  height: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 650;
  text-decoration: none;
}

.text-link:hover {
  border-color: transparent;
}

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

.quality-list li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.quality-list li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 2px;
  width: 9px;
  height: 9px;
  background: var(--blue);
}

.reason-grid {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}

.reason {
  min-height: 280px;
  padding: 28px;
  background: var(--ice);
}

.reason > span {
  display: block;
  margin-bottom: 46px;
}

.reason-wide {
  background: rgba(212, 206, 190, 0.42);
}

.home-interlude {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 13vw, 168px);
  background: var(--navy);
}

.home-interlude::before,
.home-interlude::after {
  content: "";
  position: absolute;
  width: clamp(90px, 15vw, 220px);
  aspect-ratio: 1;
  opacity: 0.7;
}

.home-interlude::before {
  top: 0;
  left: 0;
  background: var(--blue);
  transform: translate(-48%, -48%) rotate(12deg);
}

.home-interlude::after {
  right: 0;
  bottom: 0;
  background: var(--sand);
  transform: translate(54%, 54%) rotate(-9deg);
}

.home-quote {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.home-quote h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.home-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.faq-grid {
  display: grid;
  gap: 42px;
}

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

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

.accordion summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 680;
  list-style: none;
}

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

.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform 180ms ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0deg);
}

.accordion details > div {
  max-width: 690px;
  padding: 0 44px 24px 0;
  color: var(--muted);
}

.signup {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
}

.signup-grid {
  display: grid;
  gap: 44px;
}

.signup-copy {
  max-width: 600px;
}

.form-card {
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 22px;
}

.field label,
fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 680;
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid rgba(31, 61, 89, 0.35);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 1rem;
}

.field input:hover {
  border-color: var(--navy);
}

.field input[aria-invalid="true"] {
  border-color: #a93b32;
}

.field-error {
  display: block;
  min-height: 1.35em;
  margin-top: 5px;
  color: #922c24;
  font-size: 0.78rem;
}

fieldset {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.radio-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 48px;
  padding: 11px 0;
  cursor: pointer;
}

.radio-row input,
.consent-field input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.consent-field {
  margin-bottom: 24px;
  font-size: 0.86rem;
}

.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-follow-up {
  margin-top: 10px;
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.5em;
  margin-top: 12px;
  color: #922c24;
  font-size: 0.86rem;
}

.form-success {
  min-height: 410px;
  place-content: center;
  text-align: center;
}

.form-success:not([hidden]) {
  display: grid;
}

.form-success h3 {
  color: var(--navy);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.success-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue);
  font-size: 1.8rem;
}

.meeting {
  display: grid;
  gap: 26px;
  align-items: center;
  margin-top: 64px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.meeting h3 {
  margin-bottom: 8px;
}

.meeting p {
  max-width: 650px;
}

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

.meeting-actions .button {
  flex: 1 1 150px;
  text-align: center;
}

.site-footer {
  padding-block: 72px 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #152f47;
}

.footer-main {
  display: grid;
  gap: 48px;
}

.brand-footer img {
  width: 176px;
  filter: brightness(0) invert(1);
}

.footer-brand {
  max-width: 410px;
}

.footer-brand h2 {
  max-width: 360px;
  margin: 34px 0 16px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.footer-brand p {
  max-width: 390px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}

.social-links a,
.footer-column a,
.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.social-links a:hover,
.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.social-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.86rem;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  line-height: 1.65;
}

.footer-cta {
  margin-top: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--blue);
  color: var(--white) !important;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 16px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 620px) {
  :root {
    --shell: min(1180px, calc(100% - 64px));
  }

  .button-row {
    flex-direction: row;
    align-items: center;
  }

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

  .card-featured,
  .reason-wide {
    grid-column: 1 / -1;
  }

  .summary-card ul {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 28px;
  }

  .meeting {
    grid-template-columns: 1fr auto;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(160px, 0.75fr));
  }

  .footer-nav {
    grid-column: 2 / -1;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: row;
  }

  .atmosphere-gallery {
    columns: 2;
  }
}

@media (min-width: 900px) {
  .site-header .button-small {
    padding-inline: 22px;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    align-items: stretch;
    gap: 58px;
    padding-block: 100px 66px;
  }

  .hero-visual {
    align-self: stretch;
    min-height: 0;
  }

  .hero-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .hero-visual figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .hero-location {
    right: 28px;
    bottom: 62px;
    left: 28px;
    padding: 26px;
  }

  .hero-pattern {
    right: -70px;
    bottom: -170px;
    width: 480px;
    height: 700px;
    opacity: 0.38;
  }

  .section {
    padding-block: 130px;
  }

  .split-copy {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 90px;
  }

  .section-intro {
    padding-bottom: 104px;
  }

  .intro-split {
    align-items: stretch;
  }

  .intro-split .section-heading {
    display: flex;
    height: 100%;
    flex-direction: column;
  }

  .intro-split .section-heading h2 {
    font-size: clamp(3.35rem, 4.35vw, 4.15rem);
  }

  .intro-split .reading-column {
    display: flex;
    max-width: none;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
  }

  .city-life-section {
    padding-top: 104px;
  }

  .city-life-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section-heading.sticky-heading {
    position: sticky;
    top: 120px;
  }

  .process ol {
    grid-template-columns: repeat(4, 1fr);
  }

  .process li {
    min-height: 130px;
    align-items: flex-start;
    flex-direction: column;
  }

  .benefit-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .card {
    grid-column: span 2;
  }

  .card-featured {
    grid-column: span 4;
  }

  .benefit-grid .card:nth-child(4),
  .benefit-grid .card:nth-child(5) {
    grid-column: span 3;
  }

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

  .atmosphere-gallery {
    columns: 3;
    margin-top: 64px;
  }

  .steps-list > li {
    grid-template-columns: 90px 1fr;
    padding-block: 38px;
  }

  .summary-card {
    padding: 42px;
  }

  .summary-card ul {
    grid-template-columns: repeat(5, 1fr);
  }

  .summary-card li {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .summary-card li:last-child {
    border-right: 0;
  }

  .quality-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 82px;
    align-items: stretch;
  }

  .quality-figure {
    align-self: stretch;
    min-height: 0;
  }

  .quality-video {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }

  .quality-figure figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .proof-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 96px;
    padding-block: 64px;
  }

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

  .reason-wide {
    grid-column: span 2;
    grid-row: span 2;
    padding: 42px;
  }

  .reason-wide > span {
    margin-bottom: 90px;
  }

  .faq-grid {
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
    gap: 90px;
  }

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

  .signup-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(450px, 0.72fr);
    gap: 90px;
    align-items: start;
  }

  .form-card {
    padding: 42px;
  }

  .footer-main {
    grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(150px, 0.7fr));
    gap: 42px;
  }

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

@media (min-width: 1200px) {
  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 186px;
  }

  .hero {
    min-height: calc(100svh - 82px);
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .button,
  .hero-pattern {
    display: none !important;
  }

  .section,
  .hero {
    min-height: auto;
    padding-block: 32px;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
