/* ============================================================
   ELEVATE BY A.S. — Main Stylesheet
   File: css/style.css
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5e6b8;
  --gold-dim:    #8b6f2e;
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-card:  #161616;
  --black-hover: #1e1e1e;
  --off-white:   #f7f2e8;
  --white:       #ffffff;
  --muted:       #8a8070;
  --border:      rgba(201, 168, 76, 0.18);
  --border-hover:rgba(201, 168, 76, 0.45);
  --radius:      4px;
  --radius-lg:   8px;
  --max-width:   1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", sans-serif;
  background: var(--black);
  color: var(--off-white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── CONTAINER ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* ── GOLD LINE ACCENT ── */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.gold-line.left { margin: 0 0 20px; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

.nav-logo-img img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}

.nav-drawer.open { display: flex; }

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav-drawer ul a {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-drawer ul a:hover { color: var(--gold-light); }

.nav-drawer .nav-cta {
  margin-top: 8px;
  padding: 14px 40px;
  font-size: 12px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--black-soft); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--off-white);
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.section-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  margin-left: 16px;
}

.section-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 40px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 13px 36px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  cursor: pointer;
  margin-left: 14px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--black-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
  filter: brightness(0.88) saturate(0.9);
}

.card:hover .card-img img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.card-wish {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
  color: var(--gold);
}

.card-wish:hover { background: rgba(201, 168, 76, 0.15); }

.card-body { padding: 18px 20px 20px; }

.card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.card-loc {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.card-tag {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 3px 8px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.card-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
}

.card-price span {
  font-size: 11px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  color: var(--muted);
}

.card-rating {
  font-size: 12px;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-rating small { color: var(--muted); font-size: 11px; }

/* ============================================================
   WARM MESSAGE BAND
   ============================================================ */
.message-band {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
  text-align: center;
}

.message-band blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}

.message-band blockquote em { color: var(--gold-light); }

.message-attr {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ============================================================
   TRUST
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.trust-card {
  background: var(--black-card);
  padding: 44px 36px;
  text-align: center;
  transition: background 0.2s;
}

.trust-card:hover { background: var(--black-hover); }

.trust-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-icon svg { width: 22px; height: 22px; }

.trust-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color 0.2s;
}

.testi-card:hover { border-color: var(--border-hover); }

.testi-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
  filter: grayscale(20%);
}

.testi-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--off-white);
}

.testi-loc {
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.5px;
}

/* ============================================================
   HOST CTA
   ============================================================ */
.cta-strip {
  padding: 88px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
    var(--black-soft);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-strip h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 12px;
  line-height: 1.15;
}

.cta-strip h2 em { font-style: italic; color: var(--gold-light); }

.cta-strip p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #070707;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 40px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-weight: 300;
}

.footer-copy em { color: var(--gold-dim); font-style: italic; }

.footer-socials { display: flex; gap: 12px; }

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.social-btn svg { width: 14px; height: 14px; fill: var(--gold-dim); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-inner,
  .section-inner,
  .footer-inner,
  .message-band,
  .cta-strip { padding-left: 28px; padding-right: 28px; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-inner { padding: 12px 20px; }
  .nav-logo-img img { height: 52px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Sections */
  .section { padding: 56px 0; }

  .section-inner,
  .message-band,
  .cta-strip { padding-left: 20px; padding-right: 20px; }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }

  .section-header h2 { font-size: 28px; }
  .section-link { margin-left: 0; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 32px 24px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Message band */
  .message-band { padding: 48px 20px; }

  /* CTA */
  .cta-strip { padding: 64px 20px; }
  .btn-outline { margin-left: 0; margin-top: 12px; display: block; }
  .btn-gold, .btn-outline { width: 100%; text-align: center; padding: 16px 24px; }

  /* Footer */
  .footer-inner { padding: 48px 20px 28px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .nav-drawer ul a { font-size: 26px; }
  .testi-card { padding: 20px; }
  .trust-card { padding: 28px 20px; }
}