:root {
  --ink: #07191b;
  --ink-2: #0e2f32;
  --teal: #126169;
  --aqua: #7edbd2;
  --brass: #d9a441;
  --copper: #bf6848;
  --sage: #9daf91;
  --ivory: #f6efe1;
  --paper: #fbf7ee;
  --mist: #dfe7dc;
  --white: #ffffff;
  --text: #182725;
  --muted: #66726e;
  --line: rgba(7, 25, 27, 0.14);
  --shadow: 0 24px 70px rgba(7, 25, 27, 0.16);
  --soft-shadow: 0 14px 38px rgba(7, 25, 27, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(7, 25, 27, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(7, 25, 27, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 72px 72px;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 18px clamp(16px, 5vw, 64px);
  transition: padding 0.25s ease;
}

.site-header.scrolled {
  padding-block: 10px;
}

.nav-shell {
  max-width: 1160px;
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(7, 25, 27, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--brass);
  font-size: 0.72rem;
  font-weight: 950;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: rgba(246, 239, 225, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--aqua);
}

.menu-toggle {
  display: none;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 239, 225, 0.3);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ivory);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--ink);
  background: var(--brass);
  box-shadow: 0 16px 34px rgba(217, 164, 65, 0.26);
}

.btn-primary:hover {
  background: var(--aqua);
}

.btn-secondary {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 239, 225, 0.34);
}

.btn-secondary:hover {
  color: var(--ink);
  background: var(--ivory);
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
}

.hero {
  position: relative;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 120px clamp(18px, 5vw, 72px) 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 14% 18%, rgba(126, 219, 210, 0.2), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(217, 164, 65, 0.16), transparent 30%),
    linear-gradient(135deg, var(--ink), #0b272a 58%, #113b3f);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 92px clamp(18px, 5vw, 72px) 34px;
  border: 1px solid rgba(246, 239, 225, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-copy h1,
.section-heading h2,
.split-layout h2,
.story-copy h2,
.conversion h2,
.contact-info h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 760px;
  color: var(--ivory);
  font-size: clamp(2.75rem, 6.4vw, 5.9rem);
  font-weight: 900;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 112px;
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brass), var(--aqua));
}

.hero-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(246, 239, 225, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.78;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--aqua);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 26px;
  padding: 12px 16px;
  border: 1px solid rgba(246, 239, 225, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-proof strong {
  color: var(--brass);
  font-size: 1.42rem;
}

.hero-proof span {
  color: rgba(246, 239, 225, 0.72);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink-2);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.hero-media img {
  height: 470px;
  object-position: 54% 50%;
  filter: saturate(1.08) contrast(1.03);
}

.hero-media::before {
  content: "Work lounge / Meeting rooms / Focus desks";
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  max-width: 260px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(246, 239, 225, 0.88);
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(246, 239, 225, 0.52);
  border-radius: 22px;
  pointer-events: none;
}

.price-card {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
  min-width: 0;
  padding: 26px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--teal), var(--ink-2));
}

.price-card span,
.price-card small {
  color: rgba(246, 239, 225, 0.72);
  font-weight: 800;
}

.price-card strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--brass);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.section-pad {
  max-width: 1160px;
  margin: 0 auto;
  padding: 92px clamp(18px, 5vw, 0px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-layout h2,
.story-copy h2,
.contact-info h2,
.final-cta h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 900;
}

.problem .eyebrow,
.benefits .eyebrow,
.spaces .eyebrow,
.process .eyebrow,
.plans .eyebrow,
.testimonials .eyebrow,
.faq .eyebrow,
.contact .eyebrow {
  color: var(--ivory);
  background: var(--teal);
}

.problem-grid,
.benefit-grid,
.process-grid,
.plan-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.problem-grid article,
.benefit-grid article,
.process-grid article,
.testimonial-grid article,
.contact-cards article,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: var(--soft-shadow);
}

.problem-grid article {
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--ink);
  font-weight: 900;
}

.problem-grid article:nth-child(1),
.problem-grid article:nth-child(4) {
  background: rgba(126, 219, 210, 0.26);
}

.problem-grid article:nth-child(3) {
  background: rgba(217, 164, 65, 0.26);
}

.solution {
  max-width: none;
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(191, 104, 72, 0.18), transparent 38%),
    var(--ink);
}

.split-layout {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 54px;
  align-items: center;
}

.solution h2,
.solution p {
  color: var(--ivory);
}

.solution p {
  max-width: 660px;
  color: rgba(246, 239, 225, 0.76);
  line-height: 1.8;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-list span {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(246, 239, 225, 0.16);
  border-radius: 18px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

.feature-list span:nth-child(2),
.feature-list span:nth-child(5) {
  color: var(--ink);
  background: var(--brass);
}

.feature-list span:nth-child(3) {
  color: var(--ink);
  background: var(--aqua);
}

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

.benefit-grid article,
.testimonial-grid article {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-grid article:hover,
.testimonial-grid article:hover,
.space-card:hover,
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.benefit-grid span,
.process-grid span {
  color: var(--copper);
  font-weight: 950;
}

.benefit-grid p,
.testimonial-grid p,
.space-card p,
.plan-card p,
.story-copy p,
.contact-info p,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
}

.space-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.space-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.space-card img {
  height: 250px;
  border-bottom: 1px solid var(--line);
  filter: saturate(1.06) contrast(1.02);
}

.space-card:nth-child(1) {
  grid-row: span 2;
}

.space-card:nth-child(1) img {
  height: 430px;
  object-position: 50% 46%;
}

.space-card:nth-child(2) img {
  height: 310px;
  object-position: 42% 50%;
}

.space-card:nth-child(3) img {
  object-position: 52% 44%;
}

.space-card:nth-child(4) img {
  object-position: 48% 36%;
}

.space-card:nth-child(5) {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.space-card:nth-child(5) img {
  height: 100%;
  min-height: 310px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  object-position: 54% 50%;
}

.space-card:nth-child(6) img {
  object-position: 50% 40%;
}

.space-card div {
  padding: 22px;
}

.space-card h3,
.plan-card h3,
.benefit-grid h3,
.timeline h3,
.process-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 900;
}

.space-card span {
  display: block;
  margin: 14px 0;
  color: var(--teal);
  font-weight: 900;
}

.space-card a {
  color: var(--copper);
  font-weight: 950;
}

.story {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 54px;
  align-items: center;
}

.story-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.story-media img {
  object-position: 48% 50%;
  filter: saturate(1.08) contrast(1.02);
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.timeline article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.78);
}

.timeline article:nth-child(2) {
  background: rgba(126, 219, 210, 0.18);
}

.timeline article span {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--brass);
  font-weight: 950;
}

.timeline article p {
  grid-column: 2;
  margin: -4px 0 0;
}

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

.process-grid article {
  min-height: 160px;
  padding: 22px;
}

.process-grid article:nth-child(1) {
  background: rgba(217, 164, 65, 0.24);
}

.process-grid article:nth-child(4) {
  color: var(--ivory);
  background: var(--teal);
}

.process-grid article:nth-child(4) h3 {
  color: var(--ivory);
}

.plan-grid {
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 460px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card.featured {
  color: var(--ivory);
  background:
    radial-gradient(circle at 86% 12%, rgba(126, 219, 210, 0.24), transparent 28%),
    var(--ink);
  transform: translateY(-18px);
}

.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured li,
.plan-card.featured span {
  color: var(--ivory);
}

.plan-card.selected {
  outline: 3px solid var(--brass);
  outline-offset: 5px;
}

.plan-badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--brass);
  font-size: 0.76rem;
  font-weight: 950;
}

.plan-card strong {
  margin-top: 14px;
  color: var(--copper);
  font-size: 2.6rem;
}

.plan-card.featured strong {
  color: var(--brass);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 18px;
  color: var(--muted);
}

.plan-card button {
  align-self: end;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--aqua);
  font-weight: 950;
  cursor: pointer;
}

.conversion,
.final-cta {
  max-width: 1160px;
  margin: 52px auto;
  padding: clamp(34px, 6vw, 58px);
  border-radius: 30px;
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(217, 164, 65, 0.2), transparent 42%),
    var(--ink);
  box-shadow: var(--shadow);
}

.conversion {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}

.conversion h2,
.final-cta h2 {
  color: var(--ivory);
}

.stats {
  display: flex;
  gap: 12px;
}

.stats strong {
  display: grid;
  min-width: 110px;
  padding: 14px;
  border: 1px solid rgba(246, 239, 225, 0.18);
  border-radius: 18px;
  color: var(--brass);
  background: rgba(255, 255, 255, 0.07);
  font-size: 1.48rem;
}

.stats span {
  color: rgba(246, 239, 225, 0.72);
  font-size: 0.76rem;
}

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

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span {
  margin-top: 4px;
  color: var(--teal);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  padding: 0 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item.open {
  background: rgba(217, 164, 65, 0.22);
}

.faq-item p {
  max-height: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.open p {
  max-height: 160px;
  padding: 0 20px 20px;
}

.contact {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-cards article {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.contact-cards strong {
  color: var(--ink);
}

.map-box {
  display: grid;
  place-items: center;
  min-height: 230px;
  border-radius: 24px;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(246, 239, 225, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(246, 239, 225, 0.12) 1px, transparent 1px),
    var(--teal);
  background-size: 32px 32px;
  box-shadow: var(--soft-shadow);
  font-weight: 950;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form label:nth-last-of-type(1) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(126, 219, 210, 0.48);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn,
.form-message {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 950;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(120deg, rgba(126, 219, 210, 0.2), transparent 44%),
    var(--teal);
}

.final-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px clamp(18px, 5vw, 0px);
  color: var(--muted);
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  gap: 16px;
  color: var(--teal);
  font-weight: 900;
}

.site-footer small {
  grid-column: 1 / -1;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 86px;
    right: 18px;
    left: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(7, 25, 27, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split-layout,
  .story,
  .contact,
  .conversion {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-media img {
    height: 350px;
  }

  .story-media {
    min-height: 420px;
  }

  .problem-grid,
  .benefit-grid,
  .space-grid,
  .process-grid,
  .plan-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .space-card:nth-child(1),
  .space-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    display: block;
  }

  .space-card:nth-child(1) img,
  .space-card:nth-child(2) img,
  .space-card:nth-child(3) img,
  .space-card:nth-child(4) img,
  .space-card:nth-child(5) img,
  .space-card:nth-child(6) img {
    height: 270px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-card.featured {
    transform: none;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .conversion {
    margin-inline: 18px;
  }

  .stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand span:last-child {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-inline: 18px;
    padding-bottom: 44px;
  }

  .hero::before {
    inset: 92px 12px 24px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 14vw, 4.1rem);
  }

  .hero-actions,
  .final-cta,
  .site-footer {
    align-items: stretch;
  }

  .btn,
  .hero-actions a,
  .final-cta a {
    width: 100%;
  }

  .hero-proof {
    width: 100%;
  }

  .hero-media {
    min-height: 420px;
    border-radius: 22px;
  }

  .hero-media img {
    height: 285px;
  }

  .price-card {
    grid-template-columns: 1fr;
  }

  .price-card strong {
    grid-column: auto;
    grid-row: auto;
  }

  .problem-grid,
  .benefit-grid,
  .space-grid,
  .process-grid,
  .plan-grid,
  .testimonial-grid,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .space-card:nth-child(1) img,
  .space-card:nth-child(2) img,
  .space-card:nth-child(3) img,
  .space-card:nth-child(4) img,
  .space-card:nth-child(5) img,
  .space-card:nth-child(6) img {
    height: 245px;
  }

  .contact-form label:nth-last-of-type(1),
  .contact-form .btn,
  .form-message,
  .site-footer small {
    grid-column: auto;
  }

  .final-cta {
    flex-direction: column;
  }

  .final-cta div {
    width: 100%;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
