:root {
  --black: #0b0b0b;
  --graphite: #171717;
  --ink: #171a20;
  --muted: #5c6470;
  --line: #e2e7ee;
  --soft: #f5f7fa;
  --white: #ffffff;
  --red: #c1121f;
  --red-bright: #ec1b24;
  --red-deep: #7f0710;
  --red-soft: #ffe2df;
  --gold: #b88a44;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
strong {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: inherit;
  font-family: Montserrat, Inter, Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  width: min(1120px, 100%);
  margin: 0 auto 12px;
  color: var(--red-bright);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-wrap: normal;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22),
    0 14px 34px rgba(0, 0, 0, 0.72);
}

h2 {
  margin-bottom: 18px;
  font-size: 3.4rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

p {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid rgba(236, 27, 36, 0.55);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: rgba(11, 11, 11, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 11, 0.94);
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 252px;
  height: 78px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--black);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 2px;
  background: var(--red-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--red);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: start;
  padding: 140px 0 76px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media {
  background: url("assets/generated-real-estate-hero.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  transform-origin: center;
}

.hero-media::after,
.cta-media::after {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: min(320px, 38vw);
  height: min(140px, 18vw);
  pointer-events: none;
  background: radial-gradient(ellipse at right bottom, rgba(8, 10, 12, 0.64), rgba(8, 10, 12, 0.34) 44%, transparent 72%);
  backdrop-filter: blur(2px);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-kicker,
.section-kicker,
.development-card span,
.investment-card span,
.company-card span {
  color: var(--red-bright);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 16px;
  color: #ffd9d6;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.74);
}

.hero-statement {
  margin-bottom: 10px;
  color: var(--white);
  font-family: Montserrat, Inter, Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.hero-copy {
  width: min(760px, 100%);
  margin: 0 auto 30px;
  color: #f4eeee;
  font-size: 1.18rem;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

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

.hero-actions.centered {
  justify-content: center;
}

.button,
.development-tabs button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  box-shadow: 0 16px 36px rgba(193, 18, 31, 0.36);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
}

.signal-band {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-deep), var(--red) 58%, var(--red-bright));
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border-inline: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-grid article {
  min-height: 132px;
  display: grid;
  align-content: center;
  padding: 22px;
  background: rgba(11, 11, 11, 0.42);
}

.signal-grid strong {
  display: block;
  font-family: Montserrat, Inter, Arial, Helvetica, sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.signal-grid span {
  display: block;
  margin-top: 8px;
  color: #ffe4e1;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 38px;
}

.section-heading p,
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
}

.split-layout,
.flagship-layout,
.communities-layout,
.group-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 68px;
  align-items: start;
}

.lead-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.lead-copy p + p {
  margin-top: 16px;
}

.about-section {
  background: var(--white);
}

.philosophy-section,
.developments-section,
.process-section {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--black), #220305 56%, var(--red-deep));
  background-size: 54px 54px, 54px 54px, auto;
}

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

.philosophy-grid article,
.investment-card,
.amenity-grid article,
.company-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.philosophy-grid article {
  min-height: 270px;
  padding: 28px;
}

.philosophy-grid span {
  color: #ffd9d6;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.philosophy-grid h3,
.philosophy-grid p {
  color: var(--white);
}

.philosophy-grid h3 {
  margin-top: 18px;
}

.philosophy-grid p {
  color: #f5dedb;
}

.developments-section .section-heading p,
.process-section .section-heading p {
  color: #f5dedb;
}

.developments-section h2,
.process-section h2 {
  color: var(--white);
}

.development-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.development-tabs button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.development-tabs button.active {
  background: var(--white);
  color: var(--red-deep);
}

.development-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.development-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.development-card.feature-card {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 678px;
}

.development-card[hidden] {
  display: none;
}

.development-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.development-card:hover img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.04);
}

.development-card div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 16px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.84);
  border-left: 5px solid var(--red-bright);
  border-radius: 6px;
}

.development-card h3 {
  color: var(--white);
}

.development-card p {
  color: #f3dddd;
}

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

.flagship-layout {
  align-items: center;
}

.flagship-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--black);
}

.flagship-media img,
.flagship-media video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.status-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.status-list article {
  padding: 18px 20px;
  background: var(--white);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(15, 18, 24, 0.08);
}

.status-list strong,
.status-list span {
  display: block;
}

.status-list span {
  margin-top: 4px;
  color: var(--muted);
}

.investment-section,
.communities-section {
  background: var(--white);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.investment-card {
  min-height: 280px;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #250305);
  border-color: rgba(193, 18, 31, 0.18);
}

.investment-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
}

.investment-card p {
  color: #f1dddd;
}

.communities-section {
  background:
    linear-gradient(90deg, rgba(193, 18, 31, 0.06), transparent 44%),
    var(--soft);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.amenity-grid article {
  min-height: 150px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(15, 18, 24, 0.08);
}

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

.amenity-grid strong {
  font-family: Montserrat, Inter, Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}

.amenity-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 230px;
  padding: 24px;
  background: rgba(11, 11, 11, 0.56);
  counter-increment: process;
}

.process-list li::before {
  display: block;
  margin-bottom: 36px;
  color: #ffd9d6;
  font-family: Montserrat, Inter, Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  content: counter(process, decimal-leading-zero);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 8px;
  color: #f2dddd;
}

.group-section {
  background: var(--white);
}

.group-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.company-grid {
  display: grid;
  gap: 16px;
}

.company-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(15, 18, 24, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.company-card:hover {
  border-color: rgba(236, 27, 36, 0.34);
  box-shadow: 0 18px 42px rgba(15, 18, 24, 0.14);
  transform: translateY(-2px);
}

.company-card img {
  width: 190px;
  height: 92px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--black);
}

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

.company-card small {
  grid-column: 2;
  color: var(--red);
  font-weight: 900;
}

.cta-section {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: var(--black);
}

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

.cta-media {
  background: url("assets/generated-investment-masterplan.webp") center / cover no-repeat;
  overflow: hidden;
}

.cta-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transform-origin: center;
}

.cta-overlay {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(127, 7, 16, 0.36), rgba(11, 11, 11, 0.12));
  background-size: 58px 58px, 58px 58px, auto;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  width: min(920px, 100%);
  margin-inline: auto;
  color: var(--white);
}

.contact-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #190203 58%, var(--red-deep));
}

.contact-layout {
  align-items: start;
}

.contact-copy h2,
.contact-copy .section-lead {
  color: var(--white);
}

.contact-copy .section-lead {
  color: #f1dddd;
}

address {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: #ffe4e1;
  font-style: normal;
  font-size: 1.05rem;
}

address a {
  color: var(--white);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form .full-field,
.contact-form .form-note,
.contact-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red-bright);
  outline: 3px solid rgba(236, 27, 36, 0.24);
}

.form-note {
  color: #ffd9d6;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  color: var(--white);
  background: #128c39;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  font-weight: 900;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(150px, 0.8fr));
  gap: 42px;
  padding: 56px 0 38px;
}

.footer-brand img {
  width: 252px;
  height: 78px;
  object-fit: cover;
  border-radius: var(--radius);
}

.footer-brand p {
  width: min(430px, 100%);
  margin-top: 18px;
  color: #d8d8d8;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong,
.footer-contact strong {
  font-family: Montserrat, Inter, Arial, Helvetica, sans-serif;
  margin-bottom: 6px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #d8d8d8;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px max(24px, calc((100vw - var(--container)) / 2));
  color: #ffd9d6;
  background: #050505;
  font-size: 0.86rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1120px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .brand img,
  .footer-brand img {
    width: 220px;
    height: 68px;
  }

  .site-nav a {
    padding-inline: 9px;
    font-size: 0.76rem;
  }

  .split-layout,
  .flagship-layout,
  .communities-layout,
  .group-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

  .development-card.feature-card {
    grid-row: auto;
    min-height: 430px;
  }

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

  .process-list li {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand img {
    width: 194px;
    height: 60px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(330px, 84vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 104px 20px 24px;
    background: rgba(11, 11, 11, 0.98);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.34);
    transform: translateX(100%);
    transition: transform 180ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 13px 14px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 82svh;
    padding: 112px 0 50px;
  }

  h1 {
    font-size: 1.55rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-statement {
    font-size: 1.45rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

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

  .section {
    padding: 72px 0;
  }

  .philosophy-grid,
  .investment-grid,
  .amenity-grid,
  .development-grid {
    grid-template-columns: 1fr;
  }

  .development-card,
  .development-card.feature-card {
    grid-column: auto;
    min-height: 360px;
  }

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

  .company-card small {
    grid-column: auto;
  }

  .company-card img {
    width: min(260px, 100%);
    height: auto;
    aspect-ratio: 815 / 400;
  }

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

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

  .footer-bottom {
    display: grid;
    padding-inline: 18px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .brand img {
    width: 166px;
    height: 52px;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 44px;
  }

  h1 {
    font-size: 1rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero-statement {
    font-size: 1.18rem;
  }

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

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

  .signal-grid article {
    min-height: 112px;
  }

  .development-card,
  .development-card.feature-card {
    min-height: 340px;
  }

  .flagship-media img,
  .flagship-media video {
    aspect-ratio: 3 / 4;
  }

  .floating-whatsapp {
    display: none;
  }
}
