@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@200;300;400&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  --grey-light: #e8e8e8;
  --grey-mid: #999999;
  --grey-dark: #555555;
  --accent: #000000;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Jost', 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
  --nav-h: 64px;
  --max-w: 1140px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 100;
  transition: border-color 0.3s;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--black); }

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: clamp(1rem, 2vw, 2rem);
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.2s;
  text-transform: uppercase;
}

.lang-btn.active { color: var(--black); border-bottom: 1px solid var(--black); }
.lang-btn:hover { color: var(--grey-dark); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: all 0.3s;
}

/* ── LAYOUT ── */
main { padding-top: var(--nav-h); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding: clamp(3rem, 8vw, 7rem) var(--gutter) clamp(2rem, 5vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 2rem;
}

.hero-text { padding-bottom: 1rem; }

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.hero-name em {
  font-style: italic;
  color: var(--black);
}

.hero-desc {
  font-size: 0.85rem;
  color: var(--grey-dark);
  max-width: 340px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  transition: gap 0.3s;
}
.hero-cta:hover { gap: 1.25rem; }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.hero-img-main {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: var(--grey-light);
  overflow: hidden;
  position: relative;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 6s ease;
}

.hero-img-main:hover img { transform: scale(1.04); }

.hero-caption {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
  text-transform: uppercase;
  align-self: flex-end;
}

/* ── SECTION ── */
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 4rem) 0; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--grey-light);
  padding-top: 1.5rem;
}

.section-num {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--grey-mid);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.section-link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-light);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.section-link:hover { color: var(--black); border-color: var(--black); }

/* ── WORKS GRID ── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-light);
}

.work-item {
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.work-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
}

.work-item:hover .work-img img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

.work-info {
  padding: 1rem 1.25rem 1.25rem;
}

.work-medium {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.35rem;
}

.work-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
}

.work-year {
  font-size: 0.7rem;
  color: var(--grey-mid);
  margin-top: 0.25rem;
}

/* ── WORKS PAGE FULL ── */
.filter-bar {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--grey-light);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-tab {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1rem 1.5rem 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.filter-tab:hover { color: var(--grey-dark); }
.filter-tab.active { color: var(--black); border-bottom-color: var(--black); }

.works-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: var(--grey-light);
}

.work-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s;
}
.work-card.hidden { display: none; }

.work-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
}
.work-card:hover .work-card-img img { transform: scale(1.06); filter: grayscale(0%); }

.work-card-info { padding: 1rem 1.25rem 1.5rem; }
.work-card-medium { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 0.3rem; }
.work-card-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 300; }
.work-card-year { font-size: 0.7rem; color: var(--grey-mid); margin-top: 0.2rem; }

/* ── SERVICES ── */
.services-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--grey-light);
  align-items: start;
  transition: background 0.3s;
}
.service-row:first-child { border-top: 1px solid var(--grey-light); }

.service-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--grey-mid);
  padding-top: 0.2rem;
}

.service-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-detail { font-size: 0.82rem; color: var(--grey-dark); line-height: 1.9; }
.service-detail p { margin-bottom: 0.75rem; }
.service-detail p:last-child { margin-bottom: 0; }

.service-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  border: 1px solid var(--grey-light);
  padding: 3px 10px;
  margin-top: 1rem;
  margin-right: 0.5rem;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.about-portrait-img {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--grey-light);
  overflow: hidden;
}
.about-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.about-portrait-caption {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 0.75rem;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.about-content h2 em { font-style: italic; color: var(--accent); }

.about-text {
  font-size: 0.88rem;
  color: var(--grey-dark);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.about-section-title {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-light);
}

.exhibitions-list { list-style: none; }
.exhibitions-list li {
  display: flex;
  gap: 1.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.8rem;
}
.exhibitions-list li:last-child { border-bottom: none; }
.ex-year { color: var(--grey-mid); min-width: 3rem; flex-shrink: 0; }
.ex-name { color: var(--grey-dark); }

.cv-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.cv-link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--grey-light);
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, border-color 0.2s;
}
.cv-link:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.contact-row:first-child { border-top: 1px solid var(--grey-light); }
.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.4rem;
}
.contact-value {
  font-size: 0.88rem;
  color: var(--black);
}
.contact-value a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--grey-light); transition: border-color 0.2s; }
.contact-value a:hover { border-color: var(--black); }

.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-group { display: flex; flex-direction: column; border-bottom: 1px solid var(--grey-light); }
.form-group:first-child { border-top: 1px solid var(--grey-light); }

.form-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  padding: 1rem 0 0.4rem;
}

.form-input, .form-select, .form-textarea {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--black);
  background: none;
  border: none;
  outline: none;
  padding: 0 0 1rem;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b0aca3' fill='none' stroke-width='1.2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; padding-right: 1.5rem; }

.form-textarea { resize: vertical; min-height: 120px; line-height: 1.8; }

.form-submit {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, gap 0.3s;
  align-self: flex-start;
}
.form-submit:hover { background: transparent; color: var(--black); gap: 1.25rem; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--grey-light);
  padding: 2.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--grey-mid);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--black); }

/* ── PAGE HEADER ── */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--grey-light);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-header-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

.page-header-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: clamp(2.5rem,6vw,4rem); }
  .hero-visual { align-items: flex-start; }
  .hero-img-main { max-width: 100%; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 2rem 1fr; }
  .service-detail { display: none; }
  .service-row.open .service-detail { display: block; grid-column: 2 / -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 2rem var(--gutter); border-bottom: 1px solid var(--grey-light); gap: 1.5rem; z-index: 99; }
  .nav-toggle { display: flex; }
  .works-grid { grid-template-columns: 1fr; }
  .works-grid-full { grid-template-columns: 1fr 1fr; }
}
