@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&display=swap');

:root {
  --white: #FFFFFF;
  --off: #F5F5F3;
  --gray: #888884;
  --black: #0A0A0A;
  --blue: #0047FF;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--ff-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* â”€â”€ NAV â”€â”€ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: color 0.5s;
}

nav.on-light {
  color: var(--black);
}

nav.on-dark {
  color: var(--white);
}

nav.on-blue {
  color: var(--white);
}

.nav-logo {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-lang {
  display: flex;
  gap: 2px;
  margin-left: 12px;
}

.lang-btn {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
  padding: 3px 6px;
  border-radius: 2px;
  transition: all 0.2s;
}

.lang-btn.active {
  opacity: 1;
  background: var(--blue);
  color: var(--white) !important;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-menu-btn span {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 48px 32px;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--ff-display);
  font-size: clamp(40px, 10vw, 80px);
  color: var(--white);
  line-height: 1.05;
  opacity: 0.8;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--blue);
  opacity: 1;
}

/* â”€â”€ REVEAL â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* â”€â”€ HERO â€” tipografia Ã© o design â”€â”€ */
.hero {
  padding-top: 52px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-top {
  padding: 40px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hero-tagline {
  max-width: 260px;
}

.hero-tagline-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.hero-tagline-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 20px;
}

.hero-tagline-text em {
  font-style: normal;
  color: var(--blue);
}

.hero-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-cta:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.hero-photo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-photo-center img {
  width: 140px;
  height: 180px;
  object-fit: cover;
}

.hero-photo-label {
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  align-self: flex-start;
  padding-top: 4px;
}

.hero-name-wrap {
  padding: 0 28px;
  line-height: 0.82;
  overflow: hidden;
}

.hero-name {
  font-family: var(--ff-display);
  font-size: clamp(100px, 20vw, 240px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--blue);
  white-space: nowrap;
  width: 100%;
  display: block;
  animation: slideUp 0.9s var(--ease) 0.1s both;
}

.hero-surname {
  font-family: var(--ff-display);
  font-size: clamp(100px, 20vw, 240px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--black);
  white-space: nowrap;
  width: 100%;
  display: block;
  animation: slideUp 0.9s var(--ease) 0.25s both;
}

.hero-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px 48px;
  border-top: 1px solid #E0E0DC;
  margin-top: 12px;
}

.hero-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-blue-diamond {
  width: 12px;
  height: 12px;
  background: var(--blue);
  transform: rotate(45deg);
}

.hero-scroll-hint {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gray);
}

/* â”€â”€ ABOUT STRIP â”€â”€ */
.about-strip {
  padding: 80px 32px;
  background: var(--white);
}

.about-strip-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: start;
}

.about-strip-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-strip-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-strip-photo-sm {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-strip-text-sm {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 340px;
}

.about-strip-meet {
  margin-top: 16px;
}

.about-strip-meet-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.about-strip-meet-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.about-strip-meet-title em {
  font-style: normal;
  color: var(--blue);
}

.about-strip-meet-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-top: 24px;
}

.about-strip-meet-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 400px;
}

.about-strip-meet-year {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}

/* â”€â”€ WORK SECTION â€” fundo azul â”€â”€ */
.section-work {
  background: var(--blue);
  padding: 64px 32px;
}

.section-work-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-work-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.section-work-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  text-align: right;
  max-width: 500px;
}

.work-items-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.work-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.work-item:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
}

.work-num {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

.work-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.work-item:hover .work-title {
  color: var(--black);
}

.work-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
}

.work-year {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  min-width: 36px;
  text-align: right;
}

/* â”€â”€ FEATURED IMAGE â”€â”€ */
.featured-img {
  position: relative;
  overflow: hidden;
  height: 70vh;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-img-label {
  position: absolute;
  bottom: 24px;
  right: 32px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.featured-img-date {
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* â”€â”€ STORE SECTION â”€â”€ */
.section-store {
  background: var(--white);
  padding: 80px 32px;
}

.store-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.store-header-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  padding-top: 8px;
}

.store-header-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.store-header-title em {
  font-style: normal;
  color: var(--blue);
}

.store-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.store-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid #E0E0DC;
  cursor: pointer;
}

.store-item:last-child {
  border-bottom: 1px solid #E0E0DC;
}

.store-item-img {
  width: 120px;
  height: 90px;
  object-fit: cover;
}

.store-item-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.store-item:hover .store-item-title {
  color: var(--blue);
}

.store-item-dims {
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;
}

.store-item-right {
  text-align: right;
}

.store-item-price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.store-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white);
  padding: 9px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s var(--ease);
}

.store-item-btn:hover {
  background: #0033CC;
  transform: translateY(-1px);
}

/* â”€â”€ CTA FINAL â”€â”€ */
.section-cta {
  background: var(--white);
  padding: 80px 32px 100px;
  border-top: 1px solid #E0E0DC;
}

.cta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 8vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}

.cta-title em {
  font-style: normal;
  color: var(--blue);
}

.cta-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.cta-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 360px;
}

.cta-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--black);
  padding-bottom: 4px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, border-color 0.2s;
}

.cta-btn:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* â”€â”€ FOOTER â”€â”€ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 32px 32px;
}

.footer-contact {
  text-align: center;
  margin-bottom: 48px;
}

.footer-contact-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.footer-contact-title a:hover {
  color: var(--blue);
}

.footer-name-big {
  font-family: var(--ff-display);
  font-size: clamp(60px, 14vw, 180px);
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 0.85;
  text-align: center;
  opacity: 0.08;
  user-select: none;
  margin-top: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 24px;
}

.footer-copy {
  font-size: 11px;
  opacity: 0.25;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.3;
  transition: opacity 0.2s, color 0.2s;
}

.footer-socials a:hover {
  opacity: 1;
  color: var(--blue);
}

/* â”€â”€ WORK PAGE â”€â”€ */
.page-hero {
  padding: 52px 32px 0;
  background: var(--black);
  color: var(--white);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  margin-top: 80px;
}

.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(80px, 16vw, 200px);
  letter-spacing: -0.04em;
  line-height: 0.82;
  color: var(--white);
}

.page-hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 24px;
  padding-bottom: 48px;
  max-width: 400px;
  line-height: 1.6;
}

.filter-bar {
  display: flex;
  gap: 8px;
  padding: 24px 32px;
  border-bottom: 1px solid #E0E0DC;
  background: var(--white);
  flex-wrap: wrap;
}

.filter-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid #E0E0DC;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--gray);
}

.filter-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-tag.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.projects-list {
  padding: 0 32px 120px;
}

.project-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #E0E0DC;
  cursor: pointer;
}

.project-item:first-child {
  border-top: 1px solid #E0E0DC;
}

.project-item-img {
  width: 200px;
  height: 130px;
  object-fit: cover;
}

.project-item:hover .project-item-img {
  opacity: 0.8;
}

.project-item-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.project-item-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  transition: color 0.2s;
}

.project-item:hover .project-item-title {
  color: var(--blue);
}

.project-item-year {
  font-size: 12px;
  color: var(--gray);
}

.project-item-arrow {
  font-size: 24px;
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.project-item:hover .project-item-arrow {
  opacity: 1;
  transform: translate(4px, -4px);
}

/* â”€â”€ PROJECT DETAIL â”€â”€ */
.project-hero {
  height: 80vh;
  position: relative;
  overflow: hidden;
  margin-top: 52px;
  background: var(--black);
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 48px 32px;
}

.project-hero-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.project-hero-title {
  font-family: var(--ff-display);
  color: var(--white);
  font-size: clamp(48px, 8vw, 110px);
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #E0E0DC;
  border-bottom: 1px solid #E0E0DC;
}

.project-meta-item {
  background: var(--white);
  padding: 24px 32px;
}

.project-meta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.project-meta-value {
  font-size: 16px;
  font-weight: 500;
}

.project-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
}

.project-body h2 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  margin: 56px 0 18px;
  line-height: 0.95;
}

.project-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #444440;
  margin-bottom: 22px;
}

.project-img-full {
  width: 100%;
}

.project-img-full img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.project-img-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.project-img-2col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--blue);
  margin: 80px 0 0;
}

.result-item {
  background: var(--black);
  padding: 48px 32px;
  text-align: center;
}

.result-num {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}

.result-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

.project-nav {
  display: flex;
  justify-content: space-between;
  padding: 48px 32px;
  border-top: 1px solid #E0E0DC;
}

.project-nav a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.35;
  transition: opacity 0.2s, color 0.2s;
}

.project-nav a:hover {
  opacity: 1;
  color: var(--blue);
}

/* â”€â”€ STORE PAGE â”€â”€ */
.store-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E0E0DC;
  padding: 1px;
}

.artwork-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
}

.artwork-card:first-child {
  grid-column: span 2;
}

.artwork-card-img {
  position: relative;
  overflow: hidden;
}

.artwork-card-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.artwork-card:first-child .artwork-card-img img {
  aspect-ratio: 16/9;
}

.artwork-card:hover .artwork-card-img img {
  transform: scale(1.03);
}

.artwork-status {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.artwork-status.sold {
  background: var(--gray);
}

.artwork-info {
  padding: 18px 24px 24px;
  border-top: 2px solid #E0E0DC;
}

.artwork-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.artwork-dims {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 14px;
}

.artwork-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.artwork-price {
  font-size: 18px;
  font-weight: 700;
}

.btn-buy {
  background: var(--blue);
  color: var(--white);
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-buy:hover {
  background: #0033CC;
}

/* â”€â”€ ABOUT PAGE â”€â”€ */
.about-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  margin-top: 52px;
}

.about-sticky-img {
  position: sticky;
  top: 52px;
  height: calc(100vh - 52px);
  overflow: hidden;
  background: var(--black);
}

.about-sticky-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.about-content {
  padding: 80px 60px 120px;
}

.about-h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 40px;
}

.about-h1 em {
  font-style: normal;
  color: var(--blue);
}

.about-p {
  font-size: 16px;
  line-height: 1.8;
  color: #444440;
  margin-bottom: 22px;
  max-width: 480px;
}

.about-services {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid #E0E0DC;
}

.about-services-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.services-list {
  list-style: none;
}

.services-list li {
  font-size: clamp(15px, 1.6vw, 20px);
  padding: 14px 0;
  border-bottom: 1px solid #E0E0DC;
  color: #444440;
  display: flex;
  justify-content: space-between;
  transition: color 0.2s;
}

.services-list li:hover {
  color: var(--black);
}

.services-list li::after {
  content: 'â†’';
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.2s;
}

.services-list li:hover::after {
  opacity: 1;
}

.about-links {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid #E0E0DC;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.about-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* â”€â”€ CONTACT PAGE â”€â”€ */
.contact-page {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  padding: calc(52px + 80px) 32px 80px;
}

.contact-h1 {
  font-family: var(--ff-display);
  font-size: clamp(72px, 15vw, 200px);
  letter-spacing: -0.04em;
  line-height: 0.82;
  margin-bottom: 80px;
}

.contact-h1 em {
  font-style: normal;
  color: var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-method {
  padding: 32px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.04);
}

.contact-method:nth-child(2n) {
  border-right: none;
}

.contact-method-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.contact-method-value {
  font-size: clamp(15px, 1.5vw, 20px);
}

.contact-avail {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3DD68C;
  animation: pulse 2s ease-in-out infinite;
}

/* â”€â”€ KEYFRAMES â”€â”€ */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.4)
  }
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .hero-top {
    flex-direction: column;
  }

  .about-strip-cols {
    grid-template-columns: 1fr;
  }

  .store-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .about-page {
    grid-template-columns: 1fr;
  }

  .about-sticky-img {
    position: relative;
    height: 60vh;
    top: 0;
  }

  .about-content {
    padding: 56px 32px 80px;
  }

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

  .artwork-card:first-child {
    grid-column: span 2;
  }

  .project-item {
    grid-template-columns: 140px 1fr;
  }

  .project-item-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-name,
  .hero-surname {
    font-size: clamp(72px, 18vw, 120px);
  }

  .hero-name-wrap {
    padding: 0 20px;
  }

  .hero-top,
  .hero-bottom-bar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-photo-center {
    display: none;
  }

  .about-strip {
    padding: 56px 20px;
  }

  .about-strip-meet-body {
    grid-template-columns: 1fr;
  }

  .section-work {
    padding: 48px 20px;
  }

  .section-work-header {
    flex-direction: column;
    gap: 16px;
  }

  .section-work-title {
    text-align: left;
  }

  .work-item {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .work-cat,
  .work-year {
    display: none;
  }

  .featured-img {
    height: 50vw;
  }

  .section-store,
  .section-cta {
    padding: 56px 20px;
  }

  .store-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .store-item-right {
    display: none;
  }

  .cta-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    padding: 48px 20px 24px;
  }

  .page-hero {
    padding: 52px 20px 0;
  }

  .filter-bar {
    padding: 16px 20px;
  }

  .projects-list {
    padding: 0 20px 80px;
  }

  .project-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-item-img {
    width: 100%;
    height: 200px;
  }

  .project-hero-overlay {
    padding: 32px 20px;
  }

  .project-meta {
    grid-template-columns: 1fr 1fr;
  }

  .project-meta-item {
    padding: 18px 20px;
  }

  .project-body {
    padding: 48px 20px;
  }

  .project-img-2col {
    grid-template-columns: 1fr;
  }

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

  .project-nav {
    padding: 36px 20px;
  }

  .store-page-grid {
    grid-template-columns: 1fr;
    padding: 1px;
  }

  .artwork-card:first-child {
    grid-column: span 1;
  }

  .contact-page {
    padding: calc(52px + 48px) 20px 60px;
  }

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

  .contact-method {
    border-right: none;
  }

  .footer-name-big {
    font-size: clamp(48px, 12vw, 120px);
  }
}

/* PAGE ENTER (loading animation, CSS-only so it never depends on JS) */
body {
  animation: page-enter 0.5s var(--ease) both;
}

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* IMAGE SKELETON / LAZY FADE-IN
   Any <img class="js-fade"> shows a shimmer placeholder until it finishes
      loading, then fades to opacity 1. The trigger is an inline onload/onerror
         attribute on each <img> (works even if main.js fails to load), with a
            2.5s inline safety-net timeout as a second fallback. */
img.js-fade {
  background: linear-gradient(100deg, var(--off) 8%, #ECECE8 20%, var(--off) 33%);
  background-size: 200% 100%;
  animation: img-shimmer 1.6s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

img.js-fade.is-loaded {
  opacity: 1;
  animation: none;
  background: none;
}

@keyframes img-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  img.js-fade {
    animation: none;
    opacity: 1;
    transition: none;
  }
}

/* CASE STUDIES (work.html) */
.page-hero {
  padding: 140px 32px 80px;
  text-align: center;
}

.page-hero-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(48px, 10vw, 120px);
  line-height: 0.95;
  color: var(--white);
}

.page-hero-sub {
  max-width: 480px;
  margin: 24px auto 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

.case-block {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 32px;
  border-top: 1px solid #E0E0DC;
}

.case-block:first-of-type {
  border-top: none;
}

.case-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.case-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.case-year {
  font-size: 12px;
  color: var(--gray);
}

.case-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 28px;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid #E0E0DC;
  border-bottom: 1px solid #E0E0DC;
  margin-bottom: 32px;
}

.case-meta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.case-meta-value {
  font-size: 14px;
}

.case-section {
  margin-bottom: 22px;
  max-width: 640px;
}

.case-section h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.case-section p {
  font-size: 15px;
  line-height: 1.75;
  color: #444440;
}

.case-result {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--off);
  border-left: 2px solid var(--blue);
}

.case-result p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
}

@media (max-width: 768px) {
  .case-meta {
    grid-template-columns: 1fr 1fr;
  }
}