/* ============================================
   THE POLISHED ABODE — styles.css v2
   Dark Luxury Direction
   Deep Brown · Cream · Brand Gold · Rose
============================================ */

:root {
  --dark:        #150E0A;
  --dark-2:      #1E1410;
  --dark-3:      #2A1C16;
  --dark-card:   #1A100C;
  --cream:       #FAF0E4;
  --cream-2:     #EDE0CF;
  --cream-3:     #C8B89A;
  --gold:        #C59157;
  --gold-light:  #DDB07A;
  --gold-pale:   #F0DFC0;
  --rose:        #C4848A;
  --rose-light:  #D9A8AC;
  --text-muted:  rgba(250,240,228,0.5);
  --text-dark:   #1A0F0A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', 'Helvetica Neue', sans-serif;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --expo:   cubic-bezier(0.16, 1, 0.3, 1);

  --pad: clamp(80px, 10vw, 130px);
  --px:  clamp(20px, 5vw, 60px);
  --max: 1260px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
ul   { list-style: none; }
a    { text-decoration: none; color: inherit; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

/* CURSOR */
.cursor {
  position: fixed; width: 30px; height: 30px;
  border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.18s var(--ease), background 0.3s;
  mix-blend-mode: screen;
}
.cursor.big {
  transform: translate(-50%,-50%) scale(2.2);
  background: rgba(197,145,87,0.06);
}

/* PRELOADER */
.preloader {
  position: fixed; inset: 0; background: var(--dark);
  z-index: 99999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.8s var(--expo), visibility 0.8s;
}
.preloader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo-img {
  width: 200px; opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--expo) forwards;
}
.preloader-bar-wrap {
  width: 120px; height: 1px;
  background: rgba(197,145,87,0.2); overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; background: var(--gold);
  width: 0; animation: barFill 1.1s 0.5s var(--expo) forwards;
}
@keyframes fadeUp  { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes barFill { to{width:100%} }

/* REVEAL */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.85s var(--expo), transform 0.85s var(--expo);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* CONTAINER */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.text-center { text-align: center; }

/* BUTTONS */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dark); background: var(--gold);
  padding: 15px 36px; border-radius: 1px;
  transition: background 0.3s, transform 0.35s var(--spring), box-shadow 0.3s;
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(197,145,87,0.35);
}
.btn-ghost {
  display: inline-flex; align-items: center;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); border: 1px solid rgba(250,240,228,0.25);
  padding: 14px 36px; border-radius: 1px;
  transition: border-color 0.3s, color 0.3s, transform 0.35s var(--spring);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dark); border: 1.5px solid var(--text-dark);
  padding: 14px 44px; border-radius: 1px;
  transition: background 0.3s, color 0.3s, transform 0.35s var(--spring);
}
.btn-outline-dark:hover {
  background: var(--text-dark); color: var(--gold);
  transform: translateY(-2px);
}

/* EYEBROW / SECTION HEAD */
.eyebrow {
  display: block; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold-light); }

.sec-head {
  text-align: center; max-width: 620px;
  margin: 0 auto clamp(52px,7vw,80px);
}
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem,4.5vw,3.8rem);
  font-weight: 700; line-height: 1.1;
  color: var(--cream); letter-spacing: -0.01em; margin-bottom: 18px;
}
.sec-head h2 em { font-style: italic; color: var(--rose-light); }
.sec-head h2.light { color: var(--cream); }
.sec-head p {
  font-size: 0.97rem; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 0;
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}
.nav.stuck {
  padding: 11px 0;
  background: rgba(21,14,10,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(197,145,87,0.12);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  display: flex; align-items: center; gap: 40px;
}
.nav-logo-link { margin-right: auto; }
.nav-logo-img { height: 58px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 36px; }
.nav-link {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream); opacity: 0.55;
  position: relative; transition: opacity 0.3s, color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover { opacity: 1; color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 400;
  letter-spacing: 0.04em; color: var(--gold);
  transition: color 0.3s; white-space: nowrap;
}
.nav-cta:hover { color: var(--gold-light); }

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1px;
  background: var(--cream); transition: all 0.3s var(--ease);
}

/* MOBILE MENU */
.mob-menu {
  position: fixed; inset: 0; background: var(--dark-2);
  z-index: 2000; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mob-menu.open { opacity: 1; visibility: visible; }
.mob-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  font-size: 1.3rem; color: var(--cream); cursor: pointer;
}
.mob-logo { width: 170px; margin-bottom: 8px; }
.mob-menu ul { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.mob-link {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--cream); letter-spacing: 0.02em;
  transition: color 0.3s;
}
.mob-link:hover { color: var(--gold); }
.mob-call {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dark); background: var(--gold);
  padding: 14px 44px; border-radius: 1px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  max-width: var(--max); margin: 0 auto;
  padding: 130px var(--px) var(--pad);
  position: relative;
}
.hero::before {
  content: ''; position: absolute; top: 15%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,145,87,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-left { position: relative; z-index: 1; }

.hero-tag {
  display: inline-block;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(197,145,87,0.28);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700; line-height: 1.05;
  color: var(--cream); letter-spacing: -0.02em; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--rose-light); display: block; }

.hero-body {
  font-size: 1rem; font-weight: 300;
  line-height: 1.78; color: var(--text-muted);
  max-width: 440px; margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hbadge {
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream-3);
  border: 1px solid rgba(250,240,228,0.1);
  padding: 7px 14px; border-radius: 100px;
}

.hero-right { position: relative; }
.hero-photo-wrap {
  position: relative; border-radius: 2px; overflow: hidden;
  aspect-ratio: 3/4;
}
.hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.hero-photo-wrap:hover .hero-photo { transform: scale(1.04); }
.hero-photo-wrap::before {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(197,145,87,0.2);
  z-index: 2; pointer-events: none; border-radius: 2px;
}
.hero-photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,14,10,0.65) 0%, transparent 50%);
  z-index: 1;
}
.hero-photo-label {
  position: absolute; bottom: 20px; left: 20px; z-index: 3;
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.hero-ring {
  position: absolute; bottom: -40px; right: -40px;
  width: 190px; height: 190px;
  border: 1px solid rgba(197,145,87,0.1);
  border-radius: 50%; z-index: -1;
  animation: spin 28s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* MARQUEE */
.marquee {
  background: var(--dark-2);
  border-top: 1px solid rgba(197,145,87,0.08);
  border-bottom: 1px solid rgba(197,145,87,0.08);
  padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: inline-flex; gap: 32px;
  animation: mscroll 28s linear infinite; white-space: nowrap;
}
.marquee-track span {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(250,240,228,0.45);
}
.marquee-track .sep { color: var(--gold); opacity: 0.65; letter-spacing: 0; }
@keyframes mscroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SERVICES */
.services { padding: var(--pad) 0; background: var(--dark); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(197,145,87,0.07);
}
.svc {
  padding: 44px 32px; background: var(--dark-card);
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.svc::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.45s var(--expo);
}
.svc:hover::after { width: 100%; }
.svc:hover { background: var(--dark-3); }
.svc-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 20px;
}
.svc-n {
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  color: var(--gold); opacity: 0.09; line-height: 1; user-select: none;
}
.svc-ico {
  width: 26px; height: 26px; color: var(--gold); opacity: 0.6; margin-top: 4px;
  transition: opacity 0.3s, transform 0.3s var(--spring);
}
.svc:hover .svc-ico { opacity: 1; transform: scale(1.15); }
.svc h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--cream); margin-bottom: 12px;
}
.svc p {
  font-size: 0.87rem; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
}

/* OUR WORK */
.work { padding: var(--pad) 0; background: var(--dark-2); }
.gallery { display: grid; grid-template-columns: 1.3fr 1fr; gap: 10px; }
.gal-main, .gal-item {
  position: relative; overflow: hidden; border-radius: 2px; cursor: pointer;
}
.gal-main { aspect-ratio: 3/4; }
.gal-stack { display: flex; flex-direction: column; gap: 10px; }
.gal-item { aspect-ratio: 4/3; }
.gal-main img, .gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease); display: block;
}
.gal-main:hover img, .gal-item:hover img { transform: scale(1.05); }
.gal-main::after, .gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,14,10,0.72) 0%, transparent 50%);
}
.gal-cap {
  position: absolute; bottom: 18px; left: 20px; z-index: 2;
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}

/* WHY US */
.why {
  padding: var(--pad) 0; background: var(--dark-3);
  position: relative; overflow: hidden;
}
.why::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 450px; height: 450px;
  border: 1px solid rgba(197,145,87,0.06); border-radius: 50%;
}
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(197,145,87,0.07);
}
.why-card {
  padding: 44px 28px; background: var(--dark-3);
  transition: background 0.4s;
}
.why-card:hover { background: var(--dark-2); }
.why-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--gold); opacity: 0.18; line-height: 1; margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--cream); margin-bottom: 12px;
}
.why-card p {
  font-size: 0.86rem; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
}

/* PROCESS */
.process { padding: var(--pad) 0; background: var(--dark); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.step {
  padding: 44px 40px;
  border-right: 1px solid rgba(197,145,87,0.08);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display); font-size: 5rem; font-weight: 700;
  color: var(--gold); opacity: 0.1; line-height: 1;
  margin-bottom: 20px; user-select: none;
}
.step-line {
  width: 32px; height: 1px;
  background: var(--gold); opacity: 0.4; margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--cream); margin-bottom: 14px;
}
.step p {
  font-size: 0.87rem; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
}

/* SERVICE AREA */
.area { padding: var(--pad) 0; background: var(--dark-2); }
.area-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.area-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3rem); font-weight: 700;
  line-height: 1.1; color: var(--cream);
  letter-spacing: -0.01em; margin: 12px 0 20px;
}
.area-text h2 em { font-style: italic; color: var(--rose-light); }
.area-text p {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.8; color: var(--text-muted); margin-bottom: 32px;
}
.area-cities { display: flex; flex-wrap: wrap; gap: 10px; }
.city {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-3);
  border: 1px solid rgba(250,240,228,0.1);
  padding: 10px 20px; border-radius: 100px;
  opacity: 0; transform: translateY(10px);
  transition: border-color 0.3s, color 0.3s, transform 0.35s var(--spring), opacity 0.5s ease;
}
.city.shown { opacity: 1; transform: translateY(0); }
.city:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.04); }

/* CTA */
.cta { padding: var(--pad) 0; background: var(--cream); text-align: center; }
.cta-inner {
  max-width: 660px; margin: 0 auto; padding: 0 var(--px);
  display: flex; flex-direction: column; align-items: center;
}
.cta-logo { width: 190px; margin-bottom: 28px; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem,5vw,4rem); font-weight: 700;
  line-height: 1.1; color: var(--text-dark);
  letter-spacing: -0.01em; margin-bottom: 20px;
}
.cta-inner h2 em { font-style: italic; color: var(--rose); }
.cta-inner p {
  font-size: 1rem; font-weight: 300;
  line-height: 1.75; color: rgba(26,15,10,0.6);
  margin-bottom: 36px; max-width: 500px;
}
.cta-note {
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(26,15,10,0.3); margin-top: 18px;
}

/* FOOTER */
.footer {
  background: var(--dark-2); padding: 80px 0 32px;
  border-top: 1px solid rgba(197,145,87,0.07);
}
.foot-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px; margin-bottom: 60px;
}
.foot-logo { width: 155px; margin-bottom: 16px; }
.foot-brand p {
  font-size: 0.84rem; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
}
.foot-col h4 {
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a {
  font-size: 0.84rem; color: var(--text-muted);
  transition: color 0.3s;
}
.foot-col ul a:hover { color: var(--cream); }
.foot-phone {
  display: block; font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400;
  color: var(--cream); letter-spacing: 0.02em;
  margin-bottom: 8px; transition: color 0.3s;
}
.foot-phone:hover { color: var(--gold); }
.foot-col p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; }
.foot-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(197,145,87,0.22); padding: 6px 14px; border-radius: 100px;
}
.foot-bottom {
  padding-top: 28px; border-top: 1px solid rgba(197,145,87,0.07);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.foot-bottom p { font-size: 0.74rem; color: rgba(250,240,228,0.22); }
.foot-bottom a { color: var(--gold); }

/* FLOAT BUTTON */
.float-call {
  position: fixed; bottom: 24px; right: 24px;
  display: none; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dark); background: var(--gold);
  padding: 13px 22px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(197,145,87,0.4);
  z-index: 900; transition: transform 0.35s var(--spring), box-shadow 0.3s;
}
.float-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(197,145,87,0.55);
}

/* RESPONSIVE */
@media (max-width: 1060px) {
  .svc-grid   { grid-template-columns: repeat(2,1fr); }
  .why-grid   { grid-template-columns: repeat(2,1fr); }
  .steps      { grid-template-columns: 1fr; }
  .step       { border-right:none; border-bottom:1px solid rgba(197,145,87,0.08); }
  .step:last-child { border-bottom:none; }
  .foot-grid  { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns:1fr; min-height:auto; padding-top:110px; gap:48px; }
  .hero-right { order:-1; }
  .hero-photo-wrap { aspect-ratio:4/3; }
  .gallery { grid-template-columns:1fr; }
  .gal-main { aspect-ratio:4/3; }
  .area-inner { grid-template-columns:1fr; gap:48px; }
  .nav-links, .nav-cta { display:none; }
  .burger { display:flex; }
}
@media (max-width: 640px) {
  .svc-grid   { grid-template-columns:1fr; }
  .why-grid   { grid-template-columns:1fr; }
  .hero-btns  { flex-direction:column; }
  .btn-gold, .btn-ghost { justify-content:center; width:100%; }
  .foot-grid  { grid-template-columns:1fr; }
  .foot-bottom{ flex-direction:column; text-align:center; }
  .float-call { display:flex; }
}

/* Gallery row 2 */
.gal-row2 { grid-template-columns: 1fr 1fr; }
.gal-half {
  position: relative; overflow: hidden;
  border-radius: 2px; cursor: pointer;
  aspect-ratio: 4/3;
}
.gal-half img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease); display: block;
}
.gal-half:hover img { transform: scale(1.05); }
.gal-half::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,14,10,0.72) 0%, transparent 50%);
}
.gal-half .gal-cap {
  position: absolute; bottom: 18px; left: 20px; z-index: 2;
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
@media (max-width: 640px) {
  .gal-row2 { grid-template-columns: 1fr; }
}
