/* ============================================================
   LOVE & FLOAT NJ — MAIN STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a96e;
  --gold-dark: #a8863a;
  --gold-light: #e8d5b0;
  --gold-pale: #f5eedd;
  --dark: #1a1710;
  --text: #2d2520;
  --text-muted: #7d6e63;
  --bg: #faf6f1;
  --bg-alt: #f2e8de;
  --bg-dark: #1a1710;
  --card: #ffffff;
  --border: #e5d8cc;
  --white: #ffffff;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.13);
  --radius: 6px;
  --radius-lg: 12px;
  --trans: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.8; }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 600; color: var(--text); }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); }
.text-center { text-align: center; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:absolute; top:-40px; left:0; background:var(--gold); color:var(--dark); padding:8px 16px; z-index:100; text-decoration:underline; }
.skip-link:focus { top:0; }

/* --- Section Labels --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after { content: '✦'; font-size: 0.6rem; opacity: 0.7; }
.section-title { position: relative; margin-bottom: 20px; }
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 18px;
}
.text-center .section-title::after { margin-left: auto; margin-right: auto; }
.section-subtitle {
  font-size: 1.02rem;
  max-width: 580px;
  color: var(--text-muted);
  margin-bottom: 56px;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(169,134,58,0.32);
}
.btn-outline { border: 1.5px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-outline-dark { border: 1.5px solid var(--dark); color: var(--dark); background: transparent; }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--trans);
}
.nav.scrolled {
  background: rgba(250,246,241,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--trans);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }
.nav.scrolled .nav-logo { color: var(--dark); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--trans);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--dark);
  transition: var(--trans);
}
.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(169,134,58,0.28);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: var(--trans); }
.nav.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay backdrop */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 100vw);
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 20px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text); font-size: 0.95rem; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-split {
  text-align: left;
  justify-content: space-between;
  padding: 80px 0;
  gap: 60px;
}
.hero-left {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 28px;
}
.hero-right {
  flex: 1;
  position: relative;
  padding-right: 28px;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  width: fit-content;
}
.hero h1 { color: var(--white); margin-bottom: 20px; font-weight: 700; text-align: left; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 44px;
  line-height: 1.8;
  text-align: left;
}
.hero-actions { justify-content: flex-start; }
.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 9/11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-nav {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--trans);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: rgba(0,0,0,0.6); transform: scale(1.1); }
.carousel-indicators {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--trans);
}
.indicator.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroScroll 2.4s ease-in-out infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 36px; background: rgba(255,255,255,0.25); }
@keyframes heroScroll {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@media (max-width: 1024px) {
  .hero-split { flex-direction: column; text-align: center; }
  .hero-left { padding-left: 0; width: 100%; }
  .hero-right { padding-right: 0; width: 100%; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero h1, .hero-sub { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-carousel { aspect-ratio: auto; height: 400px; }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.service-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img .img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f2e8de, #e8ddd5);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.service-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--gold);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-num-bg {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: -10px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); }
.service-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; margin-bottom: 20px; }
.service-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: var(--trans);
}
.service-card .link-arrow::after { content: '\2192'; }
.service-card .link-arrow:hover { gap: 10px; }

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Flip layout — image on right */
.about-split.flip .about-img-wrap { order: 2; }
.about-split.flip .about-text { order: 1; }

.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main.landscape { aspect-ratio: 16/9; }
.about-img-main .img-placeholder {
  width: 100%; min-height: 480px; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f2e8de, #e5d5c2);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-accent-box {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--dark);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-accent-box .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-accent-box .label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.about-text { display: flex; flex-direction: column; gap: 18px; }
.about-text p { font-size: 0.97rem; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin: 8px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.about-feature-icon {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-head);
}
.about-feature-text h4 { font-size: 0.9rem; margin-bottom: 2px; }
.about-feature-text p { font-size: 0.85rem; }

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  margin-top: 20px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.step-item { text-align: center; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 1.5px solid var(--gold);
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-item p { font-size: 0.88rem; }

/* ============================================================
   REVIEWS / COMING SOON
   ============================================================ */
.reviews-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 56px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--card);
}
.reviews-placeholder .rp-line {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 28px;
}
.reviews-placeholder .rp-dot {
  width: 36px;
  height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
}
.reviews-placeholder h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--dark);
}
.reviews-placeholder p { font-size: 0.92rem; margin-bottom: 8px; }
.reviews-placeholder .rp-actions { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--card);
  transition: var(--trans);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-pale);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f2e8de, #e5d5c2);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,23,16,0.72), transparent 55%);
  opacity: 0;
  transition: var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: var(--white); font-size: 0.85rem; font-weight: 500; line-height: 1.3; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  color: rgba(255,255,255,0.6);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--trans);
  font-weight: 300;
  letter-spacing: 0;
}
.lightbox-close:hover { color: var(--white); }

/* ============================================================
   OFFERS CARDS
   ============================================================ */
.offer-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.offer-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.offer-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.offer-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.offer-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.offer-card p { font-size: 0.9rem; margin-bottom: 20px; }
.offer-highlight {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.offer-banner {
  background: linear-gradient(135deg, #1c1912 0%, #2a1f14 100%);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.offer-banner::before {
  content: '✦';
  position: absolute;
  font-size: 14rem;
  color: var(--gold);
  opacity: 0.04;
  right: 80px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  pointer-events: none;
}
.offer-banner h3 { color: var(--white); margin-bottom: 10px; font-size: 1.8rem; }
.offer-banner p { color: rgba(255,255,255,0.6); max-width: 480px; }
.offer-code {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201,169,110,0.12);
  border: 1px dashed rgba(201,169,110,0.5);
  padding: 11px 20px;
  border-radius: var(--radius);
  margin-top: 18px;
}
.offer-code span {
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--gold-light); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
  gap: 16px;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 26px; height: 26px; min-width: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 300;
  transition: var(--trans);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 28px 24px; font-size: 0.93rem; color: var(--text-muted); line-height: 1.85; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}
.contact-item h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 5px; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--text-muted); }
.contact-item a:hover { color: var(--gold-dark); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-muted); padding: 9px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--dark); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--card);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 4px; }
.form-success { display: none; background: #f6f3ee; border: 1.5px solid var(--gold-light); border-radius: var(--radius); padding: 20px; text-align: center; color: var(--text); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.55); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .nav-logo { margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.86rem; line-height: 1.85; margin-bottom: 24px; }
.footer-social { display: flex; gap: 16px; align-items: center; }
.social-link {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  transition: var(--trans);
}
.social-link:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); }
.footer-col h5 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 84px;
  background: linear-gradient(135deg, #1c1912 0%, #2a1e18 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 16px auto 0; font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,0.38); margin-bottom: 20px; letter-spacing: 0.08em; }
.breadcrumb a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(201,169,110,0.7); }

/* ============================================================
   AREAS TAG CLOUD
   ============================================================ */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.area-tag {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--card);
  transition: var(--trans);
}
.area-tag:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-pale); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1c1912, #2a1e14);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '✦';
  position: absolute;
  font-size: 20rem;
  color: rgba(201,169,110,0.03);
  left: 2%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 36px; }

/* ============================================================
   PROMO BANNER (top of contact page)
   ============================================================ */
.promo-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 14px 0;
  text-align: center;
}
.promo-bar p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 0; }
.promo-bar strong.code {
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  background: rgba(201,169,110,0.1);
  padding: 2px 8px;
  border-radius: 3px;
}

/* ============================================================
   FLOATING CTA BUTTON
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-cta-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.float-cta.open .float-cta-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.float-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: rgba(255,255,255,0.88);
  padding: 11px 18px 11px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  text-decoration: none;
  transition: var(--trans);
  border: 1px solid rgba(255,255,255,0.08);
}
.float-option:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateX(-4px);
  box-shadow: 0 8px 28px rgba(169,134,58,0.3);
  border-color: var(--gold);
}
.float-option-badge {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
  font-family: var(--font-body);
  transition: var(--trans);
  flex-shrink: 0;
}
.float-option:hover .float-option-badge { background: rgba(26,23,16,0.15); }
.float-cta-main {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(169,134,58,0.38);
  transition: var(--trans);
  position: relative;
  flex-shrink: 0;
}
.float-cta-main:hover { background: var(--gold-dark); color: var(--white); transform: scale(1.07); }
.float-cta-main svg { transition: transform 0.3s ease; }
.float-cta.open .float-cta-main svg { transform: rotate(45deg); }

@media (max-width: 480px) {
  .float-cta { bottom: 20px; right: 16px; }
  .float-option { font-size: 0.72rem; padding: 10px 14px 10px 12px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .contact-split { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .offer-banner { grid-template-columns: 1fr; padding: 36px; gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}
