:root {
  --teal: #007a86;
  --dark: #051015;
  --accent: #c7ff3c;
  --text-light: #ffffff;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #f3f3f3;
  color: var(--text-light);
  font-family: var(--font-main);
}

/* HEADER */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
}

.logo img {
  height: 100px;
}

.logo span {
  font-size: 32px;
  letter-spacing: 0.1em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
  color: #ffffff;
}

/* HERO */

.hero {
  min-height: 55vh;
  padding: 70px 60px 30px;
  /* dark gradient + blueprint */
  background:
    linear-gradient(
      120deg,
      rgba(0, 10, 15, 0.95) 0%,
      rgba(0, 10, 15, 0.85) 35%,
      rgba(0, 10, 15, 0.55) 70%,
      rgba(0, 10, 15, 0.20) 100%
    ),
    url("img/blueprint-bg.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero-mascot {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-mascot img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
}

/* dark panel behind text so it's ALWAYS readable */
.hero-copy {
  position: relative;
  padding: 20px 24px;
  background: rgba(0, 10, 15, 0.85);
  border-radius: 16px;
  max-width: 480px;
}

.hero-copy h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-copy p {
  font-size: 16px;
  margin-top: 18px;
  max-width: 420px;
  color: #e9f3f4;
}

.hero-actions {
  margin-top: 24px;
}

.btn-primary {
  background: var(--accent);
  color: #031012;
  padding: 16px 34px;
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* WHY SECTION */

.why {
  background: #020a0f;
  padding: 35px 60px 25px;  /* reduce bottom padding slightly */
}

.why-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.why h2 {
  font-size: 26px;          /* just a touch smaller */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.why ul {
  list-style: none;
  padding-left: 0;
}

.why li {
  font-size: 15px;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
  color: #dbe7ea;
}

.why li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* SERVICES */

.services {
  background: var(--dark);
  padding: 40px 60px 35px;
}

.service-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service img {
  width: 120px;
}

.service-title {
  margin-top: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

/* make anchor jumps land nicely below fixed header */
#wardrobe,
#workshop,
#custom,
#contact {
  scroll-margin-top: 90px;
}

/* PHOTOS */

.photos {
  background: #02171c;
  padding: 25px 60px 40px;
}

.photo-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-cols figure {
  margin: 0;
}

.photo-cols figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #c4d2d6;
}


.photo-cols img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

/* TESTIMONIALS */

.testimonials {
  border-top: 1px solid rgba(255,255,255,0.04);
  background: #02070b;
  padding: 40px 60px 45px;
}

.testimonials-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: #05151c;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(199, 255, 60, 0.12);
}

.testimonial p {
  font-size: 14px;
  color: #e4eef0;
  margin-bottom: 10px;
}

.testimonial span {
  font-size: 13px;
  color: #9fb0b9;
}

/* HOW IT WORKS */

.how {
  border-top: 1px solid rgba(255,255,255,0.04);
  background: #020a10;
  padding: 40px 60px 45px;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: #05151c;
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 122, 134, 0.4);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #d4e0e4;
}

/* LOCAL SECTION */

.local {
  border-top: 1px solid rgba(255,255,255,0.04);
  background: #02080d;
  padding: 35px 60px 45px;
}

.local-inner {
  max-width: 900px;
  margin: 0 auto;
}

.local h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.local p {
  font-size: 15px;
  color: #d8e4e8;
}

/* CTA */

/* CTA */

.cta-bottom {
  background: var(--dark);
  text-align: center;
  padding: 50px 20px 90px;  /* a bit more room at the bottom */
}

.cta-bottom h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffffff;
}

.cta-bottom .cta-sub {
  font-size: 14px;
  color: #c4d2d6;
  margin-bottom: 16px;
}

.cta-bottom .btn-primary {
  display: inline-block;
  margin-top: 4px;          /* space between text and button */
}


/* MOBILE */

@media (max-width: 900px) {
  header {
    padding: 12px 20px;
    position: static;
    background: #02171c;
  }

  .hero {
    padding: 80px 20px 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-mascot {
    justify-content: center;
    margin-bottom: 16px;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .why,
  .services,
  .photos,
  .testimonials,
  .how,
  .local {
    padding: 30px 20px 35px;
  }

  .service-cols,
  .photo-cols,
  .testimonial-list,
  .steps {
    grid-template-columns: 1fr;
  }
}
