
:root {
  --navy: #10233f;
  --deep: #081d34;
  --gold: #f4c430;
  --gold-dark: #d9a60e;
  --white: #ffffff;
  --light: #f5f7fb;
  --text: #172033;
  --muted: #667085;
  --border: #d9e2ec;
  --shadow: 0 18px 45px rgba(16,35,63,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(16,35,63,.08);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 5% 10px;
}
.logo-link {
  display:flex;
  align-items:center;
  min-width:0;
}
.logo-badge {
  display:none;
}
.logo-badge {
  border: 2px solid var(--gold);
  background: white;
  padding: 5px;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-badge img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  object-position: left center;
  mix-blend-mode: multiply;
}
.logo-wordmark {
  width: 235px;
  max-width: 44vw;
  display: block;
  mix-blend-mode: multiply;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.book-btn {
  background: linear-gradient(135deg, var(--gold), #ffd85f);
  color: var(--navy);
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 10px 24px rgba(244,196,48,.24);
}
.menu-btn {
  border: 2px solid var(--navy);
  background: var(--navy);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  font-size: 1.65rem;
  font-weight: 900;
}
.nav-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 16px 5% 20px;
  background: white;
}
body.menu-open .nav-menu { display: block; }
.nav-menu a {
  display: block;
  padding: 12px 0;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 1px solid var(--border);
}

.hero {
  min-height: 660px;
  background:
    linear-gradient(180deg, rgba(8,29,52,.38), rgba(8,29,52,.82)),
    url('hero-homes.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 6%;
  color: white;
}
.hero-content { max-width: 900px; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .86rem;
}
.hero h1 {
  color: white;
  font-size: clamp(2.55rem, 8vw, 5.2rem);
  line-height: 1.05;
  margin: 14px 0 18px;
}
.hero p {
  color: rgba(255,255,255,.94);
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  max-width: 760px;
  margin: 0 auto;
}
.hero-accent {
  width: 86px;
  height: 3px;
  background: var(--gold);
  margin: 24px auto;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}
.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 900;
  border: 2px solid var(--gold);
  text-align: center;
  min-width: 210px;
}
.button.gold { background: var(--gold); color: var(--navy); }
.button.outline { background: rgba(8,29,52,.58); color: var(--gold); }
.button.dark { background: var(--navy); color: white; border-color: var(--navy); }
.button.white { background: white; color: var(--navy); border-color: white; }
.button.full { width: 100%; }

h1,h2,h3 { color: var(--navy); line-height: 1.15; }
.section { padding: 62px 6%; }
.section-narrow { max-width: 1120px; margin: 0 auto; }
.welcome-card {
  background: white;
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
  border-left: 7px solid var(--gold);
}
.split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: start;
}
.gold-panel {
  background: linear-gradient(135deg, #fff6d9, white);
  border: 1px solid #efd276;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 34px; margin: 14px 0; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 900;
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card {
  background: white; border: 1px solid var(--border); border-radius: 22px;
  padding: 58px 26px 26px; box-shadow: var(--shadow); position: relative;
}
.process-number {
  position: absolute; top: 22px; left: 24px; width: 35px; height: 35px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center; font-weight: 900; color: var(--navy);
}
.book-panel {
  background: var(--navy); color: white; border-radius: 28px; padding: 38px; box-shadow: var(--shadow); text-align: center;
}
.book-panel h2 { color: white; }
.book-panel p { color: rgba(255,255,255,.9); }

.page-hero { background: var(--light); padding: 70px 6% 45px; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.8rem); max-width: 960px; }
.cards, .pricing-grid, .area-grid { display: grid; gap: 22px; }
.cards { grid-template-columns: repeat(2, 1fr); }
.pricing-grid { grid-template-columns: repeat(4, 1fr); }
.area-grid { grid-template-columns: repeat(3, 1fr); }
.card, .price-card, .contact-panel, .form, .note {
  background: white; border: 1px solid var(--border); border-radius: 22px; padding: 28px; box-shadow: var(--shadow);
}
.price-card { text-align: center; }
.price-card.featured { border: 3px solid var(--gold); }
.price-card p { font-size: 2.4rem; font-weight: 900; color: var(--navy); margin: 16px 0; }
.price-card .quote { font-size: 1.4rem; }
.area-grid div {
  background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 22px; font-weight: 900; text-align: center;
}
.form label { display: block; font-weight: 800; margin-bottom: 14px; }
input, select, textarea {
  width: 100%; padding: 13px; margin-top: 6px; border: 1px solid var(--border); border-radius: 12px; font: inherit;
}
.small { color: var(--muted); font-size: .9rem; }
.site-footer {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; background: var(--navy); color: white; padding: 40px 6%;
}
.site-footer h3, .site-footer a { color: white; }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80; background: #25d366; color: white;
  padding: 14px 18px; border-radius: 999px; font-weight: 900; box-shadow: var(--shadow);
}
.whatsapp-float:hover { text-decoration: none; }

@media(min-width: 920px) {
  .nav-menu {
    display: flex !important; justify-content: center; gap: 30px; border-top: 1px solid var(--border); padding: 0 5% 13px;
  }
  .nav-menu a { border-bottom: 0; padding: 0; }
}
@media(max-width: 920px) {
  .logo-wordmark { width: 205px; max-width: 40vw; }
  .logo-badge { width: 72px; height: 72px; }
  .logo-badge img { width: 62px; height: 62px; }
  .book-btn { padding: 13px 22px; }
  .hero { min-height: 660px; }
  .split, .process-grid, .cards, .pricing-grid, .area-grid, .site-footer { grid-template-columns: 1fr; }
}
@media(max-width: 450px) {
  .header-inner { gap: 8px; padding-left: 4%; padding-right: 4%; }
  .logo-link { gap: 8px; }
  .logo-wordmark { width: 150px; max-width: 36vw; }
  .logo-badge { width: 58px; height: 58px; }
  .logo-badge img { width: 49px; height: 49px; }
  .book-btn { padding: 10px 13px; font-size: .95rem; }
  .menu-btn { width: 50px; height: 50px; }
  .button { width: 100%; }
}

.logo-wordmark{
 width:340px!important;
 max-width:60vw!important;
}
.site-header:after{content:'';display:block;height:4px;background:#f4c430;}
