/* ── ASUKA247 MASTER STYLESHEET ─────────────────────────────── */

:root {
  --black: #0a0a0a;
  --offwhite: #f2ede8;
  --amber: #c4622d;
  --lgrey: #e8e4df;
  --font-d: 'Barlow Condensed', sans-serif;
  --font-b: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--black);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { line-height: 1.75; color: #444; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

section { padding: 5rem 2rem; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}
.btn-amber:hover { background: #a84f24; border-color: #a84f24; }

.btn-dark {
  background: var(--black);
  color: var(--offwhite);
  border-color: var(--black);
}
.btn-dark:hover { background: #222; border-color: #222; }

.btn-outline-light {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(242,237,232,0.5);
}
.btn-outline-light:hover {
  background: rgba(242,237,232,0.1);
  border-color: var(--offwhite);
}

/* ── LABELS ──────────────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.lead {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo em {
  font-style: normal;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--amber);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #aaa;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--offwhite); }

.nav-phone { color: var(--offwhite) !important; }

.nav-cta {
  background: var(--amber) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
}
.nav-cta:hover { background: #a84f24 !important; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 60%, rgba(196,98,45,0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--offwhite);
  margin-bottom: 1.5rem;
}
.hero-content h1 span { color: var(--amber); }

.hero-sub {
  font-size: 1rem;
  color: #ccc;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ccc;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.35rem 0.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid #1e1e1e;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-d);
  font-size: 3rem;
  font-weight: 900;
  color: var(--offwhite);
  line-height: 1;
}
.stat-num span { color: var(--amber); font-size: 2rem; }

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  margin-top: 0.4rem;
}

/* ── SERVICES GRID ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--lgrey);
  margin-top: 2.5rem;
}

.service-card {
  border-right: 1px solid var(--lgrey);
  display: flex;
  flex-direction: column;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(n+4) { border-top: 1px solid var(--lgrey); }

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-card-body p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.service-card-body a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s;
}
.service-card-body a:hover { color: #a84f24; border-color: #a84f24; }

/* ── BEFORE / AFTER SLIDER ───────────────────────────────────── */
.slider-section {
  background: var(--black);
  padding: 5rem 2rem;
}

.slider-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.slider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  border: 1px solid #2a2a2a;
  padding: 0.3rem 0.7rem;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}

.ba-img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-before-panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--amber);
  z-index: 3;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 4;
  cursor: col-resize;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  background: rgba(10,10,10,0.7);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  z-index: 3;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* ── FAQ ─────────────────────────────────────────────────────── */
#faq { background: var(--offwhite); padding: 5rem 2rem; }

.faq-list { max-width: 720px; }

.faq-item {
  border-bottom: 1px solid var(--lgrey);
}

.faq-q {
  padding: 1.2rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--amber); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 0 1.2rem;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-section {
  background: var(--black);
  padding: 5rem 2rem;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-links {
  margin-top: 2rem;
  border-top: 1px solid #1e1e1e;
}

.contact-link {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #1e1e1e;
  align-items: center;
}

.contact-link span:first-child {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
}

.contact-link a,
.contact-link span:last-child {
  font-size: 0.88rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link a:hover { color: var(--amber); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #111;
  border: 1px solid #222;
  color: var(--offwhite);
  font-family: var(--font-b);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
}

.contact-form select option { background: #111; }

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button {
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.contact-form button:hover { background: #a84f24; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: #050505;
  border-top: 1px solid #111;
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #111;
}

.footer-brand-name {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--offwhite);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: #666;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 0.75rem;
  color: #333;
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--amber); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--lgrey); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(n+3) { border-top: 1px solid var(--lgrey); }
  .slider-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a:not(.nav-phone):not(.nav-cta) { display: none; }
  .hero-content h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid #1e1e1e; border-top: 1px solid #1e1e1e; }
  .stat-item:nth-child(4) { border-top: 1px solid #1e1e1e; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .service-card:nth-child(n+2) { border-top: 1px solid var(--lgrey); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  section { padding: 3rem 1rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
  .hero-actions { flex-direction: column; }
}
