:root {
  --bg: #09080d;
  --bg-elevated: rgba(24, 16, 24, 0.76);
  --panel: rgba(255, 243, 240, 0.08);
  --panel-strong: rgba(255, 243, 240, 0.14);
  --text: #f8f1ee;
  --muted: #cab4b2;
  --accent: #e4b2a8;
  --accent-strong: #ffe3d8;
  --accent-rose: #dd8faa;
  --accent-blue: #9ca8d8;
  --accent-gold: #f2cdb1;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 36px 120px rgba(14, 8, 16, 0.42);
  --max-width: 1240px;
  --radius-lg: 2.4rem;
  --radius-md: 1.45rem;
  --radius-sm: 999px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
  --transition-slow: 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-base: 360ms ease;
  --section-space: clamp(2.2rem, 4.4vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(221, 143, 170, 0.22), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(156, 168, 216, 0.12), transparent 22%),
    radial-gradient(circle at 50% 60%, rgba(242, 205, 177, 0.1), transparent 26%),
    linear-gradient(180deg, #09080d 0%, #120d14 42%, #09080e 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

html.has-custom-cursor,
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor input,
html.has-custom-cursor textarea,
html.has-custom-cursor select,
html.has-custom-cursor label {
  cursor: none;
}

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

a,
button,
input,
textarea {
  font: inherit;
}

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition-base), background-color var(--transition-base), transform var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 239, 233, 0.48);
}

input:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 4px;
}

input:focus-visible,
textarea:focus-visible {
  border-color: rgba(240, 220, 200, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  transition: top var(--transition-base);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.cursor-shell {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.cursor-shell.is-visible {
  opacity: 1;
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
}

.cursor-ring {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: -1.2rem;
  margin-top: -1.2rem;
  border: 1px solid rgba(255, 227, 216, 0.52);
  background: radial-gradient(circle, rgba(255, 227, 216, 0.08), rgba(255, 227, 216, 0.02) 62%, transparent 72%);
  box-shadow: 0 0 30px rgba(221, 143, 170, 0.18);
  transition:
    width 240ms ease,
    height 240ms ease,
    margin 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    opacity 240ms ease;
}

.cursor-dot {
  width: 0.42rem;
  height: 0.42rem;
  margin-left: -0.21rem;
  margin-top: -0.21rem;
  background: var(--accent-strong);
  box-shadow: 0 0 18px rgba(255, 227, 216, 0.58);
}

.cursor-shell.is-active .cursor-ring {
  width: 3.3rem;
  height: 3.3rem;
  margin-left: -1.65rem;
  margin-top: -1.65rem;
  border-color: rgba(255, 227, 216, 0.76);
}

.cursor-shell.is-text .cursor-ring {
  width: 2rem;
  height: 2rem;
  margin-left: -1rem;
  margin-top: -1rem;
  border-color: rgba(255, 255, 255, 0.3);
  opacity: 0.72;
}

.ambient,
.ambient-grid {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  top: 12vh;
  left: -8vw;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(221, 143, 170, 0.24), transparent 62%);
  filter: blur(30px);
  animation: driftOne 18s ease-in-out infinite alternate;
}

.ambient-two {
  right: -12vw;
  top: 32vh;
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, rgba(242, 205, 177, 0.16), transparent 62%);
  filter: blur(36px);
  animation: driftTwo 22s ease-in-out infinite alternate;
}

.ambient-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 70%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(9, 8, 13, 0.78), rgba(9, 8, 13, 0.22));
}

.brand-mark,
.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  letter-spacing: 0.2em;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a,
.header-cta,
.lang-button {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color var(--transition-base), opacity var(--transition-base);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.lang-button:hover,
.lang-button:focus-visible,
.project-copy a:hover,
.project-copy a:focus-visible,
.contact-email:hover,
.contact-email:focus-visible {
  color: var(--text);
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang-button.is-active {
  color: var(--accent-strong);
}

.section {
  padding: var(--section-space) 0;
}

.hero.section {
  padding-bottom: clamp(1.5rem, 4vw, 2.6rem);
}

.who.section {
  padding-top: clamp(1.2rem, 3vw, 2rem);
}

.impact.section,
.work.section,
.services.section,
.audit.section {
  padding-top: clamp(1.8rem, 4vw, 3rem);
}

.hero {
  min-height: min(86svh, 50rem);
  display: grid;
  align-items: center;
  gap: 1rem;
  padding-top: 2.6rem;
}

.eyebrow,
.stage-label,
.service-index,
.process-step span,
.form-note,
.footer-note {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

h1,
h2 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 9.8ch;
  font-size: clamp(3rem, 9.2vw, 7.2rem);
  line-height: 0.98;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
}

p {
  margin: 0;
}

.hero-text,
.intro-text,
.service-item p,
.project-copy p,
.process-step p,
.testimonial-note p,
.contact-copy p {
  max-width: 42rem;
  color: rgba(245, 239, 233, 0.86);
  font-size: 1rem;
}

.hero-text {
  margin-top: 0.55rem;
  max-width: 29rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.hero-meta span,
.manifesto p {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta span {
  padding: 0.52rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(247, 241, 236, 0.82);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.68rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-sm);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.who-grid,
.impact-grid {
  display: grid;
  gap: 0.8rem;
}

.focus-card,
.impact-card,
.audit-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.focus-card,
.impact-card {
  display: grid;
  gap: 0.6rem;
  padding: 1.15rem;
  border-radius: 1.6rem;
  box-shadow: 0 18px 48px rgba(14, 8, 16, 0.18);
}

.focus-card span {
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.focus-card h3,
.impact-card h3 {
  max-width: 14ch;
}

.impact-card p {
  max-width: 22rem;
  color: rgba(245, 239, 233, 0.84);
}

.focus-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.impact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid rgba(255, 227, 216, 0.28);
  color: #1b1217;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent), #d99ab3);
  box-shadow: 0 18px 44px rgba(221, 143, 170, 0.2);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stage {
  position: relative;
  min-height: 24rem;
  display: grid;
  align-items: end;
}

.hero-frame,
.project-media,
.contact-panel,
.intro-note,
.hero-card,
.process-step,
.testimonial-note,
.service-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-frame {
  position: relative;
  min-height: 24rem;
  border-radius: min(2rem, 8vw);
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 22%, rgba(255, 227, 216, 0.22), transparent 16%),
    radial-gradient(circle at 18% 74%, rgba(221, 143, 170, 0.2), transparent 20%),
    linear-gradient(155deg, rgba(33, 20, 31, 0.96), rgba(11, 10, 16, 0.86)),
    linear-gradient(180deg, rgba(242, 205, 177, 0.12), transparent);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: -25% auto auto -8%;
  width: 70%;
  height: 70%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 58%);
  transform: rotate(10deg);
  opacity: 0.75;
  animation: shimmerDrift 8s ease-in-out infinite alternate;
}

.hero-frame::before,
.project-media::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: inherit;
}

.hero-frame-inner,
.project-media {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-frame-inner {
  min-height: 24rem;
}

.media-placeholder,
.media-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.media-fill {
  object-fit: cover;
}

.hero-video {
  filter: saturate(0.92) contrast(1.02) brightness(0.82);
}

.media-placeholder {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 227, 216, 0.2), transparent 16%),
    radial-gradient(circle at 72% 66%, rgba(221, 143, 170, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(11, 10, 16, 0.14), rgba(11, 10, 16, 0.44)),
    radial-gradient(circle at 30% 22%, rgba(255, 236, 215, 0.16), transparent 18%),
    radial-gradient(circle at 76% 70%, rgba(242, 205, 177, 0.12), transparent 24%);
}

.hero-frame-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(248, 241, 238, 0.86);
  background: rgba(14, 11, 18, 0.34);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.66rem;
  backdrop-filter: blur(10px);
}

.media-placeholder-shop {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 227, 216, 0.2), transparent 16%),
    radial-gradient(circle at 70% 70%, rgba(221, 143, 170, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.media-placeholder-cafe {
  background:
    radial-gradient(circle at 68% 20%, rgba(255, 227, 216, 0.18), transparent 18%),
    radial-gradient(circle at 20% 72%, rgba(242, 205, 177, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.media-placeholder-future {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 217, 190, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.media-placeholder-astra {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 12%),
    radial-gradient(circle at 72% 28%, rgba(156, 168, 216, 0.18), transparent 18%),
    radial-gradient(circle at 24% 72%, rgba(221, 143, 170, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(16, 17, 28, 0.88), rgba(8, 9, 17, 0.96));
}

.astra-preview {
  position: absolute;
  inset: 12%;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.16), transparent 10%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  overflow: hidden;
}

.astra-dot,
.astra-dot-small {
  position: absolute;
  border-radius: 50%;
  background: #fff6ef;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
}

.astra-dot {
  top: 24%;
  left: 54%;
  width: 0.8rem;
  height: 0.8rem;
}

.astra-dot-small {
  top: 38%;
  left: 34%;
  width: 0.35rem;
  height: 0.35rem;
  opacity: 0.9;
}

.astra-line {
  position: absolute;
  left: 24%;
  right: 18%;
  bottom: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.site-preview {
  position: absolute;
  inset: 1.05rem;
  width: calc(100% - 2.1rem);
  height: calc(100% - 2.1rem);
  border: 0;
  border-radius: 1.25rem;
  background: #ffffff;
  pointer-events: none;
  transform: scale(1.08);
  transform-origin: top center;
  filter: saturate(0.96) contrast(1.02);
}

.preview-overlay {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  justify-content: flex-start;
  z-index: 2;
  pointer-events: none;
}

.hero-frame-inner span,
.project-media span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  z-index: 1;
}

.hero-veil {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(26px);
  opacity: 0.7;
}

.hero-veil-one {
  top: 8%;
  right: 10%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(221, 143, 170, 0.34), transparent 68%);
}

.hero-veil-two {
  bottom: 2%;
  left: 16%;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(242, 205, 177, 0.24), transparent 68%);
}

.hero-orbit {
  position: absolute;
  inset: 10% auto auto 62%;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 227, 216, 0.18);
  box-shadow:
    0 0 0 26px rgba(255, 255, 255, 0.02),
    0 0 60px rgba(221, 143, 170, 0.12);
}

.hero-trace {
  position: absolute;
  left: -2%;
  top: 14%;
  width: 36%;
  height: 36%;
  border-top: 1px solid rgba(255, 227, 216, 0.2);
  border-left: 1px solid rgba(255, 227, 216, 0.14);
  border-top-left-radius: 2rem;
  opacity: 0.75;
}


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

.section-note {
  max-width: 28rem;
  color: rgba(245, 239, 233, 0.62);
  font-size: 0.9rem;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.intro-mark {
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.services-merged {
  display: grid;
  gap: 1.1rem;
  padding: 0.4rem 0 0;
}

.services-hero {
  display: grid;
  gap: 0.65rem;
}

.services-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
}

.service-list,
.who-grid,
.impact-grid,
.process-grid,
.portfolio-sequence {
  display: grid;
  gap: 0.8rem;
}

.service-list {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.service-item,
.process-step,
.testimonial-note {
  border-radius: 1.9rem;
  padding: 1.2rem;
}

.service-item {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1rem;
  align-items: start;
  min-height: 10rem;
  padding: 1.15rem 1.15rem 1.3rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 85% 18%, rgba(221, 143, 170, 0.12), transparent 28%);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 56px rgba(14, 8, 16, 0.2);
  transform-origin: center bottom;
  transform-style: preserve-3d;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background-position var(--transition-slow),
    box-shadow var(--transition-base);
  background-size: 100% 100%, 140% 140%;
  background-position: 0 0, 100% 0;
}

.js .service-item {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.96);
  clip-path: inset(0 0 100% 0 round 1.6rem);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    clip-path 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color var(--transition-base),
    background-position var(--transition-slow),
    box-shadow var(--transition-base);
  transition-delay: var(--card-delay, 0ms);
}

.js .service-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0 round 1.6rem);
}

.service-index {
  padding-top: 0.25rem;
}

.service-body {
  display: grid;
  gap: 0.5rem;
}

.service-body h3 {
  max-width: 12ch;
}

.service-body p {
  max-width: 15ch;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.service-tags span {
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 241, 238, 0.72);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-glow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 227, 216, 0.2), rgba(221, 143, 170, 0.04) 55%, transparent 72%);
  filter: blur(8px);
  opacity: 0.8;
  transition: transform var(--transition-slow), opacity var(--transition-base);
}

.service-item::after {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 0.9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 72%);
  opacity: 0.55;
  transform-origin: left center;
  transition: transform var(--transition-slow), opacity var(--transition-base);
}

.service-glow-rose {
  background: radial-gradient(circle, rgba(255, 227, 216, 0.2), rgba(221, 143, 170, 0.08) 55%, transparent 72%);
}

.service-glow-gold {
  background: radial-gradient(circle, rgba(255, 227, 216, 0.18), rgba(242, 205, 177, 0.1) 55%, transparent 72%);
}

.service-glow-blue {
  background: radial-gradient(circle, rgba(255, 227, 216, 0.18), rgba(156, 168, 216, 0.1) 55%, transparent 72%);
}

.service-item:hover,
.service-item:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 227, 216, 0.18);
  box-shadow: 0 42px 90px rgba(14, 8, 16, 0.42);
  background-position: 0 0, 0 0;
}

.service-item:hover .service-glow,
.service-item:focus-within .service-glow {
  transform: scale(1.08);
  opacity: 1;
}

.service-item:hover::after,
.service-item:focus-within::after {
  transform: scaleX(1.04);
  opacity: 0.85;
}

.portfolio-sequence {
  gap: 2rem;
}

.project-row {
  display: grid;
  gap: 1.3rem;
  align-items: center;
  padding: 0.35rem 0;
}

.project-copy {
  display: grid;
  gap: 0.8rem;
}

.project-copy p,
.hero-text,
.intro-text,
.contact-copy p {
  max-width: 28rem;
}

.project-copy a,
.contact-email {
  width: fit-content;
  color: var(--accent-strong);
}

.contact-email,
.contact-whatsapp {
  overflow-wrap: anywhere;
}

.contact-card {
  display: grid;
  gap: 0.7rem;
  width: fit-content;
  min-width: min(100%, 22rem);
  padding: 1rem 1.1rem;
  margin-top: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 84% 16%, rgba(221, 143, 170, 0.12), transparent 28%);
}

.contact-label {
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.contact-links {
  display: grid;
  gap: 0.55rem;
  width: fit-content;
}

.contact-whatsapp {
  width: fit-content;
  color: rgba(248, 241, 238, 0.76);
  font-size: 0.95rem;
}

.project-media {
  min-height: 24rem;
  border-radius: 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 227, 216, 0.22), transparent 18%),
    radial-gradient(circle at 78% 74%, rgba(221, 143, 170, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(43, 33, 39, 0.95), rgba(14, 13, 18, 0.84)),
    linear-gradient(180deg, rgba(242, 205, 177, 0.08), transparent);
}

.project-row-alt .project-media {
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 227, 216, 0.22), transparent 18%),
    radial-gradient(circle at 70% 78%, rgba(221, 143, 170, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(36, 29, 36, 0.95), rgba(14, 13, 18, 0.84)),
    linear-gradient(180deg, rgba(242, 205, 177, 0.1), transparent);
}

.project-row:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-grid {
  counter-reset: process;
}

.process-step {
  display: grid;
  gap: 0.55rem;
  min-height: 8.8rem;
}

.testimonial-note {
  max-width: 42rem;
}

.contact-panel {
  padding: clamp(1.15rem, 3vw, 2rem);
  border-radius: 2.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 20% 20%, rgba(221, 143, 170, 0.14), transparent 28%),
    radial-gradient(circle at 82% 40%, rgba(242, 205, 177, 0.12), transparent 30%);
}

.audit-panel {
  display: grid;
  gap: 1.2rem;
  align-items: end;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 18% 18%, rgba(221, 143, 170, 0.16), transparent 28%),
    radial-gradient(circle at 82% 46%, rgba(242, 205, 177, 0.12), transparent 30%);
}

.audit-copy {
  display: grid;
  gap: 0.7rem;
}

.audit-copy p {
  max-width: 32rem;
  color: rgba(245, 239, 233, 0.84);
}

.contact-copy {
  display: grid;
  gap: 0.85rem;
}

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

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
}

.footer-note {
  opacity: 0.55;
}

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

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.js .reveal[data-reveal="fade"] {
  transform: translate3d(0, 20px, 0) scale(0.985);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.sheen-target {
  position: relative;
  overflow: hidden;
  --sheen-x: 50%;
  --sheen-y: 50%;
}

.sheen-target::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at var(--sheen-x) var(--sheen-y), rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.18), transparent 58%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.sheen-target:hover::after,
.sheen-target:focus-visible::after {
  opacity: 1;
}

.section.intro,
.section.process,
.section.contact {
  position: relative;
}

.section.intro::before,
.section.process::before,
.section.contact::before {
  content: "";
  position: absolute;
  inset: 0.1rem -1rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

[data-parallax] {
  will-change: transform;
}

@keyframes driftOne {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4vw, 3vh, 0) scale(1.08);
  }
}

@keyframes driftTwo {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-5vw, -2vh, 0) scale(1.1);
  }
}

@keyframes shimmerDrift {
  from {
    transform: rotate(10deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(16deg) translate3d(2.5rem, 1rem, 0);
  }
}

@media (min-width: 720px) {
  .site-header {
    padding-top: 1.4rem;
  }

  .site-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: 0.9rem;
  }

  .hero-text {
    margin-top: 0.7rem;
    max-width: 27rem;
  }

  .who-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .impact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-bottom: 0.25rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    min-height: 13rem;
    padding: 1.25rem;
  }

  .service-index {
    padding-top: 0;
  }

  .service-body h3 {
    max-width: 11ch;
  }

  .service-tags span {
    font-size: 0.64rem;
  }

  .project-row,
  .contact-panel,
  .audit-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-row-alt .project-copy {
    order: 2;
  }

  .project-row-alt .project-media {
    order: 1;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 0.35rem;
  }
}

@media (max-width: 719px) {
  .site-header {
    gap: 0.6rem;
    padding: 0.85rem 0;
  }

  .brand-mark,
  .footer-mark {
    font-size: 1.2rem;
    letter-spacing: 0.16em;
  }

  .header-actions {
    gap: 0.45rem;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .language-switch {
    gap: 0.45rem;
  }

  .lang-button,
  .language-switch span {
    font-size: 0.8rem;
  }

  .section {
    padding: 2.15rem 0;
  }

  .hero {
    min-height: auto;
    gap: 1rem;
    padding-top: 1.6rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: 0.98;
  }

  h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1;
  }

  h3 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .hero-text,
  .intro-text,
  .contact-copy p,
  .project-copy p,
  .section-note {
    font-size: 0.95rem;
  }

  .hero-text {
    margin-top: 0.45rem;
    max-width: 100%;
  }

  .hero-meta {
    gap: 0.5rem;
    margin-top: 0.65rem;
  }

  .hero-meta span {
    padding: 0.45rem 0.7rem;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 0.95rem;
  }

  .button {
    width: 100%;
    min-height: 3rem;
    padding: 0.9rem 1rem;
  }

  .hero-stage {
    min-height: 16rem;
  }

  .hero-frame,
  .hero-frame-inner {
    min-height: 16rem;
    border-radius: 1.45rem;
  }

  .hero-frame-caption {
    left: 0.8rem;
    bottom: 0.8rem;
    padding: 0.46rem 0.7rem;
    font-size: 0.58rem;
  }

  .hero-frame::before {
    inset: 6%;
  }

  .hero-orbit {
    inset: 0.5rem 0.6rem auto auto;
    width: 5rem;
    height: 5rem;
    box-shadow:
      0 0 0 12px rgba(255, 255, 255, 0.02),
      0 0 32px rgba(221, 143, 170, 0.08);
  }

  .hero-trace {
    left: 0;
    top: 10%;
    width: 30%;
    height: 28%;
  }


  .section-heading {
    gap: 0.5rem;
    margin-bottom: 0.85rem;
  }

  .section-note {
    max-width: 18rem;
  }

  .services-merged {
    gap: 0.9rem;
    padding-top: 0.55rem;
  }

  .service-list,
  .who-grid,
  .impact-grid,
  .portfolio-sequence,
  .process-grid {
    gap: 0.7rem;
  }

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

  .service-item {
    min-height: auto;
    padding: 1rem;
  }

  .service-tags span {
    font-size: 0.62rem;
  }

  .service-body h3 {
    max-width: 14ch;
  }

  .service-glow {
    width: 3.6rem;
    height: 3.6rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .project-row {
    gap: 0.9rem;
  }

  .project-copy {
    gap: 0.75rem;
  }

  .project-media {
    min-height: 16rem;
    border-radius: 1.45rem;
  }

  .project-media::before {
    inset: 6%;
  }

  .site-preview {
    inset: 0.7rem;
    width: calc(100% - 1.4rem);
    height: calc(100% - 1.4rem);
    border-radius: 0.9rem;
    transform: scale(1.04);
  }

  .preview-overlay {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .project-media span {
    padding: 0.5rem 0.75rem;
    font-size: 0.62rem;
  }

  .process-step,
  .testimonial-note {
    min-height: auto;
    padding: 1rem;
  }

  .contact-panel {
    padding: 1rem;
    border-radius: 1.6rem;
    gap: 1rem;
  }

  .audit-panel {
    padding: 1rem;
    border-radius: 1.6rem;
  }

  .contact-card {
    width: 100%;
    min-width: 0;
    padding: 0.95rem 1rem;
  }

  .contact-links {
    gap: 0.45rem;
  }

  .contact-whatsapp {
    font-size: 0.9rem;
  }

  .contact-form {
    gap: 0.7rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding-top: 0.25rem;
  }
}

@media (max-width: 420px) {
  .hero-meta span {
    padding: 0.42rem 0.62rem;
    font-size: 0.6rem;
  }

  .project-media {
    min-height: 14rem;
  }

  .contact-card {
    padding: 0.85rem 0.9rem;
  }

  .contact-email,
  .contact-whatsapp {
    font-size: 0.88rem;
  }

  .hero-meta {
    margin-top: 0.55rem;
  }
}

@media (min-width: 1024px) {
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 4rem), var(--max-width));
  }

  .project-row {
    gap: 2rem;
  }

  .project-copy {
    padding-left: 1rem;
    padding-right: 2rem;
  }

  .hero-copy {
    padding-right: 2rem;
  }
}

@media (pointer: coarse) {
  .cursor-shell {
    display: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  html.has-custom-cursor,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor input,
  html.has-custom-cursor textarea,
  html.has-custom-cursor select,
  html.has-custom-cursor label {
    cursor: auto;
  }

  .cursor-shell {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal[data-reveal="fade"] {
    opacity: 1;
    transform: none;
  }
}
