:root {
  --bg: #0b0b0c;
  --bg-soft: #121316;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.7);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #c9a85d;
  --blue: #3b82f6;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  --max-width: 1280px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 14%, rgba(59, 130, 246, 0.12), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(201, 168, 93, 0.12), transparent 26%),
    linear-gradient(180deg, #070708 0%, #0b0b0c 28%, #111317 100%);
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 3px 3px, 3px 3px;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 93, 0.65);
  background: rgba(201, 168, 93, 0.12);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 80;
  opacity: 0;
  transition: transform 140ms ease, width 140ms ease, height 140ms ease, opacity 180ms ease;
}

.site-shell {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.section,
.navbar,
.site-footer {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(11, 11, 12, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand-text-wrap {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.brand-subtitle {
  font-size: 0.74rem;
  color: rgba(245, 245, 245, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--muted);
}

.nav-links a,
.social-links a {
  position: relative;
}

.nav-links a::after,
.social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.social-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.nav-cta,
.button-filled {
  color: #0b0b0c;
  background: linear-gradient(135deg, #e3c782, var(--gold));
  box-shadow: 0 14px 34px rgba(201, 168, 93, 0.2);
}

.button-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.hero,
.section-statement,
.section-portfolio,
.section-services,
.section-about,
.section-testimonials,
.section-launch,
.section-contact {
  padding: 2rem 0 6rem;
}

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: center;
}

.hero-copy {
  grid-column: 1 / span 5;
}

.hero-art {
  grid-column: 7 / span 6;
  position: relative;
  min-height: 680px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2,
.statement-side h2,
.about-copy h2,
.launch-copy h2,
.contact-shell h2 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7.4rem);
}

.hero h1 span {
  display: block;
}

.hero-description,
.statement-side p,
.portfolio-overlay p,
.service-main p,
.about-copy p,
.testimonial-card p,
.launch-meta p,
.contact-intro {
  color: var(--muted);
  line-height: 1.7;
}

.hero-description {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero-note {
  max-width: 28rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 245, 0.62);
}

.hero-oversized {
  position: absolute;
  top: -0.5rem;
  right: -2rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
}

.hero-visual-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image,
.about-image-wrap,
.portfolio-card,
.service-panel,
.contact-shell,
.launch-layout,
.testimonial-card {
  box-shadow: var(--shadow);
}

.hero-image {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image img,
.about-image-wrap img,
.portfolio-media img,
.modal-media img {
  height: 100%;
  object-fit: cover;
}

.hero-image-primary {
  top: 2rem;
  left: 0;
  width: 68%;
  height: 72%;
}

.hero-image-secondary {
  right: 0;
  bottom: 3.5rem;
  width: 42%;
  height: 34%;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  right: 12%;
  top: 14%;
  width: 180px;
  height: 180px;
  border-radius: 36% 64% 63% 37% / 40% 32% 68% 60%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(201, 168, 93, 0.9), rgba(59, 130, 246, 0.7));
  filter: blur(0.2px);
  opacity: 0.9;
  z-index: 3;
  animation: floatShape 7s ease-in-out infinite;
}

.hero-info-card {
  position: absolute;
  left: 14%;
  bottom: 0;
  z-index: 4;
  min-width: 250px;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 9, 10, 0.78);
  backdrop-filter: blur(18px);
}

.hero-info-card strong,
.portfolio-overlay h3,
.service-main h3,
.testimonial-card strong {
  display: block;
}

.hero-info-card strong {
  margin: 0.35rem 0;
  font-size: 1.08rem;
}

.hero-info-card span {
  color: rgba(245, 245, 245, 0.62);
  font-size: 0.92rem;
}

.section-divider {
  padding: 0 0 4rem;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(201, 168, 93, 0.4), rgba(255, 255, 255, 0));
}

.divider-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  color: rgba(245, 245, 245, 0.58);
  font-size: 0.92rem;
}

.statement-grid,
.launch-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.statement-side:first-child,
.launch-copy {
  grid-column: 1 / span 6;
}

.statement-side:last-child,
.launch-meta {
  grid-column: 8 / span 5;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.6rem;
}

.section-heading h2,
.statement-side h2,
.about-copy h2,
.launch-copy h2,
.contact-shell h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.portfolio-large {
  grid-column: 1 / span 7;
  min-height: 520px;
}

.portfolio-tall {
  grid-column: 8 / span 5;
  min-height: 660px;
  transform: translateY(3rem);
}

.portfolio-wide {
  grid-column: 2 / span 5;
  min-height: 360px;
}

.portfolio-offset {
  grid-column: 7 / span 5;
  min-height: 420px;
  transform: translateY(-2rem);
}

.portfolio-media,
.portfolio-media img {
  height: 100%;
}

.portfolio-media img {
  transition: transform 420ms ease;
}

.portfolio-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(11, 11, 12, 0), rgba(11, 11, 12, 0.82) 42%, rgba(11, 11, 12, 0.95) 100%);
  transition: transform 280ms ease;
}

.portfolio-card:hover .portfolio-media img,
.portfolio-card:focus-visible .portfolio-media img {
  transform: scale(1.06);
}

.portfolio-card:hover .portfolio-overlay,
.portfolio-card:focus-visible .portfolio-overlay {
  transform: translateY(-0.2rem);
}

.portfolio-type,
.service-kicker {
  margin: 0 0 0.4rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.portfolio-overlay h3,
.service-main h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.services-stack {
  display: grid;
  gap: 1rem;
}

.service-panel {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
}

.service-panel.featured {
  background:
    linear-gradient(135deg, rgba(201, 168, 93, 0.12), rgba(59, 130, 246, 0.06)),
    rgba(255, 255, 255, 0.03);
}

.service-main h3 {
  font-size: 2.6rem;
}

.service-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.service-payment {
  min-height: 52px;
}

.paypal-fallback {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 93, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: center;
}

.about-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: center;
}

.about-copy {
  grid-column: 1 / span 5;
}

.about-visual {
  grid-column: 7 / span 6;
  position: relative;
  min-height: 640px;
}

.about-image-wrap {
  position: absolute;
  inset: 0 0 3rem 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-divider {
  width: 100%;
  height: 1px;
  margin: 1.8rem 0 1.2rem;
  background: linear-gradient(90deg, rgba(201, 168, 93, 0.5), rgba(255, 255, 255, 0.1));
}

.about-points {
  display: grid;
  gap: 0.8rem;
  color: rgba(245, 245, 245, 0.78);
}

.about-floating-quote {
  position: absolute;
  right: -1rem;
  bottom: 0;
  max-width: 290px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(14px);
}

.about-floating-quote span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.testimonial-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.testimonial-card {
  min-height: 260px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.testimonial-card strong {
  margin-top: 1.4rem;
}

.testimonial-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(245, 245, 245, 0.58);
}

.launch-layout {
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(201, 168, 93, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.contact-intro {
  max-width: 38rem;
  margin: 1.2rem auto 2rem;
}

.contact-note {
  margin: 1rem 0 0;
  color: rgba(245, 245, 245, 0.62);
}

.contact-note a {
  color: var(--text);
  border-bottom: 1px solid rgba(201, 168, 93, 0.45);
}

.contact-form {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: rgba(245, 245, 245, 0.84);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 168, 93, 0.46);
  background: rgba(255, 255, 255, 0.05);
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.6rem;
  color: var(--muted);
}

.site-footer {
  padding: 0 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
  color: rgba(245, 245, 245, 0.55);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

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

.modal-panel {
  position: relative;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111214;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

.modal-media {
  min-height: 420px;
}

.modal-copy {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-copy h3 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(10deg);
  }
}

@media (max-width: 1100px) {
  .hero-copy,
  .hero-art,
  .statement-side:first-child,
  .statement-side:last-child,
  .about-copy,
  .about-visual,
  .launch-copy,
  .launch-meta {
    grid-column: 1 / -1;
  }

  .hero-grid,
  .statement-grid,
  .about-editorial,
  .launch-layout {
    gap: 2rem;
  }

  .hero-art {
    min-height: 600px;
  }

  .service-panel {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .navbar.is-open {
    position: relative;
  }

  .navbar.is-open .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius);
    background: #111214;
    border: 1px solid var(--line);
  }

  .portfolio-large,
  .portfolio-tall,
  .portfolio-wide,
  .portfolio-offset {
    grid-column: 1 / -1;
    min-height: 360px;
    transform: none;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .navbar,
  .site-footer {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .cursor-dot {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-art {
    min-height: 460px;
  }

  .hero-image-primary {
    width: 76%;
    height: 68%;
  }

  .hero-image-secondary {
    width: 46%;
    height: 28%;
    bottom: 2rem;
  }

  .hero-shape {
    width: 130px;
    height: 130px;
  }

  .hero-info-card {
    left: 0.5rem;
    right: 0.5rem;
    min-width: 0;
  }

  .divider-copy {
    grid-template-columns: 1fr;
  }

  .contact-shell,
  .modal-copy {
    padding: 1.2rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    justify-items: start;
  }
}
