:root {
  --bg-dark: #0a0a0a;
  --bg-surface: #141414;
  --bg-card: #1c1c1c;
  --fg-primary: #f5f5f0;
  --fg-secondary: #a0a09a;
  --fg-muted: #6b6b65;
  --accent: #4ecdc4;
  --accent-glow: rgba(78, 205, 196, 0.15);
  --water-blue: #2196f3;
  --water-glow: rgba(33, 150, 243, 0.1);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg-dark);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--water-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-lede {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--fg-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg-primary);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.2), transparent);
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 2rem;
  background: var(--bg-surface);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: rgba(78, 205, 196, 0.2);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-price {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  background: var(--accent-glow);
  border-radius: 4px;
}

/* ===== WHY ===== */
.why {
  padding: 6rem 2rem;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-text p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.why-text strong {
  color: var(--fg-primary);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-point {
  background: var(--bg-surface);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0 6px 6px 0;
}

.why-point h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.why-point p {
  color: var(--fg-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.closing p {
  color: var(--fg-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer p {
  color: var(--fg-muted);
  font-size: 0.8rem;
}

.footer .location {
  color: var(--fg-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: auto; }
  .hero-stats { gap: 2rem; }
  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why { padding: 4rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}
/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg-primary);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--fg-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--fg-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nav-cta.active {
  background: var(--fg-primary);
  color: #000;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--fg-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--fg-primary);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(78, 205, 196, 0.3);
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-lede {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.gallery-card:hover {
  border-color: rgba(78, 205, 196, 0.2);
  transform: translateY(-3px);
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.after-placeholder {
  background: #0e1a1a;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.placeholder-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.before-label {
  background: rgba(180, 60, 60, 0.2);
  color: #e07070;
  border: 1px solid rgba(180, 60, 60, 0.3);
}

.after-label {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.placeholder-grime {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: repeating-linear-gradient(
    45deg,
    #2a2a22,
    #2a2a22 4px,
    #1a1a14 4px,
    #1a1a14 8px
  );
  opacity: 0.9;
}

.placeholder-grime.siding {
  background: repeating-linear-gradient(
    0deg,
    #1e2218,
    #1e2218 6px,
    #2a2e24 6px,
    #2a2e24 12px
  );
}

.placeholder-grime.deck {
  border-radius: 0;
  background: repeating-linear-gradient(
    90deg,
    #1a1510,
    #1a1510 8px,
    #221d18 8px,
    #221d18 16px
  );
}

.placeholder-clean {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: rgba(78, 205, 196, 0.08);
  border: 1px solid rgba(78, 205, 196, 0.15);
}

.placeholder-text {
  font-size: 0.7rem;
  color: var(--fg-muted);
  line-height: 1.3;
}

.gallery-caption {
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.gallery-caption strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

.gallery-caption span {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.gallery-note {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-note p {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.accent-link {
  color: var(--accent);
  text-decoration: none;
}

.accent-link:hover {
  text-decoration: underline;
}

.gallery-cta {
  text-align: center;
}

/* ===== CLOSING ACTIONS ===== */
.closing-actions {
  margin-top: 2.5rem;
}

/* ===== BOOKING PAGE ===== */
.book-hero {
  padding: 8rem 2rem 4rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.book-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.book-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.book-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.book-form-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  align-items: start;
}

.book-form-wrap {
  min-width: 0;
}

/* === FORM ELEMENTS === */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: -0.5rem;
  margin-top: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-secondary);
}

.required { color: var(--accent); margin-left: 2px; }
.optional { color: var(--fg-muted); font-size: 0.8rem; font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b65' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: #1c1c1c;
  color: var(--fg-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input[type="date"] {
  color-scheme: dark;
}

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

.form-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0.3rem 0;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
  width: 100%;
}

.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78, 205, 196, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: -0.3rem;
}

/* === SUCCESS & ERROR === */
.form-success {
  background: rgba(78, 205, 196, 0.06);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--fg-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.form-error {
  background: rgba(220, 60, 60, 0.08);
  border: 1px solid rgba(220, 60, 60, 0.2);
  border-radius: 6px;
  color: #e07070;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* === SIDEBAR === */
.book-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 5rem;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.8rem;
}

.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sidebar-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sidebar-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 2px;
  padding: 0.2rem 0.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.sidebar-list li strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.sidebar-list li p {
  color: var(--fg-secondary);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

.sidebar-pricing {}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  color: var(--fg-secondary);
}

.pricing-row:last-of-type {
  border-bottom: none;
}

.price-badge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===== RESPONSIVE - BOOKING ===== */
@media (max-width: 900px) {
  .book-form-section {
    grid-template-columns: 1fr;
  }
  .book-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sidebar-card {
    flex: 1;
    min-width: 260px;
  }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .book-hero { padding: 7rem 1.5rem 3rem; }
  .book-form-section { padding: 2.5rem 1.5rem 4rem; }
  .nav-links .nav-link { display: none; }
}

/* ===== RESPONSIVE - GALLERY ===== */
@media (max-width: 768px) {
  .gallery { padding: 4rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE - NAV ===== */
@media (max-width: 480px) {
  .nav-inner { padding: 0.85rem 1.25rem; }
}
