@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap");

:root {
  --navy: #071525;
  --navy-soft: #0d2238;
  --gold: #c9a45f;
  --gold-light: #e5cc96;
  --ivory: #f8f4ec;
  --white: #fff;
  --ink: #17202a;
  --muted: #6c7278;
  --line: rgba(201, 164, 95, 0.35);
  --shadow: 0 24px 70px rgba(2, 13, 24, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.shell { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.5rem, 4.8vw, 4.7rem); letter-spacing: -0.035em; }
h3 { font-size: 1.8rem; }
p { margin: 0 0 1.2rem; }
.lead { color: #4e565e; font-size: 1.08rem; line-height: 1.85; }

.topbar {
  padding: 9px 0;
  color: var(--gold-light);
  background: #020c17;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}
.header {
  position: absolute;
  z-index: 20;
  top: 31px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
}
.logo img { width: 92px; border: 1px solid rgba(201,164,95,.65); }
.nav { display: flex; align-items: center; gap: 34px; color: white; }
.nav > a {
  position: relative;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav > a:not(.button)::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width .25s ease;
}
.nav > a:hover::after, .nav > a.active::after { width: 100%; }
.menu-button { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--gold);
  color: #071525;
  background: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-light); }
.button-outline { color: white; background: transparent; }
.button-outline:hover { color: var(--navy); background: var(--gold); }
.button-dark { color: white; background: var(--navy); border-color: var(--navy); }

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero-media {
  position: absolute;
  inset: 0 0 0 46%;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 51% 18%; }
.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,15,27,1) 0%, rgba(4,15,27,.98) 36%, rgba(4,15,27,.7) 54%, rgba(4,15,27,.1) 100%),
    linear-gradient(0deg, rgba(4,15,27,.62), transparent 38%);
  content: "";
}
.hero::after {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201,164,95,.3);
  border-radius: 50%;
  content: "";
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 860px;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
  padding-top: 115px;
}
.hero h1 span { display: block; color: var(--gold-light); font-style: italic; }
.hero-copy { max-width: 600px; margin: 28px 0 35px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 36px;
  padding-left: 28px;
  border-left: 1px solid var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: .03em;
}

.trust-strip { color: white; background: var(--navy-soft); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--gold-light); font-family: "Cormorant Garamond",serif; font-size: 1.35rem; font-weight: 600; }
.trust-item span { color: rgba(255,255,255,.58); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: 110px 0; }
.section-white { background: white; }
.section-dark { color: white; background: var(--navy); }
.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.portrait-card { position: relative; min-height: 650px; overflow: hidden; box-shadow: var(--shadow); }
.portrait-card img { width: 100%; height: 650px; object-fit: cover; object-position: 50% 18%; }
.portrait-card-poster img { object-position: center top; }
.portrait-card::after { position: absolute; inset: 18px; border: 1px solid rgba(229,204,150,.6); content: ""; }
.signature { margin: 27px 0 5px; font-family: "Cormorant Garamond",serif; font-size: 2.1rem; font-style: italic; }
.title-line { color: var(--gold); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }

.services-head { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 50px; }
.services-head p { max-width: 490px; color: rgba(255,255,255,.65); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(201,164,95,.28); border-left: 1px solid rgba(201,164,95,.28); }
.service-card { min-height: 250px; padding: 38px; border-right: 1px solid rgba(201,164,95,.28); border-bottom: 1px solid rgba(201,164,95,.28); }
.service-num { display: block; margin-bottom: 42px; color: var(--gold); font-family: "Cormorant Garamond",serif; font-size: 1.1rem; }
.service-card p { margin: 14px 0 0; color: rgba(255,255,255,.58); font-size: .9rem; }

.property-showcase { display: grid; grid-template-columns: 1.18fr .82fr; min-height: 620px; background: #ddd5c7; box-shadow: var(--shadow); }
.property-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11,30,49,.05), rgba(11,30,49,.15)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=90") center/cover;
}
.property-visual::after { position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,.7); content: ""; }
.property-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px; color: white; background: var(--navy-soft); }
.property-copy .lead { color: rgba(255,255,255,.65); }
.property-tag { margin-top: 15px; color: var(--gold-light); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }

.testimonial { text-align: center; }
.quote-mark { color: var(--gold); font-family: Georgia,serif; font-size: 5rem; line-height: .8; }
.testimonial h2 { max-width: 850px; margin: 15px auto 30px; }

.cta-band { padding: 85px 0; color: white; background: linear-gradient(100deg,#0b2035,#071525); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-inner h2 { max-width: 730px; }

.page-hero {
  min-height: 520px;
  padding: 235px 0 95px;
  color: white;
  background:
    linear-gradient(90deg, rgba(3,13,24,.97), rgba(3,13,24,.74)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=88") center/cover;
}
.page-hero p { max-width: 670px; margin-top: 24px; color: rgba(255,255,255,.68); font-size: 1.08rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.values { display: grid; gap: 1px; background: #d9d1c3; }
.value { padding: 28px 30px; background: white; }
.value strong { display: block; margin-bottom: 5px; color: var(--navy); font-family: "Cormorant Garamond",serif; font-size: 1.5rem; }
.detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 40px; margin: 35px 0; padding: 0; list-style: none; }
.detail-list li { padding: 12px 0 12px 20px; border-bottom: 1px solid #ddd4c5; position: relative; }
.detail-list li::before { position:absolute; left:0; color:var(--gold); content:"◆"; font-size:.55rem; top:18px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-panel { padding: 48px; color: white; background: var(--navy); }
.contact-item { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-item span { display: block; color: var(--gold); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-item a, .contact-item strong { font-family:"Cormorant Garamond",serif; font-size:1.55rem; font-weight:600; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #4f555a; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #bcb5aa;
  outline: 0;
  background: transparent;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; gap: 12px; align-items: flex-start; color: #666; font-size: .78rem; }
.consent input { margin-top: 5px; accent-color: var(--navy); }

.policy { max-width: 850px; }
.policy h2 { margin: 55px 0 18px; font-size: 2.25rem; }
.policy h3 { margin: 32px 0 12px; font-size: 1.45rem; }
.policy p, .policy li { color: #505860; }

.footer { padding: 75px 0 28px; color: white; background: #020b14; }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 70px; padding-bottom: 55px; }
.footer-logo { width: 106px; margin-bottom: 24px; }
.footer p { max-width: 430px; color: rgba(255,255,255,.55); font-size: .88rem; }
.footer h3 { margin-bottom: 20px; color: var(--gold-light); font-family:"Manrope",sans-serif; font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; }
.footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.65); font-size:.87rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size:.72rem; }

.cookie {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: none;
  width: min(430px, calc(100% - 40px));
  padding: 28px;
  color: white;
  background: #0b1c2e;
  border: 1px solid rgba(201,164,95,.5);
  box-shadow: var(--shadow);
}
.cookie.visible { display: block; }
.cookie h3 { font-family:"Manrope",sans-serif; font-size:.78rem; letter-spacing:.13em; text-transform:uppercase; }
.cookie p { margin: 10px 0 18px; color:rgba(255,255,255,.62); font-size:.78rem; }
.cookie-actions { display:flex; gap:10px; }
.cookie .button { min-height:42px; padding:0 16px; font-size:.65rem; }

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: white;
  background: #1d9b61;
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
  font-weight: 700;
}
.cookie.visible + .whatsapp-float { bottom: 245px; }

@media (max-width: 920px) {
  .header { top: 31px; }
  .nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    color: white;
    background: rgba(3,13,24,.98);
  }
  .nav.open { display: flex; }
  .menu-button { z-index: 2; display: block; padding: 10px; border:0; color:white; background:transparent; font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; }
  .hero-media { inset: 0; opacity: .58; }
  .hero::before { background: linear-gradient(90deg,rgba(4,15,27,.94),rgba(4,15,27,.55)); }
  .hero-content { max-width: 650px; }
  .intro-grid, .split, .contact-grid { grid-template-columns:1fr; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .property-showcase { grid-template-columns:1fr; }
  .property-visual { min-height:480px; }
  .footer-main { grid-template-columns:1fr 1fr; }
}
@media (max-width: 650px) {
  .shell { width:min(100% - 30px,1180px); }
  .topbar { font-size:.58rem; letter-spacing:.09em; }
  .header-inner { min-height:86px; }
  .logo img { width:72px; }
  .hero, .hero-content { min-height:760px; }
  .hero-content { padding-top:100px; }
  .hero h1 { font-size:3.75rem; }
  .hero-note { display:none; }
  .actions { align-items:stretch; flex-direction:column; }
  .section { padding:78px 0; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .trust-item:nth-child(2) { border-right:0; }
  .services-head, .cta-inner { align-items:flex-start; flex-direction:column; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:auto; }
  .portrait-card, .portrait-card img { min-height:520px; height:520px; }
  .property-copy { padding:42px 28px; }
  .property-visual { min-height:380px; }
  .page-hero { min-height:470px; padding-top:205px; }
  .detail-list, .form { grid-template-columns:1fr; }
  .field-full { grid-column:auto; }
  .contact-panel { padding:32px 25px; }
  .footer-main { grid-template-columns:1fr; gap:35px; }
  .footer-bottom { flex-direction:column; }
}
