* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
:root {
  --pink: #ff2f92;
  --black: #101010;
  --grey: #6b6b6b;
  --light: #f6f6f6;
  --border: #e7e7e7;
  --rainbow: linear-gradient(
    90deg,
    #ff3b30,
    #ff9500,
    #ffcc00,
    #34c759,
    #00c7be,
    #007aff,
    #5856d6,
    #af52de,
    #ff2f92
  );
}
html {
  background: #fff;
}
body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: var(--black);
  overflow-x: hidden;
}
button {
  font: inherit;
}
a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #eee;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: var(--rainbow);
  box-shadow:
    0 3px 20px rgba(255, 47, 146, 0.22),
    0 2px 14px rgba(0, 122, 255, 0.15);
}
.logo {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.logo span,
.footer-logo span {
  color: var(--pink);
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: 0.25s;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: 0.25s;
}
nav a:hover,
nav a.active {
  color: var(--pink);
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #111;
  margin: 5px 0;
  transition: 0.3s;
}
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: #111;
}
.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0.42)
  );
}
.hero-content {
  position: absolute;
  z-index: 2;
  left: 8%;
  top: 50%;
  transform: translateY(-42%);
  color: #fff;
  max-width: 900px;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 22px;
  opacity: 0.88;
}
.hero h1 {
  font-size: clamp(3.4rem, 7.4vw, 7.8rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 700;
}
.hero h1 span {
  font-weight: 300;
}
.hero-subtitle {
  margin-top: 28px;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  transition: 0.25s;
}
.btn-light {
  background: #fff;
  color: #111;
}
.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.text-link {
  text-decoration: none;
  font-size: 0.86rem;
}
.text-link span {
  margin-left: 8px;
}
.slider-controls {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.slider-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.25s;
}
.slider-arrow:hover {
  background: #fff;
  color: #111;
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  width: 28px;
  border-radius: 10px;
  background: #fff;
}
.scroll-cue {
  position: absolute;
  left: 7%;
  bottom: 58px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-cue span {
  width: 45px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 130px 8%;
  position: relative;
}
.section-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: #999;
  font-weight: 600;
  margin-bottom: 50px;
}
.section-heading {
  max-width: 850px;
  margin-bottom: 60px;
}
.section-heading h2,
.about-heading h2,
.contact h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.section-heading p {
  color: var(--grey);
  margin-top: 18px;
  max-width: 600px;
}
.about {
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 9vw;
  align-items: start;
}
.mini-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: #999;
  margin-bottom: 22px;
}
.about-heading h2 em,
.contact h2 em {
  font-style: normal;
  font-weight: 300;
}
.about-copy {
  padding-top: 34px;
}
.about-copy p {
  color: #5f5f5f;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-copy .lead {
  font-size: 1.16rem;
  color: #222;
  line-height: 1.75;
}
.arrow-link {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  margin-top: 12px;
  border-bottom: 1px solid #111;
  padding-bottom: 7px;
}
.arrow-link span {
  margin-left: 10px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 100px;
  border-top: 1px solid var(--border);
  padding-top: 35px;
}
.stats-row div {
  display: flex;
  flex-direction: column;
}
.stats-row strong {
  font-size: 2.6rem;
  letter-spacing: -0.05em;
}
.stats-row span {
  font-size: 0.76rem;
  color: #999;
  margin-top: 4px;
}

.services {
  background: #f8f8f8;
}
.service-list {
  border-top: 1px solid #ddd;
}
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid #ddd;
  transition: 0.3s;
}
.service-item:hover {
  padding-left: 15px;
}
.service-item > span {
  color: #aaa;
  font-size: 0.75rem;
}
.service-item h3 {
  font-size: 1.55rem;
  margin-bottom: 7px;
}
.service-item p {
  color: #777;
  font-size: 0.9rem;
}
.service-item b {
  font-size: 1.2rem;
  font-weight: 400;
}

.best-work {
  padding-bottom: 90px;
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: end;
}
.section-heading.split p {
  margin: 0 0 8px auto;
  max-width: 390px;
}
.best-grid {
  columns: 3 260px;
  column-gap: 14px;
}
.best-item {
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  margin: 0 0 14px;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.best-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.best-item:hover img {
  transform: scale(1.025);
}

.portfolio {
  background: #111;
  color: #fff;
}
.portfolio .section-kicker {
  color: #777;
}
.portfolio .section-heading p {
  color: #999;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.portfolio-card {
  position: relative;
  border: 0;
  background: #191919;
  color: #fff;
  text-align: left;
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
  padding: 0;
}
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.82));
}
.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.portfolio-card:hover img {
  transform: scale(1.05);
}
.portfolio-card span,
.portfolio-card h3,
.portfolio-card b {
  position: absolute;
  z-index: 2;
}
.portfolio-card span {
  left: 25px;
  top: 23px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}
.portfolio-card h3 {
  left: 25px;
  bottom: 52px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.portfolio-card b {
  left: 25px;
  bottom: 25px;
  font-size: 0.72rem;
  font-weight: 500;
}

.blog {
  background: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}
.blog-card {
  border: 1px solid var(--border);
  background: #fff;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}
.blog-placeholder {
  height: 170px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #999;
}
.blog-card.featured .blog-placeholder {
  background: linear-gradient(135deg, #f1f1f1, #fafafa);
}
.blog-content {
  padding: 28px;
}
.blog-content span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: #999;
}
.blog-content h3 {
  font-size: 1.5rem;
  margin: 13px 0 10px;
}
.blog-content p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: #777;
}
.blog-content a {
  display: inline-block;
  margin-top: 22px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
}

.quote-section {
  padding: 120px 10%;
  background: #f7f7f7;
  text-align: center;
}
.quote {
  max-width: 900px;
  margin: auto;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}
.quote-section span {
  display: block;
  margin-top: 25px;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.12em;
}

.contact {
  background: #fff;
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1000px;
}
.contact h2 {
  margin-bottom: 25px;
}
.contact p {
  color: #777;
  max-width: 570px;
  line-height: 1.8;
}
.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}
.btn-dark {
  background: #111;
  color: #fff;
}
.btn-dark:hover {
  background: var(--pink);
  transform: translateY(-3px);
}
.btn-outline {
  border: 1px solid #bbb;
  color: #111;
}
.btn-outline:hover {
  border-color: #111;
  transform: translateY(-3px);
}

.album-modal {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 5000;
  overflow-y: auto;
  transform: translateY(100%);
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0 7% 80px;
}
.album-modal.open {
  transform: translateY(0);
}
.album-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid #eee;
  margin-bottom: 45px;
}
.album-back {
  border: 1px solid #ccc;
  background: #fff;
  padding: 9px 18px;
  border-radius: 100px;
  cursor: pointer;
}
.album-modal-header h2 {
  font-size: 1.7rem;
}
.gallery {
  columns: 4 240px;
  column-gap: 14px;
}
.gallery-item {
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  margin: 0 0 14px;
  break-inside: avoid;
  cursor: pointer;
  overflow: hidden;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.025);
}
.loading {
  padding: 50px;
  text-align: center;
  color: #999;
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
#lightbox img {
  max-width: 94%;
  max-height: 92%;
  object-fit: contain;
}
#close {
  position: absolute;
  top: 18px;
  right: 28px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 46px;
  cursor: pointer;
  font-weight: 200;
}

footer {
  padding: 45px 7%;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
}
footer p {
  font-size: 0.72rem;
  color: #999;
}

@media (max-width: 900px) {
  nav {
    gap: 18px;
  }
  nav a {
    font-size: 0.78rem;
  }
  .about-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-copy {
    padding-top: 0;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-header {
    height: 70px;
    padding: 0 5%;
  }
  .burger {
    display: block;
    z-index: 1002;
  }
  nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: min(82vw, 340px);
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 8px;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
    transition: 0.4s;
  }
  nav.open {
    right: 0;
  }
  nav a {
    font-size: 1.2rem;
    padding: 12px 0;
  }
  .hero-content {
    left: 7%;
    right: 7%;
    top: 48%;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }
  .hero-subtitle {
    font-size: 0.78rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .slider-controls {
    right: 7%;
    bottom: 35px;
  }
  .scroll-cue {
    display: none;
  }
  .section {
    padding: 90px 7%;
  }
  .section-kicker {
    margin-bottom: 35px;
  }
  .stats-row {
    grid-template-columns: 1fr;
    margin-top: 65px;
    gap: 25px;
  }
  .service-item {
    grid-template-columns: 45px 1fr 20px;
    gap: 12px;
  }
  .service-item h3 {
    font-size: 1.2rem;
  }
  .service-item p {
    font-size: 0.8rem;
  }
  .best-grid {
    columns: 2 150px;
  }
  .portfolio-card {
    min-height: 330px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .quote-section {
    padding: 85px 7%;
  }
  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery {
    columns: 2 140px;
  }
}
