/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* ---------- Variables ---------- */
:root {
  --purple: #5221e6;
  --navy: #0d0628;
  --peach: #F9DBBD;
  --rose: #DD1155;
  --mint: #5FDDC2;

  --bg: #0d0628;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.04);
  --text: #F9DBBD;
  --text-soft: rgba(249, 219, 189, 0.75);
  --accent: #5221e6;
  --accent-2: #5FDDC2;
  --accent-3: #DD1155;
  --line: rgba(249, 219, 189, 0.12);
  --btn-radius: 100px;
  --btn-pad-y: 0.9rem;
  --btn-pad-x: 1.6rem;
  --hover-rise: translateY(-3px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 2001;
  background: var(--peach);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

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

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

main.page[tabindex="-1"]:focus-visible {
  outline: none;
}
html, body, body * {
  cursor: none !important;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(82, 33, 230, 0.12), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(95, 221, 194, 0.08), transparent 24%);
  z-index: 0;
}
img {max-width: 100%; display: block;}
em.italic {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;

}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none !important;
  z-index: 10000 !important;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, opacity 0.2s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(249, 219, 189, 0.9);
  border-radius: 50%;
  background: rgba(249, 219, 189, 0.05);
  box-shadow: 0 0 0 1px rgba(249, 219, 189, 0.08);
  mix-blend-mode: screen;
}
.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 12px rgba(249, 219, 189, 0.5);
}
.cursor-hover {
  transform: translate(-50%, -50%) scale(1.24);
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(95, 221, 194, 0.2);
}
.cursor-click {
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--accent-2);
  border-color: var(--accent-2);
  box-shadow: 0 0 16px rgba(95, 221, 194, 0.45);
}

.decor {position: fixed; pointer-events: none; z-index: 0;}
.decor-star {
  font-size: 1.8rem;
  color: var(--accent-2);
  opacity: 0.35;
  animation: floatSpin 16s ease-in-out infinite;
}
.decor-star-1 {top: 18%; right: 8%;}
.decor-star-2 {bottom: 18%; left: 6%; color: var(--accent); animation-duration: 22s;}
@keyframes floatSpin {
  0%, 100% {transform: translateY(0) rotate(0deg);}
  50% {transform: translateY(-10px) rotate(16deg);}
}
.decor-blob {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(82, 33, 230, 0.25) 0%, transparent 68%);
  opacity: 0.55;
  border-radius: 50%;
  filter: blur(34px);
}
.decor-blob-1 { top: 8%; right: -120px; }

nav {
  position: fixed; top: 0; width: 100%;
  padding: 1.1rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(13, 6, 40, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
}
.logo-mark {
  display: block;
  height: 35px;
  width: auto;
  max-width: 175px;
  animation: logoPulse 2s ease-in-out infinite;
  color: var(--text);
  transition: color 0.2s ease;
}
.logo-mark path {
  fill: currentColor;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--text); text-decoration: none;
  font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.nav-links a:hover {color: var(--accent-2); transform: var(--hover-rise);}
.btn,
.nav-cta,
.contact-link,
.contact-link-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary,
.nav-cta,
.contact-link,
.contact-link-primary {
  background: var(--accent);
  color: var(--text) !important;
  box-shadow: 0 8px 24px rgba(82, 33, 230, 0.28);
}

.btn:hover,
.nav-cta:hover,
.contact-link:hover,
.contact-link-primary:hover {
  background: var(--accent-2) !important;
  color: var(--accent) !important;
  transform: var(--hover-rise);
}

.page {display: none; animation: fadeUp 0.6s ease; position: relative; z-index: 1;}
.page.active {display: block;}
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.hero {
  min-height: 50vh;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  align-items: center;
}
.hero-inner {
  width: min(100%, 800px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 4.5vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  margin: 0;
  transition: color 0.25s ease;
  will-change: color;
}
.hero-title .underline-scribble {
  position: relative;
  display: inline-block;
  padding-bottom: 0.15em;
}
.hero-title .underline-scribble::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.1em;
  height: 0.15em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'><path d='M2 8 Q 50 2, 100 6 T 198 5' stroke='%235221e6' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 175%;
}
.btn:hover, .other-project-card:hover {transform: var(--hover-rise);}
.marquee {
  background: var(--surface-2);
  color: var(--text);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

section { padding: 3rem 5%; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
  margin-top: 3rem;
}
.section-num {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 500;
  padding-top: 0.5rem;
}
.section-num::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--text-soft);
  margin-right: 0.75rem;
  vertical-align: middle;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-sub {font-size: 1em; color: var(--text-soft); max-width: 500px;}

.work {background: transparent;}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(249, 219, 189, 0.045);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  transform-style: preserve-3d;
  isolation: isolate;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  border-color: var(--accent);
}
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent 0%, rgba(95, 221, 194, 0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  pointer-events: none;
}
.project-card:hover::after {transform: translateX(100%);}
.card-image {position: relative; overflow: hidden;}
.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.25s ease;
  filter: saturate(0.98) contrast(1.02);
}
.project-card:hover .card-image img {
  transform: scale(1.05);
}
.card-body {padding: 1.5rem 1.9rem 2rem;}
.card-meta {
  display: flex; justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-soft);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}
.card-body h2 {
  font-family: 'Fraunces', serif;
  color: var(--accent-2);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.project-card:hover .card-body h3 {color: var(--accent-2);}

.card-body p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.about {background: transparent;}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {position: relative;}
.about-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
}
.about-image img {width: 100%; height: 100%; object-fit: cover;}
.about-sticker {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--text);
  padding: 1rem 1.4rem;
  border-radius: var(--btn-radius);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
  transform: rotate(-5deg);
  box-shadow: 0 10px 30px rgba(82, 33, 230, 0.22);
  overflow: hidden;
}
.about-sticker.bursting .confetti {animation: confetti-bang 700ms ease-out forwards;}
.about-sticker .confetti {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 8px;
  border-radius: 1px;
  opacity: 0;
  pointer-events: none;
}
@keyframes confetti-bang {
  from {transform: translate3d(0, 0, 0) rotate(0deg); opacity: 1;}
  to {opacity: 0;}
}
.about-text .lead {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.about-text p {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.highlight {
  background: linear-gradient(transparent 60%, rgba(82, 33, 230, 0.35) 60%);
  padding: 0 0.2em;
  font-weight: 500;
}
.about-facts {
  display: flex; gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.fact strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-2);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.fact span {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-transform: uppercase;
}

.expertise {background: transparent;}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.exp-card {
  background: rgba(249, 219, 189, 0.045);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.exp-card:nth-child(2)::before {background: var(--accent-3);}
.exp-card:nth-child(3)::before {background: var(--accent-2);}
.exp-card:nth-child(4)::before {background: var(--accent);}
.exp-card:hover::before { transform: scaleX(1); }
.exp-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.exp-icon svg {width: 26px; height: 26px;}
.exp-icon-brand {background: rgba(82, 33, 230, 0.12); color: var(--accent);}
.exp-icon-collab {background: rgba(221, 17, 85, 0.12); color: var(--accent-3);}
.exp-icon-social {background: rgba(95, 221, 194, 0.12); color: var(--accent-2);}
.exp-icon-tools {background: rgba(82, 33, 230, 0.12); color: var(--accent);}
.exp-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.exp-card p {
  color: var(--text-soft);
  font-size: 1em;
  line-height: 1.5;
}

.contact {
  background: transparent;
  color: var(--text);
  text-align: center;
  padding: 8rem 5%;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(82, 33, 230, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {position: relative; z-index: 1;}
.contact-eyebrow {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--accent-2);
  letter-spacing: 0.75em;
  margin-bottom: 2rem;
}
.contact-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.25s ease;
  will-change: color;
}
.contact-sub {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 3rem;
  max-width: 100%;
  margin-left: auto; margin-right: auto;
}
.contact-links {
  display: flex; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.contact-link {
  background: var(--accent);
  color: var(--text);
  border-color: transparent;
}
.contact-link-primary {
  background: var(--accent);
  border-color: transparent;
}

footer {
  background: transparent;
  color: rgba(249, 219, 189, 0.6);
  padding: 2rem 5%;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
}
.back-top {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.back-top:hover { color: var(--accent-2);}

.project-page {
  position: fixed;
  inset: 0;
  z-index: 1200;
  overflow-y: auto;
  background: rgba(13, 6, 40, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.project-detail {
  min-height: 100vh;
  padding: 7.5rem 5% 5rem;
}
.project-shell {
  max-width: 1180px;
  margin: 0 auto;
}
.project-hero {
  border: 1px solid rgba(249, 219, 189, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.back-link {
  display: inline-flex; align-items: center;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.project-header {margin-bottom: 1.5rem;}
.project-meta-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-transform: uppercase;
}
.project-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.project-description {
  max-width: 100%;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
}
.project-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(249, 219, 189, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}
.project-summary-item {
  padding: 0.35rem;
}
.project-summary-item + .project-summary-item {
  border-left: 1px solid rgba(249, 219, 189, 0.16);
  padding-left: 1.4rem;
}
.project-summary-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}
.project-summary-item p {
  max-width: 100%;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
}
.project-main-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.gallery-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  display: block;
}

a .gallery-image {
  cursor: pointer;
}

.project-gallery a {
  display: block;
  border-radius: 24px;
  overflow: hidden;
}

.project-gallery a .gallery-image {
  border: none;
  border-radius: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(13, 6, 40, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(249, 219, 189, 0.16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(13, 6, 40, 0.95);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.lightbox-close:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.lightbox-iframe {
  padding: 0;
}

.lightbox-inner-iframe {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
}

.iframe-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.embedded-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  pointer-events: auto;
}

.lightbox-iframe .lightbox-close {
  top: 1rem;
  right: 1rem;
  z-index: 2001;
}

.other-projects {
  font-family: 'Fraunces', serif;
  text-align: center;
}
.other-projects h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.other-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}
.other-project-card {
  display: block;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(249, 219, 189, 0.045);
  flex-direction: column;
  align-items: stretch;
}
.other-project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.other-project-card span {
  display: block;
  padding: .5rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.sparkle {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--purple);
  box-shadow: 0 0 12px rgba(95, 221, 194, 0.8);
  z-index: 9998;
  animation: sparklePop 700ms ease-out forwards;
}
@keyframes sparklePop {
  from { transform: scale(0.4); opacity: 1; }
  to { transform: scale(2.5); opacity: 0; }
}
.floating-sigil {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  color: rgba(249, 219, 189, 0.12);
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  animation: drift 14s linear forwards;
}
@keyframes drift {
  from {transform: translateY(0) rotate(0deg); opacity: 0;}
  10% {opacity: 1;}
  to {transform: translateY(-120px) rotate(18deg); opacity: 0;}
}

@media (max-width: 1100px) {
  .projects-grid {grid-template-columns: repeat(2, minmax(0, 1fr));}
  .expertise-grid {grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 968px) {
  .hero {grid-template-columns: 1fr; padding-top: 5rem;}
  .about-grid {grid-template-columns: 1fr; gap: 3rem;}
  .section-head {grid-template-columns: 1fr; gap: 1rem;}
  .project-summary {grid-template-columns: 1fr;}
  .project-summary-item + .project-summary-item {
    border-left: 0;
    border-top: 1px solid rgba(249, 219, 189, 0.16);
    padding-left: 0;
    padding-top: 1rem;
    margin-top: 1rem;
  }
  .project-gallery {grid-template-columns: 1fr;}
  .other-projects-grid {grid-template-columns: 1fr;}
}
@media (max-width: 760px) {
  .projects-grid, .expertise-grid {grid-template-columns: 1fr;}
  .about-facts {flex-wrap: wrap; gap: 1.5rem;}
  .footer-inner {flex-direction: column; gap: 1rem;}
  .cursor {display: none; }
  html, body, body * {cursor: auto !important;}
  .project-detail {padding-top: 6.5rem;}
  .lightbox {padding: 0;}
  .lightbox-inner-iframe {border-radius: 0;}
  .embedded-iframe {border-radius: 0;}
}