:root {
  --ink: #121117;
  --ink-soft: #27252f;
  --paper: #f5f2ec;
  --white: #ffffff;
  --violet: #6d4aff;
  --violet-dark: #4e30d7;
  --coral: #ff6d5f;
  --gold: #e3b34f;
  --lavender: #bcb1ff;
  --line: rgba(18, 17, 23, 0.12);
  --shadow: 0 24px 70px rgba(29, 22, 52, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
}

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

button, input, textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  background: rgba(18, 17, 23, .92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 34px;
  height: 31px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
}

.brand-mark span {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--coral), var(--violet));
}

.brand-mark span:nth-child(1) { height: 40%; }
.brand-mark span:nth-child(2) { height: 78%; }
.brand-mark span:nth-child(3) { height: 100%; }
.brand-mark span:nth-child(4) { height: 56%; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: .16em;
}

.brand-text small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.65);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: rgba(255,255,255,.78);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links .nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: var(--white);
}

.menu-button, .mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  min-height: 760px;
  padding: 90px 7vw 110px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(109, 74, 255, .34), transparent 28%),
    radial-gradient(circle at 89% 76%, rgba(255, 109, 95, .18), transparent 25%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-copy, .hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 19px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.hero .eyebrow {
  color: var(--lavender);
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(46px, 6vw, 82px);
  letter-spacing: -.055em;
}

h1 span {
  color: var(--lavender);
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 1.6vw, 21px);
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  box-shadow: 0 12px 35px rgba(109, 74, 255, .28);
}

.button-secondary {
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  background: rgba(255,255,255,.06);
}

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

.ownership-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  font-weight: 600;
}

.ownership-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  box-shadow: 0 0 0 5px rgba(255,109,95,.12);
}

.hero-visual {
  min-height: 500px;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.glow-one {
  top: 2%;
  right: 3%;
  width: 260px;
  height: 260px;
  background: rgba(109,74,255,.3);
}

.glow-two {
  bottom: 4%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(255,109,95,.18);
}

.production-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  color: var(--white);
  background: linear-gradient(145deg, rgba(39,37,47,.96), rgba(18,17,23,.9));
  box-shadow: 0 30px 85px rgba(0,0,0,.38);
  backdrop-filter: blur(12px);
}

.card-main {
  top: 70px;
  right: 5%;
  width: min(500px, 88%);
  padding: 30px;
  border-radius: 28px;
  transform: rotate(2deg);
}

.card-label {
  margin-bottom: 24px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.signal-grid span {
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(109,74,255,.85), rgba(109,74,255,.14));
}

.signal-grid span:nth-child(2n) {
  background: linear-gradient(180deg, rgba(255,109,95,.8), rgba(255,109,95,.12));
}

.signal-grid span:nth-child(3n) {
  background: linear-gradient(180deg, rgba(227,179,79,.78), rgba(227,179,79,.1));
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 130px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.waveform i {
  width: 11px;
  height: var(--h);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--lavender), var(--violet));
  animation: pulse 2.2s ease-in-out infinite alternate;
}

.waveform i:nth-child(2n) { animation-delay: -.5s; }
.waveform i:nth-child(3n) { animation-delay: -1s; }

@keyframes pulse {
  to { transform: scaleY(.7); opacity: .72; }
}

.card-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.card-small {
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 16px;
}

.card-small small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255,255,255,.48);
  font-size: 9px;
  letter-spacing: .12em;
}

.card-small strong {
  font-size: 14px;
}

.card-top {
  top: 18px;
  left: 3%;
  transform: rotate(-3deg);
}

.card-bottom {
  right: 1%;
  bottom: 44px;
  display: block;
  min-width: 230px;
  transform: rotate(3deg);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #66dfad;
  box-shadow: 0 0 0 6px rgba(102,223,173,.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 25px 32px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--violet);
  font-size: 12px;
}

.trust-strip span {
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 110px 7vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2, .about-copy h2, .contact-copy h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -.045em;
}

.section-heading p {
  margin: 0;
  color: #686571;
  font-size: 17px;
}

.services-section {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.55);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-featured {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 30%),
    var(--violet);
}

.service-featured:hover {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 30%),
    var(--violet-dark);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(18,17,23,.35);
  font-size: 12px;
  font-weight: 700;
}

.service-featured .service-number {
  color: rgba(255,255,255,.5);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 72px;
  border-radius: 14px;
  color: var(--violet);
  background: rgba(109,74,255,.1);
}

.service-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.service-featured .service-icon {
  color: var(--white);
  background: rgba(255,255,255,.13);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -.025em;
}

.service-card p {
  margin: 0;
  color: #706d78;
}

.service-featured p {
  color: rgba(255,255,255,.75);
}

.service-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
}

.service-cta p {
  color: rgba(255,255,255,.64);
}

.service-cta .service-number {
  color: rgba(255,255,255,.4);
}

.service-cta a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-weight: 700;
}

.service-cta a span {
  color: var(--lavender);
  font-size: 22px;
}

.about-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.about-visual {
  position: relative;
  min-height: 560px;
}

.about-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,109,95,.38), transparent 25%),
    radial-gradient(circle at 22% 72%, rgba(109,74,255,.45), transparent 34%),
    linear-gradient(145deg, #292633, #17161c);
  box-shadow: 0 35px 90px rgba(0,0,0,.34);
}

.caliber-word {
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.07em;
}

.about-panel p {
  max-width: 380px;
  margin: 0;
  color: rgba(255,255,255,.65);
}

.identity-card {
  position: absolute;
  right: -36px;
  bottom: -28px;
  min-width: 220px;
  padding: 24px;
  border-radius: 20px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 26px 60px rgba(0,0,0,.28);
  transform: rotate(3deg);
}

.identity-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.identity-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  line-height: 1.12;
}

.about-copy .eyebrow {
  color: var(--lavender);
}

.about-copy h2 {
  margin-bottom: 25px;
}

.about-lead {
  color: rgba(255,255,255,.84) !important;
  font-size: 20px;
}

.about-copy > p {
  color: rgba(255,255,255,.62);
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.about-points div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.about-points span {
  color: var(--gold);
  font-weight: 800;
}

.about-points p {
  margin: 0;
  color: rgba(255,255,255,.58);
}

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

.process-section {
  background: var(--white);
}

.centered-heading {
  display: block;
  max-width: 780px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.process-grid article {
  min-height: 310px;
  padding: 32px;
  background: var(--white);
}

.process-grid span {
  display: block;
  margin-bottom: 96px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.process-grid p {
  margin: 0;
  color: #716e78;
}

.statement-section {
  padding: 110px 7vw;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,109,95,.35), transparent 24%),
    radial-gradient(circle at 85% 80%, rgba(227,179,79,.18), transparent 22%),
    var(--violet);
}

.statement-section p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(22px, 3vw, 34px);
}

.statement-section h2 {
  margin: 8px 0 35px;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -.06em;
}

.contact-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
  background: var(--paper);
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-copy > p {
  max-width: 520px;
  color: #6b6872;
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.contact-details a, .contact-details div {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.contact-details span {
  margin-bottom: 4px;
  color: #8b8790;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  color: #34313a;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(18,17,23,.14);
  border-radius: 10px;
  outline: none;
  background: #faf9f7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(109,74,255,.09);
}

.contact-form textarea {
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  color: #8a8790;
  text-align: center;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 34px 5vw;
  color: rgba(255,255,255,.6);
  background: var(--ink);
  font-size: 13px;
}

footer > p {
  margin: 0;
  text-align: center;
}

footer .copyright {
  text-align: right;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

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

  .hero-visual {
    width: min(760px, 100%);
    margin: 0 auto;
  }

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

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-visual {
    width: min(680px, 100%);
  }

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

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 72px;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: grid;
    gap: 7px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: var(--white);
  }

  .mobile-nav {
    position: fixed;
    z-index: 90;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 1px;
    max-height: 0;
    overflow: hidden;
    background: var(--ink-soft);
    transition: max-height .25s ease;
  }

  .mobile-nav.open {
    max-height: 280px;
  }

  .mobile-nav a {
    padding: 17px 6vw;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--white);
    font-weight: 700;
  }

  .hero {
    min-height: auto;
    padding: 72px 6vw 80px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .hero-visual {
    min-height: 420px;
  }

  .card-main {
    top: 66px;
    right: 0;
    width: 94%;
    padding: 22px;
  }

  .card-top {
    left: 0;
  }

  .card-bottom {
    right: 0;
    bottom: 12px;
  }

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

  .trust-strip div {
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 82px 6vw;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

  .identity-card {
    right: -8px;
  }

  .about-panel {
    min-height: 430px;
  }

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

  .process-grid article {
    min-height: auto;
  }

  .process-grid span {
    margin-bottom: 55px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-form label,
  .full-width,
  .form-note {
    grid-column: 1;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer > p,
  footer .copyright {
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .brand-text strong {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .signal-grid span {
    height: 42px;
  }

  .waveform {
    height: 110px;
  }

  .card-bottom {
    min-width: 210px;
  }

  .identity-card {
    min-width: 190px;
  }
}

/* Netlify form helper */
.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Keeps ownership messaging as a supporting detail rather than the primary story. */
.identity-card-subtle {
  opacity: 0.92;
}
.identity-card-subtle strong {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.25;
}


.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.9rem;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status.success {
  color: #176b45;
  font-weight: 700;
}
