/* ===========================
   ILDE BELLO — MARCA PERSONAL
   Editorial Dark Warm
   =========================== */

/* TOKENS */
:root {
  --bg: #0a0908;
  --bg-2: #111009;
  --bg-3: #181510;
  --gold: #C9A96E;
  --gold-light: #E2C48A;
  --gold-dim: #8a6f3e;
  --white: #F5F0E8;
  --white-dim: rgba(245, 240, 232, 0.55);
  --white-faint: rgba(245, 240, 232, 0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --nav-h: 72px;
  --max-w: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* SPLASH */
#splash {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: splashFade 0.5s ease 2.8s forwards;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.splash-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  animation: splashText 1.2s var(--ease-out) 0.3s both;
}
.splash-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: splashLine 1s var(--ease-out) 1s forwards;
}
@keyframes splashText {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes splashLine {
  to { width: 120px; }
}
@keyframes splashFade {
  to { opacity: 0; visibility: hidden; }
}

/* NAV */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 60px);
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-faint);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px 20px;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--bg) !important; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-6px) rotate(-45deg); }

/* MOBILE MENU */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu ul { display: flex; flex-direction: column; gap: 32px; text-align: center; }
#mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  transition: color 0.3s;
}
#mobile-menu a:hover { color: var(--gold); }

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 30% 60%, rgba(10, 9, 8, 0.7) 0%, transparent 70%),
    var(--bg);
}
.hero-grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  animation: grainAnim 0.5s steps(2) infinite;
}
@keyframes grainAnim {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%, -1%); }
  50%  { transform: translate(1%, 2%); }
  75%  { transform: translate(-1%, 1%); }
  100% { transform: translate(2%, -2%); }
}

/* HERO PHOTO */
.hero-photo-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  overflow: hidden;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 35%, transparent 70%, rgba(10,9,8,0.4) 100%),
              linear-gradient(to top, var(--bg) 0%, transparent 25%);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(30%) contrast(1.05);
}
.hero-photo-wrap.no-photo {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 15vh, 180px) clamp(24px, 7vw, 100px) clamp(80px, 10vh, 120px);
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title-line { display: block; }
.hero-title .italic { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-dim);
  margin-bottom: 44px;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

/* HERO SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: clamp(24px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s;
}
.btn-primary:hover { background: var(--white); color: var(--bg); }
.btn-gold { border-color: var(--gold) !important; color: var(--gold) !important; }
.btn-gold:hover { background: var(--gold) !important; color: var(--bg) !important; }

/* CONTAINER */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

/* SECTION LABELS */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 40px;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ABOUT */
.about {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid rgba(201, 169, 110, 0.3);
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.about * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.body-text {
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 24px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--white-faint);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: transform 0.8s var(--ease-out);
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.25);
  pointer-events: none;
  transform: translate(10px, 10px);
}
.about-img-frame.no-photo {
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-pillars {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--white-faint);
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 120px;
}
.pillar-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 4px;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}
.pillar-desc {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white-dim);
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  line-height: 1.6;
}

/* SERVICES */
.services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.service-card {
  background: var(--bg-2);
  padding: 48px 36px;
  border-top: 1px solid var(--white-faint);
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg-3); }
.service-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white-faint);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 0.82rem;
  color: var(--white-dim);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* PROJECTS */
.projects {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-2);
}
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 60px;
}
.project-item {
  opacity: 1 !important;
  transform: none;
  background: var(--bg-3);
  padding: 48px;
  border-left: 1px solid var(--white-faint);
  transition: border-color 0.4s;
  position: relative;
}
.project-item::after {
  content: '';
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
}
.project-item:hover::after { transform: scaleY(1); }
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.project-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 4px 12px;
}
.project-year {
  font-size: 0.72rem;
  color: var(--white-dim);
  letter-spacing: 0.1em;
}
.project-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.project-desc {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 24px;
}
.project-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.project-tags span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: var(--white-faint);
  padding: 4px 12px;
}
.project-link {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  transition: letter-spacing 0.3s;
}
.project-link:hover { letter-spacing: 0.18em; }

/* PHILOSOPHY */
.philosophy {
  position: relative;
  padding: clamp(80px, 15vw, 180px) 0;
  overflow: hidden;
  background: var(--bg);
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
    var(--bg);
}
.philosophy-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.philosophy-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 48px;
}
.philosophy-title em { font-style: italic; color: var(--gold-light); }
.philosophy-body {
  margin-bottom: 52px;
}
.philosophy-body p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 640px;
}

/* SERVICE IMAGE */
.service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) contrast(1.05);
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}
.service-card:hover .service-img img {
  transform: scale(1.06);
  filter: grayscale(10%) contrast(1.1);
}

/* PROJECT COVER */
.project-cover {
  width: 100%;
  height: 260px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
  transition: transform 0.8s var(--ease-out);
}
.project-item:hover .project-cover img { transform: scale(1.04); }

/* NEWSLETTER */
.newsletter {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
  background: var(--bg);
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(201, 169, 110, 0.07) 0%, transparent 65%),
    var(--bg);
}
.newsletter-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--white);
}
.newsletter-title em { font-style: italic; color: var(--gold-light); }
.newsletter-body p {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 16px;
}
.newsletter-body strong { color: var(--gold); font-weight: 400; }
.newsletter-perks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-perks li {
  font-size: 0.85rem;
  color: var(--white-dim);
  padding-left: 18px;
  position: relative;
}
.newsletter-perks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.newsletter-card {
  background: var(--bg-2);
  border: 1px solid var(--white-faint);
  overflow: hidden;
}
.newsletter-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.newsletter-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) contrast(1.1);
}
.newsletter-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,9,8,0.85) 100%);
}
.newsletter-card-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.newsletter-form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.newsletter-form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
}
.newsletter-disclaimer {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.3);
  text-align: center;
  margin-top: -8px;
}
@media (max-width: 900px) {
  .newsletter-grid { grid-template-columns: 1fr; gap: 48px; }
  .project-cover { height: 200px; }
}

/* CONTACT */
.contact {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.contact-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  margin-bottom: 60px;
  font-family: var(--font-serif);
  font-style: italic;
  max-width: 540px;
}
.contact-form {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white-faint);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.82rem;
  color: var(--white-dim);
  margin-top: -8px;
}
.form-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* FOOTER */
.footer {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--white-faint);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.footer-links {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.25);
  margin-top: 8px;
}

/* Section divider line */
.section-divider {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 60px;
}

/* REVEAL ANIMATIONS — GSAP handles entrances, CSS is always visible as fallback */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal[data-split] { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-img-frame { aspect-ratio: 4/3; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { width: 100%; opacity: 0.25; }
  .hero-content { padding-bottom: 80px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .about-stats { gap: 24px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .project-item { padding: 32px 24px; }
  .about-stats { flex-wrap: wrap; }
}
