:root {
  --background: #282922;
  --foreground: #93585e;
  --muted-foreground: #a9cc8b;
  --secondary: #f2cfcd;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

/* IMPORTANT */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

/* ── MAIN ── */
main {
  padding-top: 8rem;
  padding-bottom: 0.2rem;
}

@media (min-width: 768px) {
  main {
    padding-top: 10rem;
  }
}

/* NAVBAR */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  transition:
    background 0.6s ease,
    backdrop-filter 0.6s ease,
    border-color 0.6s ease;

  background: transparent;
}

.site-nav.scrolled {
  background: rgba(250, 249, 249, 0.021);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(253, 250, 245, 0.041);
}

.nav-inner {
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-around;

  padding: 0 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;

  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

/* MOBILE */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  transition:
    background 0.6s ease,
    backdrop-filter 0.6s ease,
    border-color 0.6s ease;

  background: transparent;
}

.site-nav.scrolled {
  background: rgba(250, 249, 249, 0.021);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(253, 250, 245, 0.041);
}

.nav-inner {
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-around;

  padding: 0 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;

  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

/* MOBILE */

.mobile-toggle {
  display: none;

  background: none;
  border: none;
  color: var(--foreground);

  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;

  background: var(--background);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.4s ease;

  z-index: 999;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 3rem;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(240, 237, 232, 0.08);

  padding: 6rem 1.5rem 0rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 10%;
  gap: 3rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2rem;

  margin-bottom: 1rem;
}

.footer-text {
  color: var(--muted-foreground);
  max-width: 260px;
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;

  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 237, 232, 0.05);

  margin-top: 5rem;
  padding: 2rem;

  display: flex;
  justify-content: space-between;
  color: var(--muted-foreground);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ── HERO SPLIT SECTION ── */
.about-section {
  padding: 0 0.5rem 8rem;
}

@media (min-width: 768px) {
  .about-section {
    padding: 0 3rem 12rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ── LEFT COLUMN — Philosophy ── */
.philosophy {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.philosophy.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .philosophy {
    position: sticky;
    top: 8rem;
  }
}

/* Section Heading */
.section-heading {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-heading.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  color: var(--foreground);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1;
}

/* Philosophy text */
.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .philosophy-body p {
    font-size: 1.125rem;
  }
}

/* Specializations */
.specializations {
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 237, 232, 0.1);
  margin-top: 0.5rem;
}

.specializations__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.specializations__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(240, 237, 232, 0.15);
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
}

/* ── RIGHT COLUMN — Image + Timeline ── */
.right-col {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: 0.1s;
}

.right-col.in-view {
  opacity: 1;
  transform: translateY(0);
}

.artist-image {
  margin-bottom: 4rem;
}

.artist-image__frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.artist-image__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.artist-image__caption {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}
