/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:  #bae213;
  --purple:  #d0baff;
  --teal:    #5ddcc8;
  --blue:    #8ecfef;
  --black:   #0a0a0a;
  --gray-bg: #f3f4f6;
  --input-bg:#ebebeb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--black);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

/* ── Page wrapper ─────────────────────────────────────────── */
.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 65px;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-logo {
  width: 64px;
  height: 63px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 70px;
}

.nav-link {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0;
  padding-bottom: 6px;
}

.nav-link--active {
  font-weight: 900;
  border-bottom: 3px solid var(--yellow);
}

.nav-link:hover {
  border-bottom: 3px solid var(--yellow);
}

.btn-cta {
  background: var(--black);
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 10px 35px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-cta:hover {
  background: var(--yellow);
  color: var(--black);
}

/* ── NAV BURGER (mobile only) ─────────────────────────────── */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  align-items: center;
  justify-content: center;
}

/* ── MOBILE NAV OVERLAY ───────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-overlay__close {
  position: absolute;
  top: 28px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  line-height: 0;
}

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.nav-overlay__link {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -1px;
  padding-bottom: 6px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}

.nav-overlay__link:hover {
  border-bottom-color: #bae213;
}

.nav-overlay__link--active {
  border-bottom-color: #bae213;
}

/* ── HEADER / HERO ────────────────────────────────────────── */
.header {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 60px;
  width: 100%;
}

.hero {
  display: flex;
  align-items: center;
  gap: 64px;
  min-height: 796px;
  width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 19px;
  flex: 1;
  min-width: 0;
}

.hero-logo-text {
  width: 100%;
  max-width: 545px;
  height: auto;
  object-fit: contain;
}

.hero-logo-text--desktop { max-width: 994px; }
.hero-logo-text--mobile  { display: none; }

@media (max-width: 1100px) {
  .hero-logo-text--desktop { display: none; }
  .hero-logo-text--mobile  { display: block; }
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  color: var(--black);
}

.hero-image-wrap {
  position: relative;
  flex: 0 0 600px;
  height: 797px;
  border-radius: 16px;
  overflow: hidden;
}

/* ── CAROUSEL ─────────────────────────────────────────────── */
.carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-arrows {
  position: absolute;
  bottom: 28px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.1);
}

.arrow-btn img {
  width: 18px;
  height: 18px;
}

.arrow-btn--prev { background: var(--black); }
.arrow-btn--next { background: var(--yellow); }

.carousel-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.dot--active {
  background: #fff;
  transform: scale(1.25);
}

/* ── RESPONSIVE: HERO ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero {
    gap: 40px;
    min-height: auto;
  }

  .hero-image-wrap {
    flex: 0 0 480px;
    height: 640px;
  }
}

@media (max-width: 860px) {
  .header {
    padding: 40px 32px;
  }

  .hero {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-image-wrap {
    flex: none;
    width: 100%;
    height: 480px;
  }
}

@media (max-width: 540px) {
  .header {
    padding: 24px 20px;
  }

  .hero {
    gap: 24px;
  }

  .hero-image-wrap {
    height: 450px;
  }

  .hero-logo-text {
    max-width: 280px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 28px;
  }
}


/* ── SECTIONS / TAGLINE ───────────────────────────────────── */
.sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 30px 0;
}

.star-icon {
  width: 50px;
  height: 49px;
  object-fit: contain;
}

.tagline-text {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.82px;
  line-height: 1.1;
  color: var(--black);
  text-align: center;
}

/* ── SERVICE CARDS ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.service-card {
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-card__top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 0;
  height: 241px;
  flex-shrink: 0;
}

.service-card__top--yellow  { background: var(--yellow); }
.service-card__top--purple  { background: var(--purple); }
.service-card__top--teal    { background: var(--teal); }
.service-card__top--blue    { background: var(--blue); }

.service-card__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.23px;
  color: var(--black);
}

.service-card__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: -0.076px;
  color: var(--black);
  opacity: 0.75;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.service-card__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.15px;
  color: var(--black);
}

.service-card__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.service-card__btn img {
  width: 16px;
  height: 16px;
}

.service-card__image {
  flex: 1;
  overflow: hidden;
  min-height: 342px;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── MANIFESTO (black contact block) ─────────────────────── */
.manifesto {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 20px;
  width: calc(100% - 120px);
  padding: 0 50px;
  margin: 0 auto;
}

.manifesto__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 545px;
  height: 643px;
}

.manifesto__image {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.manifesto__copy {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  min-width: 0;
  padding: 50px 0;
}

.manifesto__headline {
  font-size: 52px;
  font-weight: 900;
  line-height: 55px;
  letter-spacing: -1.68px;
  color: #fff;
}

.manifesto__highlight { color: var(--yellow); }

.manifesto__sub {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #fff;
}

.accent-purple { color: var(--purple); font-weight: 700; }
.accent-teal   { color: var(--teal);   font-weight: 700; }
.accent-blue   { color: var(--blue);   font-weight: 700; }

/* ── SPACER ───────────────────────────────────────────────── */
.spacer {
  height: 50px;
  width: 100%;
  background: #fff;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery {
  background: var(--gray-bg);
  width: 100%;
  padding: 30px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.gallery__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 30px 0;
  width: 100%;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1312px;
}

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  height: 320px;
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sibling spacing — matches internal grid gap */
.gallery__grid + .gallery__special-row,
.gallery__special-row + .gallery__grid,
.gallery__grid + .gallery__grid {
  margin-top: 16px;
}

.gallery__grid--2-3 .gallery__item {
  height: auto;
  aspect-ratio: 2 / 3;
}

/* ── GALLERY SPECIAL ROW (wide + two squares) ──────────────── */
.gallery__special-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 1312px;
}

.gallery__special-row--inverted {
  grid-template-columns: 1fr 1fr 2fr;
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-bar {
  background: var(--yellow);
  width: 100%;
  height: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 35px;
  animation: marquee-scroll 18s linear infinite;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.marquee-item {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}

.marquee-icon {
  width: 20px;
  height: 19px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact {
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-right: 50px;
}

.contact__illustration {
  flex: 0 0 480px;
  max-width: 480px;
  height: 609px;
  overflow: hidden;
}

.contact__illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  min-width: 0;
}

.contact__heading {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -1.68px;
  line-height: 72px;
  color: var(--black);
  text-align: center;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 16px;
}

.form-group input,
.form-group textarea {
  background: var(--input-bg);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.5);
  letter-spacing: -0.31px;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}

.form-group input { height: 50px; }
.form-group textarea { height: 122px; }

.form-group--full { width: 100%; }
.form-group--full textarea { width: 100%; }

.form-row .form-group { flex: 1; min-width: 0; }
.form-row .form-group input { width: 100%; }

.btn-submit {
  background: var(--purple);
  border: none;
  border-radius: 50px;
  padding: 16px;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.31px;
  color: var(--black);
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.85; }

.contact__thankyou {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 32px 0;
}

.contact__thankyou p {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -1.68px;
  line-height: 72px;
  color: var(--black);
  text-align: center;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--black);
  width: 100%;
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 65px;
  overflow: hidden;
}

.footer__logo {
  width: 100%;
  max-width: 515px;
  height: auto;
  object-fit: contain;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
}

.footer__link {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 6px;
}

.footer__link--active {
  font-weight: 900;
  border-bottom: 3px solid var(--yellow);
}

.footer__link:hover { color: var(--yellow); }

.footer__socials {
  display: flex;
  gap: 25px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  transition: opacity 0.2s;
}

.social-icon:hover { opacity: 0.7; }

.social-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/* ════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════ */

/* ── Tablet: ≤1100px ─────────────────────────────────────── */
@media (max-width: 1100px) {
  /* Service cards */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    padding: 24px 40px;
  }

  .nav-links {
    gap: 40px;
  }

  .nav-link, .btn-cta {
    font-size: 18px;
  }

  .manifesto {
    width: calc(100% - 80px);
    padding: 0 40px;
  }

  .gallery {
    padding: 30px 40px;
  }

  .contact {
    padding: 60px 40px;
    gap: 40px;
  }

  .footer {
    padding: 60px 40px;
  }

  .footer__logo {
    max-width: 380px;
  }
}

/* ── Phablet: ≤860px ─────────────────────────────────────── */
@media (max-width: 860px) {
  /* Service cards */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tagline-row {
    gap: 24px;
  }

  .star-icon {
    width: 36px;
    height: 36px;
  }

  .service-card__top {
    height: auto;
    min-height: 180px;
  }

  .service-card__image {
    min-height: 220px;
  }

  /* Nav */
  .nav {
    padding: 20px 32px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-link, .btn-cta {
    font-size: 15px;
  }

  .nav-logo {
    width: 48px;
    height: 48px;
  }

  /* Manifesto */
  .manifesto {
    flex-direction: column;
    width: calc(100% - 64px);
    padding: 40px 32px;
    text-align: center;
  }

  .manifesto__image-wrap {
    flex: none;
    width: 100%;
    height: auto;
    padding: 20px 0 0;
  }

  .manifesto__image {
    max-width: 320px;
    margin: 0 auto;
  }

  .manifesto__headline {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
  }

  .manifesto__sub {
    font-size: 18px;
  }

  /* Gallery */
  .gallery {
    padding: 24px 24px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__special-row {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__special-row .gallery__item--wide {
    grid-column: 1 / -1;
  }

  .gallery__special-row--inverted {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__special-row--inverted .gallery__item--wide {
    grid-column: 1 / -1;
    order: -1;
  }

  /* Contact */
  .contact {
    flex-direction: column;
    padding: 48px 32px;
    gap: 32px;
  }

  .contact__illustration {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 320px;
  }

  .contact__heading {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: auto;
    padding: 60px 32px;
  }

  .footer__logo {
    max-width: 320px;
  }

  .footer__nav {
    align-items: center;
  }
}

/* ── Mobile: ≤540px ──────────────────────────────────────── */
@media (max-width: 540px) {
  /* Nav */
  .nav {
    padding: 16px 20px;
  }

  .nav-left {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .btn-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  /* Manifesto */
  .manifesto {
    width: calc(100% - 40px);
    padding: 32px 24px;
    border-radius: 16px;
  }

  /* Gallery */
  .gallery {
    padding: 20px 16px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__special-row {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__special-row .gallery__item--wide {
    grid-column: 1 / -1;
  }

  .gallery__special-row--inverted {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__special-row--inverted .gallery__item--wide {
    grid-column: 1 / -1;
    order: -1;
  }

  /* Service cards */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card__top {
    height: auto;
    min-height: 200px;
  }

  .service-card__image {
    min-height: 250px;
  }

  .service-card__image img {
    object-position: center;
  }

  .tagline-row {
    gap: 16px;
    padding: 20px 0;
  }

  .star-icon {
    width: 28px;
    height: 28px;
  }

  /* Contact */
  .contact {
    padding: 40px 20px;
  }

  .contact__illustration {
    height: 240px;
  }

  .form-row {
    flex-direction: column;
  }

  /* Footer */
  .footer {
    padding: 48px 20px;
    gap: 32px;
  }

  .footer__logo {
    max-width: 260px;
  }

  .footer__link {
    font-size: 16px;
  }
}
