/* =========================================================
   AKSHETICS — MODERN 2026 PORTFOLIO
   Complete replacement stylesheet
========================================================= */

:root {
  --black: #080706;
  --black-2: #0e0c0a;
  --white: #fffdf9;
  --warm-white: #f4efe7;
  --orange: #e86f24;
  --orange-light: #ff9b57;
  --text-muted: #9d968e;
  --text-soft: #c9c1b8;
  --orange-line: rgba(232, 111, 36, 0.58);
  --white-line: rgba(244, 239, 231, 0.13);
  --radius: 22px;
  --font-body: "Poppins", Helvetica, Arial, sans-serif;
  --font-display: "Oswald", Impact, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 8%, rgba(232, 111, 36, 0.10), transparent 28rem),
    radial-gradient(circle at 10% 50%, rgba(232, 111, 36, 0.045), transparent 25rem),
    var(--black);
  color: var(--warm-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button {
  font-family: inherit;
}

img,
video {
  max-width: 100%;
}

.section-pad {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(8, 7, 6, 0.97),
    rgba(8, 7, 6, 0.65),
    transparent
  );
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.brand-logo,
.menu-toggle {
  pointer-events: auto;
}

.brand-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* HAMBURGER */

.menu-toggle {
  width: 54px;
  height: 54px;
  border: 1px solid var(--orange-line);
  border-radius: 50%;
  background: rgba(8, 7, 6, 0.80);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(232, 111, 36, 0.10);
  transform: scale(1.04);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-white);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* NAVIGATION */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  background:
    radial-gradient(circle at 85% 20%, rgba(232, 111, 36, 0.10), transparent 28rem),
    rgba(8, 7, 6, 0.985);
  transform: translateY(-105%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-nav.open {
  transform: translateY(0);
}

.nav-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 100%;
  margin: auto;
  padding-top: 130px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-label {
  color: var(--orange-light);
  font-size: 11px;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
}

.nav-inner a {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  color: var(--warm-white);
  border-bottom: 1px solid var(--white-line);
  padding: 12px 0;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.nav-inner a:hover {
  color: var(--orange-light);
  padding-left: 15px;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding-top: 145px;
  padding-bottom: 90px;
}

.hero-heading {
  position: relative;
  width: 100%;
  margin-bottom: 55px;
  text-align: center;
}

.eyebrow {
  color: var(--orange-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  margin-bottom: 22px;
  text-align: center;
}

.hero h1,
.hero h2 {
  width: 100%;
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  text-align: center;
  white-space: nowrap;
}

.hero h1 {
  font-size: clamp(5.4rem, 18vw, 13rem);
  color: var(--white);
  line-height: 0.88;
  margin: 0;
}

.hero h2 {
  font-size: clamp(3.5rem, 11vw, 8rem);
  color: var(--orange);
  line-height: 0.92;
  margin: 14px 0 0;
}

/* HERO CARD */

.hero-card {
  position: relative;
  width: min(650px, 100%);
  min-height: 490px;
  margin: 0 auto;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(232, 111, 36, 0.09), transparent 50%),
    #0c0a08;
  box-shadow: 0 0 70px rgba(232, 111, 36, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 80px rgba(232, 111, 36, 0.11);
}

.hero-card-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(130px);
  opacity: 0.14;
}

.hero-logo {
  position: relative;
  width: min(190px, 42%);
  max-height: 190px;
  object-fit: contain;
  margin-bottom: 26px;
}

.hero-card-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card-copy strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.hero-card-copy span {
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.8;
}

.card-corner {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--orange-light);
  font-size: 9px;
  letter-spacing: 0.18em;
}

/* INTRO */

.intro-copy {
  width: min(700px, 100%);
  margin: 65px auto 0;
  text-align: center;
}

.intro-copy p {
  color: var(--text-soft);
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.8;
}

/* SECTION HEAD */

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  border-bottom: 1px solid var(--white-line);
  padding-bottom: 16px;
  margin-bottom: 35px;
}

.section-number {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 5px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

/* SERVICES */

.services {
  padding-top: 80px;
  padding-bottom: 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.service-card {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  background: rgba(232, 111, 36, 0.055);
  transform: translateY(-3px);
}

.service-card > span {
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.92;
  margin-top: 55px;
  color: var(--white);
}

.service-card p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.65;
  max-width: 250px;
  margin-top: 16px;
}

/* SCROLLING STRIP */

.scrolling-strip {
  margin-top: 65px;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border-top: 1px solid var(--orange-line);
  border-bottom: 1px solid var(--orange-line);
  padding: 16px 0;
  background: rgba(232, 111, 36, 0.035);
}

.strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: marquee 28s linear infinite;
}

.strip-track span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.strip-track i {
  color: var(--orange);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ABOUT */

.about {
  padding-top: 100px;
  padding-bottom: 130px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
}

.about-big {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.025em;
}

.about-big em {
  color: var(--orange-light);
  font-style: normal;
}

.about-small {
  padding-top: 10px;
}

.about-small p {
  color: #b5aea5;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 25px;
}

.about-small strong {
  color: var(--warm-white);
}

/* WORK */

.work {
  padding-top: 70px;
  padding-bottom: 120px;
}

.work-intro {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.work-intro span {
  color: var(--orange-light);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
}

/* REELS */

.reels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 25px;
}

.reel-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.reel-card:hover {
  transform: translateY(-4px);
}

.video-wrap {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border: 1px solid var(--orange);
  border-radius: 18px;
  background: #111;
  box-shadow: 0 0 0 rgba(232, 111, 36, 0);
  transition: box-shadow 0.35s ease;
}

.reel-card:hover .video-wrap {
  box-shadow: 0 15px 50px rgba(232, 111, 36, 0.13);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}

.video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25),
      transparent 25%,
      transparent 70%,
      rgba(0, 0, 0, 0.40)
    );
}

.video-number {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 15px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.sound-hint {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 13px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(8, 7, 6, 0.58);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.sound-hint:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.07);
}

.reel-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 13px;
  color: var(--white);
}

/* REVIEWS */

.reviews {
  padding-top: 100px;
  padding-bottom: 130px;
}

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

.review-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.018);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  border-color: var(--orange-line);
  transform: translateY(-3px);
}

.stars {
  color: #f1bd50;
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 35px;
}

.review-card p {
  color: #c6beb5;
  font-size: 13px;
  line-height: 1.8;
  flex: 1;
}

.review-card strong {
  font-size: 13px;
  margin-top: 25px;
}

.review-card span {
  color: var(--orange-light);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* CONTACT */

.contact {
  min-height: 90vh;
  padding-top: 110px;
  padding-bottom: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-label {
  color: var(--orange-light);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 25px;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.contact h2 em {
  color: var(--orange);
  font-style: normal;
}

.email-link {
  display: inline-block;
  width: fit-content;
  margin-top: 50px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--orange);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.email-link:hover {
  color: var(--orange-light);
  border-color: var(--orange-light);
}

.social-links {
  display: flex;
  gap: 30px;
  margin-top: 55px;
}

.social-links a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--white-line);
  padding-bottom: 7px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  color: var(--orange-light);
  border-color: var(--orange);
}

.social-links a span {
  color: var(--orange);
  margin-left: 10px;
}

footer {
  margin-top: 100px;
  padding-top: 18px;
  border-top: 1px solid var(--white-line);
  display: flex;
  justify-content: space-between;
  color: #77716b;
  font-size: 9px;
  letter-spacing: 0.15em;
}

/* MODAL */

.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reel-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 600px);
  max-height: 94vh;
}

.modal-video-shell {
  width: 100%;
  max-height: 82vh;
  border: 1px solid var(--orange);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

#modalVideo {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #000;
}

.modal-close {
  position: absolute;
  z-index: 3;
  right: -12px;
  top: -14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.modal-close:hover {
  background: var(--orange);
  transform: rotate(90deg);
}

.modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 13px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-meta span:first-child {
  color: var(--orange);
}

.modal-meta span:last-child {
  color: var(--text-muted);
}

/* TABLET */

@media (max-width: 800px) {
  .section-pad {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 20vw, 7.5rem);
  }

  .hero h2 {
    font-size: clamp(3rem, 13vw, 5rem);
    margin-top: 10px;
  }

  .hero-card {
    min-height: 410px;
  }

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

  .service-card {
    min-height: 205px;
    padding: 18px;
  }

  .service-card h3 {
    margin-top: 38px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-big {
    font-size: clamp(2.7rem, 12vw, 5rem);
  }

  .work-intro {
    flex-direction: column;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 250px;
  }
}

/* MOBILE */

@media (max-width: 520px) {
  .section-pad {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: 115px;
    padding-bottom: 70px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.5rem);
    line-height: 0.9;
    text-align: center;
  }

  .hero h2 {
    font-size: clamp(2.7rem, 12vw, 4.5rem);
    line-height: 0.92;
    margin-top: 12px;
    text-align: center;
  }

  .hero-card {
    min-height: 390px;
    border-radius: 18px;
  }

  .hero-logo {
    width: 145px;
    margin-bottom: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 180px;
  }

  .service-card h3 {
    margin-top: 30px;
  }

  .strip-track {
    gap: 20px;
    animation-duration: 24s;
  }

  .about {
    padding-top: 75px;
    padding-bottom: 90px;
  }

  .about-big {
    font-size: clamp(2.7rem, 12vw, 4.5rem);
  }

  .reels-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .video-wrap {
    aspect-ratio: 9 / 13.5;
    border-radius: 17px;
  }

  .reviews {
    padding-top: 75px;
    padding-bottom: 90px;
  }

  .contact {
    min-height: 85vh;
    padding-top: 80px;
  }

  .contact h2 {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .email-link {
    font-size: 0.92rem;
    word-break: break-word;
  }

  .social-links {
    flex-direction: column;
    gap: 18px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
    margin-top: 75px;
  }

  .nav-inner {
    width: calc(100% - 28px);
  }

  .nav-inner a {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .modal-content {
    width: calc(100% - 28px);
  }

  .modal-close {
    right: -5px;
    top: -48px;
  }
}

/* SMALL PHONES */

@media (max-width: 360px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .section-head h2 {
    font-size: 2.2rem;
  }

  .hero-card {
    min-height: 350px;
  }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
