@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400&family=Lato:wght@300;400;700&display=swap');

:root {
  --black: #111111;
  --charcoal: #1a1a1a;
  --red: #CC2B2B;
  --gold: #F5A800;
  --offwhite: #F5F0E8;
  --grey: #222222;
  --muted: #aaaaaa;
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--offwhite);
  background: var(--black);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Amatic SC', cursive;
  font-weight: 400;
  line-height: 1.2;
}

nav {
  background: var(--black);
  border-bottom: 2px solid var(--red);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 0;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Amatic SC', cursive;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
}

.nav-logo-text .line1 { color: var(--offwhite); display: block; }
.nav-logo-text .line2 { color: var(--gold); display: block; }

.nav-links { display: flex; list-style: none; gap: 4px; }

.nav-links a {
  color: var(--offwhite);
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active { background: var(--red); color: var(--offwhite); }

.nav-phone { color: var(--muted); font-size: 14px; font-weight: 700; }
.nav-phone a { color: var(--gold); text-decoration: none; }

.hero {
  position: relative;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.hero-dots, .dot-strip-bg, .ack-dots, .page-hero-dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('dots.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-dots { opacity: 0.18; }
.dot-strip-bg { opacity: 0.15; }
.ack-dots { opacity: 0.12; }
.page-hero-dots { opacity: 0.10; }

.hero-content, .dot-strip-content, .ack-inner, .page-hero-content { position: relative; z-index: 1; }

.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  text-align: left;
}

.hero h1 { font-size: 72px; color: var(--offwhite); margin-bottom: 16px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 18px; color: var(--offwhite); opacity: 0.85; margin-bottom: 32px; font-weight: 300; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero-photo-placeholder {
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(245,168,0,0.4);
  border-radius: 8px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gold);
  text-align: center;
}

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(245,168,0,0.3);
}

.badge {
  background: rgba(245,168,0,0.12);
  border: 1px solid rgba(245,168,0,0.35);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  margin: 4px;
}

.btn-primary { background: var(--red); color: var(--offwhite); }
.btn-primary:hover { background: #a82020; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }

section { padding: 72px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-subtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title { font-size: 52px; color: var(--offwhite); margin-bottom: 12px; }
.section-intro { font-size: 16px; color: var(--muted); max-width: 600px; margin-bottom: 40px; line-height: 1.8; }

.bg-dark { background: var(--charcoal); }
.bg-grey { background: var(--grey); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.card {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 32px 24px;
  border: 0.5px solid #333;
  border-top: 3px solid var(--red);
  transition: transform 0.2s, border-top-color 0.2s;
}

.card:hover { transform: translateY(-4px); border-top-color: var(--gold); }
.card-icon { font-size: 32px; margin-bottom: 14px; }
.card h3 { font-size: 30px; color: var(--offwhite); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.why-item { text-align: center; padding: 28px 16px; }
.why-icon { font-size: 36px; margin-bottom: 12px; }
.why-item h4 { font-size: 26px; color: var(--offwhite); margin-bottom: 6px; }
.why-item p { font-size: 13px; color: var(--muted); }

.dot-strip {
  position: relative;
  padding: 56px 40px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.dot-strip h2 { font-size: 52px; color: var(--offwhite); margin-bottom: 8px; }
.dot-strip p { color: var(--offwhite); opacity: 0.8; margin-bottom: 24px; font-size: 16px; }

.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 72px; }

.service-image {
  background: var(--charcoal);
  border: 1px solid #333;
  border-radius: 8px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.service-content h3 { font-size: 44px; color: var(--offwhite); margin-bottom: 12px; }
.service-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; font-size: 15px; }
.service-list { list-style: none; margin-bottom: 20px; }
.service-list li { padding: 6px 0 6px 20px; font-size: 14px; color: var(--muted); position: relative; }
.service-list li::before { content: '▸'; color: var(--gold); position: absolute; left: 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-image {
  background: var(--charcoal);
  border: 1px solid #333;
  border-radius: 8px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 20px, var(--red) 20px, var(--red) 40px, #111 40px, #111 60px, var(--offwhite) 60px, var(--offwhite) 80px);
}

.about-content h2 { font-size: 52px; color: var(--offwhite); margin-bottom: 16px; }
.about-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; font-size: 15px; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.credential {
  background: #222;
  border-left: 3px solid var(--gold);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--offwhite);
}

.price-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; border-radius: 8px; overflow: hidden; border: 0.5px solid #333; }
.price-table th { background: var(--red); color: var(--offwhite); padding: 14px 20px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-family: 'Lato', sans-serif; }
.price-table td { padding: 14px 20px; border-bottom: 1px solid #2a2a2a; font-size: 14px; color: var(--offwhite); }
.price-table tr:nth-child(even) td { background: var(--charcoal); }
.price-table tr:last-child td { border-bottom: none; }
.price-table .note td { background: #1a1500; font-size: 12px; color: var(--gold); font-style: italic; }

.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 48px; }

.package-card { background: var(--charcoal); border-radius: 8px; overflow: hidden; border: 0.5px solid #333; transition: transform 0.2s; }
.package-card:hover { transform: translateY(-4px); }
.package-header { background: #222; padding: 24px; text-align: center; border-bottom: 2px solid var(--red); }
.package-header.featured { border-bottom-color: var(--gold); }
.package-header h3 { font-size: 30px; color: var(--offwhite); margin-bottom: 4px; }
.package-price { font-family: 'Amatic SC', cursive; font-size: 42px; color: var(--gold); font-weight: 400; }
.package-price span { font-size: 16px; color: var(--muted); font-family: 'Lato', sans-serif; }
.package-body { padding: 24px; }
.package-body ul { list-style: none; margin-bottom: 20px; }
.package-body ul li { padding: 8px 0 8px 20px; font-size: 13px; color: var(--muted); border-bottom: 1px solid #2a2a2a; position: relative; }
.package-body ul li::before { content: '✓'; color: var(--gold); position: absolute; left: 0; font-weight: 700; }

.email-capture { background: var(--charcoal); border: 1px solid #333; border-radius: 8px; padding: 48px; text-align: center; }
.email-capture h3 { font-size: 48px; color: var(--offwhite); margin-bottom: 12px; }
.email-capture p { color: var(--muted); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.email-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-form input { flex: 1; min-width: 220px; padding: 12px 18px; border: 1px solid #444; border-radius: 4px; font-family: 'Lato', sans-serif; font-size: 14px; background: #111; color: var(--offwhite); }
.email-form input:focus { outline: 2px solid var(--gold); }
.email-form button { background: var(--red); color: var(--offwhite); border: none; padding: 12px 28px; border-radius: 4px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.email-form button:hover { background: #a82020; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { font-size: 22px; margin-top: 2px; }
.contact-detail h4 { font-size: 24px; color: var(--offwhite); margin-bottom: 2px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--muted); text-decoration: none; }
.contact-detail a:hover { color: var(--gold); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #444; border-radius: 4px; font-family: 'Lato', sans-serif; font-size: 14px; color: var(--offwhite); background: #1a1a1a; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group select option { background: #1a1a1a; }
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.acknowledgement { position: relative; padding: 48px 40px; text-align: center; overflow: hidden; background: var(--black); }
.ack-title { font-family: 'Amatic SC', cursive; font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.acknowledgement p { color: var(--offwhite); max-width: 680px; margin: 0 auto; font-size: 15px; opacity: 0.8; line-height: 1.9; }

.page-hero { position: relative; padding: 60px 40px; text-align: center; overflow: hidden; background: var(--black); border-bottom: 2px solid var(--red); }
.page-hero h1 { font-size: 56px; color: var(--offwhite); margin-bottom: 8px; }
.page-hero p { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

.emergency-box { background: #1a0000; border: 1px solid var(--red); border-radius: 8px; padding: 24px; margin-top: 8px; }
.emergency-box h4 { font-size: 28px; color: var(--offwhite); margin-bottom: 8px; }
.emergency-box p { font-size: 13px; color: var(--muted); margin-bottom: 16px; }

footer { background: #0a0a0a; border-top: 2px solid var(--red); padding: 48px 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 32px; color: var(--offwhite); margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: #666; line-height: 1.7; }
.footer-col h4 { font-size: 22px; color: var(--offwhite); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #666; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: #555; }

.success-msg { background: #0a2a0a; border: 1px solid #2a5a2a; color: #5aaa5a; padding: 14px 20px; border-radius: 4px; margin-top: 12px; display: none; font-weight: 700; }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero h1 { font-size: 48px; }
  .hero-logo { width: 140px; height: 140px; }
  section { padding: 48px 20px; }
  .service-row, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
