/* EverGlo Studios — Red brand theme */
:root {
  --red:     #CC1010;
  --red-dk:  #aa0d0d;
  --red-dim: rgba(204,16,16,0.12);
  --dark:    #111111;
  --charcoal:#1e1e1e;
  --card:    #242424;
  --white:   #ffffff;
  --offwhite:#f0f0f0;
  --gray:    #999999;
  --line:    rgba(204,16,16,0.2);
  --radius:  10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Montserrat', 'Inter', sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: 0.02em; text-transform: uppercase; }
a { color: var(--red); text-decoration: none; }
img { max-width: 100%; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--charcoal);
  border-bottom: 2px solid var(--red);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: var(--white); letter-spacing: 0.05em; text-transform: uppercase; }
.logo-text span { color: var(--red); }
nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a { font-size: 12px; font-weight: 700; color: var(--offwhite); padding: 6px 10px; border-radius: 6px; transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
nav a:hover, nav a.active { color: var(--red); }
.nav-book { background: var(--red); color: var(--white) !important; font-weight: 800 !important; padding: 9px 18px !important; border-radius: 6px; }
.nav-book:hover { background: var(--red-dk); color: var(--white) !important; }
.nav-phone { font-size: 13px; color: var(--white); font-weight: 700; white-space: nowrap; letter-spacing: 0.04em; }
.menu-btn { display: none; background: none; border: 0; color: var(--white); font-size: 26px; cursor: pointer; }

/* ---- HERO ---- */
.hero {
  position: relative; overflow: hidden;
  min-height: 580px;
  display: flex; align-items: center;
  background: linear-gradient(rgba(180,10,10,0.72), rgba(120,5,5,0.85)), var(--charcoal);
  background-size: cover; background-position: center;
  padding: 80px 0;
}
.hero .wrap { position: relative; text-align: center; }
.hero h1 { font-size: clamp(38px,8vw,86px); color: var(--white); margin-bottom: 16px; letter-spacing: 0.04em; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 36px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.btn { display: inline-block; font-weight: 800; font-size: 13px; padding: 14px 28px; border-radius: 6px; cursor: pointer; border: 0; transition: opacity 0.2s, transform 0.15s; text-align: center; text-transform: uppercase; letter-spacing: 0.08em; }
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-dark { background: var(--charcoal); color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-dark:hover { border-color: var(--red); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.hero-trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.hero-trust span { font-size: 12px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 7px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-trust span::before { content: '\2713'; color: var(--white); font-weight: 900; font-size: 14px; }

/* ---- SECTIONS ---- */
.block { padding: 80px 0; }
.block.alt { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head .eyebrow { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--gray); font-size: 16px; font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---- SERVICE CARDS ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.svc-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.svc-card:hover { border-color: var(--red); transform: translateY(-3px); }
.svc-icon { font-size: 32px; }
.svc-card h3 { font-size: 18px; letter-spacing: 0.04em; }
.svc-card p { color: var(--gray); font-size: 14.5px; flex: 1; font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---- OFFER BAND ---- */
.offer-band {
  background: var(--red);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin: 0 auto; max-width: 960px;
}
.offer-band h2 { font-size: 28px; color: var(--white); letter-spacing: 0.03em; }
.offer-band p { color: rgba(255,255,255,0.85); font-size: 15px; margin-top: 6px; font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 10px; }
details { background: var(--card); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); }
summary { cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 15px; color: var(--white); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-transform: none; letter-spacing: 0; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--red); font-size: 24px; font-weight: 400; flex-shrink: 0; }
details[open] summary::after { content: '\2212'; }
details p { padding: 0 22px 20px; color: var(--gray); font-size: 15px; font-weight: 400; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 20px; margin-bottom: 20px; }
.contact-label { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.contact-value { font-size: 17px; color: var(--white); font-weight: 600; }
.contact-value a { color: var(--white); }
.contact-row { margin-bottom: 22px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.map-wrap iframe { display: block; width: 100%; height: 320px; border: 0; }
.hours-grid { display: grid; gap: 4px; margin-top: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--gray); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 5px 0; }
.hours-row span:first-child { color: var(--white); font-weight: 600; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: linear-gradient(rgba(180,10,10,0.8), rgba(100,5,5,0.9)), var(--charcoal); padding: 64px 0 48px; border-bottom: 2px solid var(--red); }
.page-hero .eyebrow { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(28px, 5vw, 52px); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 600px; margin-top: 14px; font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---- BENEFITS LIST ---- */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.benefit { background: var(--card); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 22px 20px; border-left: 3px solid var(--red); }
.benefit h4 { font-size: 14px; margin-bottom: 8px; color: var(--red); letter-spacing: 0.06em; }
.benefit p { color: var(--gray); font-size: 14px; font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---- FOOTER ---- */
footer { background: #0a0a0a; border-top: 2px solid var(--red); padding: 48px 0 32px; }
.foot { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.foot-brand .logo-text { font-size: 18px; margin-bottom: 10px; }
.foot-brand p { color: var(--gray); font-size: 14px; max-width: 260px; margin-top: 8px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.foot-links h4 { font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.foot-links a { display: block; color: var(--gray); font-size: 14px; margin-bottom: 9px; transition: color 0.2s; font-weight: 400; text-transform: none; letter-spacing: 0; }
.foot-links a:hover { color: var(--white); }
.foot-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; color: var(--gray); font-size: 13px; }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a { display: inline-flex; align-items: center; gap: 6px; color: var(--gray); font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 6px 14px; transition: border-color 0.2s, color 0.2s; }
.social-links a:hover { color: var(--white); border-color: var(--red); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--charcoal); padding: 16px 24px 24px; border-bottom: 2px solid var(--red); gap: 4px; z-index: 99; }
  nav.open { display: flex; }
  .menu-btn { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .offer-band { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 40px; }
  .block { padding: 56px 0; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
