:root {
  --paper: #f2efe8;
  --ink: #123536;
  --aqua: #68bfb6;
  --coral: #c55d48;
  --muted: #74807e;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); margin: 0; }
body::selection { background: var(--aqua); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.minimal-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 28px clamp(20px, 4vw, 64px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.minimal-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  letter-spacing: -.03em;
}

.minimal-nav { align-items: center; display: flex; gap: clamp(16px, 2.5vw, 38px); }
.minimal-nav a,
.minimal-about a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.minimal-nav a:hover,
.minimal-about a:hover { color: var(--coral); }
.minimal-nav a[aria-current="page"] { color: var(--coral); }
.language-switch {
  align-items: center;
  display: flex;
  font-size: 9px;
  gap: 5px;
  letter-spacing: .1em;
}
.language-switch button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  padding: 3px 0;
}
.language-switch button.is-active { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.language-switch i { color: var(--muted); font-style: normal; }

.minimal-hero {
  align-items: end;
  display: grid;
  gap: clamp(32px, 7vw, 120px);
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  min-height: 100svh;
  padding: 120px clamp(20px, 7vw, 120px) clamp(32px, 6vw, 88px);
}
.minimal-hero-title { padding-bottom: clamp(0px, 4vw, 70px); position: relative; z-index: 1; }
.minimal-hero-title p {
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.minimal-hero h1 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 11vw, 12rem);
  font-weight: 400;
  letter-spacing: -.085em;
  line-height: .72;
  margin: 0;
}
.minimal-hero h1 em { color: var(--aqua); font-weight: 400; }
.minimal-hero-art {
  aspect-ratio: .82;
  margin: 0;
  max-height: calc(100svh - 180px);
  overflow: hidden;
}
.minimal-hero-art img { height: 100%; object-fit: cover; }

.minimal-work { padding: clamp(90px, 12vw, 180px) clamp(20px, 4vw, 64px); }
.minimal-section-heading {
  align-items: baseline;
  border-top: 1px solid rgba(18, 53, 54, .25);
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(46px, 8vw, 110px);
  padding-top: 18px;
}
.minimal-section-heading h2,
.minimal-about h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -.055em;
  margin: 0;
}
.minimal-section-heading span { font-size: 10px; letter-spacing: .14em; }
.minimal-section-heading b { font-weight: 400; }
.minimal-slider { overflow: hidden; }
.minimal-slider-viewport {
  cursor: grab;
  margin-inline: calc(clamp(20px, 4vw, 64px) * -1);
  outline: none;
  overflow: hidden;
  touch-action: pan-y;
}
.minimal-slider-viewport:active { cursor: grabbing; }
.minimal-slider-viewport:focus-visible { outline: 1px solid var(--coral); outline-offset: -1px; }
.minimal-slider-track {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.3vw, 40px);
  padding-inline: 50vw;
  transition: transform .8s cubic-bezier(.65, 0, .35, 1);
  will-change: transform;
}
.minimal-slide {
  flex: 0 0 clamp(300px, 55vw, 880px);
  margin: 0;
  min-width: 0;
  opacity: .28;
  transform: scale(.94);
  transition: opacity .55s ease, transform .8s cubic-bezier(.65, 0, .35, 1);
}
.minimal-slide.is-active { opacity: 1; transform: scale(1); }
.minimal-slide-frame {
  align-items: center;
  background: rgba(255, 255, 255, .3);
  display: flex;
  height: clamp(420px, 64svh, 760px);
  justify-content: center;
  overflow: hidden;
  padding: clamp(14px, 2.5vw, 42px);
}
.minimal-slide img { height: 100%; object-fit: contain; }
.minimal-slider-footer {
  align-items: center;
  border-bottom: 1px solid rgba(18, 53, 54, .25);
  display: flex;
  justify-content: space-between;
  padding-block: 18px;
}
.minimal-slider-caption {
  align-items: baseline;
  display: flex;
  gap: 16px;
}
.minimal-slider-caption span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -.035em;
}
.minimal-slider-caption span:last-child {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.minimal-slider-controls { display: flex; }
.minimal-slider-controls button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  height: 44px;
  justify-content: center;
  padding: 0;
  transition: color .2s ease, transform .2s ease;
  width: 48px;
}
.minimal-slider-controls button:hover { color: var(--coral); transform: translateX(-2px); }
.minimal-slider-controls button:last-child:hover { transform: translateX(2px); }

.minimal-about {
  align-items: end;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: clamp(36px, 9vw, 160px);
  grid-template-columns: minmax(260px, .78fr) minmax(280px, 1.22fr);
  padding: clamp(70px, 10vw, 150px) clamp(20px, 7vw, 120px);
}
.minimal-about figure { aspect-ratio: .78; margin: 0; overflow: hidden; }
.minimal-about figure img { filter: grayscale(1); height: 100%; object-fit: cover; }
.minimal-about h2 { color: var(--aqua); margin-bottom: clamp(32px, 6vw, 80px); }
.minimal-about p {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.5vw, 4rem);
  letter-spacing: -.045em;
  line-height: 1.05;
  margin: 0 0 38px;
  max-width: 1000px;
}
.minimal-about .minimal-about-name { margin-bottom: 38px; }
.minimal-about a {
  border-bottom: 1px solid var(--aqua);
  color: var(--aqua);
  display: inline-block;
  padding-bottom: 7px;
}

.cv-hero {
  min-height: 72svh;
  padding: clamp(150px, 18vw, 240px) clamp(20px, 7vw, 120px) clamp(70px, 9vw, 130px);
}
.cv-hero > p,
.cv-biography aside > p {
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.cv-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 400;
  letter-spacing: -.085em;
  line-height: .72;
  margin: 0;
}
.cv-hero h1 em { color: var(--aqua); font-weight: 400; }
.cv-biography {
  border-top: 1px solid rgba(18, 53, 54, .25);
  display: grid;
  gap: clamp(60px, 11vw, 180px);
  grid-template-columns: minmax(140px, .35fr) minmax(220px, .55fr) minmax(0, 1.25fr);
  margin-inline: clamp(20px, 4vw, 64px);
  padding: clamp(70px, 10vw, 150px) clamp(0px, 3vw, 52px) clamp(100px, 14vw, 200px);
}
.cv-biography aside a {
  border-bottom: 1px solid var(--aqua);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  padding-bottom: 7px;
  text-transform: uppercase;
}
.cv-portrait {
  align-self: start;
  aspect-ratio: .72;
  margin: 0;
  max-width: 340px;
  overflow: hidden;
}
.cv-portrait img { height: 100%; object-fit: cover; }
.cv-biography article { max-width: 1080px; }
.cv-biography article p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.8vw, 3.4rem);
  letter-spacing: -.045em;
  line-height: 1.08;
  margin: 0;
}
.cv-biography article p + p { margin-top: clamp(42px, 7vw, 90px); }

.minimal-footer {
  align-items: center;
  background: var(--ink);
  border-top: 1px solid rgba(242, 239, 232, .2);
  color: var(--paper);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: .12em;
  padding: 24px clamp(20px, 4vw, 64px);
  text-transform: uppercase;
}

.redirect-page {
  align-items: center;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 5rem);
  justify-content: center;
  min-height: 100svh;
  text-align: center;
}
.redirect-page a { border-bottom: 1px solid var(--aqua); }

:focus-visible { outline: 2px solid var(--coral); outline-offset: 5px; }

@media (max-width: 720px) {
  .minimal-header { align-items: flex-start; }
  .minimal-nav { gap: 12px; }
  .minimal-nav a { font-size: 8px; }
  .nav-instagram { display: none; }
  .language-switch { font-size: 8px; }
  .minimal-hero { align-items: start; grid-template-columns: 1fr; padding-top: 108px; }
  .minimal-hero-title { order: 2; }
  .minimal-hero h1 { font-size: clamp(4.5rem, 23vw, 8rem); }
  .minimal-hero-art { aspect-ratio: .9; max-height: none; }
  .minimal-slide { flex-basis: 82vw; }
  .minimal-slide-frame { height: 58svh; padding: 12px; }
  .minimal-slider-caption { gap: 10px; }
  .minimal-about { align-items: start; grid-template-columns: 1fr; }
  .minimal-about figure { max-height: 70svh; }
  .cv-hero { min-height: 62svh; padding-top: 150px; }
  .cv-biography { grid-template-columns: 1fr; }
  .cv-portrait { max-width: min(72vw, 340px); }
}

@media (prefers-reduced-motion: no-preference) {
  .minimal-hero-art img { transition: transform .6s cubic-bezier(.2,.8,.2,1); }
  .minimal-hero-art:hover img { transform: scale(1.012); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
