:root {
  --bg: #0e0f11;
  --bg-light: #1a1f21;
  --accent: #c9a66b;
  --accent-strong: #f0d6a1;
  --text: #f2f2f2;
  --muted: #b4b4b4;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, #1b2226 0%, #0b0d0e 55%, #060708 100%);
  line-height: 1.6;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(201,166,107,0.14), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
}
a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(9,10,11,0.74);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  text-decoration: none;
  color: var(--text);
  font-family: "Cinzel", serif;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  letter-spacing: 1px;
}
.logo .logo-main { font-size: 20px; white-space: nowrap; }
.logo .logo-sub  { font-size: 12px; text-transform: uppercase; color: var(--accent); letter-spacing: 2px; }

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-phone { color: var(--accent-strong); }
.nav-phone:hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px 0; transition: transform 0.3s ease; }

/* Buttons */
.btn {
  background: var(--accent);
  color: #0b0b0b;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--accent-strong); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); box-shadow: none; }
.btn-contrast { background: var(--text); color: #0b0b0b; }
.btn-small { font-size: 12px; padding: 9px 16px; }

/* Hero */
.hero {
  max-width: 1100px;
  margin: 80px auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}
.hero-content h1 { font-family: "Cinzel", serif; font-size: clamp(2.4rem, 4vw, 3.4rem); margin: 16px 0; }
.eyebrow { text-transform: uppercase; color: var(--accent); letter-spacing: 2px; font-size: 12px; }
.lead { color: var(--muted); margin-bottom: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.hero-metrics { display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.hero-metrics strong { display: block; color: var(--text); font-size: 16px; }
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.hero-card h3 { font-family: "Cinzel", serif; margin-bottom: 12px; }
.hero-card ul { list-style: none; margin: 18px 0; }
.hero-card li { color: var(--muted); margin-bottom: 10px; }

/* Sections */
.section { max-width: 1100px; margin: 0 auto; padding: 70px 24px; }
.section-header { margin-bottom: 38px; max-width: 640px; }
.section-header h2 { font-family: "Cinzel", serif; font-size: clamp(2rem, 3vw, 2.8rem); margin: 12px 0 14px; }
.section-header p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-6px); }

.accent { background: linear-gradient(120deg, rgba(201,166,107,0.1), rgba(13,14,15,0.9)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.project { background: var(--card); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.project-image { height: 180px; background: linear-gradient(120deg, #2c2f33, #141617); }
.project-image.alt { background: linear-gradient(120deg, #3b2f2f, #161111); }
.project-info { padding: 16px; }

/* Photos BA */
.photo-page { min-height: 70vh; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.ba-card { background: var(--card); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); }
.ba-image { position: relative; height: 220px; overflow: hidden; }
.ba-before, .ba-after { position: absolute; inset: 0; background-size: cover; background-position: center; transition: width 0.3s ease; }
.ba-before { width: 50%; border-right: 2px solid rgba(255,255,255,0.4); }
.ba-after  { width: 100%; }
.ba-image input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.ba-handle { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--accent); left: 50%; transform: translateX(-50%); }

/* Areas & timeline */
.area-list { display: flex; flex-wrap: wrap; gap: 12px; }
.area-list span { border: 1px solid var(--border); padding: 8px 16px; border-radius: 999px; color: var(--muted); font-size: 14px; }
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.timeline span {
  display: inline-flex; width: 38px; height: 38px; border-radius: 50%; background: var(--accent);
  color: #0b0b0b; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 12px;
}

/* Contact */
.contact { padding-bottom: 100px; }
.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-info { display: grid; gap: 14px; margin-top: 24px; color: var(--muted); }
.contact-form { display: grid; gap: 14px; }
.contact-form label { font-size: 14px; color: var(--muted); display: grid; gap: 8px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(8, 9, 10, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
}
.form-note { font-size: 12px; color: var(--muted); }

/* Footer */
.footer {
  padding: 30px 24px 50px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.footer strong { color: var(--text); }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { color: var(--accent-strong); text-decoration: underline; }

/* Testimonials */
.testimonial-marquee {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  margin: 20px auto 28px;
  max-width: 1100px;
}
.testimonial-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.testimonial-card {
  min-width: 260px;
  max-width: 320px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}
.testimonial-card img {
  width: 100%;
  height: auto;
  max-height: 190px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.testimonial-card p { color: var(--muted); font-size: 14px; }
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}
.testimonial-footer img {
  width: 44px; height: 44px; object-fit: cover; border-radius: 50%; border: 1px solid var(--border);
}
.stars { color: var(--accent); letter-spacing: 1px; }
.review-cta { display: flex; justify-content: center; margin: 36px 0 22px; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px; right: 22px;
    background: rgba(9,10,11,0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    display: none;
    flex-direction: column;
    gap: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .hero { margin-top: 40px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content, .hero-card, .section, .footer { animation: fadeUp 0.9s ease both; }

/* Admin gallery cleanup */
/* Auth pages */
.auth-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 100px;
}
.auth-card {
  width: 100%;
  max-width: 520px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.auth-card h1,
.auth-card h2 {
  font-family: "Cinzel", serif;
  margin: 0;
}
.auth-card p { color: var(--muted); }
.auth-card form { display: grid; gap: 14px; }
.auth-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}
.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.auth-card .auth-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.auth-card .auth-actions .btn { padding: 11px 20px; }
.auth-card .auth-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.auth-card a { color: var(--accent); }
.auth-card a:hover { color: var(--accent-strong); text-decoration: underline; }

/* Quote form */
.quote-form {
  margin-top: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.quote-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 14px;
}
.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}
.quote-form textarea { min-height: 120px; resize: vertical; }
.quote-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.quote-actions .btn { padding: 11px 22px; }
.quote-note { color: var(--muted); font-size: 13px; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
  z-index: 20;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 46px rgba(0,0,0,0.4);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #0b0b0b;
}

/* Leave review page (public) */
.review-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 110px;
}
.review-card {
  width: 100%;
  max-width: 720px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.review-card .section-header { margin-bottom: 8px; }
.review-form {
  display: grid;
  gap: 14px;
}
.review-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}
.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.review-form textarea { min-height: 140px; resize: vertical; }
.review-form .btn { width: fit-content; }
.review-form .btn-contrast { box-shadow: var(--shadow); }

/* CTA pulse button */
.cta-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-pulse {
  position: relative;
  overflow: hidden;
}
.cta-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(201,166,107,0.28), rgba(240,214,161,0.18));
  filter: blur(16px);
  opacity: 0.8;
  animation: pulseGlow 2.8s ease-in-out infinite;
  z-index: -1;
}
@keyframes pulseGlow {
  0% { transform: scale(0.96); opacity: 0.65; }
  50% { transform: scale(1.04); opacity: 0.9; }
  100% { transform: scale(0.96); opacity: 0.65; }
}
