:root {
  --ink: #112646;
  --text: #253347;
  --muted: #657083;
  --paper: #fbf7ef;
  --white: #ffffff;
  --cream: #f2eadf;
  --line: #e1d8ca;
  --navy: #06245a;
  --gold: #b78a47;
  --green: #155f4a;
  --shadow: 0 20px 60px rgba(17, 38, 70, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.senior-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 54px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(17, 38, 70, 0.07);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  max-width: 210px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.senior-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
}

.nav-cta,
.home-link {
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-cta {
  padding: 9px 15px;
}

.header-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-width: 112px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switch button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.language-switch button.active {
  color: var(--white);
  background: var(--navy);
}

.home-link {
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
}

.hero-special {
  position: relative;
  min-height: 100vh;
  padding-top: 74px;
  background: var(--cream);
}

.hero-special > img {
  width: 100%;
  height: calc(100vh - 74px);
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.hero-panel {
  position: absolute;
  top: 120px;
  left: clamp(18px, 4vw, 64px);
  width: min(560px, calc(100% - 36px));
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 70px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
}

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

.hero-panel p:not(.eyebrow) {
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

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

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

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.feature-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.feature-strip div:last-child {
  border-right: 0;
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip strong {
  color: var(--navy);
  font-size: 18px;
}

.feature-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 70px);
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: center;
}

.copy-block > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.inquiry-section > div > p {
  max-width: 680px;
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.steps div,
.buyer-grid article,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps div {
  padding: 18px;
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

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

.image-proof {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-proof img,
.visual-section > img {
  width: 100%;
  border-radius: 8px;
}

.image-proof figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 36, 90, 0.78);
  font-size: 14px;
  font-weight: 900;
}

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

.section-heading {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin-bottom: 30px;
}

.power-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: var(--navy);
}

.power-section h2,
.power-section .eyebrow {
  color: var(--white);
}

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

.power-grid span {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 28px;
  font-weight: 900;
}

.buyers-section {
  background: var(--paper);
}

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

.buyer-grid article {
  padding: 24px;
}

.buyer-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.buyer-grid p {
  margin-bottom: 0;
}

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

.lifestyle-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.inquiry-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
  background: #eef3f4;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.special-contact {
  margin-top: 24px;
}

.contact-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  word-break: break-word;
}

.contact-actions a:first-child {
  color: var(--white);
  border-color: #1f9d55;
  background: #1f9d55;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: #fffdf8;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #1f9d55;
  box-shadow: 0 14px 34px rgba(31, 157, 85, 0.32);
  font-size: 14px;
  font-weight: 900;
}

.whatsapp-float::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--white);
}

.senior-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.76);
  background: #071731;
}

.senior-footer a {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .senior-nav {
    display: none;
  }

  .hero-panel {
    top: auto;
    bottom: 28px;
  }

  .feature-strip,
  .split-section,
  .power-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .brand small {
    max-width: 116px;
  }

  .home-link {
    display: none;
  }

  .language-switch {
    min-width: 94px;
  }

  .language-switch button {
    min-height: 30px;
    font-size: 11px;
  }

  .hero-special {
    min-height: auto;
  }

  .hero-special > img {
    height: 78vh;
    min-height: 560px;
    object-position: 65% center;
  }

  .hero-panel {
    right: 14px;
    bottom: 16px;
    left: 14px;
    width: auto;
    padding: 18px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-panel p:not(.eyebrow) {
    font-size: 15px;
  }

  .feature-strip,
  .steps,
  .buyer-grid,
  .lifestyle-grid,
  .power-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .feature-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip div:last-child {
    border-bottom: 0;
  }

  .inquiry-form .full {
    grid-column: auto;
  }

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

  .contact-actions a {
    width: 100%;
  }

  .inquiry-form input,
  .inquiry-form textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .senior-footer {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 15px;
    font-size: 13px;
  }
}
