:root {
  --navy: #0e1a2b;
  --navy-light: #16273f;
  --gold: #c9a227;
  --gold-light: #e8cf6d;
  --cream: #f7f4ec;
  --text-dark: #1c1c1c;
  --text-light: #f7f4ec;
  --radius: 10px;
  --max-width: 1100px;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 { line-height: 1.25; font-weight: 700; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

/* HEADER */
.site-header {
  background: var(--navy);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
}

.logo span { color: var(--gold-light); }

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

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--text-light);
  padding: 100px 0 90px;
  text-align: center;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 2.6rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero h1 span { color: var(--gold-light); }

.hero-sub {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 1.1rem;
  color: #dfe4ea;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

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

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section.alt {
  background: #ece7d9;
}

.section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
  color: #4a4a4a;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  position: relative;
  border: 1px solid #e5e0d0;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-card h3 { margin-bottom: 10px; }

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

.price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: #777;
}

.bulk-price {
  font-size: 0.85rem;
  color: #1b6a3d;
  background: #eaf6ee;
  border: 1px solid #cfe9d7;
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 18px;
  display: inline-block;
}

.price-card ul {
  list-style: none;
  margin-bottom: 26px;
  flex-grow: 1;
}

.price-card li {
  padding: 6px 0;
  border-bottom: 1px solid #f0ede2;
  font-size: 0.92rem;
  color: #444;
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 0.9rem;
}

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.92rem; color: #555; }

/* SERVICE AREA */
.service-area-inner {
  max-width: 640px;
  text-align: center;
}

.service-area-inner h2 { text-align: center; }

.zip-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 12px;
  flex-wrap: wrap;
}

.zip-form input {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 160px;
}

.zip-result {
  font-weight: 700;
  min-height: 24px;
}

.zip-result.eligible { color: #1b7a3d; }
.zip-result.ineligible { color: #b0271e; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.gallery-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.ba-pair {
  display: flex;
  height: 180px;
}

.ba-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.ba-half.before {
  background: repeating-linear-gradient(45deg, #7a7a7a, #7a7a7a 10px, #8f8f8f 10px, #8f8f8f 20px);
}

.ba-half.after {
  background: repeating-linear-gradient(45deg, var(--navy), var(--navy) 10px, var(--navy-light) 10px, var(--navy-light) 20px);
  color: var(--gold-light);
}

.gallery-caption {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #444;
}

/* DISCLAIMER */
.disclaimer {
  background: #fff8e6;
  border-top: 1px solid #eadfae;
  border-bottom: 1px solid #eadfae;
}

.disclaimer h2 {
  font-size: 1.4rem;
}

.disclaimer p {
  max-width: 760px;
  margin: 0 auto;
  color: #5a4a1a;
  text-align: center;
}

/* BOOKING FORM */
.booking-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 11px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

.policy-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #6a4a1a;
  text-align: center;
}

.contact-email {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #444;
  text-align: center;
}

.contact-email a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.calendar-embed {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  padding: 10px;
  overflow: hidden;
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  border-radius: 6px;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: #c7cdd6;
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-sub { margin-top: 6px; color: #8b93a1; }
.footer-sub a { color: var(--gold-light); text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .main-nav ul {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }
  .main-nav ul.open { display: flex; }
  .hero h1 { font-size: 1.9rem; }
  .steps-grid { grid-template-columns: 1fr; }
}
