/* =========================================================
   ADULT INNOVATION — 2026 HOMEPAGE
   Uses the existing Adult Innovation graphical assets.
   Replace your homepage stylesheet with this file.
   ========================================================= */

:root {
  --pink: #ff1f40;
  --pink-bright: #ff3150;
  --ink: #09090b;
  --ink-2: #111114;
  --surface: #f5f5f7;
  --white: #fff;
  --text: #18181b;
  --muted: #66666d;
  --line: rgba(20,20,24,.12);
  --container: 1240px;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,.10);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea { font: inherit; }

button { cursor: pointer; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section {
  padding: 120px 0;
}

.section-dark {
  padding: 120px 0;
  background: #09090b;
  color: white;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading h2 {
  margin: 15px 0 15px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-heading h2 em {
  color: var(--pink);
  font-style: normal;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section-heading.light p { color: #9b9ba3; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  background: rgba(0,0,0,.34);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: auto;
  height: 46px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav > a {
  position: relative;
  padding: 11px 17px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 4px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 8px;
  color: white !important;
  background: transparent;
  border: 1px solid var(--pink);
  border-radius: 999px;
  transition: .25s ease;
}

.nav-cta:hover {
  background: var(--pink);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

/* Hero — clean generated artwork is the only background image.
   All typography, buttons and form fields are HTML/CSS overlays. */
.hero {
  position: relative;
  min-height: 900px;
  padding: 155px 0 90px;
  overflow: hidden;
  color: white;
  background: #050507 url("../images/hero-background-reference-final.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4,4,6,.58) 0%, rgba(4,4,6,.12) 47%, rgba(4,4,6,.20) 100%),
    linear-gradient(0deg, rgba(4,4,6,.40), transparent 30%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
  gap: clamp(55px, 7vw, 105px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 17px 0 24px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(50px, 6vw, 84px);
  line-height: .94;
  letter-spacing: -.065em;
}

.hero-copy h1 span { color: var(--pink); }

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: #d4d4d8;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 0;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: .25s ease;
}

.button-primary {
  color: white;
  background: var(--pink);
  box-shadow: 0 12px 30px rgba(255,31,64,.22);
}

.button-primary:hover {
  background: var(--pink-bright);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255,31,64,.30);
}

.button-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.12);
}

.button-ghost:hover {
  background: white;
  color: var(--ink);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-dark:hover { background: var(--pink); }

.button-full { width: 100%; }

.hero-meta {
  display: flex;
  gap: 0;
  margin-top: 42px;
  max-width: 700px;
}

.hero-meta > span {
  min-width: 170px;
  padding: 0 25px;
  border-left: 1px solid rgba(255,255,255,.20);
  color: #d7d7db;
  font-size: 10px;
  letter-spacing: .08em;
}

.hero-meta > span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-meta strong,
.hero-meta small {
  display: block;
}

.hero-meta strong {
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
}

.hero-meta small {
  margin-top: 5px;
  color: #a6a6ad;
  font-size: 9px;
  letter-spacing: .08em;
}

.hero-meta i { display: none; }

.hero-form-card {
  padding: 30px 25px 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  background: rgba(10,10,13,.82);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
}

.card-label {
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.hero-form-card h2 {
  margin: 10px 0 7px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.hero-form-card > p {
  margin: 0 0 22px;
  color: #aaaab1;
  font-size: 13px;
  line-height: 1.45;
}

.hero-form-card label,
.contact-form-card label {
  display: block;
  margin-bottom: 13px;
}

.hero-form-card label > span,
.contact-form-card label > span {
  display: block;
  margin-bottom: 7px;
  color: #aaaab1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  outline: 0;
  background: rgba(255,255,255,.055);
  color: white;
  transition: border .2s, background .2s;
}

input {
  height: 50px;
  padding: 0 15px;
}

textarea {
  min-height: 96px;
  padding: 13px 15px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder { color: #777780; }

input:focus,
textarea:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.10);
}

.hero-form-card .button { margin-top: 4px; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 3px;
  height: 7px;
  margin: 7px auto;
  border-radius: 5px;
  background: var(--pink);
  animation: scroll 1.7s infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(9px); opacity: 1; }
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 365px;
  padding: 55px 34px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: .3s ease;
}

.service-card:hover {
  border-color: rgba(255,31,64,.35);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.service-icon {
  position: absolute;
  top: -31px;
  left: 30px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,.09);
}

.service-icon i {
  display: block;
  width: 50px;
  height: 50px;
}

.service-icon .adultdesign { background: url("../images/adult-design.png") center/contain no-repeat; }
.service-icon .programming { background: url("../images/programming.png") center/contain no-repeat; }
.service-icon .graphics { background: url("../images/graphics-design.png") center/contain no-repeat; }

.service-number {
  color: #aaaab1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.service-card h3 {
  margin: 14px 0 13px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 31px;
  letter-spacing: -.045em;
}

.service-card p {
  margin: 0 0 28px;
  color: #66666d;
  font-size: 14px;
  line-height: 1.75;
}

.service-card.featured p { color: #aaaab1; }

.text-link {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--pink);
  transition: transform .2s;
}

.text-link:hover span { transform: translateX(5px); }

/* Tech */
.tech-strip {
  padding: 55px 0;
  color: white;
  background: #0d0d10;
}

.tech-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.tech-inner h2 {
  margin: 9px 0 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 26px;
  letter-spacing: -.035em;
}

.tech-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e2e2e5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.tech-item img {
  width: 38px;
  max-height: 38px;
  object-fit: contain;
}

/* Experience */
.experience { background: #f6f6f7; }

.experience-intro {
  max-width: 850px;
  margin: 0 auto 75px;
  text-align: center;
}

.experience-intro h2 {
  margin: 16px 0 18px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.06em;
}

.experience-intro h2 span { color: var(--pink); }

.experience-intro p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: center;
  gap: 80px;
}

.portfolio-preview {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.portfolio-preview img {
  width: 100%;
  height: auto;
}

.benefits { display: grid; gap: 25px; }

.benefits article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.benefits article > span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
}

.benefits h3 {
  margin: 0 0 5px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Platforms */
.platform-section {
  padding: 100px 0;
  background: white;
}

.platform-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 80px;
}

.platform-inner h2 {
  max-width: 700px;
  margin: 14px 0 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1;
  letter-spacing: -.06em;
}

.platform-inner h2 span { color: var(--pink); }

.platform-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  padding: 32px 32px 27px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: #111114;
  transition: .25s ease;
}

.review-card:hover {
  border-color: rgba(255,31,64,.4);
  transform: translateY(-4px);
}

.stars {
  margin-bottom: 17px;
  color: var(--pink);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card p {
  min-height: 75px;
  margin: 0 0 22px;
  color: #c5c5cb;
  font-size: 14px;
  line-height: 1.75;
}

.review-card cite {
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

/* CTA */
.cta-band {
  padding: 75px 0;
  border-bottom: 1px solid var(--line);
  background: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  margin: 10px 0 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1;
  letter-spacing: -.055em;
}

.cta-inner h2 span { color: var(--pink); }

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: white;
  background: #09090b url("../images/banner-footer.jpg") center/cover no-repeat;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,6,8,.95), rgba(6,6,8,.78));
}

.contact-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -130px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255,31,64,.16);
  filter: blur(70px);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.contact-copy h2 {
  max-width: 650px;
  margin: 16px 0 20px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(45px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.06em;
}

.contact-copy h2 span { color: var(--pink); }

.contact-copy > p {
  max-width: 570px;
  color: #b5b5bc;
}

.contact-points {
  display: grid;
  gap: 13px;
  margin-top: 35px;
}

.contact-points div {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.contact-points strong {
  width: 72px;
  color: var(--pink);
  font-size: 10px;
  letter-spacing: .14em;
}

.contact-points span {
  color: #dddde1;
  font-size: 13px;
}

.contact-form-card {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(18,18,22,.74);
  box-shadow: 0 35px 100px rgba(0,0,0,.30);
  backdrop-filter: blur(16px);
}

.contact-form-card input,
.contact-form-card textarea {
  border-color: rgba(255,255,255,.13);
}

.contact-form-card textarea { min-height: 150px; }

.contact-form-card .button { margin-top: 7px; }

/* Footer */
.site-footer {
  color: #8f8f96;
  background: #050506;
}

.footer-inner {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand img { width: 145px; }

.footer-inner p {
  margin: 0;
  font-size: 11px;
}

.back-top {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: white;
}

.back-top:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-grid,
  .experience-grid,
  .platform-inner,
  .contact-grid { gap: 45px; }

  .hero-grid { grid-template-columns: minmax(0, 1fr) 400px; gap: 35px; }
  .hero-form-card { max-width: 400px; }

  .service-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .service-card { min-height: 300px; }

  .tech-inner { align-items: flex-start; flex-direction: column; }
  .experience-grid { grid-template-columns: 1fr; }
  .portfolio-preview { max-width: 760px; margin-inline: auto; }
  .benefits { max-width: 760px; margin-inline: auto; }
}

@media (max-width: 800px) {
  .site-header { height: 68px; }
  .brand img { height: 38px; }

  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
  }

  .site-nav.open { display: flex; }

  .site-nav > a { padding: 13px 15px; }
  .nav-cta { margin: 3px 0 0; text-align: center; }

  .hero {
    min-height: 850px;
    padding: 105px 0 70px;
    background-position: 56% center;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; }
  .hero-form-card { max-width: 520px; width: 100%; }
  .hero-copy h1 { font-size: clamp(45px, 11vw, 68px); }
  .hero-meta { display: flex; flex-wrap: wrap; }
  .hero-meta > span { min-width: 145px; }

  .section,
  .section-dark,
  .contact-section { padding: 82px 0; }

  .tech-list { width: 100%; justify-content: space-between; gap: 10px; }

  .platform-inner,
  .contact-grid { grid-template-columns: 1fr; }

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

  .cta-inner { align-items: flex-start; flex-direction: column; }

  .footer-inner {
    padding: 22px 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: auto;
    padding: 105px 0 55px;
    background-position: 62% top;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(4,4,6,.72), rgba(4,4,6,.34)),
      linear-gradient(0deg, rgba(4,4,6,.65), rgba(4,4,6,.10) 65%);
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-meta > span,
  .hero-meta > span:first-child {
    padding: 0 0 0 13px;
    border-left: 2px solid var(--pink);
  }


  .container { width: min(calc(100% - 30px), var(--container)); }

  .hero-form-card,
  .contact-form-card { padding: 25px 20px; }

  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }

  .tech-list { display: grid; grid-template-columns: repeat(2, 1fr); }
  .tech-item { justify-content: center; }

  .service-card { padding: 48px 24px 28px; }

  .portfolio-preview { padding: 14px; }

  .benefits article { grid-template-columns: 35px 1fr; }

  .contact-points div { display: grid; gap: 3px; }

  .footer-inner { justify-content: center; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* =========================================================
   EXACT REFERENCE HERO LAYOUT
   Static artwork lives in hero-background-reference-final.jpg.
   HTML supplies only interactive UI/text that should remain live.
   ========================================================= */
.site-header{
  height:88px;
  background:rgba(0,0,0,.30);
  border-bottom:1px solid rgba(255,255,255,.16);
}
.nav-wrap{max-width:1830px;padding:0 34px;}
.brand img{height:48px;width:auto;}
.site-nav{gap:10px;}
.site-nav>a{padding:11px 17px;font-size:14px;}
.hero{
  min-height:calc(100vh - 0px);
  height:100vh;
  max-height:1081px;
  padding:0;
  display:flex;
  align-items:flex-start;
  background:#050507 url("../images/hero-background-reference-final.jpg") center center / cover no-repeat;
}
.hero::after{
  background:transparent;
}
.hero-grid{
  width:100%;
  max-width:1830px;
  height:100%;
  margin:0 auto;
  padding:0 50px;
  display:grid;
  grid-template-columns:1080px 475px;
  column-gap:60px;
  align-items:start;
  justify-content:start;
}
.hero-copy{
  max-width:690px;
  padding-top:151px;
}
.hero-copy .eyebrow{
  margin-bottom:0;
}
.hero-copy h1{
  max-width:680px;
  margin:30px 0 25px;
  font-size:clamp(60px,4.55vw,88px);
  line-height:.93;
  letter-spacing:-.065em;
}
.hero-lead{
  max-width:620px;
  font-size:17px;
  line-height:1.55;
}
.hero-actions{margin-top:31px;}
.button{min-height:59px;border-radius:12px;}
.hero-meta{
  margin-top:42px;
  max-width:720px;
}
.hero-meta>span{
  min-width:190px;
  padding:0 26px;
}
.hero-meta>span:first-child{padding-left:0;}
.hero-form-card{
  width:475px;
  margin-top:441px;
  padding:30px 25px 27px;
  border-radius:20px;
  background:rgba(8,8,11,.86);
}
.hero-form-card h2{font-size:31px;}
.scroll-cue{bottom:18px;}

@media (max-width:1400px){
  .hero-grid{grid-template-columns:minmax(0,1fr) 430px;column-gap:42px;padding:0 38px;}
  .hero-form-card{width:430px;margin-top:390px;}
  .hero-copy h1{font-size:clamp(54px,5vw,76px);}
  .hero-meta>span{min-width:160px;padding:0 18px;}
}
@media (max-width:900px){
  .hero{
    height:auto;
    min-height:100vh;
    background-position:center top;
    padding-bottom:60px;
  }
  .hero-grid{
    grid-template-columns:1fr;
    height:auto;
    padding:0 22px;
  }
  .hero-copy{padding-top:125px;}
  .hero-copy h1{font-size:clamp(48px,10vw,70px);}
  .hero-form-card{
    width:100%;
    max-width:520px;
    margin:45px auto 0;
  }
}
@media (max-width:520px){
  .site-header{height:68px;}
  .brand img{height:38px;}
  .hero{background-position:58% top;}
  .hero-copy{padding-top:103px;}
  .hero-copy h1{font-size:clamp(44px,13vw,60px);}
  .hero-meta{display:grid;grid-template-columns:1fr;gap:13px;}
  .hero-meta>span,.hero-meta>span:first-child{
    min-width:0;padding:0 0 0 13px;border-left:2px solid var(--pink);
  }
}

/* =========================================================
   1920px REFERENCE FINISH
   Static artwork now contains the paint stroke and bottom
   tagline. The following rules align only the live UI.
   ========================================================= */
@media (min-width: 1401px) {
  .hero-grid {
    grid-template-columns: 1030px 475px;
    column-gap: 55px;
  }

  .hero-form-card {
    margin-top: 424px;
  }

  .hero-meta {
    max-width: 650px;
  }

  .hero-meta > span {
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-meta > span:first-child {
    width: 145px;
    padding-left: 0;
    padding-right: 14px;
  }

  .hero-meta > span:nth-child(2) {
    width: 205px;
  }

  .hero-meta > span:nth-child(3) {
    width: 170px;
  }
}


/* =========================================================
   FINAL 1920 REFERENCE HERO — AUTHORITATIVE OVERRIDES
   The background image is a 1920x1081 static artwork.
   It contains:
     - woman / camera / lighting
     - INVENT / CREATE / ELEVATE
     - right-side service labels
     - paint stroke beside "stand out"
     - BOLDER BRANDS. BETTER EXPERIENCES.
     - bottom red divider lines
   Live HTML contains only interactive/real text and controls.
   ========================================================= */

@media (min-width: 1401px) {
  .hero {
    position: relative;
    width: 100%;
    height: min(56.302vw, 1081px);
    min-height: 900px;
    max-height: 1081px;
    padding: 0;
    overflow: hidden;
    background-image: url("../images/hero-background-reference-final.jpg");
    background-position: center top;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .hero-grid {
    position: relative;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }

  /* Live left-side content */
  .hero-copy {
    position: absolute;
    left: 48px;
    top: 151px;
    width: 650px;
    max-width: 650px;
    padding: 0;
    margin: 0;
    z-index: 5;
  }

  .hero-copy .eyebrow {
    margin: 0;
  }

  .hero-copy h1 {
    max-width: 600px;
    margin: 29px 0 25px;
    font-size: 76px;
    line-height: .935;
    letter-spacing: -.065em;
  }

  .hero-lead {
    max-width: 510px;
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 31px;
  }

  /* Tight, reference-like statistics */
  .hero-meta {
    display: grid;
    grid-template-columns: 158px 214px 178px;
    width: 550px;
    max-width: 550px;
    margin-top: 42px;
    gap: 0;
  }

  .hero-meta > span,
  .hero-meta > span:first-child {
    min-width: 0;
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 14px;
    padding-left: 18px;
  }

  .hero-meta > span:first-child {
    padding-left: 0;
    padding-right: 12px;
  }

  .hero-meta > span:nth-child(2) {
    padding-left: 20px;
  }

  .hero-meta > span:nth-child(3) {
    padding-left: 20px;
  }

  /* Live form: deliberately higher and farther left than the previous build */
  .hero-form-card {
    position: absolute;
    left: 61.95%;
    top: 35.2%;
    width: 475px;
    max-width: 475px;
    margin: 0;
    padding: 30px 25px 27px;
    z-index: 6;
  }

  .hero-form-card h2 {
    font-size: 31px;
    line-height: 1.02;
  }

  .scroll-cue {
    z-index: 7;
    bottom: 18px;
  }
}

@media (min-width: 1401px) and (max-width: 1700px) {
  .hero-copy {
    left: 42px;
    transform: scale(.92);
    transform-origin: left top;
  }

  .hero-form-card {
    left: 60.5%;
    top: 35%;
    transform: scale(.92);
    transform-origin: left top;
  }
}

@media (max-width: 1400px) {
  .hero {
    background-image: url("../images/hero-background-reference-final.jpg");
    background-size: cover;
    background-position: center top;
  }
}


/* INDEX MOBILE DEFINITIVE FALLBACK */
@media screen and (max-width:900px){
  body .site-nav{background:#fff!important}
  body .site-nav>a{color:#000!important;-webkit-text-fill-color:#000!important}
  body .site-nav>a.nav-cta{background:#000!important;border-color:#000!important;color:#fff!important;-webkit-text-fill-color:#fff!important}
  body .hero{height:auto!important;min-height:0!important;max-height:none!important;overflow:visible!important;padding-bottom:70px!important}
  body .hero-grid{grid-template-columns:1fr!important;height:auto!important;min-height:0!important}
  body .hero-copy{position:relative!important;inset:auto!important;transform:none!important;width:100%!important;padding-top:125px!important;opacity:1!important;visibility:visible!important}
  body .hero-form-card{position:relative!important;inset:auto!important;transform:none!important;display:block!important;width:100%!important;max-width:520px!important;height:auto!important;max-height:none!important;margin:45px auto 0!important;overflow:visible!important;opacity:1!important;visibility:visible!important;z-index:100!important}
  body .hero-form-card form{display:block!important;height:auto!important;overflow:visible!important}
  body .hero-form-card input,body .hero-form-card textarea{display:block!important;width:100%!important;box-sizing:border-box!important;visibility:visible!important;opacity:1!important}
}
@media screen and (max-width:520px){
  body .hero{padding-bottom:65px!important;background-position:58% top!important}
  body .hero-copy{padding-top:103px!important}
  body .hero-form-card{margin-top:30px!important;padding:25px 20px!important}
}
