:root {
  --bg: #000;
  --text: #f7f7f7;
  --muted: #d6d6d6;
  --accent: #9548ff;
  --accent-soft: #b975ff;
  --page-max: 1300px;
}

* { box-sizing: border-box; }
html { background: var(--bg); color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 700px;
  background:
    radial-gradient(ellipse at 76% 58%, rgba(145,0,137,.20) 0%, rgba(145,0,137,.06) 35%, transparent 63%),
    linear-gradient(110deg, #120015 0%, #24002c 50%, #42004b 100%);
}
.hero__inner {
  position: relative;
  width: min(calc(100% - 64px), var(--page-max));
  min-height: 700px;
  margin: 0 auto;
}
.hero__copy {
  position: relative;
  z-index: 2;
  width: 58%;
  padding-top: 176px;
}
.hero__name {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 500;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(54px, 4.6vw, 72px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.035em;
}
.hero__lead {
  margin: 28px 0 0;
  font-size: 30px;
  line-height: 1.28;
  letter-spacing: -.015em;
}
.hero__photo {
  position: absolute;
  z-index: 1;
  right: 64px;
  bottom: 0;
  height: min(620px, 88%);
  width: auto;
  max-width: 46%;
  object-fit: contain;
  object-position: bottom center;
}

.portfolio {
  background: var(--bg);
  padding: 78px 32px 150px;
}
.portfolio__inner {
  width: min(100%, var(--page-max));
  margin: 0 auto;
}
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 42px;
}
.section-heading--motion { margin-top: 92px; }
.section-heading--brand { margin-top: 112px; }
.section-heading h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.025em;
}
.section-heading__intro {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 15px;
}
.tags--center { justify-content: center; }
.tags span,
.micro-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 2px 10px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  color: var(--accent-soft);
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

/* Project rows intentionally have no borders. */
.project-list {
  display: flex;
  flex-direction: column;
}
.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #000;
}
.project-row__visual {
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.project-row__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.project-row__visual--video { align-items: stretch; }
.project-row__visual--video video {
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 1080;
  object-fit: contain;
  background: #050505;
}
.project-row__copy {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 44px 62px;
}
.project-copy { width: min(100%, 500px); }
.project-number {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 48px;
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.03em;
}
.project-copy h3,
.brand-case__copy h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.025em;
}
.project-description {
  margin: 30px 0 0;
  max-width: 500px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
}
.tools {
  margin: 30px 0 0;
  font-size: 17px;
  line-height: 1.35;
}
.tools strong {
  color: var(--accent);
  font-weight: 500;
}
.project-list--motion .project-row__copy {
  padding-top: 46px;
  padding-bottom: 46px;
}

/* Brand & Marketing */
.brand-list {
  display: flex;
  flex-direction: column;
  gap: 86px;
}
.brand-case {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.65fr);
  align-items: center;
  gap: 72px;
}
.brand-case--netflix {
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, .72fr);
}
.brand-case__copy {
  min-width: 0;
}
.brand-case__copy .project-description {
  margin-top: 26px;
  color: var(--muted);
}
.micro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.micro-tags span {
  min-height: 25px;
  padding: 2px 9px;
  border-width: 1px;
  border-radius: 6px;
  font-size: 13px;
}
.brand-case__visual {
  min-width: 0;
}
.brand-case__visual img {
  width: 100%;
  height: auto;
}
.brand-case__visual--starbucks {
  display: grid;
  gap: 14px;
}
.starbucks-main {
  width: min(100%, 760px) !important;
  justify-self: end;
}
.starbucks-supporting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.starbucks-supporting img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.brand-case__visual--netflix {
  display: grid;
  gap: 14px;
}
.brand-case__visual--netflix img {
  width: 100%;
  object-fit: contain;
}
.brand-case__visual--lor img {
  width: 100%;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero, .hero__inner { min-height: 620px; }
  .hero__copy { width: 60%; padding-top: 150px; }
  .hero__name { font-size: 28px; }
  .hero h1 { font-size: clamp(46px, 5.4vw, 62px); }
  .hero__lead { font-size: 24px; }
  .hero__photo { right: 20px; height: min(560px, 88%); max-width: 48%; }

  .section-heading h2 { font-size: 36px; }
  .project-row__copy { padding: 38px 42px; }
  .project-copy h3,
  .brand-case__copy h3 { font-size: 30px; }
  .project-description { margin-top: 26px; font-size: 17px; }
  .tools { margin-top: 26px; }

  .brand-case,
  .brand-case--netflix {
    gap: 48px;
    grid-template-columns: minmax(230px, .7fr) minmax(0, 1.5fr);
  }
  .brand-case--netflix {
    grid-template-columns: minmax(0, 1.5fr) minmax(230px, .7fr);
  }
}

@media (max-width: 820px) {
  .hero { min-height: 760px; }
  .hero__inner {
    width: min(calc(100% - 40px), var(--page-max));
    min-height: 760px;
  }
  .hero__copy { width: 100%; padding-top: 72px; text-align: center; }
  .hero__name { margin-bottom: 18px; font-size: 23px; }
  .hero h1 { max-width: none; font-size: clamp(42px, 9vw, 58px); }
  .hero__lead { margin-top: 22px; font-size: 21px; }
  .hero__photo {
    right: 50%;
    bottom: 0;
    height: 390px;
    max-width: 76%;
    transform: translateX(50%);
  }

  .portfolio { padding: 72px 20px 110px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading--motion { margin-top: 76px; }
  .section-heading--brand { margin-top: 88px; }
  .section-heading h2 { font-size: 32px; }
  .section-heading__intro { font-size: 17px; }

  .project-list { gap: 68px; }
  .project-row,
  .project-row--reverse {
    grid-template-columns: 1fr;
  }
  .project-row--reverse .project-row__copy { order: 2; }
  .project-row--reverse .project-row__visual { order: 1; }
  .project-row__copy { padding: 34px 30px 38px; }
  .project-number { margin-bottom: 15px; font-size: 42px; }
  .project-copy h3,
  .brand-case__copy h3 { font-size: 30px; }
  .project-description { margin-top: 24px; }
  .tools { margin-top: 24px; }

  .brand-list { gap: 78px; }
  .brand-case,
  .brand-case--netflix {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .brand-case--netflix .brand-case__visual { order: 2; }
  .brand-case--netflix .brand-case__copy { order: 1; }
  .brand-case__copy {
    max-width: 620px;
  }
  .starbucks-main {
    width: 100% !important;
    justify-self: stretch;
  }
}

@media (max-width: 520px) {
  .hero { min-height: 670px; }
  .hero__inner {
    width: min(calc(100% - 30px), var(--page-max));
    min-height: 670px;
  }
  .hero__copy { padding-top: 54px; }
  .hero__name { font-size: 19px; }
  .hero h1 { font-size: clamp(38px, 11vw, 50px); line-height: 1.06; }
  .hero__lead { font-size: 18px; line-height: 1.35; }
  .hero__photo { height: 340px; max-width: 88%; }

  .portfolio { padding: 58px 14px 90px; }
  .section-heading { margin-bottom: 26px; }
  .section-heading--motion { margin-top: 62px; }
  .section-heading--brand { margin-top: 72px; }
  .section-heading h2 { font-size: 28px; }
  .section-heading__intro { margin-top: 18px; font-size: 16px; }
  .tags { gap: 8px; margin-top: 12px; }
  .tags span { min-height: 25px; padding: 2px 8px; font-size: 13px; border-width: 1px; border-radius: 6px; }

  .project-list { gap: 48px; }
  .project-row__copy { padding: 28px 22px 32px; }
  .project-number { font-size: 38px; }
  .project-copy h3,
  .brand-case__copy h3 { font-size: 27px; }
  .project-description { margin-top: 21px; font-size: 16px; }
  .tools { margin-top: 21px; font-size: 15px; }

  .brand-list { gap: 62px; }
  .brand-case,
  .brand-case--netflix { gap: 26px; }
  .starbucks-supporting { grid-template-columns: 1fr; }
  .micro-tags { margin-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* 3D & Interactive Visuals */
.section-heading--interactive {
  margin-top: 128px;
}

.interactive-case {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.interactive-case__feature {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.9fr);
  gap: 64px;
  align-items: center;
}

.interactive-case__copy h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.025em;
}

.interactive-case__copy .project-description {
  margin-top: 26px;
  color: var(--muted);
}

.extended-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #07050d;
}

.extended-visual::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: 0;
  pointer-events: none;
}

.extended-visual--final::before {
  background:
    radial-gradient(circle at 15% 54%, rgba(70, 53, 153, .68), transparent 37%),
    radial-gradient(circle at 86% 56%, rgba(15, 67, 162, .58), transparent 38%),
    linear-gradient(100deg, #0b0816 0%, #171025 46%, #07132d 100%);
}

.extended-visual--clean::before {
  background:
    radial-gradient(circle at 18% 52%, rgba(23, 28, 66, .72), transparent 38%),
    radial-gradient(circle at 87% 51%, rgba(6, 13, 49, .86), transparent 42%),
    linear-gradient(100deg, #080c24 0%, #05091f 52%, #030617 100%);
}

.extended-visual img {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  margin: 0 auto;
  object-fit: contain;
}

/* Soft fades make the original square background blend into the wider canvas
   while leaving the artwork itself untouched. */
.extended-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(0,0,0,.05) 0%,
    transparent 10%,
    transparent 90%,
    rgba(0,0,0,.05) 100%);
}

.interactive-case__hero {
  aspect-ratio: 16 / 9;
}

/* V5: final composite is now a true widescreen artwork, so show it edge-to-edge. */
.extended-visual--final::before {
  display: none;
}

.extended-visual--final img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.interactive-case__compare {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2px;
  background: #0a0a0a;
}

.compare-panel {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
}

.compare-panel figcaption {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 22px;
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 7px 10px;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(7px);
  font-size: 15px;
  line-height: 1;
}

.compare-panel figcaption strong {
  font-weight: 700;
}

.compare-panel figcaption span {
  color: #dadada;
}

.compare-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(0,0,0,.66);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

@media (max-width: 1100px) {
  .interactive-case__feature {
    grid-template-columns: minmax(220px, .68fr) minmax(0, 1.6fr);
    gap: 46px;
  }

  .interactive-case__copy h3 {
    font-size: 30px;
  }
}

@media (max-width: 820px) {
  .section-heading--interactive {
    margin-top: 94px;
  }

  .interactive-case {
    gap: 34px;
  }

  .interactive-case__feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .interactive-case__copy {
    max-width: 620px;
  }

  .interactive-case__hero {
    aspect-ratio: 16 / 11;
  }

  .interactive-case__compare {
    grid-template-columns: 1fr;
    gap: 14px;
    background: transparent;
  }

  .compare-panel {
    aspect-ratio: 16 / 11;
  }

  .compare-arrow {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

@media (max-width: 520px) {
  .section-heading--interactive {
    margin-top: 76px;
  }

  .interactive-case__copy h3 {
    font-size: 27px;
  }

  .interactive-case__hero,
  .compare-panel {
    aspect-ratio: 4 / 3;
  }

  .compare-panel figcaption {
    top: 12px;
    left: 12px;
    font-size: 12px;
  }

  .compare-arrow {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
}


/* Skills & Software */
.skills-section {
  margin-top: 128px;
}
.section-heading--skills {
  margin-bottom: 56px;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.skill-column {
  min-width: 0;
  padding: 0 34px;
}
.skill-column:first-child { padding-left: 0; }
.skill-column:last-child { padding-right: 0; }
.skill-column + .skill-column {
  border-left: 1px solid rgba(149, 72, 255, .28);
}
.skill-column__eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .12em;
}
.skill-column h3 {
  margin: 0 0 28px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.software-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.software-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
}
.software-item span {
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}
.software-item small {
  flex: 0 0 auto;
  color: var(--accent-soft);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 8px;
  border: 1px solid rgba(149,72,255,.72);
  border-radius: 999px;
}
.skill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.skill-list li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}
@media (max-width: 1100px) {
  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 58px;
  }
  .skill-column { padding: 0 36px; }
  .skill-column:nth-child(odd) { padding-left: 0; }
  .skill-column:nth-child(even) { padding-right: 0; border-left: 1px solid rgba(149, 72, 255, .28); }
  .skill-column:nth-child(3) { border-left: 0; }
}
@media (max-width: 820px) {
  .skills-section { margin-top: 96px; }
  .section-heading--skills { margin-bottom: 44px; }
  .skills-grid { row-gap: 50px; }
}
@media (max-width: 620px) {
  .skills-grid { grid-template-columns: 1fr; gap: 42px; }
  .skill-column,
  .skill-column:first-child,
  .skill-column:last-child,
  .skill-column:nth-child(odd),
  .skill-column:nth-child(even) {
    padding: 0;
    border-left: 0;
  }
  .skill-column + .skill-column {
    padding-top: 36px;
    border-top: 1px solid rgba(149, 72, 255, .28);
  }
  .skill-column h3 { font-size: 23px; margin-bottom: 22px; }
  .software-list { margin-bottom: 24px; }
}


/* V8: Contact / CTA */
.contact-section {
  margin-top: 136px;
}
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(149, 72, 255, .20);
  border-radius: 22px;
  background:
    radial-gradient(circle at 76% 42%, rgba(66, 62, 255, .13), transparent 31%),
    radial-gradient(circle at 91% 48%, rgba(255, 21, 174, .10), transparent 27%),
    linear-gradient(115deg, #050509 0%, #08070f 54%, #09040e 100%);
  box-shadow: 0 26px 80px rgba(0,0,0,.45);
}
.contact-card__main {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  align-items: stretch;
}
.contact-card__copy {
  position: relative;
  z-index: 3;
  padding: 76px 28px 58px 68px;
}
.contact-card__eyebrow {
  margin: 0 0 24px;
  color: var(--accent-soft);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .18em;
}
.contact-card h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(52px, 5vw, 74px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.05em;
}
.contact-card h2 span {
  color: #b276ff;
}
.contact-card__lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #c9c9cf;
  font-size: 19px;
  line-height: 1.5;
}
.contact-grid {
  width: min(100%, 690px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin-top: 48px;
}
.contact-tile {
  position: relative;
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  color: var(--text);
  text-decoration: none;
}
.contact-tile__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(149,72,255,.22);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(33,24,48,.84), rgba(8,7,13,.92));
  color: var(--accent-soft);
  box-shadow: inset 0 0 22px rgba(149,72,255,.06);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.contact-tile__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-tile__icon--brand {
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.05em;
}
.contact-tile__icon--art {
  font-size: 26px;
  font-style: italic;
}
.contact-tile__body {
  min-width: 0;
  display: grid;
  gap: 7px;
}
.contact-tile__label {
  color: #ababaf;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
}
.contact-tile__value {
  overflow-wrap: anywhere;
  color: #f4f4f5;
  font-size: 15px;
  line-height: 1.25;
}
.contact-tile__external {
  position: absolute;
  right: 0;
  bottom: 13px;
  color: #77747f;
  font-size: 16px;
  transition: color .2s ease, transform .2s ease;
}
a.contact-tile:hover .contact-tile__icon {
  border-color: rgba(185,117,255,.72);
  background: linear-gradient(145deg, rgba(74,38,109,.55), rgba(15,10,23,.96));
  transform: translateY(-2px);
}
a.contact-tile:hover .contact-tile__external {
  color: var(--accent-soft);
  transform: translate(2px,-2px);
}
.contact-actions {
  width: min(100%, 690px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .82fr);
  gap: 16px;
  margin-top: 38px;
  padding-top: 31px;
  border-top: 1px solid rgba(149,72,255,.18);
}
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(149,72,255,.90);
  border-radius: 11px;
  color: var(--text);
  background: rgba(0,0,0,.10);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button small {
  margin-left: 2px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
}
.button:hover {
  transform: translateY(-2px);
  background: rgba(149,72,255,.13);
  border-color: var(--accent-soft);
  box-shadow: 0 12px 28px rgba(65,21,112,.16);
}
.button--primary {
  background: linear-gradient(110deg, #7f12e9 0%, #9924f2 55%, #ad46ff 100%);
  border-color: #a43fff;
  box-shadow: 0 12px 30px rgba(132,24,224,.18);
}
.button--primary:hover {
  background: linear-gradient(110deg, #8d20f4 0%, #a335fa 55%, #bb5cff 100%);
}
.contact-card__portrait {
  position: relative;
  min-width: 0;
  align-self: stretch;
}
.contact-card__portrait::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 10% 4% 0 -14%;
  background:
    radial-gradient(circle at 67% 40%, rgba(233,33,173,.15), transparent 24%),
    radial-gradient(circle at 32% 47%, rgba(37,89,255,.16), transparent 31%);
  filter: blur(5px);
}
.contact-card__portrait img {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 94%;
  width: auto;
  max-width: 104%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 38px rgba(0,0,0,.42));
}
.contact-card__glow {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -23%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149,72,255,.22) 0%, rgba(78,28,128,.10) 43%, transparent 69%);
  filter: blur(8px);
}
.contact-footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 42px 30px;
  padding: 25px 34px;
  border: 1px solid rgba(149,72,255,.18);
  border-radius: 15px;
  background: rgba(7,6,12,.78);
}
.contact-footer__brand {
  display: grid;
  gap: 7px;
}
.contact-footer__brand strong {
  font-size: 17px;
  line-height: 1;
}
.contact-footer__brand strong span {
  color: #c2c1c6;
  font-weight: 500;
}
.contact-footer__brand p,
.contact-footer__copyright {
  margin: 0;
  color: #99979f;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 1120px) {
  .contact-card__main {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  }
  .contact-card__copy { padding-left: 50px; }
  .contact-grid { gap-column: 20px; }
}
@media (max-width: 920px) {
  .contact-card__main {
    grid-template-columns: 1fr .64fr;
    min-height: 600px;
  }
  .contact-grid { grid-template-columns: 1fr; gap: 17px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-card__portrait img { height: 83%; }
}
@media (max-width: 720px) {
  .contact-section { margin-top: 96px; }
  .contact-card { border-radius: 16px; }
  .contact-card__main {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .contact-card__copy { padding: 52px 26px 34px; }
  .contact-card h2 { font-size: clamp(44px, 12vw, 62px); }
  .contact-card__lead { font-size: 17px; }
  .contact-grid { width: 100%; grid-template-columns: 1fr; margin-top: 38px; }
  .contact-actions { width: 100%; }
  .contact-card__portrait { min-height: 420px; }
  .contact-card__portrait img { height: 100%; max-width: 94%; }
  .contact-footer {
    min-height: 0;
    margin: 0 18px 18px;
    padding: 22px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 440px) {
  .contact-card__copy { padding: 44px 20px 28px; }
  .contact-tile { grid-template-columns: 50px minmax(0,1fr); gap: 13px; }
  .contact-tile__icon { width: 50px; height: 50px; border-radius: 11px; }
  .contact-tile__value { font-size: 14px; }
  .contact-card__portrait { min-height: 350px; }
  .button { width: 100%; }
}

/* Daily Lucky Spin: full-width artwork preserves all interface details. */
.section-heading--spin { margin-top: 112px; }
.daily-spin__screen { margin: 0 0 40px; }
.daily-spin__screen:last-child { margin-bottom: 0; }
.daily-spin__screen img { width: 100%; height: auto; }
.daily-spin__screen figcaption {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 18px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}
.daily-spin__number { color: var(--accent-soft); font-weight: 700; }
@media (max-width: 600px) {
  .section-heading--spin { margin-top: 72px; }
  .daily-spin__screen { margin-bottom: 28px; }
  .daily-spin__screen figcaption { padding-top: 12px; font-size: 16px; }
}
