:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --border: rgba(255, 255, 255, 0.08);
  --text: #fafafa;
  --text-muted: rgba(250, 250, 250, 0.62);
  --text-dim: rgba(250, 250, 250, 0.42);
  --accent: #d4c4a8;
  --font: "Manrope", system-ui, sans-serif;
  --container: min(1180px, calc(100% - 3rem));
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

.hero-image {
  max-width: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.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;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-title.centered,
.centered {
  text-align: center;
}

.section-desc,
.body-lg {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.body-lg.centered {
  margin-inline: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-inline: 1.5rem;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.92), transparent);
}

.logo {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 3rem) 1.5rem 4rem;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #12100e 35%,
    #0e0e12 65%,
    #0a0a0a 100%
  );
  background-size: 200% 200%;
  animation: hero-gradient 20s ease infinite;
}

.hero-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  will-change: transform;
}

.hero-bg__orb--1 {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, rgba(212, 196, 168, 0.35) 0%, transparent 70%);
  animation: hero-drift-1 22s ease-in-out infinite;
}

.hero-bg__orb--2 {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  bottom: 15%;
  left: 20%;
  background: radial-gradient(circle, rgba(140, 120, 180, 0.2) 0%, transparent 70%);
  animation: hero-drift-2 26s ease-in-out infinite;
}

.hero-bg__orb--3 {
  width: min(35vw, 320px);
  height: min(35vw, 320px);
  top: 45%;
  left: 45%;
  background: radial-gradient(circle, rgba(212, 196, 168, 0.15) 0%, transparent 70%);
  animation: hero-drift-3 18s ease-in-out infinite;
}

@keyframes hero-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hero-drift-1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-6%, 8%) scale(1.12);
  }
}

@keyframes hero-drift-2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8%, -5%) scale(1.08);
  }
}

@keyframes hero-drift-3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-5%, -8%) scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-bg__orb {
    animation: none;
  }

  .hero-media::after {
    animation: none;
    opacity: 0.85;
  }

  .hero-content .eyebrow,
  .hero-title-line,
  .hero-lead {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 10%;
  z-index: 0;
  width: min(58vw, 780px);
  height: min(72vh, 720px);
  background:
    radial-gradient(
      ellipse at 45% 40%,
      rgba(212, 196, 168, 0.28) 0%,
      rgba(212, 196, 168, 0.1) 32%,
      transparent 68%
    ),
    radial-gradient(
      ellipse at 70% 55%,
      rgba(150, 130, 200, 0.14) 0%,
      transparent 55%
    );
  filter: blur(56px);
  pointer-events: none;
  animation: hero-glow-pulse 14s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.02);
  }
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      #0a0a0a 0%,
      rgba(10, 10, 10, 0.9) 2%,
      rgba(10, 10, 10, 0.4) 58%,
      transparent 85%
    ),
    linear-gradient(0deg, #0a0a0a 0%, transparent 45%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  right: 28%;
  top: 7%;
  z-index: 1;
  height: min(88vh, 820px);
  width: auto;
  max-width: min(72vw, 1050px);
  object-fit: contain;
  object-position: top right;
  filter:
    drop-shadow(0 0 20px rgba(212, 196, 168, 0.14))
    drop-shadow(0 0 48px rgba(180, 160, 220, 0.08))
    drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 3rem));
  margin-inline: auto;
  transform: translateX(clamp(0px, 5vw, 72px));
}

.hero-headline-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.hero-content .eyebrow {
  margin-top: 1.25rem;
  width: min(72vw, 1050px);
  max-width: 100%;
  margin-left: auto;
  margin-right: 17%;
  opacity: 0;
  animation: hero-fade-in 0.9s ease forwards;
}

.hero-title {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: hero-fade-in 5s ease forwards;
}

.hero-title-line:first-child {
  animation-delay: 0.15s;
}

.hero-title-line--accent {
  color: var(--accent);
  animation-delay: 0.35s;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lead {
  width: min(72vw, 1050px);
  max-width: 100%;
  margin: 0 17% 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
  opacity: 0;
  animation: hero-fade-in 1s ease 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.spotlight {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.spotlight-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.spotlight-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.spotlight-card--alt {
  background: linear-gradient(180deg, #17141c, #111111);
}

.spotlight-label,
.project-tag {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.spotlight-card h3,
.project-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.spotlight-card p,
.project-card p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.quote {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote blockquote {
  margin: 0;
  max-width: 54rem;
}

.quote p {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.quote cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.projects {
  padding: 6rem 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  min-height: 280px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.project-card .text-link {
  margin-top: auto;
}

.testimonials {
  padding: 6rem 0;
  background: var(--bg-elevated);
}

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
}

.testimonial-card {
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.stars {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.testimonial-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.testimonial-card figcaption {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about-intro {
  padding: 6rem 0 3rem;
  text-align: center;
}

.profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 1px solid var(--border);
}

.profile--ciara {
  direction: rtl;
}

.profile--ciara .profile-content {
  direction: ltr;
}

.profile-media {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.75)),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), transparent 50%);
}

.profile--jeremy .profile-media {
  background-color: #1a1816;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.8)),
    linear-gradient(160deg, #2a2520, #0f0e0d);
}

.profile--ciara .profile-media {
  background-color: #16141a;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.8)),
    linear-gradient(160deg, #2a2030, #100e14);
}

.profile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.profile-name {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.profile-role {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.profile-content p {
  margin: 0 0 2rem;
  max-width: 34rem;
  color: var(--text-muted);
}

.themes {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.theme-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3rem;
}

.theme-card {
  padding: 2rem;
  border-top: 1px solid var(--border);
}

.theme-number {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.theme-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 500;
}

.theme-card p {
  margin: 0;
  color: var(--text-muted);
}

.contact {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.contact-form {
  display: flex;
  gap: 0.75rem;
}

.contact-form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.contact-form input::placeholder {
  color: var(--text-dim);
}

.contact-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #080808;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 3rem;
}

.footer-logo {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.footer-tagline {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-brand p:last-child {
  margin: 0;
  max-width: 24rem;
  color: var(--text-muted);
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 980px) {
  .spotlight-grid,
  .project-grid,
  .testimonial-grid,
  .theme-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .profile {
    grid-template-columns: 1fr;
  }

  .profile--ciara {
    direction: ltr;
  }

  .profile-media {
    min-height: 260px;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-content .eyebrow,
  .hero-lead {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-content {
    transform: none;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle {
    display: block;
  }

  .hero-image {
    right: 50%;
    transform: translateX(50%);
    height: min(68vh, 560px);
    max-width: 96vw;
    opacity: 0.5;
  }

  .hero {
    align-items: end;
    min-height: 88vh;
  }

  .contact-form {
    flex-direction: column;
  }
}
