@font-face {
  font-family: "ITC";
  src: url("assets/fonts/ITC-AVANT-GARDE-GOTHIC-LT-MEDIUM.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #030303;
  --panel: #111;
  --white: #fff;
  --muted: rgba(255, 255, 255, .72);
  --line: rgba(255, 185, 24, .28);
  --gold: #ffb000;
  --gold-2: #ffd45b;
  --font-main: "Plus Jakarta Sans", Helvetica, Arial, sans-serif;
  --font-display: "ITC", "Plus Jakarta Sans", sans-serif;
  --font-script: "Brush Script MT", "Segoe Script", cursive;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 176, 0, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 176, 0, .035) 1px, transparent 1px),
    var(--black);
  background-size: 150px 150px;
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 17px;
  max-width: 100%;
  overflow-x: hidden;
}

body.is-smooth-scrolling { overscroll-behavior-y: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.section-dark { background: transparent; position: relative; }

.site-header {
  display: flex;
  justify-content: center;
  left: 0;
  padding: 28px 24px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.nav-pill {
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .45);
  display: flex;
  gap: 42px;
  padding: 12px 38px;
}

.nav-pill a {
  color: var(--white);
  font-size: 14px;
  position: relative;
  transition: color .2s ease;
}
.nav-pill a:hover,
.nav-pill a.is-active { color: var(--gold); }
.nav-pill a::after {
  background: var(--gold);
  border-radius: 999px;
  bottom: -13px;
  content: "";
  height: 2px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) scaleX(.4);
  transition: opacity .25s ease, transform .25s ease;
  width: 22px;
}
.nav-pill a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.hero {
  min-height: auto;
  overflow: hidden;
  position: relative;
}
.hero-banner {
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}
.scroll-btn {
  align-items: center;
  border: 1px dashed var(--gold);
  border-radius: 8px;
  bottom: 140px;
  color: var(--white);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 40px);
  gap: 10px;
  left: 8.5vw;
  padding: 8px 14px 10px;
  position: absolute;
  display: none;
  z-index: 3;
}
.scroll-btn span { color: var(--gold); }

.stats-bar {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, 1fr);
  padding: 35px 7vw 48px;
  text-align: center;
}
.stats-bar strong {
  color: var(--gold);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 76px);
  line-height: 1;
}
.stats-bar span {
  color: var(--white);
  font-size: 15px;
}

.ring {
  filter: hue-rotate(300deg) saturate(1.85) brightness(1.13) sepia(.28);
  opacity: .65;
  pointer-events: none;
  position: absolute;
  transition: filter .45s ease, opacity .45s ease;
  z-index: 0;
}
.about:hover .ring,
.portfolio:hover .ring,
.stories:hover .ring,
.contact:hover .ring {
  filter: hue-rotate(300deg) saturate(2.15) brightness(1.28) sepia(.36);
  opacity: .86;
}
.ring-about-left {
  animation: ringDriftLeft 10s ease-in-out infinite alternate;
  left: -19vw;
  top: -7vw;
  transform: rotate(24deg);
  width: min(36vw, 560px);
}
.ring-about-right {
  animation: ringDriftRight 12s ease-in-out infinite alternate;
  right: -14vw;
  top: -4vw;
  width: min(38vw, 620px);
}
.ring-work-left {
  animation: ringDriftRight 11s ease-in-out infinite alternate;
  bottom: -10vw;
  left: -16vw;
  transform: rotate(35deg);
  width: min(34vw, 540px);
}
.ring-work-right {
  animation: ringDriftLeft 9s ease-in-out infinite alternate;
  right: -15vw;
  top: -5vw;
  width: min(30vw, 500px);
}
.ring-stories {
  animation: ringDriftLeft 13s ease-in-out infinite alternate;
  right: -12vw;
  top: 90px;
  width: min(34vw, 560px);
}
.ring-contact-left {
  animation: ringDriftRight 12s ease-in-out infinite alternate;
  bottom: -10vw;
  left: -18vw;
  width: min(42vw, 640px);
}
.ring-contact-right {
  animation: ringDriftLeft 10s ease-in-out infinite alternate;
  right: -16vw;
  top: 12vw;
  transform: rotate(120deg);
  width: min(32vw, 520px);
}

.about,
.portfolio,
.stories,
.contact,
.footer-hero {
  overflow: hidden;
  padding: 78px 9vw;
}

.section-kicker {
  border-left: 8px solid var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 56px);
  margin-bottom: 42px;
  padding-left: 18px;
  position: relative;
  z-index: 1;
}
.about-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: .82fr 1fr;
  position: relative;
  z-index: 1;
}
.about-image {
  border: 1px solid rgba(255, 255, 255, .6);
  padding: 2px;
}
.about-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}
.about-copy h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(42px, 4.3vw, 82px);
  line-height: .95;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
}
.about-copy h2 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 58px);
  margin: 12px 0 34px;
}
.about-copy p {
  color: var(--white);
  line-height: 1.45;
  margin: 0 0 18px;
  max-width: 760px;
}
.gold-btn {
  align-items: center;
  background: linear-gradient(90deg, #ff9e00, #ffd559);
  border-radius: 999px;
  color: var(--black);
  display: inline-flex;
  font-weight: 800;
  gap: 14px;
  margin-top: 6px;
  padding: 12px 28px;
}
.gold-btn small { font-weight: 700; opacity: .8; }

.row-heading {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.section-heading h2 {
  color: rgba(255, 255, 255, .42);
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 112px);
  font-weight: 500;
  line-height: .92;
  margin: 0;
}
.section-heading h2 span {
  color: var(--gold);
  font-family: var(--font-script);
  font-style: italic;
}
.slider-dots {
  display: flex;
  gap: 10px;
}
.slider-dots span {
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  height: 34px;
  width: 34px;
}
.work-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
  position: relative;
  z-index: 1;
}
.work-card {
  background: #101010;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .48);
  padding: 14px 14px 18px;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), filter .55s ease;
}
.work-card:hover {
  filter: brightness(1.12);
  transform: translateY(-10px);
}
.work-card img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}
.work-card p {
  color: var(--white);
  font-size: 13px;
  line-height: 1.35;
  margin: 14px 0 0;
  min-height: 36px;
  text-transform: uppercase;
}
.view-more {
  align-items: center;
  background: linear-gradient(180deg, #2a2a2a, #151515);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 14px;
  gap: 13px;
  margin: 42px auto 0;
  padding: 11px 20px;
  position: relative;
  width: max-content;
  z-index: 1;
}
.view-more span {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: var(--black);
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.connect-marquee {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 94px);
  line-height: 1;
  overflow: hidden;
  padding: 20px 0 26px;
  transform: rotate(-3deg) scaleX(1.03);
  white-space: nowrap;
}
.marquee-track {
  animation: marquee 18s linear infinite;
  display: inline-flex;
  gap: 28px;
  padding-left: 100%;
}

.stories-heading {
  margin: auto;
  max-width: 760px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.small-mark {
  color: var(--gold);
  display: block;
  font-family: var(--font-script);
  font-size: 32px;
  margin-bottom: 8px;
}
.stories-heading h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 96px);
  margin: 0;
}
.stories-heading p {
  color: var(--gold-2);
  line-height: 1.5;
}
.testimonial-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.testimonial-grid article {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .55);
  padding: 32px;
}
.testimonial-grid img {
  border-radius: 999px;
  height: 62px;
  object-fit: cover;
  width: 62px;
}
.testimonial-grid p {
  color: var(--white);
  line-height: 1.55;
  margin: 24px 0;
}
.testimonial-grid span { color: var(--gold); }
.testimonial-grid h3 {
  color: var(--white);
  margin-bottom: 2px;
}
.chat-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}
.chat-grid img {
  border: 1px solid rgba(255, 255, 255, .45);
  height: 160px;
  object-fit: cover;
  object-position: center 71%;
  width: 100%;
}

.contact {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: .95fr 1.05fr;
}
.contact-title,
.contact-form {
  position: relative;
  z-index: 1;
}
.contact-title h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 116px);
  line-height: .9;
  margin: 0;
}
.contact-title span {
  color: var(--gold);
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
}
.contact-form {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .58);
  color: var(--white);
  min-height: 45px;
  padding: 12px 14px;
}
.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 92px;
  resize: vertical;
}
.contact-form button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 999px;
  color: var(--gold);
  cursor: pointer;
  font-weight: 800;
  justify-self: start;
  padding: 13px 24px;
}

.footer-hero {
  padding-top: 20px;
}
.footer-hero > p {
  color: var(--white);
}
.footer-hero > p span { color: var(--gold); }
.footer-contact {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  gap: 36px;
  grid-template-columns: .85fr 1.15fr;
  padding: 34px 0;
}
.footer-contact h2 {
  color: #dce5f5;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.5vw, 70px);
  line-height: .9;
  margin: 0;
  text-transform: uppercase;
}
.footer-contact h2 span { color: var(--gold); }
.footer-contact a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 38px);
  justify-self: end;
}
.footer-bottom {
  align-items: end;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 44px;
}
.footer-bottom strong {
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 38px;
  font-weight: 400;
}
.footer-bottom div {
  display: grid;
  gap: 8px;
}
.footer-bottom a { color: var(--white); }
.footer-bottom nav {
  display: flex;
  gap: 18px;
  justify-self: end;
}
.footer-bottom nav a {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
}
.site-footer {
  color: rgba(255, 255, 255, .45);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 20px 9vw 36px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

@keyframes ringDriftLeft {
  from { translate: 0 0; }
  to { translate: -28px 18px; }
}

@keyframes ringDriftRight {
  from { translate: 0 0; }
  to { translate: 32px -16px; }
}

@media (prefers-reduced-motion: reduce) {
  .ring,
  .marquee-track,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-banner { height: auto; min-height: 0; }
  .scroll-btn { bottom: 80px; }
  .stats-bar,
  .work-grid,
  .testimonial-grid,
  .chat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .contact,
  .footer-contact { grid-template-columns: 1fr; }
  .footer-contact a { justify-self: start; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .site-header { padding: 16px 10px; }
  .nav-pill {
    gap: 18px;
    justify-content: center;
    padding: 10px 16px;
    width: calc(100vw - 28px);
  }
  .nav-pill a { font-size: 12px; }
  .hero-banner {
    height: auto;
    min-height: 0;
    object-position: center top;
  }
  .scroll-btn {
    bottom: 46px;
    font-size: 20px;
    left: 7vw;
  }
  .stats-bar,
  .work-grid,
  .testimonial-grid,
  .chat-grid,
  .footer-bottom { grid-template-columns: 1fr; }
  .about,
  .portfolio,
  .stories,
  .contact,
  .footer-hero { padding: 58px 6vw; }
  .stats-bar { padding-inline: 6vw; }
  .contact-form { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: 54px; }
  .connect-marquee { transform: rotate(-4deg); }
  .ring-about-left,
  .ring-work-right,
  .ring-contact-right { display: none; }
  .ring-about-right { right: -72vw; top: 10vw; width: 118vw; }
  .ring-work-left { left: -66vw; width: 112vw; }
  .ring-stories { opacity: .35; right: -74vw; width: 120vw; }
  .ring-contact-left { left: -68vw; width: 120vw; }
  .site-footer {
    flex-direction: column;
    gap: 10px;
    padding-inline: 6vw;
  }
}
