:root {
  --ink: #17221f;
  --muted: #5f6d68;
  --paper: #f7f8f6;
  --white: #ffffff;
  --forest: #173c31;
  --forest-dark: #0d2821;
  --gold: #d6ad54;
  --gold-light: #f0d48f;
  --line: #d9dfdc;
  --focus: #2f7d67;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-weight: 700;
}

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

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

.brand small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.header-action svg,
.button svg,
.map-link svg,
.feature-list svg,
.mobile-whatsapp svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: flex;
  min-height: 82svh;
  max-height: 780px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  background: rgba(8, 25, 21, 0.78);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 24px;
}

.price-line strong {
  color: var(--gold-light);
  font-size: 42px;
  line-height: 1;
}

.price-line span {
  font-size: 16px;
}

.price-note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  color: #152018;
  background: var(--gold);
}

.button-primary:hover {
  background: var(--gold-light);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-outline {
  border-color: var(--line);
  color: var(--forest);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--forest);
}

.hero-next {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  transform: translateX(50%);
  color: var(--white);
}

.highlights {
  color: var(--white);
  background: var(--forest);
}

.highlights-inner {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight {
  min-height: 112px;
  padding: 24px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
}

.highlight:last-child {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.16);
}

.highlight span,
.highlight strong {
  display: block;
}

.highlight span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.highlight strong {
  margin-top: 5px;
  font-size: 18px;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.project-section,
.transparency-section,
.contact-section {
  padding: 84px 0;
}

.project-grid {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
}

h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0;
}

.project-copy > p:not(.section-kicker),
.location-section p,
.contact-section p {
  max-width: 670px;
  color: var(--muted);
}

.feature-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list svg {
  margin-top: 4px;
  color: var(--focus);
}

.project-visual {
  margin: 0;
}

.project-visual img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 24px 50px rgba(19, 38, 31, 0.14);
}

.project-visual figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.location-section {
  padding: 62px 0;
  color: var(--white);
  background: #263230;
}

.location-section .section-kicker {
  color: var(--gold-light);
}

.location-section p {
  color: rgba(255, 255, 255, 0.7);
}

.location-grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
}

.map-link {
  display: grid;
  min-height: 84px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  grid-template-columns: auto 1fr auto;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.map-link:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.map-link small,
.map-link strong {
  display: block;
}

.map-link small {
  color: rgba(255, 255, 255, 0.65);
}

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

.transparency-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
}

.transparency-copy {
  padding-inline-start: 30px;
  border-inline-start: 3px solid var(--gold);
  color: var(--muted);
}

.transparency-copy p {
  margin-top: 0;
}

.transparency-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-section {
  background: #edf1ef;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-actions {
  min-width: 350px;
  flex-direction: column;
  margin-top: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(20px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.67);
  background: var(--forest-dark);
  font-size: 12px;
}

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

footer a:hover {
  color: var(--white);
}

.mobile-whatsapp {
  display: none;
}

a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .hero {
    min-height: 78svh;
    max-height: none;
  }

  .hero-media {
    object-position: center 40%;
  }

  .hero-shade {
    background: rgba(8, 25, 21, 0.78);
  }

  .hero-content {
    align-self: flex-end;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .price-line strong {
    font-size: 34px;
  }

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

  .highlight:nth-child(3),
  .highlight:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .project-grid,
  .location-grid,
  .transparency-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .project-visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .transparency-copy {
    padding-inline-start: 20px;
  }

  .contact-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
  }

  .site-header,
  .hero-content,
  .highlights-inner,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-top: 14px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .price-line {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .price-line strong {
    font-size: 32px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .highlight {
    min-height: 94px;
    padding: 18px 14px;
  }

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

  .project-section,
  .transparency-section,
  .contact-section {
    padding: 60px 0;
  }

  h2 {
    font-size: 27px;
  }

  footer {
    align-items: center;
    flex-direction: column;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 6px;
    color: #152018;
    background: var(--gold);
    box-shadow: 0 10px 26px rgba(13, 40, 33, 0.24);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
