/* ==================================================
   DESIGN TOKENS
   Custom properties (CSS variables) let us define our
   palette/spacing ONCE and reuse it everywhere. Change
   a value here and it updates across the whole site.
================================================== */
:root {
  /* Colors */
  --ink: #14161A;
  --concrete: #ECEEEF;
  --concrete-dark: #DBDEE1;
  --flow-blue: #2F5EFF;
  --sunset: #FF6A3D;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Spacing scale — using one scale keeps rhythm consistent site-wide */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --radius: 14px;
  --max-width: 1180px;
}

/* ==================================================
   RESET & BASE
   Browsers apply their own default spacing/styles.
   We reset those so we start from a predictable baseline.
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* box-sizing: border-box means padding/border are included
     in an element's width, instead of adding to it. Makes
     layout math far more predictable. */
}

html {
  scroll-behavior: smooth;
  /* smooth scroll for our #anchor nav links */
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--concrete);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

section {
  padding: var(--space-xl) var(--space-md);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--flow-blue);
  margin-bottom: var(--space-sm);
}

.eyebrow--center {
  text-align: center;
}

.eyebrow--onDark {
  color: var(--sunset);
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 700px;
}

.section-title--center {
  text-align: center;
  margin: 0 auto var(--space-lg);
}

/* ==================================================
   BUTTONS
   One reusable base class + "modifier" classes.
   This pattern (base + modifier) avoids repeating
   the same button styles everywhere.
================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--flow-blue);
  color: var(--white);
}

.btn--ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn--large {
  padding: 1.1rem 2.2rem;
  font-size: 0.95rem;
}

/* ==================================================
   NAVIGATION
================================================== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(236, 238, 239, 0.85);
  backdrop-filter: blur(10px);
  /* frosted-glass effect as content scrolls underneath */
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
}

.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.nav__links a:hover {
  color: var(--flow-blue);
}

.nav__toggle {
  display: none;
  /* hidden on desktop, shown in the mobile media query below */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* ==================================================
   HERO
================================================== */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-md);
  position: relative;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__main {
  flex: 1 1 480px;
  min-width: 280px;
}

.hero__logo {
  width: 260px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero__logo {
    width: 160px;
    order: -1;
    margin: 0 auto;
  }
}

.hero__content {
  max-width: 640px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #40454C;
  max-width: 460px;
  margin-bottom: var(--space-md);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.kicktail {
  width: 100%;
  height: 120px;
  margin-top: var(--space-lg);
}

/* ==================================================
   ABOUT
================================================== */
.about {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

.about__text p {
  color: #40454C;
  margin-bottom: var(--space-sm);
  max-width: 480px;
}

.about__art {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

/* ==================================================
   SERVICES
================================================== */
.services {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: transform 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card__icon {
  font-family: var(--font-mono);
  color: var(--flow-blue);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.card p {
  color: #40454C;
  font-size: 0.95rem;
}

/* ==================================================
   GALLERY
================================================== */
.gallery {
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
}

.gallery__grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  /* object-fit: cover crops the image to fill the box without
     stretching/distorting it — standard for photo grids */
  border-radius: var(--radius);
}

/* ==================================================
   PRICING
================================================== */
.pricing {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pricing__text {
  color: #40454C;
  margin-bottom: var(--space-md);
}

/* ==================================================
   TESTIMONIALS
================================================== */
.testimonials {
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-sm);
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card video {
  width: 100%;
  display: block;
  background: var(--ink);
}

.video-card__caption {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #40454C;
  padding: var(--space-sm);
}
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-md);
  position: relative;
}

.quote__mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sunset);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-xs);
}

.quote p {
  color: #2B2E33;
  margin-bottom: var(--space-sm);
}

.quote footer {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #6B7078;
}

/* ==================================================
   FAQ (accordion — behavior added in script.js)
================================================== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--concrete-dark);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  padding: var(--space-sm) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
}

.faq__icon {
  font-family: var(--font-mono);
  color: var(--flow-blue);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

/* When JS marks the button as expanded, rotate the + into an x-like cross */
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq__answer p {
  color: #40454C;
  padding-bottom: var(--space-sm);
  max-width: 600px;
}

/* ==================================================
   CONTACT / WHATSAPP CTA
================================================== */
.contact {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.contact__subtitle {
  color: #B7BBC1;
  margin-bottom: var(--space-md);
}

.contact__or {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #6B7078;
  margin: var(--space-md) 0;
}

.contact__link {
  color: var(--flow-blue);
  text-decoration: underline;
}

.contact__form {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__success {
  max-width: 420px;
  margin: 0 auto;
  color: var(--white);
  font-family: var(--font-mono);
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__row label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #B7BBC1;
}

.form__row input,
.form__row select,
.form__row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #33363D;
  background: #1D2026;
  color: var(--white);
}

/* :focus-visible styles the element only when focused via keyboard —
   keeps mouse clicks clean while still supporting keyboard navigation */
.form__row input:focus-visible,
.form__row select:focus-visible,
.form__row textarea:focus-visible {
  outline: 2px solid var(--flow-blue);
  outline-offset: 2px;
}

/* ==================================================
   FOOTER
================================================== */
.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
}

.footer__logo-img {
  height: 34px;
}

.footer__links {
  display: flex;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.footer__socials a {
  border: 1px solid var(--concrete-dark);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  transition: all 0.15s ease;
}

.footer__socials a:hover {
  background: var(--flow-blue);
  border-color: var(--flow-blue);
  color: var(--white);
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #6B7078;
  width: 100%;
  padding-top: var(--space-sm);
}

/* ==================================================
   RESPONSIVE — MOBILE
   Media queries let CSS adapt based on screen width.
   "max-width: 768px" means "apply these rules when the
   screen is 768px wide or narrower" (roughly tablet/phone).
================================================== */
@media (max-width: 768px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--concrete);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-md);
    display: none;
    /* JS toggles this to "flex" when the hamburger is clicked */
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__cta {
    display: none;
    /* keep mobile nav bar uncluttered; CTA still lives in hero */
  }

  .nav__toggle {
    display: flex;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__text p {
    margin-left: auto;
    margin-right: auto;
  }
}