:root {
  --background: #E5E5E3;
  --text: #111111;
  --muted: #77736d;
  --line: #d5d1c9;
  --accent: #a8d5a2;
}

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

html {
  scroll-behavior: smooth;
}

body {
background: var(--background);
color: var(--text);
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
line-height: 1.45;
}

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

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

/* NAVIGATION */

.nav {
position: fixed;
top: 0;
left: 0;
z-index: 100;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 22px 5vw;
background: rgba(243, 241, 236, 0.9);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(213, 209, 201, 0.7);
}

.logo {
font-size: 13px;
letter-spacing: 0.14em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
display: flex;
gap: 30px;
font-size: 12px;
}

.nav-links a {
transition: opacity 0.2s ease;
}

.nav-links a {
opacity: 0.4;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 0;
  font: inherit;
  letter-spacing: inherit;
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  color: var(--text);
  opacity: 1;
}

/* HERO */

.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1.1fr 0.9fr;
align-items: center;
gap: 8vw;
padding: 150px 5vw 80px;
position: relative;
}

.hero-portrait-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(420px, 100%);
  margin: 0 auto;
  transform: translateY(0);
}

.hero-portrait-stack .me-card {
  position: relative;
  opacity: 1;
  transform: translateY(var(--offset, 0px));
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.hero-portrait-stack .me-card-secondary {
  margin-left: 52px;
  opacity: 1;
  --offset: 18px;
}

.hero-title {
  position: relative;
  z-index: 2;
}

.hero-title h1 {
font-size: clamp(70px, 11vw, 170px);
line-height: 0.82;
letter-spacing: -0.075em;
font-weight: 400;
position: relative;
z-index: 3;
}

.hero-title span {
color: var(--accent);
}

.hero-intro {
max-width: 400px;
align-self: end;
padding-bottom: 20px;
position: relative;
z-index: 2;
}

.hero-intro p {
max-width: 360px;
margin-bottom: 35px;
font-size: 15px;
color: #4f4c47;
}

.scroll-link {
display: inline-flex;
align-items: center;
gap: 12px;
font-size: 11px;
letter-spacing: 0.13em;
text-transform: uppercase;
}

.scroll-link span {
width: 45px;
height: 1px;
background: var(--text);
}

/* SECTIONS */

.section {
padding: 110px 5vw;
}

.section-header {
display: flex;
align-items: baseline;
justify-content: space-between;
margin-bottom: 50px;
padding-top: 16px;
border-top: 1px solid var(--line);
}

.section-header h2 {
font-size: 38px;
font-weight: 400;
letter-spacing: -0.04em;
}

.section-header span {
font-size: 10px;
letter-spacing: 0.15em;
color: var(--muted);
}

/* FEATURED */

.featured {
display: grid;
grid-template-columns: 1.3fr 0.7fr;
align-items: end;
gap: 30px;
}

.featured-image {
width: 100%;
overflow: hidden;
background: #ddd;
}

.featured-image img {
width: 100%;
height: auto;
display: block;
object-fit: contain;
object-position: center;
transition: transform 0.8s ease;
}

.featured-image img {
transform: scale(1.025);
}

.featured-info {
min-height: 300px;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 0 10px 10px;
}

.featured-info h3 {
margin-bottom: 15px;
font-size: 30px;
font-weight: 400;
letter-spacing: -0.04em;
}

.featured-info p {
max-width: 310px;
font-size: 14px;
color: var(--muted);
}

.art-meta {
max-width: 310px;
display: flex;
justify-content: space-between;
padding-top: 12px;
border-top: 1px solid var(--line);
font-size: 11px;
color: var(--muted);
}

/* GALLERY */

.gallery-section {
padding-top: 20px;
}

.gallery {
display: grid;
grid-template-columns: repeat(12, 1fr);
column-gap: 25px;
row-gap: 80px;
}

.artwork {
cursor: pointer;
}

.artwork-large {
grid-column: span 7;
}

.artwork-small {
grid-column: span 5;
margin-top: 100px;
}

.artwork-wide {
grid-column: 5 / span 8;
margin-top: 100px;
}

.image-wrap {
overflow: hidden;
background: #ddd;
}

.artwork img {
aspect-ratio: 1 / 1;
object-fit: cover;
object-position: center;
transition: transform 0.7s ease;
}

.artwork-wide img {
aspect-ratio: 1 / 1;
}

.artwork img {
transform: scale(1.035);
}

.artwork-info {
display: flex;
justify-content: space-between;
padding-top: 12px;
font-size: 11px;
}

.artwork-info span {
color: var(--muted);
}

/* ME */

.me-section {
  padding-top: 30px;
}

.me-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.me-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.me-image-wrap {
  background: #ddd;
}

.me-image-wrap img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

/* STATEMENT */

.statement-section {
padding: 30px 5vw 120px;
}

.statement {
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
padding: 100px 10vw;
background: #151515;
color: #f3f1ec;
}

.statement p {
max-width: 950px;
font-size: clamp(36px, 5vw, 72px);
line-height: 1.03;
letter-spacing: -0.055em;
}

.statement em {
color: var(--accent);
font-style: normal;
}

/* ABOUT */

.about {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10vw;
}

.about-title h2 {
font-size: clamp(50px, 6vw, 85px);
line-height: 0.9;
letter-spacing: -0.065em;
font-weight: 400;
}

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

.about-copy {
max-width: 480px;
font-size: 15px;
color: #55514b;
}

.about-copy p {
margin-bottom: 25px;
}

.details {
margin-top: 45px;
border-top: 1px solid var(--line);
}

.detail {
display: flex;
justify-content: space-between;
padding: 14px 0;
border-bottom: 1px solid var(--line);
font-size: 11px;
}

.detail span {
color: var(--muted);
}

/* CONTACT */

.contact-section {
padding: 170px 5vw;
text-align: center;
}

.contact-section h2 {
margin-bottom: 55px;
font-size: clamp(65px, 10vw, 150px);
line-height: 0.83;
letter-spacing: -0.075em;
font-weight: 400;
}

.contact-section em {
color: var(--accent);
font-style: normal;
}

.email {
display: inline-block;
padding-bottom: 5px;
border-bottom: 1px solid var(--text);
font-size: 17px;
}

/* FOOTER */

footer {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24px 5vw;
border-top: 1px solid var(--line);
color: var(--muted);
font-size: 10px;
}

footer div {
display: flex;
gap: 12px;
}

footer a {
color: var(--text);
}

/* TABLET / MOBILE */

@media (max-width: 800px) {

.nav {
padding: 20px 5vw;
}

.nav-links {
gap: 16px;
}

.hero {
display: block;
min-height: auto;
padding-top: 150px;
padding-bottom: 120px;
}

.hero-title h1 {
font-size: 23vw;
margin-bottom: 90px;
}

.section {
padding: 80px 5vw;
}

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

.featured-image {
height: 550px;
}

.featured-info {
min-height: auto;
padding: 25px 0 0;
gap: 50px;
}

.gallery {
display: block;
}

.artwork,
.artwork-small,
.artwork-large,
.artwork-wide {
margin: 0 0 65px;
}

.statement-section {
padding: 0 0 80px;
}

.statement {
min-height: 65vh;
padding: 70px 7vw;
}

.about {
grid-template-columns: 1fr;
gap: 70px;
}

.about-title h2 {
font-size: 16vw;
}

.contact-section {
padding: 120px 5vw;
}

footer {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
}

/* SMALL PHONES */

@media (max-width: 480px) {

.nav-links {
font-size: 11px;
gap: 12px;
}

.logo {
font-size: 11px;
}

.hero-title h1 {
font-size: 24vw;
}

.featured-image {
height: 430px;
}

.section-header h2 {
font-size: 30px;
}

.statement p {
font-size: 38px;
}

.contact-section h2 {
font-size: 19vw;
}
}