/* Dance To Be Wild Studio — static rebuild
   Palette lifted from the original Astra/Elementor build. */

:root {
  --red: #dd183b;
  --red-dark: #b81230;
  --ink: #0f172a;
  --body: #3a3a3a;
  --pink: #dfcbcb;
  --white: #ffffff;
  --max: 1140px;
  --header-h: 180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); }

h1, h2, h3, h4 {
  font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .6em;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }

section { padding: 84px 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: background-color .2s, color .2s, border-color .2s;
}

.btn-ghost { color: var(--white); border-color: var(--white); background: transparent; }
.btn-ghost:hover { background: var(--white); color: var(--red); }

.btn-white { color: var(--red); background: var(--white); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }

.btn-outline { color: var(--red); background: var(--white); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-solid { color: var(--white); background: var(--red); border-color: var(--red); }
.btn-solid:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header.solid {
  position: sticky;
  background: var(--white);
  box-shadow: 0 1px 14px rgba(15, 23, 42, .09);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img { width: 170px; height: auto; }

.nav ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--red); }

.solid .nav a { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.solid .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 24px 80px;
}

.hero-sm { min-height: 62vh; }

.slideshow { position: absolute; inset: 0; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 36s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
.slide:nth-child(4) { animation-delay: 18s; }
.slide:nth-child(5) { animation-delay: 24s; }
.slide:nth-child(6) { animation-delay: 30s; }

@keyframes fade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  16%  { opacity: 1; }
  21%  { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .slide { animation: none; }
  .slide:nth-child(1) { opacity: 1; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* brand-red wash over a dark base: warmth on top, legibility underneath */
  background:
    linear-gradient(rgba(221, 24, 59, .34), rgba(221, 24, 59, .16)),
    linear-gradient(rgba(15, 23, 42, .52), rgba(15, 23, 42, .60));
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-eyebrow {
  color: var(--white);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 6px;
  text-transform: capitalize;
}

.hero h1 {
  font-family: Roboto, Montserrat, sans-serif;
  font-size: clamp(34px, 6vw, 46px);
  font-weight: 600;
  color: var(--white);
  text-transform: capitalize;
  margin: 0 0 20px;
}

.hero p {
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  margin: 0 auto 34px;
  max-width: 620px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Intro / text blocks ---------- */

.eyebrow {
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.section-title { font-size: clamp(28px, 4vw, 34px); }
.section-title-lg { font-size: clamp(32px, 5vw, 54px); }

/* ---------- Service cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.card {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 34px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 23, 42, .25), rgba(15, 23, 42, .82));
  transition: background .3s;
}

.card:hover::after { background: linear-gradient(rgba(221, 24, 59, .3), rgba(15, 23, 42, .88)); }

.card > * { position: relative; z-index: 2; }

.card h2 {
  color: var(--white);
  font-size: 28px;
  text-transform: lowercase;
  margin: 0 0 10px;
}

.card p { color: rgba(255, 255, 255, .9); margin: 0; font-size: 14px; }

.card-more {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 18px;
  display: inline-block;
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery a { display: block; overflow: hidden; border-radius: 4px; }

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s;
}

.gallery a:hover img { transform: scale(1.06); }

/* ---------- CTA band ---------- */

.cta {
  position: relative;
  background: var(--pink);
  text-align: center;
  padding: 74px 24px;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/leaf.jpg") center/cover;
  opacity: .45;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
}

.cta > * { position: relative; z-index: 2; }

.cta h2 {
  color: var(--white);
  font-size: 26px;
  text-transform: capitalize;
  margin: 0 0 8px;
}

.cta p { color: rgba(255, 255, 255, .92); margin: 0 0 26px; }

/* ---------- Services detail ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 84px;
}

.split:last-child { margin-bottom: 0; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: 6px; width: 100%; object-fit: cover; }
.split h2 { font-size: 30px; }

/* ---------- FAQ ---------- */

.faq { max-width: 820px; margin: 0 auto; }

.faq details {
  border-bottom: 1px solid rgba(15, 23, 42, .12);
  padding: 20px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 14px 0 0; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.detail { margin-bottom: 28px; }
.detail h3 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin: 0 0 4px; }
.detail p { margin: 0; font-size: 16px; }
.detail a { color: var(--body); text-decoration: none; }
.detail a:hover { color: var(--red); }

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid rgba(15, 23, 42, .22);
  border-radius: 4px;
  background: rgba(15, 23, 42, .02);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(221, 24, 59, .13);
}

.form-field textarea { min-height: 150px; resize: vertical; }

button.btn { font-family: inherit; cursor: pointer; }

.hp { position: absolute; left: -9999px; }

.map { border: 0; width: 100%; height: 420px; display: block; filter: grayscale(.2); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding: 52px 24px 34px;
  text-align: center;
}

.site-footer nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 0 22px;
  padding: 0;
  flex-wrap: wrap;
}

.site-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; }
.site-footer a:hover { color: var(--white); }
.site-footer small { font-size: 12px; letter-spacing: .4px; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  :root { --header-h: 110px; }
  .logo img { width: 96px; }

  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  section { padding: 60px 0; }

  .nav-toggle { display: block; }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
    display: none;
  }

  .nav.open { display: block; }
  .nav ul { flex-direction: column; gap: 0; padding: 8px 24px 18px; }
  .nav a, .solid .nav a { color: var(--ink); display: block; padding: 12px 0; }
}

@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery img { height: 260px; }
}
