@font-face {
  font-family: Noto;
  src: url("/assets/fonts/noto-sans-el-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #f5f5f3;
  --ink: #202020;
  --pink: #f3b9cf;
  --line: #d4d4d0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Noto, sans-serif;
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #ae2963;
  outline-offset: 5px;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 10;
}
.skip:focus {
  top: 20px;
  background: white;
  padding: 15px;
}
.header {
  height: 78px;
  padding: 0 3%;
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 5;
}
.brand {
  display: flex;
  align-items: center;
  font-weight: 750;
  font-size: 19px;
  gap: 10px;
}
.brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}
.profession {
  font-size: 14px;
  color: #626262;
}
.header nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.header nav a {
  padding: 14px 0;
}
.hero {
  padding: 0 3%;
}
.hero-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 38px 0 28px;
}
.hero h1 {
  font-size: clamp(48px, 6.3vw, 100px);
  letter-spacing: -0.065em;
  line-height: 0.97;
  font-weight: 650;
  margin: 0;
}
.hero h1 em {
  font-weight: 430;
  font-style: normal;
}
.hero-heading p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 5px;
}
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero-images img {
  width: 100%;
  height: clamp(290px, 38vw, 590px);
  object-fit: cover;
}
.hero-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  padding: 18px 0 28px;
}
.muted {
  color: #5c5c5c;
}
.about {
  background: var(--ink);
  color: white;
  padding: 50px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.small-label {
  font-size: 14px;
  color: #bcbcbc;
}
.about h2 {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 16px 0;
}
.about p {
  max-width: 51ch;
  font-size: 16px;
  color: #c7c7c7;
  line-height: 1.8;
}
.services {
  align-self: center;
}
.services a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid #555;
  font-size: 16px;
}
.services a:last-child {
  border-bottom: 0;
}
.services a > span:last-child {
  margin-left: auto;
}
.symbol {
  font-size: 38px;
  width: 55px;
  color: var(--pink);
  text-align: center;
}
.services small {
  display: block;
  font-size: 14px;
  color: #aaa;
  margin-top: 6px;
}
.work {
  padding: 55px 3% 70px;
}
.work-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.work h2 {
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 550;
  letter-spacing: -0.055em;
  margin: 0;
}
.work h2 span {
  font-size: 15px;
  letter-spacing: 0;
  color: #666;
}
.work-heading p {
  font-size: 14px;
}
.filters {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 26px 0;
}
.filters[hidden] {
  display: none;
}
.filters button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 30px;
  padding: 11px 18px;
  font-size: 14px;
}
.filters button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
#result-count {
  margin-left: auto;
  font-size: 14px;
  color: #666;
}
.gallery {
  columns: 3;
  column-gap: 12px;
}
.project {
  display: block;
  break-inside: avoid;
  margin-bottom: 27px;
}
.project[hidden] {
  display: none;
}
.project-image {
  position: relative;
  overflow: hidden;
  background: #e8e8e5;
}
.project img {
  display: block;
  width: 100%;
  height: auto;
}
.project-1 .project-image {
  padding: 28px 0;
  background: #e5edeb;
}
.project-4 .project-image {
  padding: 24px 0;
  background: #e6dbcf;
}
.open-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: white;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.15s;
}
.project:hover .open-label,
.project:focus-visible .open-label {
  opacity: 1;
}
.project-caption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 2px;
}
.project h3 {
  font-size: 14px;
  margin: 0;
  font-weight: 650;
}
.project-caption > span {
  font-size: 14px;
  color: #606060;
  text-align: right;
  max-width: 50%;
}
.contact {
  background: var(--pink);
  padding: 45px 5% 50px;
}
.contact p,
.contact > span {
  font-size: 14px;
}
.contact > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(42px, 8vw, 120px);
  letter-spacing: -0.065em;
  font-weight: 550;
  margin: 15px 0;
}
.contact > a span {
  font-size: 0.8em;
}
footer {
  padding: 28px 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}
footer small {
  width: 100%;
  color: #686868;
  font-size: 14px;
}
dialog {
  border: 0;
  padding: 60px 25px 25px;
  width: min(1050px, 94vw);
  max-height: 90vh;
  background: var(--paper);
  color: var(--ink);
}
dialog[open] {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}
dialog::backdrop {
  background: #000b;
}
.close {
  position: absolute;
  right: 20px;
  top: 12px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.detail-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}
.detail-copy {
  align-self: center;
  padding: 15px;
}
.detail-copy h2 {
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.detail-copy p {
  font-size: 14px;
  line-height: 1.8;
}
.detail-category {
  color: #666;
}
.detail-source {
  display: inline-block;
  border-bottom: 1px solid;
  padding: 10px 0;
  font-size: 14px;
}
body:has(dialog[open]) {
  overflow: hidden;
}
@media (min-width: 1600px) {
  .hero,
  .work {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media (max-width: 800px) {
  .profession {
    display: none;
  }
  .header {
    height: 68px;
  }
  .header nav {
    gap: 18px;
  }
  .hero-heading p {
    max-width: 180px;
    font-size: 14px;
  }
  .about {
    gap: 6%;
    padding: 35px 4%;
  }
  .services a {
    gap: 10px;
    font-size: 14px;
  }
  .symbol {
    width: 40px;
  }
  .gallery {
    columns: 2;
  }
  .work-heading p {
    display: none;
  }
}
@media (max-width: 520px) {
  .header {
    padding: 0 4%;
    gap: 10px;
  }
  .brand {
    font-size: 15px;
    gap: 5px;
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .header nav {
    gap: 13px;
    font-size: 14px;
  }
  .header nav a:nth-child(2) {
    display: none;
  }
  .hero {
    padding: 0 4%;
  }
  .hero-heading {
    display: block;
    padding: 30px 0 24px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-heading p {
    max-width: none;
    margin-top: 18px;
  }
  .hero-images {
    gap: 5px;
  }
  .hero-images img {
    height: 245px;
  }
  .hero-caption {
    font-size: 14px;
  }
  .muted {
    display: none;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 6%;
  }
  .about h2 {
    font-size: 37px;
  }
  .services a {
    font-size: 15px;
  }
  .work {
    padding: 35px 4% 40px;
  }
  .filters {
    flex-wrap: wrap;
    gap: 6px;
    margin: 20px 0;
  }
  .filters button {
    padding: 11px 13px;
    font-size: 14px;
  }
  #result-count {
    width: 100%;
    margin-top: 7px;
  }
  .gallery {
    column-gap: 8px;
  }
  .project {
    margin-bottom: 17px;
  }
  .project-caption {
    display: block;
  }
  .project-caption > span {
    display: block;
    text-align: left;
    max-width: none;
    font-size: 14px;
    margin-top: 3px;
  }
  .project h3 {
    font-size: 14px;
  }
  .project-1 .project-image,
  .project-4 .project-image {
    padding: 15px 0;
  }
  .contact {
    padding: 28px 6% 35px;
  }
  .contact > a {
    font-size: 49px;
  }
  .contact p {
    max-width: 26ch;
    line-height: 1.7;
  }
  dialog[open] {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .detail-image {
    max-height: 50vh;
  }
  .detail-copy {
    padding: 0 5px;
  }
  .detail-copy h2 {
    margin: 10px 0;
  }
  .open-label {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* Second study: image-first opening and a denser work overview. */
.hero {
  position: relative;
  padding: 0;
}
.hero-heading {
  position: absolute;
  left: 3%;
  bottom: 62px;
  z-index: 1;
  padding: 0;
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 62px);
  color: white;
  text-shadow: 0 2px 18px #0009;
}
.hero-heading p {
  display: none;
}
.hero-images {
  gap: 4px;
}
.hero-images img {
  height: clamp(420px, 47vw, 720px);
}
.hero-caption {
  padding: 15px 3%;
  background: #fff;
}
.about {
  padding: 30px 3%;
  grid-template-columns: 1fr 1.5fr;
  gap: 6%;
}
.about h2 {
  font-size: 28px;
  margin: 10px 0;
}
.about h2 br {
  display: none;
}
.about p {
  font-size: 16px;
  margin-bottom: 0;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services a {
  display: block;
  padding: 0;
  border: 0;
  font-size: 14px;
}
.services .symbol {
  display: block;
  width: auto;
  text-align: left;
  font-size: 48px;
  margin-bottom: 10px;
}
.services a > span:last-child {
  display: none;
}
.services small {
  font-size: 14px;
  line-height: 1.6;
}
.work {
  padding: 32px 2% 40px;
}
.work-heading {
  justify-content: center;
}
.work h2 {
  font-size: 36px;
  letter-spacing: -0.045em;
}
.work-heading p {
  display: none;
}
.filters {
  margin: 18px 0;
}
.filters button {
  border-radius: 0;
  border: 0;
  padding: 10px 15px;
}
.gallery {
  column-gap: 7px;
}
.project {
  position: relative;
  margin-bottom: 7px;
}
.project-1 .project-image,
.project-4 .project-image {
  padding: 0;
}
.project-caption {
  position: absolute;
  bottom: 18px;
  left: 16px;
  right: 16px;
  padding: 11px 14px;
  background: #fff;
  width: fit-content;
  max-width: calc(100% - 32px);
  opacity: 0;
  transition: opacity 0.15s;
}
.project-caption > span {
  display: none;
}
.project:hover .project-caption,
.project:focus-visible .project-caption {
  opacity: 1;
}
.open-label {
  display: none;
}
@media (hover: none) {
  .project-caption {
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .about {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .about p {
    max-width: 65ch;
  }
  .services {
    gap: 18px;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 0;
  }
  .hero-heading {
    left: 5%;
    bottom: 64px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-images img {
    height: 390px;
  }
  .hero-caption {
    padding: 15px 4%;
  }
  .about {
    padding: 25px 5%;
  }
  .about h2 {
    font-size: 25px;
  }
  .services a {
    font-size: 14px;
  }
  .services .symbol {
    font-size: 36px;
  }
  .services small {
    font-size: 14px;
  }
  .work {
    padding: 26px 2% 30px;
  }
  .work h2 {
    font-size: 32px;
  }
  .gallery {
    column-gap: 5px;
  }
  .project {
    margin-bottom: 5px;
  }
  .project-caption {
    position: static;
    opacity: 1;
    max-width: none;
    width: 100%;
    padding: 8px;
    background: #eaeae7;
  }
  .project h3 {
    font-size: 14px;
  }
}

/* Directional feedback stays within the link's existing layout. */
.arrow {
  display: inline-block;
  --arrow-x: 4px;
  --arrow-y: -4px;
}
.arrow-down {
  --arrow-x: 0px;
  --arrow-y: 5px;
}
.arrow-up {
  --arrow-x: 0px;
  --arrow-y: -5px;
}
a:hover .arrow,
a:focus-visible .arrow {
  animation: arrow-nudge 480ms ease-in-out;
}
@keyframes arrow-nudge {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(var(--arrow-x), var(--arrow-y));
  }
}
.detail-copy p {
  font-size: 16px;
}
.services a {
  font-size: 16px;
}
.services small {
  color: #c7c7c7;
}
.filters button {
  min-height: 44px;
}
.contact > a .arrow {
  flex-shrink: 0;
  margin-left: 12px;
}
@media (max-width: 520px) {
  .header {
    height: auto;
    min-height: 78px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 4px 12px;
  }
  .header nav {
    gap: 14px;
  }
  .services {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .services a {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #555;
  }
  .services .symbol {
    margin: 0;
  }
  .services small {
    font-size: 14px;
  }
  .hero-caption {
    gap: 12px;
  }
  .hero-caption > span:last-child {
    white-space: nowrap;
  }
  .contact > a {
    font-size: clamp(36px, 11vw, 49px);
  }
}
@media (prefers-reduced-motion: reduce) {
  a:hover .arrow,
  a:focus-visible .arrow {
    animation: none;
  }
}

.intro-active {
  overflow: hidden;
}
.intro-curtain {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  animation: curtain-lift 800ms cubic-bezier(0.76, 0, 0.24, 1) 2500ms both;
}
.intro-curtain[hidden] {
  display: none;
}
.intro-corner {
  position: absolute;
  top: 28px;
  left: 4%;
  font-size: 14px;
}
.intro-signature {
  text-align: center;
  padding: 30px;
}
.intro-signature img {
  display: block;
  width: clamp(150px, 22vw, 300px);
  height: auto;
  margin: 0 auto;
  animation: signature-reveal 1500ms cubic-bezier(0.65, 0, 0.35, 1) 150ms both;
}
.intro-signature p {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.05em;
  margin: 12px 0;
  animation: signature-name 700ms ease 1050ms both;
}
.intro-signature p span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 12px;
}
.intro-skip {
  position: absolute;
  right: 4%;
  bottom: 35px;
  background: transparent;
  border: 0;
  padding: 12px;
  font-size: 14px;
}
.intro-edge {
  position: absolute;
  bottom: 0;
  height: 12px;
  background: var(--pink);
  width: 100%;
  transform-origin: left;
  animation: ink-edge 2400ms cubic-bezier(0.65, 0, 0.35, 1) both;
}
@keyframes signature-reveal {
  from {
    clip-path: inset(100% 0 0);
    transform: translateY(14px);
  }
  to {
    clip-path: inset(0);
    transform: translateY(0);
  }
}
@keyframes signature-name {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ink-edge {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes curtain-lift {
  to {
    transform: translateY(-100%);
    visibility: hidden;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-curtain {
    display: none;
    animation: none;
  }
  .intro-active {
    overflow: auto;
  }
  .intro-curtain * {
    animation: none;
  }
}

.service-art {
  display: block;
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  color: #b9b9b3;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 220ms ease;
}
.service-art path {
  stroke-dasharray: 420;
  stroke-dashoffset: 0;
}
.services.is-drawing .service-art path,
.services a:hover .service-art path,
.services a:focus-visible .service-art path {
  animation: service-draw 1600ms cubic-bezier(0.4, 0, 0.2, 1) both;
}
.services.is-drawing a:nth-child(2) path {
  animation-delay: 150ms;
}
.services.is-drawing a:nth-child(3) path {
  animation-delay: 300ms;
}
.services a:hover .service-art,
.services a:focus-visible .service-art {
  color: var(--pink);
}
@keyframes service-draw {
  from {
    stroke-dashoffset: 420;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 520px) {
  .services a {
    grid-template-columns: 64px 1fr;
  }
  .service-art {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .services .service-art path {
    animation: none !important;
    stroke-dashoffset: 0;
  }
}

.message-section {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10%;
  background: #f5f5f3;
}
.message-heading h2 {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin: 22px 0;
}
.message-heading p {
  max-width: 35ch;
  line-height: 1.8;
}
.contact-form {
  display: grid;
  gap: 25px;
}
.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  color: inherit;
  border: 0;
  border-bottom: 1px solid #888;
  border-radius: 0;
  padding: 14px 0;
  background: transparent;
  width: 100%;
  min-width: 0;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form :is(input, select, textarea):focus-visible {
  outline: 2px solid #ae2963;
  outline-offset: 5px;
}
.form-privacy,
.form-notice {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.form-notice {
  border-left: 3px solid #ae2963;
  padding: 12px 16px;
  background: #f3e5eb;
}
.form-notice a {
  text-decoration: underline;
}
.form-trap {
  position: absolute;
  left: -10000px;
}
.send-button {
  border: 0;
  background: #202020;
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
}
.send-button:disabled {
  background: #656565;
  cursor: not-allowed;
}
.send-button:hover .arrow,
.send-button:focus-visible .arrow {
  animation: arrow-nudge 480ms ease-in-out;
}
@media (max-width: 700px) {
  .message-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 45px 6%;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .send-button .arrow {
    animation: none !important;
  }
}

/* Soft controls and a light focus halo for the contact experience. */
.contact-form :is(input:not([type="hidden"]), select, textarea) {
  padding: 17px 20px;
  background: #fff;
  border: 1px solid #e4e4e1;
  border-radius: 22px;
  box-shadow: 0 2px 8px #20202003;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}
.contact-form textarea {
  min-height: 155px;
}
.contact-form :is(input, select, textarea):focus-visible {
  outline: 2px solid #c791a8;
  outline-offset: 3px;
  border-color: #dbc0cc;
  box-shadow: 0 0 0 6px #f3b9cf26;
  background: #fffdfd;
}
.form-notice {
  border: 0;
  border-radius: 22px;
  padding: 16px 20px;
  background: #eee9ec;
}
.send-button {
  border-radius: 28px;
  padding: 19px 24px;
}
.send-button:focus-visible {
  outline: 2px solid #c791a8;
  outline-offset: 4px;
}
.filters button {
  border-radius: 999px;
}
dialog {
  border-radius: 28px;
}
.close {
  border-radius: 999px;
}
.project-caption {
  border-radius: 14px;
}
@media (max-width: 520px) {
  .project-caption {
    border-radius: 0 0 14px 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-form :is(input, select, textarea) {
    transition: none;
  }
}

.service-choices {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.service-choices legend {
  font-size: 14px;
  margin-bottom: 14px;
  padding: 0;
}
.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-form .service-option {
  display: block;
  position: relative;
  cursor: pointer;
}
.contact-form .service-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  padding: 0;
  margin: 0;
}
.service-option span {
  display: block;
  padding: 13px 19px;
  border: 1px solid #dfdfdc;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}
.service-option:hover span {
  background: #f7e9ef;
  border-color: #d5aebe;
}
.service-option input:checked + span {
  background: var(--pink);
  border-color: #bb819a;
  color: #202020;
}
.service-option input:focus-visible + span {
  outline: 2px solid #a96b86;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .service-option span {
    transition: none;
  }
}

.required-mark {
  color: #934363;
  font-weight: 650;
}
