@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Heebo:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,500&display=swap");

:root {
  --ink: #151513;
  --paper: #f1efe9;
  --acid: #a855f7;
  --acid-soft: #c4b5fd;
  --violet-deep: #2e1065;
  --line: rgba(21, 21, 19, 0.17);
  --muted: #6e6d67;
}

* { box-sizing: border-box; }

/* Inline SVG icons (reliable across all devices) */
.ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico-b, .ico-s { display: inline-flex; align-items: center; }
.round-arrow .ico { width: 16px; height: 16px; }
.contact-icon svg { width: 17px; height: 17px; display: block; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Heebo", Arial, sans-serif;
  overflow-x: hidden;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 92px;
  padding: 0 clamp(22px, 4vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: white;
}
.brand { display: flex; gap: 12px; align-items: center; font-weight: 600; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}
nav { display: flex; align-items: center; gap: 34px; font-size: 14px; }
nav a { opacity: .78; transition: opacity .25s; }
nav a:hover { opacity: 1; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 99px;
  background: transparent;
  color: white;
  padding: 10px 17px;
  cursor: pointer;
}
.nav-cta span { display: inline-block; margin-right: 8px; }

.hero {
  position: relative;
  min-height: 760px;
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  padding: 120px clamp(22px, 5vw, 82px) 38px;
  gap: 7vw;
  overflow: hidden;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: .18;
}
.hero::before {
  top: -220px;
  right: 28%;
  background: #9333ea;
  animation: ambient-drift 12s ease-in-out infinite alternate;
}
.hero::after {
  bottom: -300px;
  left: 8%;
  background: #6d28d9;
  animation: ambient-drift 15s ease-in-out -4s infinite alternate-reverse;
}
.hero-copy { align-self: center; max-width: 800px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.65);
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
h1 {
  margin: 0;
  font-size: clamp(52px, 6.3vw, 106px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}
.serif-line, h2 em {
  display: block;
  color: var(--acid);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}
.hero-text {
  max-width: 620px;
  margin: 38px 0;
  color: rgba(255,255,255,.67);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.primary-button {
  display: inline-flex;
  justify-content: center;
  gap: 40px;
  min-width: 225px;
  padding: 17px 24px;
  border-radius: 99px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 600;
  transition: transform .25s, box-shadow .25s;
}
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(168,85,247,.34); }
.text-button {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}
.round-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
}

.profile-stage {
  position: relative;
  min-height: 580px;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 260px 260px 24px 24px;
  background: #292824;
  transform: perspective(1100px) rotateX(var(--profile-x, 0deg)) rotateY(var(--profile-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .18s ease-out, box-shadow .3s ease;
  box-shadow: 0 35px 90px rgba(0,0,0,.3);
}
.profile-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,10,.78), transparent 45%);
  pointer-events: none;
}
.profile-stage > img {
  width: 100%;
  height: 580px;
  display: block;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(.88) contrast(1.04);
  transform: scale(1.035) translate3d(var(--profile-image-x, 0px), var(--profile-image-y, 0px), 0);
  transition: transform .18s ease-out;
}
.profile-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
}
.profile-caption span {
  color: var(--acid);
  font: 500 10px "DM Sans", sans-serif;
  letter-spacing: .16em;
}
.profile-caption strong { margin-top: 5px; font-size: 18px; }
.profile-torix {
  position: absolute;
  z-index: 3;
  left: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 150px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  text-align: right;
  background: rgba(15,15,13,.72);
  color: white;
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.profile-torix small { grid-column: 1; color: rgba(255,255,255,.55); }
.profile-torix strong { grid-column: 1; font: 600 23px "DM Sans", sans-serif; }
.profile-torix span { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 22px; }

@keyframes ambient-drift {
  to { transform: translate3d(90px, 55px, 0) scale(1.18); }
}
@keyframes pulse-dot {
  50% { transform: scale(1.45); box-shadow: 0 0 30px var(--acid); }
}

.visual-stage {
  position: relative;
  min-height: 610px;
  align-self: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 260px 260px 26px 26px;
  background:
    radial-gradient(circle at 50% 45%, rgba(168,85,247,.2), transparent 30%),
    linear-gradient(160deg, #2c2c28, #121210);
  overflow: hidden;
  isolation: isolate;
}
.visual-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 95%);
}
.stage-label {
  position: absolute;
  top: 46px;
  right: 48px;
  color: rgba(255,255,255,.4);
  font: 500 11px/1.5 "DM Sans", sans-serif;
  letter-spacing: .16em;
}
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(196,181,253,.38);
  border-radius: 50%;
  transform: translate(-50%,-50%) rotate(-18deg);
}
.orbit-one { width: 420px; height: 220px; animation: breathe 5s ease-in-out infinite; }
.orbit-two { width: 260px; height: 440px; transform: translate(-50%,-50%) rotate(48deg); }
.core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 0 90px rgba(168,85,247,.36);
  font: 600 12px "DM Sans", sans-serif;
  letter-spacing: .14em;
}
.core strong { font-size: 38px; line-height: 1.2; font-weight: 300; }
.floating-chip {
  position: absolute;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  background: rgba(18,18,16,.72);
  backdrop-filter: blur(8px);
  font: 500 10px "DM Sans", sans-serif;
  letter-spacing: .16em;
}
.chip-one { top: 29%; left: 11%; }
.chip-two { top: 62%; right: 8%; }
.chip-three { bottom: 12%; left: 25%; }
.stage-hint {
  position: absolute;
  bottom: 25px;
  right: 32px;
  margin: 0;
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
@keyframes breathe { 50% { width: 455px; height: 235px; opacity: .6; } }

.trust-strip {
  direction: ltr;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--acid);
  padding: 16px 0;
}
.marquee {
  width: max-content;
  display: flex;
  gap: 28px;
  align-items: center;
  animation: marquee 28s linear infinite;
  font-size: 14px;
  font-weight: 600;
}
.marquee i { font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-shell { padding: 115px clamp(22px, 5vw, 82px); }
.section-index {
  direction: ltr;
  text-align: right;
  color: var(--muted);
  font: 500 11px "DM Sans", sans-serif;
  letter-spacing: .14em;
  margin-bottom: 48px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10vw;
  align-items: start;
}
.about h2, .work h2, .contact h2 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 86px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.05em;
}
.about h2 em, .work h2 em, .contact h2 em { display: inline; color: #77766e; }
.about-copy > p {
  font-size: 18px;
  line-height: 1.85;
  color: #55544f;
  margin: 0 0 20px;
}
.torix-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  margin-top: 42px;
  padding: 25px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  transition: transform .25s;
}
.torix-card > img {
  width: 78px;
  height: 58px;
  margin-left: 18px;
  border-radius: 8px;
  object-fit: cover;
}
.torix-card:hover { transform: translateY(-4px); }
.torix-card span:first-child { display: flex; flex-direction: column; }
.torix-card small { color: var(--acid); font: 500 9px "DM Sans", sans-serif; letter-spacing: .14em; }
.torix-card strong { font: 600 30px "DM Sans", sans-serif; margin: 3px 0; }
.torix-card em { color: rgba(255,255,255,.54); font-style: normal; font-size: 13px; }
.torix-arrow { font-size: 27px; }

.work {
  position: relative;
  overflow: hidden;
  background: #110b1c;
  color: white;
  isolation: isolate;
}
.work.section-shell { padding-top: 70px; }
.work::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(15,10,24,.3), rgba(15,10,24,.82)),
    url("assets/backgrounds/gallery-violet-3d.png") center top / cover no-repeat;
  opacity: .72;
  animation: gallery-background 18s ease-in-out infinite alternate;
}
.work::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 42%, rgba(139,92,246,.13), transparent 34%);
  pointer-events: none;
}
.work .section-index,
.work .section-heading > p { color: rgba(255,255,255,.58); }
.work h2 em { color: var(--acid-soft); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}
.section-heading .section-index { margin-bottom: 34px; }
.section-heading > p,
.gallery-intro > p { max-width: 330px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.gallery-intro { display: grid; justify-items: end; gap: 18px; }
.projects-grid {
  direction: rtl;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.project-card {
  direction: rtl;
  position: relative;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  color: var(--ink);
  background: rgba(241,239,233,.9);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  transform:
    perspective(850px)
    rotateX(var(--card-x, 0deg))
    rotateY(var(--card-y, 0deg))
    translateY(var(--card-lift, 0px));
  transform-style: preserve-3d;
  transition: transform .18s ease-out, background .3s, box-shadow .3s;
}
.project-card:hover {
  --card-lift: -7px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 28px 70px rgba(15,5,30,.42);
}
.image-visual { background: #f7f6f2; }
.image-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s ease;
}
.project-card:hover .image-visual img { transform: scale(1.035); }
.hayanuka-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.netivot-visual {
  background: #fff;
}
.netivot-visual img {
  width: 90%;
  height: 90%;
}
.picchak-visual { background: #191919; }
.picchak-visual img {
  width: 78%;
  height: 78%;
  border-radius: 8px;
}
.realtors-visual { background: #fff; }
.realtors-visual img {
  width: 88%;
  height: 88%;
}
.project-card.featured { grid-column: span 1; }
.project-number {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 17px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  font: 500 10px "DM Sans", sans-serif;
}
.project-visual {
  position: relative;
  height: 205px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  overflow: hidden;
}
.featured .project-visual { height: 205px; }
.purple { background: #6c4ff8; }
.lime { background: #a855f7; }
.blue { background: #2176ff; }
.coral { background: #ff684e; }
.dark { background: #171717; color: white; }
.pink { background: #ffb5d7; }
.gold { background: #e6c16f; }
.sand { background: #ccbba4; }
.cyan { background: #72e8dc; }
.red { background: #c9362c; color: white; }
.cream { background: #eee7d8; }
.phone-card {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 330px;
  padding-top: 80px;
  text-align: center;
  border: 8px solid #1c1b20;
  border-radius: 34px;
  background: #f2efe5;
  color: #6c4ff8;
  font-size: 30px;
  font-weight: 700;
  box-shadow: 0 30px 60px rgba(30,14,104,.4);
  transform: rotate(-7deg) translateY(25px);
}
.glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: #b8aaff; filter: blur(70px); }
.type-display { font-size: 50px; line-height: .86; font-weight: 700; letter-spacing: -.06em; }
.bubble { width: 180px; height: 180px; display: grid; place-items: center; text-align: center; border-radius: 50% 50% 44% 56%; background: white; color: #2176ff; font-size: 32px; font-weight: 700; transform: rotate(5deg); }
.outline-text { font: 600 130px "DM Sans", sans-serif; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.8); }
.dark b { position: relative; font: 600 35px "DM Sans", sans-serif; letter-spacing: .1em; }
.barber-lines { position: absolute; inset: -80px; background: repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,.05) 30px 60px); transform: rotate(20deg); }
.poza-logo { font: 600 70px "DM Sans", sans-serif; letter-spacing: -.08em; }
.heart { font-size: 80px; color: #8a260f; position: absolute; transform: translateY(-25px); }
.gold b { transform: translateY(55px); font-size: 26px; }
.nb-monogram { width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid #675a4d; border-radius: 50%; font: 500 42px Georgia, serif; }
.browser-window { width: 80%; padding: 80px 30px; border-radius: 8px; background: #f8f6ef; box-shadow: 0 20px 50px rgba(0,0,0,.16); font-size: 32px; font-weight: 700; }
.browser-window::before { content: "● ● ●"; position: absolute; margin-top: -62px; direction: ltr; font-size: 8px; letter-spacing: 4px; color: #aaa; }
.browser-window small { font: 400 10px "DM Sans", sans-serif; letter-spacing: .12em; }
.skyline { font-size: 70px; letter-spacing: -18px; transform: translateX(-10px); }
.gibli { display: flex; flex-direction: column; align-items: center; font: 500 55px Georgia, serif; letter-spacing: .12em; }
.gibli small { font: 500 9px "DM Sans", sans-serif; letter-spacing: .5em; margin-top: 10px; }
.project-info { padding: 14px 6px 8px; }
.project-type { color: var(--muted); font-size: 11px; }
.project-info h3 { margin: 3px 0 6px; font-size: 19px; font-weight: 600; }
.project-info p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.project-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.project-link b { font-size: 17px; }

.contact {
  background: linear-gradient(135deg, #7e22ce, #a855f7 55%, #c084fc);
  color: white;
  text-align: center;
}
.contact-inner > p { margin: 0 0 25px; font-size: 15px; }
.contact h2 { font-size: clamp(55px, 8vw, 120px); }
.contact h2 em { color: rgba(255,255,255,.58); }
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 45px;
}
.contact .contact-button {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  min-width: 205px;
  justify-content: space-between;
  padding: 15px 20px;
  border-radius: 99px;
  background: var(--ink);
  color: white;
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .25s, background .25s, box-shadow .25s;
}
.contact .contact-button:hover {
  transform: translateY(-4px);
  background: #221b2d;
  box-shadow: 0 15px 35px rgba(46,16,101,.25);
}
.contact .whatsapp-button { background: #17291f; }
.contact-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  font: 600 9px "DM Sans", sans-serif;
  letter-spacing: .05em;
}
.contact-button b {
  font-size: 16px;
  font-weight: 400;
}
footer {
  min-height: 140px;
  padding: 35px clamp(22px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--ink);
  color: white;
  font-size: 12px;
}
footer p { color: rgba(255,255,255,.5); }
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-links a {
  color: rgba(255,255,255,.62);
  transition: color .2s;
}
.footer-links a:hover { color: var(--acid-soft); }

.torix-modal {
  width: min(760px, calc(100% - 30px));
  border: 0;
  border-radius: 20px;
  padding: clamp(28px, 5vw, 62px);
  background: #171715;
  color: white;
}
.torix-modal::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.modal-close {
  position: absolute;
  top: 18px;
  left: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 25px;
}
.modal-tag { color: var(--acid); font: 500 9px "DM Sans", sans-serif; letter-spacing: .16em; }
.modal-logo { margin-top: 18px; font: 600 clamp(55px, 8vw, 92px) "DM Sans", sans-serif; letter-spacing: -.08em; }
.modal-logo span { color: var(--acid); font-size: .38em; margin-right: 6px; }
.modal-logo-image {
  display: block;
  width: min(330px, 72%);
  height: 145px;
  margin: 20px 0 15px auto;
  border-radius: 14px;
  object-fit: cover;
}
.torix-modal h2 { max-width: 550px; margin: 5px 0 20px; font-size: clamp(30px, 4vw, 48px); line-height: 1.15; }
.torix-modal > p { max-width: 600px; color: rgba(255,255,255,.64); font-size: 17px; line-height: 1.75; }
.modal-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 35px; }
.modal-features div { display: flex; flex-direction: column; padding: 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; }
.modal-features span { color: var(--acid); font: 500 9px "DM Sans", sans-serif; }
.modal-features strong { margin: 18px 0 6px; }
.modal-features small { color: rgba(255,255,255,.45); line-height: 1.55; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.project-card.reveal.visible {
  transform:
    perspective(850px)
    rotateX(var(--card-x, 0deg))
    rotateY(var(--card-y, 0deg))
    translateY(var(--card-lift, 0px));
  opacity: 1;
}

@keyframes gallery-background {
  to { background-position: 54% 30%; transform: scale(1.04); }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .profile-stage { min-height: 550px; }
  .profile-stage > img { height: 550px; }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .projects-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-header { height: 76px; }
  .site-header nav a { display: none; }
  .site-header nav { gap: 0; }
  .hero { min-height: 0; padding: 105px 22px 28px; gap: 38px; }
  h1 { font-size: clamp(46px, 14vw, 68px); }
  .hero-text { margin: 28px 0; }
  .profile-stage { min-height: 470px; border-radius: 200px 200px 22px 22px; }
  .profile-stage > img { height: 470px; }
  .orbit-one { width: 310px; height: 170px; }
  .orbit-two { width: 190px; height: 320px; }
  .core { width: 185px; height: 185px; }
  .stage-hint { display: none; }
  .section-shell { padding-top: 55px; padding-bottom: 70px; }
  .section-index { margin-bottom: 30px; }
  .section-heading { display: block; margin-bottom: 20px; }
  .gallery-intro { justify-items: start; margin-top: 22px; }
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .project-visual, .featured .project-visual { height: 165px; }
  .project-info h3 { font-size: 16px; }
  .project-info p { display: none; }
  .project-link { font-size: 11px; }
  .contact-actions { display: grid; margin-top: 35px; }
  .contact .contact-button { width: min(100%, 280px); }
  footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
  .modal-features { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .profile-stage,
  .profile-stage > img,
  .project-card,
  .project-card.reveal.visible { transform: none !important; }
}
