/* ============================================================
   DROPPR.XYZ
   ============================================================ */

:root {
  --amber: #FBAF1A;
  --cd: "Clash Display", sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; }
body {
  margin: 0; min-height: 100%;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1rem; line-height: 1.5; color: #000;
  background-color: #2c2c2c;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* All headings inherit Clash Display from this single rule */
h1, h2, h3, h4, h5, h6 {
  margin: 0; font-family: var(--cd); font-weight: 600; line-height: 1.1;
  text-transform: uppercase;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Fonts ───────────────────────────────────────────────────── */
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clashdisplay-semibold.woff") format("woff");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/clashdisplay-medium.woff") format("woff");
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ── Shared UI text style (Clash Display, uppercase, medium) ─── */
/* Every small label, button, nav item, marquee text, footer link */
.text-meta, .nav-link, .nav-signin, .btn,
.mobile-nav-link, .marquee-strip-text, .marquee-black-text,
.view-circle, .footer-nav-link, .footer-copy {
  font-family: var(--cd);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── Layout ──────────────────────────────────────────────────── */
.page-wrapper {
  max-width: 1800px; margin: 0 auto;
  border-left: 3px solid #000; border-right: 3px solid #000;
  overflow: clip;
}
.main-wrapper { background-color: var(--amber); position: relative; }
.page-padding { padding-left: 3rem; padding-right: 3rem; }

/* ── Headings (size only — font/weight/case set on h1-h6 above) */
.heading-h1 { font-size: 3rem; letter-spacing: 2px; line-height: 1.1; }
.heading-h3 { font-size: 2rem; letter-spacing: 1px; line-height: 1.2; }
.heading-h4 { font-size: 1.5rem; letter-spacing: 1px; line-height: 1.2; }
.heading-h6 { font-size: 1.125rem; letter-spacing: 1px; line-height: 1.3; }
.hero-subheading { font-size: 3rem; letter-spacing: 1px; line-height: 1.1; }
.cta-heading { font-family: var(--cd); font-weight: 600; font-size: 5rem; letter-spacing: 2px; line-height: 1; text-align: center; color: #fff; text-transform: uppercase; }

.text-meta { font-size: 13px; line-height: 1.4; }
.text-meta-muted { color: rgba(0,0,0,0.55); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.5rem; font-size: 12px; line-height: 1;
  cursor: pointer; border: none; transition: background-color 0.2s;
}
.btn-amber { background-color: var(--amber); color: #000; }
.btn-amber:hover { background-color: #e8a010; }

/* ── Navbar ──────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background-color: #000; }
.navbar-inner {
  display: grid; grid-template-columns: auto 1fr;
  align-items: center; gap: 1rem;
  padding-top: 0.35rem; padding-bottom: 0.35rem;
}
.navbar-logo img { width: 50px; height: 50px; }
.navbar-right { display: flex; justify-content: flex-end; align-items: center; gap: 2rem; }
.navbar-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 13px; color: #fff; display: flex; flex-direction: column; gap: 2px; }
.nav-link-line { height: 1px; background-color: #fff; width: 0; transition: width 0.3s; }
.nav-link:hover .nav-link-line { width: 100%; }
.nav-signin {
  background-color: var(--amber); color: #000;
  padding: 0.6rem 1.25rem; font-size: 12px;
  white-space: nowrap; transition: background-color 0.2s;
}
.nav-signin:hover { background-color: #e8a010; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 18px; flex-shrink: 0; padding: 0;
}
.hamburger span {
  display: block; height: 1.5px; width: 100%; background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background-color: #000; padding: 0 2rem;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.76, 0, 0.24, 1),
              padding 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.mobile-menu.open { max-height: 400px; padding: 1.5rem 2rem; }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav-link {
  font-size: 13px; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}

/* ── Hero ────────────────────────────────────────────────────── */
.section-hero { background-color: #fff; }
.hero-text-block { padding-top: 2rem; padding-bottom: 1rem; overflow: hidden; }
.typeface-img { max-width: 100%; margin-bottom: 0.5rem; }

@keyframes fadeDown {
  from { opacity: 0; transform: translate3d(0, -200px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0%, 0) scale3d(1,1,1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg,0deg); transform-style: preserve-3d; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translate3d(0, 200px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0%, 0) scale3d(1,1,1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg,0deg); transform-style: preserve-3d; }
}
.hero-text-block .typeface-img { animation: fadeDown 0.9s cubic-bezier(0.76, 0, 0.24, 1) both; }
.hero-subheading { animation: fadeUp 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.18s both; }

/* ── Marquee strips ──────────────────────────────────────────── */
.marquee-strip { background-color: var(--amber); border-top: 3px solid #000; overflow: hidden; }
.marquee-track {
  display: flex; flex-wrap: nowrap; align-items: center;
  padding: 0.5rem 0; gap: 0.5rem;
  animation: marquee-left 40s linear infinite; width: max-content;
}
.marquee-track--right { animation-name: marquee-right; }
.marquee-strip-text { font-size: 12px; white-space: nowrap; color: #000; }

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

/* ── Hero image ──────────────────────────────────────────────── */
.hero-image-wrapper {
  border-top: 3px solid #000; border-bottom: 3px solid #000;
  overflow: hidden;
}
.hero-image-wrapper img { width: 100%; display: block; }

/* ── Featured Artists ────────────────────────────────────────── */
.section-clients { background-color: var(--amber); padding: 3.5rem 0; }
.clients-label-row { padding-bottom: 2rem; }
.clients-label { display: flex; align-items: center; gap: 10px; }
.clients-label-line { width: 24px; height: 2px; background-color: #000; flex-shrink: 0; }
.clients-logos-overflow { overflow: hidden; }
.clients-logos-track {
  display: flex; flex-wrap: nowrap; align-items: center;
  gap: 80px; padding-left: 3rem;
  animation: marquee-right 20s linear infinite; width: max-content;
}
.client-logo { display: block; height: 90px; width: auto; flex-shrink: 0; }

/* ── Services ────────────────────────────────────────────────── */
.section-services { background-color: var(--amber); padding: 5rem 0; }
.services-header { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }
.services-typeface { width: 160px; }
.services-cards { display: flex; flex-direction: column; }
.service-card-wrapper {
  position: sticky; top: 0; padding-top: 1.5rem;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.service-card-wrapper:nth-child(2) { transition-delay: 0.12s; }
.service-card-wrapper:nth-child(3) { transition-delay: 0.24s; }
.service-card-wrapper.in-view { opacity: 1 !important; transform: translateY(0) !important; }
.service-card { background-color: #f8f8f8; padding: 3rem; }
.service-card-heading { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.service-card-heading img { width: 40px; flex-shrink: 0; }
.service-card-body { font-size: 1rem; line-height: 1.6; text-transform: uppercase; }

/* ── Featured Work marquee (black) ──────────────────────────── */
.section-marquee-black { background-color: #000; overflow: hidden; }
.marquee-black-track {
  display: flex; flex-wrap: nowrap; align-items: center;
  padding: 0.125rem 0; gap: 1.5vw;
  animation: marquee-left 35s linear infinite; width: max-content;
}
.marquee-black-text { font-size: 3vw; white-space: nowrap; line-height: 1; color: #fff; }
.marquee-black-text.outline { -webkit-text-stroke: 1px #fff; color: transparent; }

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

/* ── Work grid ───────────────────────────────────────────────── */
.section-work { background-color: #fff; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 4rem 0 5rem; }
.work-image-wrapper {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  margin-bottom: 1rem; border: 5px solid var(--amber); transition: border-width 0.3s;
}
.work-image-wrapper:hover { border-width: 10px; }
.work-image-wrapper img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-view-btn {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.work-image-wrapper:hover .work-view-btn { opacity: 1; }
.view-circle {
  width: 100px; height: 100px; border-radius: 50%;
  background-color: var(--amber); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.work-link-overlay { position: absolute; inset: 0; z-index: 3; }
.work-title { margin-bottom: 0.125rem; }
.work-tags { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background-color: #000; color: #fff; margin-top: -1px; }
.footer-grid {
  display: grid; grid-template-columns: 0.5fr 1fr;
  gap: 4rem; padding: 6rem 0;
}
.footer-logo img { width: 200px; }
.footer-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.footer-col-heading { color: #fff; margin-bottom: 2rem; }
.footer-nav { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.footer-nav-link {
  font-size: 13px; color: rgba(255,255,255,0.7);
  display: inline-flex; flex-direction: column; gap: 2px; transition: color 0.2s;
}
.footer-nav-link:hover { color: #fff; }
.footer-nav-link-line { height: 1px; background-color: #fff; width: 0; transition: width 0.3s; }
.footer-nav-link:hover .footer-nav-link-line { width: 100%; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0; text-align: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-copy a { color: rgba(255,255,255,0.7); }
.footer-copy a:hover { color: #fff; text-decoration: underline; }

/* ── Floating circle ─────────────────────────────────────────── */
.banner-circle-wrapper {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 1800px; pointer-events: none; z-index: 9999;
}
.banner-circle { position: absolute; bottom: 3rem; right: 4rem; pointer-events: auto; }
.banner-circle img { width: 120px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .page-padding { padding-left: 2rem; padding-right: 2rem; }
  .navbar-menu, .nav-signin { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-logo { display: none; }
  .section-clients { padding: 2rem 0; }
  .client-logo { height: 60px; }
  .section-services { padding: 3rem 0; }
  .cta-heading { font-size: 4rem; }
  .marquee-black-text { font-size: 3rem; }
}
@media (max-width: 767px) {
  .page-padding { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-subheading { font-size: 2rem; }
  .heading-h1 { font-size: 2.5rem; }
  .work-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-heading { font-size: 3rem; }
  .marquee-black-text { font-size: 2rem; }
  .banner-circle { right: 2.5rem; }
  .banner-circle img { width: 90px; }
}
@media (max-width: 479px) {
  .page-padding { padding-left: 1rem; padding-right: 1rem; }
  .hero-subheading { font-size: 1.5rem; }
  .cta-heading { font-size: 2.5rem; }
  .marquee-black-text { font-size: 1.5rem; }
  .footer-columns { grid-template-columns: 1fr; gap: 3rem; }
  .banner-circle { right: 1.5rem; }
  .banner-circle img { width: 80px; }
}

/* ════════════════════════════════════════════
   INNER PAGES
════════════════════════════════════════════ */

/* ── Featured Work hero ──────────────────────  */
.fw-hero { background-color: #fff; padding: 4rem 0; }
.fw-hero-title { font-size: clamp(3.5rem, 9vw, 8rem); letter-spacing: 2px; line-height: 1; }

/* ── CTA → Contact (sliding doors) ──────────── */
.section-cta-contact { position: relative; overflow: hidden; background-color: var(--amber); }

/* Door panels — two black halves that slide apart */
.cta-door {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background-color: #000; z-index: 2;
  transition: transform 1.1s cubic-bezier(0.64, 0, 0.78, 0);
  will-change: transform;
}
.cta-door-left  { left: 0; }
.cta-door-right { right: 0; }
.section-cta-contact.revealed .cta-door-left  { transform: translateX(-100%); }
.section-cta-contact.revealed .cta-door-right { transform: translateX(100%); }

/* CTA text — sits above the doors, centered over the section */
.cta-state {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}
.cta-inner {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  padding: 4rem 0;
}
.cta-logo img { width: 100px; height: 100px; margin: 0 auto; }

/* Contact form — always in flow (gives section its height), hidden by doors until revealed */
.contact-state { visibility: hidden; }
.section-cta-contact.revealed .contact-state { visibility: visible; }

/* ── Contact ─────────────────────────────────── */
.section-contact { background-color: var(--amber); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 0.8fr;
  gap: 4rem; align-items: center; padding: 6rem 0 4rem;
}
.contact-label { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.contact-label-line { width: 24px; height: 2px; background-color: #000; flex-shrink: 0; }
.contact-label-text { font-family: var(--cd); font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; }
.contact-heading { font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: 2px; line-height: 0.95; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-input,
.contact-textarea {
  width: 100%; padding: 1rem 1.25rem; border: 2px solid #000; outline: none;
  font-family: Inter, sans-serif; font-size: 1rem; background-color: #fff;
}
.contact-textarea { resize: vertical; min-height: 130px; }
.contact-input::placeholder,
.contact-textarea::placeholder { color: rgba(0,0,0,0.4); }
.contact-submit {
  align-self: flex-start; padding: 0.9rem 1.75rem;
  background-color: #000; color: #fff;
  font-family: var(--cd); font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1.5px;
  cursor: pointer; border: none; transition: background-color 0.2s;
}
.contact-submit:hover { background-color: #333; }
.contact-follow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2.5rem 0;
}
.contact-follow-title { font-family: var(--cd); font-weight: 600; font-size: 1.75rem; text-transform: uppercase; }
.contact-socials { display: flex; gap: 2.5rem; align-items: center; }
.contact-social-link {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--cd); font-weight: 500; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.contact-social-line { width: 24px; height: 2px; background-color: #000; flex-shrink: 0; }

/* ── Responsive (inner pages) ────────────────── */
@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0 3rem; }
  .contact-follow { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .fw-hero-title { font-size: 4rem; }
}
@media (max-width: 767px) {
  .contact-socials { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .fw-hero-title { font-size: 3rem; }
}
