/* ===== DESIGN TOKENS ===== */
:root {
  --brand:        #00e0c6;
  --brand-2:      #ff9e2c;
  --brand-dark:   #00b8a5;
  --ink:          #111d2c;
  --ink-soft:     #2f4254;
  --muted:        #647d96;
  --paper:        #f4f7fa;
  --paper-2:      #e9eef4;
  --white:        #ffffff;
  --dark-bg:      #0a1929;
  --dark-mid:     #0f2236;
  --dark-card:    #10243a;
  --line:         #dce4ed;
  --line-dark:    rgba(255,255,255,.09);

  --grad:         linear-gradient(135deg, #00e0c6, #00b3e0);
  --grad-warm:    linear-gradient(135deg, #ffb84d, #ff7a18);
  --grad-hero:    linear-gradient(160deg, #0a1929 0%, #0d2640 55%, #0a1929 100%);

  --radius:       18px;
  --radius-sm:    10px;
  --radius-xs:    6px;
  --shadow:       0 8px 40px rgba(0,0,0,.14);
  --shadow-sm:    0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.22);
  --transition:   .22s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; }

/* ===== LAYOUT ===== */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}
.section {
  padding: 72px 0;
}
.band-dark {
  background: var(--dark-bg);
  color: var(--white);
}
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark p { color: #a0bfd4; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,25,41,.92);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line-dark);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; }
.logo-mark { height: 36px; width: auto; }
.nav-phone {
  color: var(--brand);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: opacity var(--transition);
}
.nav-phone:hover { opacity: .75; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad);
  color: #062330;
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(0,224,198,.4); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

.btn-dark {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn-dark:hover { background: rgba(255,255,255,.18); }

.btn-blue {
  background: #1a56db;
  color: #fff;
}
.btn-blue:hover { box-shadow: 0 8px 28px rgba(26,86,219,.4); }

.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* ===== HERO ===== */
.hero {
  background: var(--grad-hero);
  color: var(--white);
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 80% 60%, rgba(0,224,198,.07), transparent 65%),
    radial-gradient(ellipse 400px 300px at 10% 90%, rgba(0,179,224,.06), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300e0c6' fill-opacity='0.025'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: #a0c0d8;
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 0;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}
.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: #8ab4cd;
  font-weight: 500;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ===== SECTION HEADERS ===== */
.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}
.band-dark .sec-head h2 { color: var(--white); }
.sec-head p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
}
.sec-head.center p { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.eyebrow.on-dark { color: var(--brand); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px 0;
}
.card-top h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--brand-dark);
}
.card-icon.warm { color: var(--brand-2); background: #fff5e8; }
.card-body { padding: 14px 28px 26px; color: var(--ink-soft); }
.card-body p { font-size: .96rem; }

/* ===== GRID ===== */
.grid { display: grid; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media(max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

/* ===== FEATURE LIST ===== */
.feat { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.feat li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  color: var(--ink-soft);
  padding: 10px 14px;
  background: var(--paper);
  border-radius: var(--radius-xs);
}
.feat li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(0,178,163,.12);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .78rem;
}

/* ===== BEFORE / AFTER SLIDER ===== */
.ba {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  user-select: none;
  box-shadow: var(--shadow-lg);
}
.ba-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1a3a1a, #2d5a2d);
}
.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.ba-before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: none;
  max-width: none;
  background: linear-gradient(135deg, #3a1a1a, #5a2d2d);
}
/* Fix: ba-before img should match outer dimensions */
.ba { }
.ba-before img {
  width: auto;
  min-width: 100%;
  max-width: none;
  left: 0;
}
.ba-tag {
  position: absolute;
  top: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; }
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(0,0,0,.3);
  pointer-events: none;
}
.ba-range {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: col-resize;
  width: 100%;
  height: 100%;
  margin: 0;
}
.ba-hint { color: var(--muted); font-size: .88rem; text-align: center; margin-top: 14px; }

/* ===== WORK GALLERY ===== */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media(max-width: 760px) { .work-gallery { grid-template-columns: repeat(2, 1fr); } }
.work-tile {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0;
  background: var(--paper-2);
  position: relative;
}
.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.work-tile:hover img { transform: scale(1.05); }
.work-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.25), transparent 50%);
  pointer-events: none;
}

/* ===== FAQ ===== */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  transition: color var(--transition);
}
.faq summary:hover { color: var(--brand-dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand-dark);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 0 20px;
  color: var(--ink-soft);
  font-size: .97rem;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--dark-bg);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 250px at 100% 50%, rgba(0,224,198,.1), transparent 55%);
  pointer-events: none;
}
.cta-strip h2 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-strip p { color: #8ab4cd; font-size: .97rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-bg);
  color: #93a8bd;
  padding: 60px 0 0;
  border-top: 1px solid var(--line-dark);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media(max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-about p { font-size: .92rem; line-height: 1.7; margin: 14px 0 20px; max-width: 300px; }
.foot-logo img { height: 32px; }
.foot-grid h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.foot-grid a {
  display: block;
  font-size: .92rem;
  color: #93a8bd;
  padding: 5px 0;
  transition: color var(--transition);
}
.foot-grid a:hover { color: var(--brand); }
.social { display: flex; gap: 12px; }
.social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  transition: background var(--transition), transform var(--transition);
}
.social a:hover { background: rgba(0,224,198,.18); transform: translateY(-2px); }
.foot-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .84rem;
  color: #6a839a;
}

/* ===== REVIEW CARDS ===== */
.review-card {
  display: flex;
  flex-direction: column;
}
.review-card .card-body {
  flex: 1;
  padding-top: 28px;
}
.stars { color: #ff9e2c; letter-spacing: 2px; font-size: 1.05rem; }
.review-card .who {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-top: 10px;
  font-size: .9rem;
  color: var(--ink);
}
.review-card p { font-size: .94rem; line-height: 1.65; color: var(--ink-soft); margin-top: 10px; }
.ph-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 14px; }

/* ===== UTILITIES ===== */
.center { text-align: center; }

/* ===== IMAGE PLACEHOLDERS (when real images are missing) ===== */
img[src="before.jpg"],
img[src="after.jpg"],
img[src="work-int-7.jpg"],
img[src="work-cougar.jpg"],
img[src="work-int-2.jpg"] {
  background: var(--dark-card);
  min-height: 100%;
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 640px) {
  .hero { padding: 64px 0 72px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .hero-badges { gap: 12px; }
  .section { padding: 52px 0; }
  .cta-strip { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .cta-strip > div:last-child { width: 100%; }
  .cta-strip > div:last-child .btn { width: 100%; justify-content: center; }
  .pricetable { font-size: .9rem; }
}

@media(max-width: 480px) {
  .nav-phone { display: none; }
}
