/* ============================================
   AURIC BATH - Luxury Bathroom Remodeling
   High-conversion landing page
   ============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #A88B3D;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --black: #0A0A0A;
  --dark: #141414;
  --dark-card: #1A1A1A;
  --dark-border: #2A2A2A;
  --white: #FAFAFA;
  --gray: #999;
  --gray-light: #CCC;
  --text: #E0E0E0;
  --text-muted: #888;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
}

.logo span {
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--gray-light);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid var(--dark-border);
}

.mobile-menu a {
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-border);
}

.mobile-menu .nav-cta {
  text-align: center;
  border-bottom: none;
  margin-top: 8px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: linear-gradient(165deg, #0A0A0A 0%, #1a1510 40%, #0f0d0a 70%, #0A0A0A 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.proof-item span {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--dark);
}

.section-accent {
  background: linear-gradient(135deg, #1a1710 0%, #141414 100%);
}

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ---- Before/After Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.ba-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: all var(--transition);
}

.ba-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  background: var(--dark);
}

.ba-before, .ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-after { z-index: 1; }

.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.ba-placeholder-before {
  background: linear-gradient(135deg, #2a2520 0%, #1a1815 100%);
  color: var(--gray);
}

.ba-placeholder-after {
  background: linear-gradient(135deg, #2a2518 0%, #1a1a10 100%);
  color: var(--gold);
}

.ba-placeholder span {
  padding: 12px 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.6;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle-line {
  width: 2px;
  flex: 1;
  background: var(--gold);
  opacity: 0.8;
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
}

.ba-info {
  padding: 24px;
}

.ba-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.ba-info p {
  color: var(--gray);
  font-size: 0.9375rem;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ---- Why Us ---- */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.why-body strong {
  color: var(--white);
}

.why-stats {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-bar {
  background: var(--dark-card);
  border-radius: 6px;
  height: 40px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-fill-other {
  background: linear-gradient(90deg, #333, #444);
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-check {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gold-glow);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

.feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* ---- Testimonial ---- */
.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  margin: 0 auto 24px;
  color: var(--gold);
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial cite {
  font-style: normal;
  color: var(--gold);
  font-size: 0.9375rem;
  font-weight: 500;
}

.testimonial-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- Service Area ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.area-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
}

.area-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.area-card h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
  color: var(--gold);
}

.area-card p {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--dark-border);
  padding-top: 20px;
}

.area-list li {
  color: var(--text);
  font-size: 0.875rem;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-60%) rotate(-45deg);
}

.area-list a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.area-list a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.area-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 48px;
  font-style: italic;
}

/* ---- Contact / Lead Form ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gray);
  font-size: 0.9375rem;
}

.contact-item svg { color: var(--gold); min-width: 20px; }
.contact-item a { color: var(--gray); }
.contact-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.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.8125rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: -8px;
}

/* ---- Footer ---- */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--dark-border);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu.active { display: flex; }

  .hero { padding: 100px 20px 60px; min-height: 90vh; }
  .hero h1 { font-size: 2.5rem; }
  .hero-sub { font-size: 1rem; }
  .hero-proof { gap: 20px; }
  .proof-divider { display: none; }

  .section { padding: 64px 0; }
  .section-title { font-size: 2rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .ba-slider { height: 260px; }

  .services-grid { grid-template-columns: 1fr; }

  .why-layout { grid-template-columns: 1fr; gap: 48px; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { padding: 14px 28px; }
  .testimonial blockquote { font-size: 1.25rem; }
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
