:root {
  --background: #050505;
  --surface: #101012;
  --surface-soft: #17171a;
  --foreground: #f3f3f1;
  --muted: #9a9a9a;
  --line: #29292d;
  --pink: #e96fa5;
  --pink-soft: #f5bdd5;
  --page: min(1360px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #050505;
  background: var(--pink);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
  font: inherit;
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c9c9c7;
  font-size: 12px;
}

.desktop-nav a,
.text-link,
.contact-cta {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--pink);
}

.language-switch {
  justify-self: end;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #5f5f62;
  font-size: 11px;
}

.language-switch button {
  padding: 8px 2px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--pink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  min-height: calc(100vh - 76px);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  padding-block: 72px 64px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.tools-layout h2,
.contact-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 810px;
  font-size: clamp(58px, 6.4vw, 106px);
  line-height: 0.94;
}

.hero h1 em {
  color: var(--pink);
  font-weight: 400;
}

.hero-intro {
  max-width: 690px;
  margin: 32px 0 0;
  color: #bdbdb9;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 222px;
  gap: 20px;
  padding: 17px 20px;
  background: var(--pink);
  color: #11090c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-button:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
}

.primary-button span {
  font-size: 18px;
}

.text-link {
  border-bottom: 1px solid #4a4a4d;
  padding-bottom: 5px;
  color: #d7d7d4;
  font-size: 12px;
}

.availability-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 66px 0 0;
  border-top: 1px solid var(--line);
}

.availability-row div {
  padding: 19px 16px 0 0;
}

.availability-row dt {
  margin-bottom: 8px;
  color: #646467;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-row dd {
  margin: 0;
  color: #c9c9c7;
  font-size: 12px;
}

.hero-portrait {
  width: 100%;
  max-width: 510px;
  margin: 0 0 0 auto;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.75;
  background: var(--surface);
}

.portrait-frame::before,
.portrait-frame::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.portrait-frame::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.23);
}

.portrait-frame::after {
  right: 0;
  bottom: 0;
  width: 28%;
  height: 7px;
  background: var(--pink);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  color: #6e6e71;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement-band {
  overflow: hidden;
  padding: 38px 32px;
  border-block: 1px solid var(--line);
  background: var(--pink);
  color: #130a0e;
}

.statement-band p {
  width: var(--page);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-align: center;
}

.services-section,
.about-section,
.experience-section {
  padding-block: 130px;
}

.section-heading {
  max-width: 870px;
  margin-bottom: 70px;
}

.section-heading h2,
.about-copy h2,
.tools-layout h2 {
  font-size: clamp(43px, 5vw, 74px);
  line-height: 1.02;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 340px;
  padding: 28px 26px 30px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:last-child {
  border-right: 0;
}

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

.service-number,
.project-index {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.service-card h3 {
  min-height: 82px;
  margin: 80px 0 18px;
  font-size: 22px;
  line-height: 1.1;
}

.service-card p,
.section-note,
.project-description,
.about-copy > p,
.experience-row > p,
.contact-inner > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.work-section {
  padding-block: 130px;
  background: #f0eee9;
  color: #111113;
}

.work-section .eyebrow {
  color: #a33466;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 350px;
  max-width: none;
  gap: 80px;
  align-items: end;
}

.section-note {
  margin: 0 0 5px;
  color: #5e5d5b;
}

.project-list {
  border-top: 1px solid #c8c5be;
}

.project-row {
  display: grid;
  grid-template-columns: 54px 1.08fr 1.3fr 0.7fr;
  gap: 30px;
  align-items: start;
  padding-block: 38px;
  border-bottom: 1px solid #c8c5be;
}

.project-main p {
  margin: 0 0 13px;
  color: #8c4263;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-main h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.project-description {
  margin: 3px 0 0;
  color: #5e5d5b;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.project-tags span {
  padding: 7px 9px;
  border: 1px solid #cbc7bf;
  color: #514f4c;
  font-size: 9px;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(58px, 9vw, 140px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  align-self: stretch;
  min-height: 690px;
  background: var(--surface);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
}

.image-label {
  position: absolute;
  right: -18px;
  bottom: 34px;
  display: grid;
  background: var(--pink);
  color: #10090c;
}

.image-label span {
  min-width: 145px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.about-copy > p {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: 16px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process div {
  display: grid;
  gap: 34px;
  padding: 18px 10px 20px 0;
}

.process span {
  color: var(--pink);
  font-size: 10px;
}

.process strong {
  font-size: 11px;
  font-weight: 700;
}

.tools-section {
  padding-block: 96px;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.tools-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.tools-layout h2 {
  max-width: 610px;
  font-size: clamp(38px, 4vw, 59px);
}

.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-cloud span {
  padding: 12px 16px;
  border: 1px solid #35353a;
  border-radius: 99px;
  color: #bebebb;
  font-size: 11px;
  transition: border-color 160ms ease, color 160ms ease;
}

.tool-cloud span:hover {
  border-color: var(--pink);
  color: var(--pink-soft);
}

.experience-section > .eyebrow {
  margin-bottom: 44px;
}

.experience-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  padding-block: 44px;
  border-block: 1px solid var(--line);
}

.experience-title span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-title h2 {
  max-width: 720px;
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.experience-row > p {
  margin: 0;
  align-self: end;
  font-size: 15px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 130px 70px;
  background: var(--pink);
  color: #12090d;
}

.contact-orbit {
  position: absolute;
  top: -195px;
  right: -120px;
  display: grid;
  width: 520px;
  height: 520px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 112px;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-inner .eyebrow {
  color: #5c203b;
}

.contact-inner h2 {
  max-width: 1040px;
  font-size: clamp(51px, 7vw, 98px);
  line-height: 0.98;
}

.contact-inner > p {
  max-width: 620px;
  margin: 36px 0 48px;
  color: #57273c;
  font-size: 16px;
}

.contact-cta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0;
  border-block: 1px solid rgba(0, 0, 0, 0.28);
  font-size: 13px;
  font-weight: 800;
}

.contact-cta:hover {
  color: #fff;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 32px;
  color: #69696c;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  :root {
    --page: min(100% - 40px, 900px);
  }

  .hero {
    grid-template-columns: 1fr 0.72fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(52px, 8vw, 82px);
  }

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

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .project-row {
    grid-template-columns: 40px 1fr 1fr;
  }

  .project-tags {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }

  .about-section {
    gap: 58px;
  }

  .about-image-wrap,
  .about-image-wrap img {
    min-height: 580px;
  }

  .tools-layout {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 32px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 0 16px;
  }

  .brand-name,
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 54px;
    padding-block: 70px 48px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.8vw, 72px);
  }

  .hero-intro {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .availability-row {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .availability-row div {
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
  }

  .hero-portrait {
    max-width: none;
  }

  .statement-band {
    padding-inline: 16px;
  }

  .services-section,
  .about-section,
  .experience-section,
  .work-section {
    padding-block: 88px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .about-copy h2,
  .tools-layout h2 {
    font-size: 44px;
  }

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

  .service-card,
  .service-card:nth-child(2) {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-card h3 {
    min-height: auto;
    margin-top: 58px;
  }

  .split-heading,
  .about-section,
  .tools-layout,
  .experience-row {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .tools-layout,
  .experience-row {
    gap: 36px;
  }

  .project-row {
    grid-template-columns: 32px 1fr;
    gap: 18px;
  }

  .project-description,
  .project-tags {
    grid-column: 2;
  }

  .about-image-wrap,
  .about-image-wrap img {
    min-height: 540px;
  }

  .image-label {
    right: 0;
  }

  .about-copy > p {
    font-size: 15px;
  }

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

  .process div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .tools-section {
    padding-block: 76px;
  }

  .contact-section {
    padding-block: 92px 60px;
  }

  .contact-inner h2 {
    font-size: 51px;
  }

  .contact-orbit {
    width: 390px;
    height: 390px;
  }

  footer {
    gap: 10px;
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 8px;
}

.contact-links a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #12090d;
  padding: 11px 18px;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.admin-login-card {
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid #343439;
  background: #101012;
}

.admin-login-card h1 {
  margin: 8px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 8vw, 62px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.admin-login-card > p:not(.admin-kicker) {
  margin: 0 0 28px;
  color: #aaaab0;
  line-height: 1.65;
}

.admin-login-card form {
  display: grid;
  gap: 16px;
}

.admin-login-card button,
.admin-primary {
  border: 0;
  background: #e96fa5;
  color: #09090a;
  padding: 14px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-message {
  margin-top: 16px !important;
  padding: 12px 14px;
  border: 1px solid #b75561;
  color: #ffabb5 !important;
  font-size: 13px;
}

.admin-message.success {
  border-color: #4e9a72;
  color: #9cddb7 !important;
}

.admin-help {
  margin-top: 22px;
  border-top: 1px solid #343439;
  padding-top: 18px;
  color: #77777d;
  font-size: 12px;
  line-height: 1.6;
}

.admin-logout {
  border: 1px solid #3b3b40;
  background: transparent;
  color: #f3f3f1;
  padding: 11px 16px;
  font: inherit;
  cursor: pointer;
}

.admin-page,
.admin-shell {
  min-height: 100vh;
  background: #080809;
  color: #f3f3f1;
}

.admin-page {
  padding: 36px clamp(18px, 5vw, 72px) 120px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid #303034;
}

.admin-topbar h1,
.admin-denied h1 {
  margin: 7px 0 10px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.admin-topbar p,
.admin-denied p,
.admin-panel-heading p {
  color: #aaaab0;
}

.admin-topbar nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-kicker {
  margin: 0;
  color: #e96fa5 !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.admin-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3b3b40;
  color: #f3f3f1;
  padding: 11px 16px;
  text-decoration: none;
  white-space: nowrap;
}

.admin-form,
.admin-alert {
  max-width: 1320px;
  margin-inline: auto;
}

.admin-alert {
  margin-bottom: 22px;
  border: 1px solid;
  padding: 14px 18px;
}

.admin-alert.success { border-color: #4e9a72; color: #9cddb7; }
.admin-alert.error { border-color: #b75561; color: #ffabb5; }

.admin-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) 1fr;
  gap: clamp(28px, 5vw, 76px);
  padding: 42px 0 54px;
  border-bottom: 1px solid #303034;
}

.admin-panel-heading {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-content: start;
  position: sticky;
  top: 22px;
}

.admin-panel-heading > span {
  color: #e96fa5;
  font-size: 13px;
}

.admin-panel-heading h2 {
  margin: 0 0 8px;
  font-size: 25px;
}

.admin-panel-heading p { margin: 0; line-height: 1.55; }

.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.admin-field {
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-field > span {
  color: #bebec3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid #38383d;
  border-radius: 0;
  outline: 0;
  background: #111113;
  color: #f3f3f1;
  padding: 13px 14px;
  font: inherit;
  line-height: 1.5;
  resize: vertical;
}

.admin-field input:focus,
.admin-field textarea:focus { border-color: #e96fa5; box-shadow: 0 0 0 1px #e96fa5; }

.admin-projects { display: grid; gap: 22px; }

.admin-project {
  min-width: 0;
  border: 1px solid #343439;
  padding: 24px;
}

.admin-project legend {
  padding: 0 10px;
  color: #e96fa5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-savebar {
  position: sticky;
  z-index: 5;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  border: 1px solid #434348;
  background: rgba(17, 17, 19, 0.96);
  padding: 14px 16px 14px 22px;
  backdrop-filter: blur(12px);
}

.admin-savebar p { margin: 0; color: #aaaab0; font-size: 13px; }

.admin-savebar button {
  border: 0;
  background: #e96fa5;
  color: #09090a;
  padding: 14px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-denied {
  display: grid;
  align-content: center;
  justify-items: start;
  max-width: 780px;
  padding: 40px;
  margin: auto;
}

.admin-denied .admin-secondary { margin-top: 24px; }

@media (max-width: 820px) {
  .admin-topbar,
  .admin-panel,
  .admin-grid.two {
    grid-template-columns: 1fr;
  }

  .admin-topbar { display: grid; }
  .admin-panel-heading { position: static; }
  .admin-savebar { align-items: stretch; flex-direction: column; }
  .admin-savebar button { width: 100%; }
  .admin-project { padding: 18px; }
}
