:root {
  --navy-dark: #030b16;
  --navy: #071c36;
  --navy-soft: #0b2744;
  --gold: #d8b56c;
  --white: #f7f5f2;
  --muted: rgba(255,255,255,.72);
  --border: rgba(216,181,108,.22);
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--navy-dark); color: var(--white); font-family: Arial, sans-serif; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* LEFT BRAND MENU */
.brand-rail {
  position: fixed; top: 24px; left: 24px; bottom: 24px; width: 138px; z-index: 100; overflow: hidden;
  background: radial-gradient(circle at top, rgba(216,181,108,.12), transparent 38%), linear-gradient(180deg, rgba(3,11,22,.88), rgba(7,28,54,.76));
  border: 1px solid var(--border); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  transition: width .55s cubic-bezier(.22,1,.36,1), height .45s ease;
}
.brand-rail:hover, .brand-rail.open { width: 330px; }
.brand-logo {
  position:relative;
  top: auto;
  left: auto;
  display: block;
  width: 150px;
  max-width: calc(100% - 24px);
  height: auto;
  margin: 8px auto 0;
  z-index: 3;
}
.menu-button {
  position: absolute; top: 150px; left: 34px; width: 68px; height: 68px;
  border: 1px solid rgba(216,181,108,.42); background: rgba(255,255,255,.035); backdrop-filter: blur(14px);
  cursor: pointer; transition: .35s ease;
}
.menu-button:hover { transform: scale(1.06); box-shadow: 0 0 28px rgba(216,181,108,.2); background: rgba(216,181,108,.08); }
.menu-button span { display: block; width: 30px; height: 2px; background: var(--gold); margin: 8px auto; transition: .35s ease; }
.brand-rail.open .menu-button span:first-child { transform: translateY(5px) rotate(45deg); }
.brand-rail.open .menu-button span:last-child { transform: translateY(-5px) rotate(-45deg); }
.drawer-menu {
  position: absolute; top: 220px; left: 0; width: 330px;
  display: flex; flex-direction: column; opacity: 0; transform: translateX(-24px); pointer-events: none; transition: .45s ease;
}
.brand-rail:hover .drawer-menu, .brand-rail.open .drawer-menu { opacity: 1; transform: translateX(0); pointer-events: auto; }
.drawer-menu a {
  position: relative; display: block; padding: 14px 34px; color: rgba(255,255,255,.78);
  font-size: 12px; text-transform: uppercase; letter-spacing: 2.5px; white-space: nowrap; transition: .35s ease;
}
.drawer-menu a::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: var(--gold); transform: scaleY(0); transition: .35s ease; }
.drawer-menu a:hover { color: var(--gold); background: rgba(255,255,255,.045); padding-left: 46px; }
.drawer-menu a:hover::before { transform: scaleY(1); }
.drawer-line { height: 1px; background: rgba(216,181,108,.18); margin: 12px 34px; }
.drawer-menu .small-link { display: block; color: var(--gold); font-size: 11px; opacity: 1; visibility: visible; }

/* GENERAL */
main { width: 100%; }
.section-panel { position: relative; min-height: 100vh; }
.section-inner { padding: 130px 8% 130px 420px; position: relative; z-index: 2; }
.eyebrow { color: var(--gold); font-size: 13px; letter-spacing: 6px; text-transform: uppercase; margin-bottom: 24px; }
h1, h2, h3 { font-family: Georgia, serif; font-weight: 400; }
h1 { font-size: clamp(58px, 7vw, 110px); line-height: .92; letter-spacing: -2px; max-width: 860px; }
h2 { font-size: clamp(42px, 5vw, 76px); line-height: 1; letter-spacing: -1px; max-width: 940px; }
h3 { font-size: 38px; }
.section-text { margin-top: 32px; max-width: 760px; color: var(--muted); font-size: 21px; line-height: 1.75; }

/* HERO */
.hero { overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url("assets/images/hero.png"); background-size: cover; background-position: center; transform: scale(1.04); animation: slowZoom 24s ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,11,22,.92) 0%, rgba(3,11,22,.74) 42%, rgba(3,11,22,.25) 100%), linear-gradient(0deg, rgba(3,11,22,.58), rgba(3,11,22,.08)); }
.hero-content { position: relative; z-index: 2; min-height: 100vh; padding-left: 420px; padding-right: 8%; display: flex; flex-direction: column; justify-content: center; animation: fadeUp 1s ease forwards; }
.hero-subtitle { margin-top: 34px; color: rgba(255,255,255,.84); font-size: 30px; }
.hero-actions { margin-top: 58px; display: flex; gap: 18px; flex-wrap: wrap; }
.btn-primary, .btn-secondary, .button { display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: 20px 38px; text-transform: uppercase; letter-spacing: 3px; font-size: 12px; transition: .35s ease; }
.btn-primary { color: var(--gold); border: 1px solid rgba(216,181,108,.72); background: rgba(255,255,255,.035); backdrop-filter: blur(12px); }
.btn-primary span { margin-left: 16px; transition: .35s ease; }
.btn-primary:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); box-shadow: 0 0 36px rgba(216,181,108,.25); }
.btn-primary:hover span { transform: translateX(8px); }
.btn-secondary { color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.025); }
.btn-secondary:hover { color: var(--gold); border-color: rgba(216,181,108,.55); }
.scroll-indicator { position: absolute; bottom: 36px; right: 48px; z-index: 3; color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.scroll-indicator span { display: block; width: 1px; height: 44px; background: var(--gold); margin: 0 auto 12px; }

/* COLLECTION */
.collection { background: radial-gradient(circle at top right, rgba(216,181,108,.08), transparent 32%), linear-gradient(180deg, #071c36 0%, #030b16 100%); }
.house-grid { margin-top: 72px; display: grid; grid-template-columns: 1.3fr .85fr .85fr; gap: 24px; }
.house-card { min-height: 500px; background: rgba(255,255,255,.035); border: 1px solid rgba(216,181,108,.2); backdrop-filter: blur(18px); overflow: hidden; transition: .35s ease; }
.house-card:hover { transform: translateY(-8px); box-shadow: 0 0 44px rgba(216,181,108,.12); border-color: rgba(216,181,108,.42); }
.card-image { height: 270px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: .6s ease; }
.house-card:hover .card-image img { transform: scale(1.06); }
.card-content { padding: 34px; }
.status { display: inline-block; color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.card-content h3 { margin-bottom: 18px; }
.card-content p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.mini-specs { margin: 28px 0; display: flex; gap: 10px; flex-wrap: wrap; }
.mini-specs span { border: 1px solid rgba(216,181,108,.22); padding: 9px 12px; color: rgba(255,255,255,.78); font-size: 12px; }
.card-link { color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; }
.coming-soon { height: 270px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(3,11,22,.85), rgba(7,28,54,.88)); color: var(--gold); font-family: Georgia, serif; font-size: 30px; }

/* PROJECT */
.project { background: linear-gradient(180deg, #030b16, #071c36); }
.project-header { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; }
.spec-strip { margin: 70px 0 44px; display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid rgba(216,181,108,.22); background: rgba(255,255,255,.035); backdrop-filter: blur(18px); }
.spec-strip div { padding: 28px 18px; text-align: center; border-right: 1px solid rgba(216,181,108,.18); }
.spec-strip div:last-child { border-right: none; }
.spec-strip strong { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 34px; }
.spec-strip span { color: rgba(255,255,255,.68); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.project-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; }
.project-info { border: 1px solid rgba(216,181,108,.22); background: rgba(255,255,255,.035); backdrop-filter: blur(18px); padding: 34px; }

/* PROJECT VISUALS */
.project-visuals { min-height: 580px; position: relative; }
.visual-set { display: none; min-height: 580px; height: 100%; }
.visual-set.active { display: grid; }
.visual-set[data-visual="plan"] { grid-template-rows: repeat(3, 1fr); gap: 0; }
.visual-set[data-visual="plan"] img { width: 100%; height: 100%; object-fit: cover; border: 1px solid rgba(216,181,108,.22); }
.visual-set[data-visual="layout"] { place-items: center; border: none; background: transparent; padding: 0; transform: translateX(-55px); }
.visual-set[data-visual="layout"] img { width: 200%; max-width: 200%; max-height: 870px; height: auto; object-fit: contain; border: none; box-shadow: none; }
.visual-set[data-visual="tech"], .visual-set[data-visual="price"] { place-items: center; border: 1px solid rgba(216,181,108,.22); background: rgba(255,255,255,.035); padding: 28px; }
.visual-set[data-visual="tech"] img, .visual-set[data-visual="price"] img { max-width: 100%; max-height: 760px; width: auto; height: auto; object-fit: contain; }
.visual-set img { cursor: pointer; transition: .45s ease; }
.visual-set img:hover { transform: scale(1.015); }

/* TABS */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.tab-button { border: 1px solid rgba(216,181,108,.28); color: rgba(255,255,255,.74); background: transparent; padding: 12px 18px; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; transition: .35s ease; }
.tab-button.active, .tab-button:hover { color: var(--navy); background: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content h3 { margin-bottom: 24px; }
.tab-content p, .tab-content li { color: var(--muted); font-size: 17px; line-height: 1.7; }
.tab-content ul { margin-top: 22px; padding-left: 20px; }
.price-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.price-boxes div { border: 1px solid rgba(216,181,108,.28); padding: 24px; }
.price-boxes strong { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 34px; }
.price-boxes span { text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.7); font-size: 12px; }

/* ABOUT */
.about { background: radial-gradient(circle at top left, rgba(216,181,108,.08), transparent 30%), linear-gradient(180deg, #071c36, #030b16); }
.values-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.values-grid div { border: 1px solid rgba(216,181,108,.2); background: rgba(255,255,255,.035); padding: 34px; transition: .35s ease; }
.values-grid div:hover { transform: translateY(-6px); border-color: rgba(216,181,108,.42); }
.values-grid span { color: var(--gold); letter-spacing: 3px; }
.values-grid h3 { margin: 22px 0 16px; font-size: 32px; }
.values-grid p { color: var(--muted); line-height: 1.6; }

/* CONTACT */
.contact { background: linear-gradient(90deg, rgba(3,11,22,.95), rgba(7,28,54,.9)), url("assets/images/hero.png") center / cover no-repeat; }
.contact-layout { margin-top: 70px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.contact-card, .contact-form { border: 1px solid rgba(216,181,108,.22); background: rgba(255,255,255,.045); backdrop-filter: blur(18px); padding: 38px; }
.contact-card h3 { margin-bottom: 28px; }
.contact-card p { color: var(--muted); margin-bottom: 16px; }
.contact-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.contact-form { display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 9px; color: rgba(255,255,255,.82); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; }
input, select, textarea { width: 100%; border: 1px solid rgba(216,181,108,.22); background: rgba(3,11,22,.55); color: var(--white); padding: 15px 16px; font: inherit; }
textarea { min-height: 130px; resize: vertical; }
small { color: rgba(255,255,255,.5); }

/* FLOATING WHATSAPP */
.whatsapp-float { position: fixed; right: 28px; bottom: 28px; z-index: 90; padding: 16px 20px; border: 1px solid rgba(216,181,108,.55); background: rgba(4,18,39,.72); color: var(--gold); backdrop-filter: blur(16px); text-transform: uppercase; letter-spacing: 2px; font-size: 11px; transition: .35s ease; }
.whatsapp-float:hover { background: var(--gold); color: var(--navy); transform: translateY(-4px); box-shadow: 0 0 28px rgba(216,181,108,.25); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(3,11,22,.92); backdrop-filter: blur(18px); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border: 1px solid rgba(216,181,108,.35); box-shadow: 0 0 60px rgba(0,0,0,.45); }
.lightbox-close { position: absolute; top: 28px; right: 34px; width: 54px; height: 54px; border: 1px solid rgba(216,181,108,.45); background: rgba(255,255,255,.04); color: var(--gold); font-size: 36px; cursor: pointer; transition: .3s ease; }
.lightbox-close:hover { background: var(--gold); color: var(--navy); }

/* REVEAL + ANIMATIONS */
.reveal { opacity: 0; transform: translateY(34px); transition: 1s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes slowZoom { from { transform: scale(1.04); } to { transform: scale(1.10); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }

/* TABLET */
@media (max-width: 1100px) {
  .brand-rail { top: 14px; left: 14px; right: 14px; bottom: auto; width: auto; height: 88px; }
  .brand-rail:hover, .brand-rail.open { width: auto; height: 560px; }
  .brand-logo { top: 18px; left: 22px; width: 90px; }
  .menu-button { top: 16px; right: 20px; left: auto; width: 56px; height: 56px; }
  .drawer-menu { top: 105px; width: 100%; }
  .drawer-menu a { padding: 14px 28px; }
  .hero-content { padding-left: 7%; padding-right: 7%; padding-top: 120px; }
  .section-inner { padding: 110px 7%; }
  .house-grid, .project-layout, .values-grid, .contact-layout { grid-template-columns: 1fr; }
  .spec-strip { grid-template-columns: repeat(2, 1fr); }
  .project-header { flex-direction: column; align-items: flex-start; }
  .visual-set[data-visual="layout"] { transform: none; }
  .visual-set[data-visual="layout"] img { width: 100%; max-width: 100%; }
}

/* MOBILE */
@media (max-width: 700px) {
  .hero-content { padding-left: 24px; padding-right: 24px; padding-top: 140px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(3,11,22,.70) 0%, rgba(3,11,22,.78) 50%, rgba(3,11,22,.95) 100%); }
  h1 { font-size: 48px; line-height: .98; letter-spacing: -1px; }
  h2 { font-size: 40px; line-height: 1.05; }
  h3 { font-size: 30px; }
  .eyebrow { font-size: 11px; letter-spacing: 4px; }
  .hero-subtitle { font-size: 21px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .scroll-indicator { display: none; }
  .section-inner { padding: 95px 24px; }
  .section-text { font-size: 18px; line-height: 1.65; }
  .house-grid { gap: 20px; }
  .card-image, .coming-soon { height: 240px; }
  .card-content { padding: 26px; }
  .mini-specs { flex-direction: column; }
  .spec-strip { grid-template-columns: 1fr; }
  .spec-strip div { border-right: none; border-bottom: 1px solid rgba(216,181,108,.18); }
  .project-visuals, .visual-set { min-height: auto; }
  .visual-set[data-visual="plan"] { grid-template-rows: none; }
  .visual-set[data-visual="plan"] img { height: auto; }
  .project-info { padding: 24px; }
  .tabs { flex-direction: column; }
  .tab-button { width: 100%; }
  .price-boxes { grid-template-columns: 1fr; }
  .contact-card, .contact-form { padding: 26px; }
  input, select, textarea { font-size: 16px; }
  .whatsapp-float { right: 18px; bottom: 18px; padding: 13px 16px; font-size: 10px; }
}/* FOOTER */

.site-footer {

  background:

    radial-gradient(circle at top, rgba(216,181,108,.08), transparent 36%),

    linear-gradient(180deg, #030b16 0%, #020711 100%);

  border-top: 1px solid rgba(216,181,108,.22);

  padding: 90px 8% 42px 420px;

}

.footer-inner {

  max-width: 1200px;

}

.footer-brand {

  margin-bottom: 70px;

}

.footer-brand img {

  width: 140px;

  margin-bottom: 28px;

}

.footer-brand p {

  color: rgba(255,255,255,.72);

  font-size: 24px;

  line-height: 1.45;

  margin-bottom: 18px;

}

.footer-brand span {

  color: var(--gold);

  font-size: 13px;

  letter-spacing: 4px;

  text-transform: uppercase;

}

.footer-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 46px;

  padding: 48px 0;

  border-top: 1px solid rgba(216,181,108,.18);

  border-bottom: 1px solid rgba(216,181,108,.18);

}

.footer-column {

  display: flex;

  flex-direction: column;

  gap: 16px;

}

.footer-column h4 {

  color: var(--white);

  font-size: 13px;

  letter-spacing: 4px;

  text-transform: uppercase;

  margin-bottom: 12px;

}

.footer-column a,

.footer-column span {

  color: rgba(255,255,255,.62);

  font-size: 17px;

  line-height: 1.5;

  transition: .3s ease;

}

.footer-column a:hover {

  color: var(--gold);

  transform: translateX(6px);

}

.footer-bottom {

  padding-top: 34px;

}

.footer-bottom p {

  color: rgba(255,255,255,.46);

  font-size: 14px;

  line-height: 1.7;

  margin-bottom: 8px;

}

/* FOOTER RESPONSIVE */

@media (max-width: 1100px) {

  .site-footer {

    padding: 80px 7% 38px;

  }

  .footer-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}

@media (max-width: 700px) {

  .site-footer {

    padding: 70px 24px 34px;

  }

  .footer-brand img {

    width: 120px;

  }

  .footer-brand p {

    font-size: 22px;

  }

  .footer-grid {

    grid-template-columns: 1fr 1fr;

    gap: 36px 24px;

  }

  .footer-column a,

  .footer-column span {

    font-size: 16px;

  }

  .footer-bottom p {

    font-size: 13px;

  }

}
/* LEGAL PAGES */

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(216,181,108,.08), transparent 32%),
    linear-gradient(180deg, #030b16 0%, #071c36 100%);
  padding: 80px 8%;
}

.legal-back {
  display: inline-block;
  color: var(--gold);
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h1 {
  margin-bottom: 46px;
}

.legal-content h2 {
  font-size: 34px;
  margin-top: 46px;
  margin-bottom: 18px;
}

.legal-content p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.8;
}

.legal-updated {
  margin-top: 60px;
  color: var(--gold) !important;
}

@media (max-width: 700px) {
  .legal-page {
    padding: 60px 24px;
  }

  .legal-content h2 {
    font-size: 28px;
  }

  .legal-content p {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .brand-rail:hover {
    height: 88px;
  }

  .brand-rail.open,
  .brand-rail.open:hover {
    height: 560px;
  }

  .brand-rail:hover .drawer-menu {
    opacity: 0;
    transform: translateX(-24px);
    pointer-events: none;
  }

  .brand-rail.open .drawer-menu,
  .brand-rail.open:hover .drawer-menu {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}
@media (hover: none) and (pointer: coarse) {
  .brand-rail:hover {
    height: 88px !important;
  }

  .brand-rail:hover .drawer-menu {
    opacity: 0 !important;
    transform: translateX(-24px) !important;
    pointer-events: none !important;
  }

  .brand-rail.open,
  .brand-rail.open:hover {
    height: 560px !important;
  }

  .brand-rail.open .drawer-menu,
  .brand-rail.open:hover .drawer-menu {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }
}