/* ==========================================================================
   Wozanathi Group — Stylesheet
   Dark theme, brick/terracotta brand palette
   ========================================================================== */

:root {
  /* Colour tokens */
  --bg:            #120F0D;
  --bg-alt:        #1A1512;
  --surface:       #221C18;
  --surface-2:     #2B231D;
  --border:        #3A2F27;
  --brick:         #C0532E;
  --brick-dark:    #96401F;
  --brick-light:   #E07347;
  --clay:          #D9A15C;
  --text:          #F4ECE2;
  --text-muted:    #B7A99A;
  --text-faint:    #8A7C6E;
  --white:         #FFFFFF;

  /* Type */
  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: 0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

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

section { position: relative; }

/* ---------- Type scale ---------- */
h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.4rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--clay);
  display: inline-block;
}
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head p { color: var(--text-muted); margin-top: 14px; font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--brick); color: var(--white); }
.btn-primary:hover { background: var(--brick-light); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--clay); color: var(--clay); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); }
.btn-arrow {
  width: 18px; height: 18px; flex-shrink: 0;
}
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 15, 13, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 84px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
}
.brand-name { min-width: 0; }
.brand img { height: 44px; width: auto; border-radius: 8px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.1;
}
.brand-name span { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; color: var(--clay); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text-muted); white-space: nowrap; }
.header-phone strong { color: var(--white); font-weight: 600; }
.header-phone svg { color: var(--brick-light); flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(100deg, rgba(12,10,8,0.94) 20%, rgba(12,10,8,0.55) 62%, rgba(12,10,8,0.86) 100%),
    url("https://static.wixstatic.com/media/9be32a_2ca54202ce054e53b7f4fb615d98d317~mv2.jpeg/v1/fill/w_1600,h_1400,al_c,q_85,enc_auto/face.jpeg");
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; padding: 140px 0 100px; }
.hero-content .eyebrow { color: var(--clay); }
.hero-content h1 { text-transform: uppercase; }
.hero-content p.lead { margin-top: 22px; font-size: 1.15rem; color: rgba(244, 236, 226, 0.85); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-meta {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
}
.hero-meta div { display: flex; align-items: center; gap: 12px; }
.hero-meta svg { color: var(--brick-light); flex-shrink: 0; }
.hero-meta strong { display: block; color: var(--white); font-size: 0.98rem; }
.hero-meta span { display: block; font-size: 0.82rem; color: rgba(244, 236, 226, 0.65); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 40px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.trust-strip strong { color: var(--clay); font-weight: 600; }

/* ---------- About ---------- */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--brick);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  max-width: 220px;
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: 1; }
.about-badge span { display: block; font-size: 0.82rem; margin-top: 6px; color: rgba(255,255,255,0.85); }

.about-copy p { color: var(--text-muted); font-size: 1.05rem; margin-top: 18px; }
.about-list { margin-top: 32px; display: grid; gap: 16px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); font-size: 0.98rem; }
.about-list svg { flex-shrink: 0; margin-top: 3px; color: var(--brick-light); }
.about-copy .btn { margin-top: 36px; }

/* ---------- Services ---------- */
.services { padding: 120px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: var(--brick); transform: translateY(-4px); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 26px 24px 30px; }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(192, 83, 46, 0.16);
  color: var(--brick-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Stains grid ---------- */
.stains { padding: 120px 0; }
.stains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stain-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.stain-item .service-icon { background: rgba(217, 161, 92, 0.16); color: var(--clay); margin-bottom: 18px; }
.stain-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; margin-bottom: 8px; }
.stain-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Why choose us ---------- */
.why { padding: 120px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.why-intro p { color: var(--text-muted); margin-top: 18px; font-size: 1.05rem; }
.why-list { display: grid; gap: 22px; }
.why-row {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.why-row .service-icon { background: rgba(192, 83, 46, 0.16); color: var(--brick-light); margin-bottom: 0; flex-shrink: 0; }
.why-row h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.why-row p { color: var(--text-muted); font-size: 0.94rem; }

/* ---------- Gallery preview ---------- */
.gallery-preview { padding: 120px 0; }
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; aspect-ratio: 3/4; border: 1px solid var(--border); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item span {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(18,15,13,0.75);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--brick-dark), var(--brick));
  padding: 64px 0;
  color: var(--white);
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 520px; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.cta-banner-actions a.btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cta-banner-actions a.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ---------- FAQ ---------- */
.faq { padding: 120px 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 26px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--clay);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 14px; transition: transform 0.2s ease; }
.faq-item[open] summary .plus::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-item p { color: var(--text-muted); padding-bottom: 22px; font-size: 0.96rem; max-width: 640px; }

/* ---------- Contact form (contact page + section) ---------- */
.contact-section { padding: 120px 0; background: var(--bg-alt); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info-list { display: grid; gap: 22px; margin-top: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .service-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--white); margin-bottom: 4px; }
.contact-info-item span, .contact-info-item a { color: var(--text-muted); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--clay); }
.social-row { display: flex; gap: 12px; margin-top: 30px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.social-row a:hover { border-color: var(--clay); color: var(--clay); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; color: var(--text-muted); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--brick);
  outline: none;
}
.form-note { font-size: 0.82rem; color: var(--text-faint); margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: #0D0B09; border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 0.94rem; max-width: 300px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.94rem; }
.footer-col a:hover { color: var(--clay); }
.footer-bottom {
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 0.85rem;
}

/* ---------- Page hero (gallery / contact) ---------- */
.page-hero {
  padding: 200px 0 90px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 18px auto 0; }

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 100px 0 120px;
}
.full-gallery-grid .gallery-item { aspect-ratio: 4/3; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media img { height: 420px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stains-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .full-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone span.phone-label { display: none; }
}

@media (max-width: 560px) {
  .header-inner { gap: 10px; }
  .brand-name { font-size: 1.1rem; }
  .brand-name span { display: none; }
  .brand img { height: 36px; }
  .header-actions { gap: 10px; }
  .header-actions > a.btn-primary { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero-content { padding: 120px 0 70px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-meta { gap: 20px 28px; }
  .about, .services, .stains, .why, .gallery-preview, .faq, .contact-section { padding: 80px 0; }
  .about-badge { position: static; margin-top: 18px; max-width: 100%; display: flex; align-items: center; gap: 14px; }
  .about-badge strong { font-size: 1.6rem; }
  .card-grid, .stains-grid, .gallery-grid, .full-gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn { flex: 1; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 160px 0 70px; }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-close {
  background: transparent; border: 1px solid var(--border); border-radius: 8px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--white);
}
.mobile-nav ul { margin-top: 50px; display: grid; gap: 6px; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-footer { margin-top: auto; display: grid; gap: 16px; }
.mobile-nav-footer .btn { width: 100%; }

@media (min-width: 881px) {
  .mobile-nav, .nav-toggle { display: none; }
}
