:root {
  --navy: #07162b;
  --navy-2: #0b1e38;
  --navy-3: #12284a;
  --navy-soft: #1a355c;
  --gold: #c59d5b;
  --gold-2: #d4b06e;
  --gold-dim: #9a7a3e;
  --ivory: #eeeae4;
  --paper: #f4f0e8;
  --paper-2: #fffdf8;
  --ink: #141c28;
  --muted: #5e6774;
  --line: rgba(197, 157, 91, 0.38);
  --line-soft: rgba(7, 22, 43, 0.1);
  --shadow: 0 18px 50px rgba(7, 22, 43, 0.16);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --brand: "Jost", "Manrope", sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; letter-spacing: 0.01em; line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.gold-line {
  width: 72px; height: 1px; background: var(--gold); margin: 18px 0 22px; border: 0;
}
.eyebrow {
  font-family: var(--brand);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.muted { color: var(--muted); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--brand);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-ghost {
  background: transparent; color: var(--ivory); border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--navy); }
.btn-navy {
  background: var(--navy); color: var(--ivory); border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-3); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 22, 43, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  min-height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ivory);
  flex-shrink: 0;
}
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand span {
  font-family: var(--brand);
  font-weight: 300;
  letter-spacing: 0.42em;
  font-size: 0.95rem;
  padding-left: 2px;
}
.site-nav {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.site-nav a {
  color: var(--ivory);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  opacity: 0.82;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover, .site-nav a.is-active {
  opacity: 1; color: var(--gold-2);
  border-bottom-color: var(--gold);
}
.header-cta { margin-left: 8px; min-height: 40px; padding: 0 16px; font-size: 0.72rem; }
.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; border: 1px solid var(--line);
  background: transparent; color: var(--ivory); cursor: pointer;
}

/* Hero */
.hero {
  position: relative; min-height: 88vh;
  display: grid; place-items: center;
  color: var(--ivory);
  background: var(--navy) center/cover no-repeat;
  isolation: isolate;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,22,43,0.35) 0%, rgba(7,22,43,0.55) 45%, rgba(7,22,43,0.88) 100%),
    linear-gradient(90deg, rgba(7,22,43,0.45), transparent 55%);
  z-index: -1;
}
.hero-inner { text-align: center; padding: 80px 20px 64px; }
.hero-logo { width: min(280px, 70vw); margin: 0 auto 18px; }
.hero h1 {
  font-family: var(--brand);
  font-weight: 300;
  letter-spacing: 0.5em;
  font-size: clamp(2rem, 6vw, 4.2rem);
  margin: 0 0 8px 18px; /* optical center for tracking */
}
.hero .gold-line { margin-inline: auto; background: var(--gold); }
.hero-latin {
  font-family: var(--brand);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-2);
  margin: 0 0 10px;
}
.slogan {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--ivory);
  opacity: 0.92;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 88px 0; }
.section-navy { background: var(--navy); color: var(--ivory); }
.section-navy .muted { color: rgba(238,234,228,0.7); }
.section-split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start;
}
.lead { font-size: 1.12rem; max-width: 62ch; }
.legal-note {
  font-size: 0.86rem; color: var(--muted);
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 16px;
  margin: 22px 0 0;
}

/* Cards / grid */
.grid-3, .grid-4, .catalog-grid {
  display: grid; gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.catalog-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}
.icon-card { padding: 28px 26px; }
.icon-card .num {
  font-family: var(--brand); color: var(--gold); letter-spacing: 0.2em; font-size: 0.78rem;
}
.icon-card h3 { margin-top: 10px; }
.object-card { overflow: hidden; display: flex; flex-direction: column; background: var(--paper-2); }
.object-card .photo {
  position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--navy);
}
.object-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.place-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(7, 22, 43, 0.84);
  color: var(--ivory);
  font-family: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  padding: 8px 12px;
  border: 1px solid var(--line);
}
.invite {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin: 28px 0 32px;
}
.invite article {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 26px 24px;
}
.invite .more {
  display: inline-block; margin-top: 8px;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  font-size: 0.88rem;
}
.sample-note {
  font-family: var(--serif); font-style: italic;
  font-size: 1.35rem; color: var(--gold-2); margin: 0 0 12px;
}
.object-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.object-card:hover img { transform: scale(1.04); }
.object-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.object-card .type {
  font-family: var(--brand); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dim);
}
.object-card h3 { font-size: 1.35rem; margin: 0; }
.object-card .meta { font-size: 0.9rem; color: var(--muted); }
.object-card .price {
  margin-top: auto; padding-top: 12px;
  font-family: var(--serif); font-size: 1.45rem; color: var(--navy);
}

/* Filters */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 32px;
}
.filters button, .filters select {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  min-height: 40px; padding: 0 14px;
  font-family: var(--brand); font-size: 0.78rem; letter-spacing: 0.08em;
  cursor: pointer;
}
.filters button.is-on, .filters button:hover { background: var(--navy); color: var(--ivory); border-color: var(--navy); }

/* Object page */
.object-hero { display: grid; grid-template-columns: 1.25fr 0.95fr; min-height: 70vh; align-items: stretch; }
.object-hero .photo { background: var(--navy) center/cover no-repeat; min-height: 420px; }
.object-hero .info {
  background: var(--navy); color: var(--ivory);
  padding: 56px 44px; display: flex; flex-direction: column; justify-content: center;
}
.object-hero .price { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-2); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.spec-table th, .spec-table td { padding: 12px 0; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
.spec-table th { color: var(--muted); font-weight: 500; width: 42%; padding-right: 16px; }

/* Presence / about */
.presence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.presence-card {
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 26px 22px;
  min-height: 168px;
  display: flex; flex-direction: column; gap: 8px;
}
.presence-card .net {
  font-family: var(--brand); letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 0.72rem; color: var(--gold-dim);
}
.presence-card h3 { margin: 0; }
.presence-card p { font-size: 0.92rem; color: var(--muted); margin: 0; flex: 1; }
.presence-card a.more { color: var(--navy); letter-spacing: 0.08em; font-size: 0.82rem; border-bottom: 1px solid var(--gold); width: fit-content; padding-bottom: 2px; }

/* Forms */
form.lead { display: grid; gap: 14px; max-width: 520px; }
label { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--muted); }
input, select, textarea {
  width: 100%; border: 1px solid var(--line-soft);
  background: var(--paper-2); color: var(--ink);
  padding: 12px 14px; font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: var(--muted); }
.check input { width: auto; margin-top: 4px; }
.form-ok, .form-err { font-size: 0.92rem; }
.form-ok { color: #2c6b4a; }
.form-err { color: #8a2a2a; }

/* Footer */
.site-footer {
  background: var(--navy); color: var(--ivory);
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.site-footer a { color: var(--ivory); opacity: 0.85; }
.site-footer a:hover { color: var(--gold-2); opacity: 1; }
.footer-brand img { width: 160px; margin-bottom: 12px; }
.legal-tiny { font-size: 0.78rem; color: rgba(238,234,228,0.62); max-width: 80ch; }
.copy { border-top: 1px solid var(--line); padding-top: 18px; font-size: 0.8rem; color: rgba(238,234,228,0.55); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 72px 1fr; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid var(--line-soft);
}
.step .n {
  font-family: var(--brand); color: var(--gold); letter-spacing: 0.16em; font-size: 0.9rem;
}

@media (max-width: 960px) {
  .grid-3, .grid-4, .catalog-grid, .presence-grid, .section-split, .object-hero, .footer-grid, .invite {
    grid-template-columns: 1fr;
  }
  .site-nav, .header-cta { display: none; }
  .site-header.is-open .site-nav {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 76px;
    background: var(--navy); padding: 12px 20px 20px; border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: grid; place-items: center; }
  .object-hero .info { padding: 32px 22px; }
  .section { padding: 56px 0; }
}
