@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-greek.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --paper: #fbfbf9;
  --white: #ffffff;
  --ink: #171816;
  --muted: #686a65;
  --line: rgba(23, 24, 22, 0.14);
  --stone: #b8b2a7;
  --stone-dark: #7d786f;
  --focus: #7d4d22;
  --max: 1240px;
  --side: clamp(1.25rem, 4vw, 4.5rem);
  --space: clamp(6rem, 12vw, 11rem);
  --sans: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; width: 100%; height: auto; }
::selection { color: var(--white); background: var(--ink); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

#stone-build {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}
.page-wash {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(251,251,249,.97) 0%, rgba(251,251,249,.9) 48%, rgba(251,251,249,.36) 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 84px;
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251,251,249,.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .25s, height .25s;
}
.site-header.scrolled { border-color: var(--line); height: 70px; }
.brand { display: flex; align-items: center; gap: .75rem; min-height: 48px; }
.brand svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.brand span { display: flex; flex-direction: column; line-height: 1.2; }
.brand b { font-size: .78rem; letter-spacing: .14em; font-weight: 600; }
.brand small { margin-top: .2rem; color: var(--muted); font-size: .66rem; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.3vw, 2.4rem); }
.desktop-nav a { font-size: .76rem; font-weight: 500; color: var(--muted); }
.desktop-nav a:hover { color: var(--ink); }
.header-actions, .language { display: flex; align-items: center; }
.header-actions { gap: .7rem; }
.language { border-left: 1px solid var(--line); padding-left: 1.2rem; }
.language button { border: 0; background: transparent; color: var(--muted); min-width: 38px; min-height: 44px; cursor: pointer; font-size: .72rem; }
.language button[aria-pressed="true"] { color: var(--ink); font-weight: 600; }
.language span { color: #62645f; }
.menu-button { display: none; width: 48px; height: 48px; border: 0; background: none; position: relative; cursor: pointer; }
.menu-button i { position: absolute; left: 11px; right: 11px; height: 1px; background: var(--ink); transition: transform .2s, top .2s; }
.menu-button i:first-child { top: 19px; }
.menu-button i:last-child { top: 28px; }
.menu-button[aria-expanded="true"] i:first-child { top: 24px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] i:last-child { top: 24px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 84px 0 0; z-index: 90; background: var(--paper); padding: 3rem var(--side); }
.site-header.scrolled + .mobile-menu { top: 70px; }
.mobile-menu:not([hidden]) { display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a { min-height: 56px; display: flex; align-items: center; font-size: clamp(1.6rem, 8vw, 2.5rem); border-bottom: 1px solid var(--line); }

main { display: block; }
.hero, .statement, .gallery, .story, .measure, .contact, footer { position: relative; }
.hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 100svh;
  padding: clamp(9rem, 17vh, 12rem) var(--side) 5rem;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 1.2rem; color: var(--muted); font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; }
h1 {
  max-width: 9ch;
  margin-bottom: 1.8rem;
  font-size: clamp(3.6rem, 7.6vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 500;
}
.hero-lead { max-width: 34rem; margin: 0 0 2rem; color: #484b46; font-size: clamp(1.05rem, 1.55vw, 1.3rem); }
.text-link { display: inline-flex; align-items: center; gap: 1rem; min-height: 48px; border-bottom: 1px solid var(--ink); font-size: .82rem; font-weight: 600; }
.text-link span:last-child { font-size: 1.3rem; font-weight: 400; }
.photo-frame { margin: 0; position: relative; background: #eee; }
.photo-frame img { object-fit: cover; filter: saturate(.72) contrast(1.02); }
.hero-image { align-self: stretch; min-height: 620px; }
.hero-image img { position: absolute; inset: 0; height: 100%; }
.photo-frame figcaption { position: absolute; bottom: 0; right: 0; padding: .5rem .7rem; background: rgba(251,251,249,.92); font-size: .58rem; letter-spacing: .06em; color: var(--muted); }
.scroll-note { position: absolute; left: var(--side); bottom: 1.3rem; margin: 0; max-width: 21rem; color: var(--muted); font-size: .67rem; }

.section-index { color: #62645f; font-size: .68rem; letter-spacing: .12em; }
.statement {
  min-height: 105svh;
  padding: var(--space) var(--side);
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) minmax(0, 780px) minmax(22vw, 1.4fr);
  align-items: center;
}
.statement > .section-index { align-self: start; padding-top: .4rem; }
.statement-copy { grid-column: 2; background: rgba(251,251,249,.84); padding: clamp(1rem, 3vw, 2.5rem); }
.statement h2, .story h2, .measure h2, .contact h2, .gallery h2 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 500;
}
.statement h2 { max-width: 13ch; margin-bottom: 3rem; }
.columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; color: var(--muted); }
.columns p { margin: 0; }

.gallery { max-width: var(--max); margin: 0 auto; padding: var(--space) var(--side); }
.gallery-head { display: grid; grid-template-columns: .65fr 1.35fr; gap: 2rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 5rem); }
.gallery-head h2 { margin: 0; }
.gallery-head .eyebrow { margin-top: 1rem; margin-bottom: 0; }
.gallery-intro { max-width: 40rem; margin: 1.4rem 0 0; color: var(--muted); font-size: clamp(.9rem, 1.2vw, 1rem); }

/* Filters drive scripted behaviour, so they only appear once scripting is present;
   without it the full archive stays on the page and nothing dead is offered. */
.gallery-filters { display: none; }
.js .gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.gallery-filters button {
  min-height: 48px; padding: .55rem 1.1rem; border: 1px solid var(--line);
  background: rgba(251,251,249,.96); color: #4a4c47; cursor: pointer;
  font: inherit; font-size: .74rem; letter-spacing: .04em;
}
.gallery-filters button:hover { border-color: #9a9c95; }
.gallery-filters button[aria-pressed="true"] { background: #3f4139; border-color: #3f4139; color: #fbfbf9; font-weight: 600; }
.gallery-status { margin: 0 0 1.6rem; padding: .4rem .7rem; background: rgba(251,251,249,.92); color: var(--muted); font-size: .68rem; }
.gallery-status:empty { display: none; }

/* Multi-column keeps every photograph at its own aspect ratio, so nothing is cropped
   and no focal point has to be guessed for seventeen separate frames. */
.archive-grid { column-count: 3; column-gap: 1.1rem; }
.shot {
  position: relative; margin: 0 0 1.1rem; break-inside: avoid;
  background: rgba(251,251,249,.96); border: 1px solid var(--line);
}
.shot img { display: block; width: 100%; height: auto; filter: saturate(.72) contrast(1.02); }
.shot-narrow img { width: auto; max-width: 100%; margin: 0 auto; }
.shot figcaption { padding: .8rem .9rem 1rem; }
.shot figcaption b { display: block; font-size: .85rem; font-weight: 600; letter-spacing: -.01em; }
.shot figcaption span { display: block; margin-top: .3rem; color: #62645f; font-size: .68rem; line-height: 1.5; }
.shot figcaption .stage {
  display: inline-block; margin-top: .55rem; padding: .15rem .5rem;
  background: #ece9e2; color: #4a4c47; font-size: .6rem; font-style: normal;
  letter-spacing: .08em; text-transform: uppercase;
}
.shot-open { position: absolute; inset: 0; border: 0; background: transparent; cursor: zoom-in; }
.shot-open:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.shot:hover img { filter: saturate(.9) contrast(1.02); }

.lightbox {
  width: min(94vw, 1180px); max-width: none; max-height: 92vh; padding: 0;
  border: 1px solid var(--line); background: var(--paper); color: inherit;
}
.lightbox::backdrop { background: rgba(30,29,26,.82); }
.lightbox:not([open]) { display: none; }
.lightbox-frame { position: relative; max-height: 92vh; overflow-y: auto; }
.lightbox-figure { margin: 0; }
.lightbox-figure img { display: block; width: 100%; height: auto; max-height: 68vh; object-fit: contain; background: #1e1d1a; }
.lightbox-figure figcaption { padding: 1.2rem clamp(1.1rem, 3vw, 2rem) 1.4rem; }
.lightbox-figure h3 { margin: 0; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 500; letter-spacing: -.025em; }
.lightbox-figure p { margin: .5rem 0 0; color: var(--muted); font-size: .85rem; }
.lightbox-meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: .66rem !important; letter-spacing: .06em; text-transform: uppercase; }
.lightbox button {
  min-width: 48px; min-height: 48px; border: 1px solid var(--line);
  background: rgba(251,251,249,.96); color: #3f4139; cursor: pointer; font: inherit; font-size: .95rem;
}
.lightbox button:hover:not(:disabled) { border-color: #9a9c95; }
.lightbox button:disabled { opacity: .4; cursor: not-allowed; }
.lightbox-close { position: absolute; top: .6rem; right: .6rem; }
.lightbox-close svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.lightbox-nav { display: flex; gap: .5rem; padding: 0 clamp(1.1rem, 3vw, 2rem) 1.4rem; }
body.dialog-open { overflow: hidden; }
.reference-note { max-width: calc(52rem + 1.7rem); margin: 1rem 0 0 auto; padding: .55rem .85rem; background: rgba(251,251,249,.92); color: var(--muted); font-size: .68rem; }

.story {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 110svh;
  padding: var(--space) var(--side);
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}
.story-copy { padding: clamp(1rem, 3vw, 2.5rem); background: rgba(251,251,249,.86); }
.story-copy .eyebrow, .measure .eyebrow, .contact .eyebrow { margin-top: 1rem; }
.story h2 { max-width: 11ch; }
.large-copy { max-width: 38rem; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.story-quote { margin: 2rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid var(--line); }
.story-quote p { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2rem); letter-spacing: -.035em; }
.story-quote cite { display: block; margin-top: .55rem; color: var(--muted); font-size: .66rem; font-style: normal; }
.dream-copy { max-width: 38rem; margin: 1.5rem 0 0; color: var(--ink); font-size: .85rem; line-height: 1.65; }
.story-image img { aspect-ratio: 4 / 3; object-fit: contain; object-position: 50% 50%; }
.facts { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border-block: 1px solid var(--line); margin-top: 3.5rem; }
.facts div { min-width: 0; padding: 1.25rem .8rem; background: var(--paper); }
.facts strong { display: block; font-size: 2rem; font-weight: 500; letter-spacing: -.05em; }
.facts span { display: block; color: var(--muted); font-size: .66rem; line-height: 1.45; }

.measure { min-height: 120svh; padding: var(--space) var(--side); display: grid; align-items: center; }
.measure-inner { width: min(680px, 100%); margin-left: max(var(--side), 8vw); padding: clamp(1.5rem, 4vw, 3.5rem); background: rgba(251,251,249,.88); }
.measure h2 { margin-bottom: 2rem; }
.measure-inner > p:not(.eyebrow) { max-width: 35rem; color: var(--muted); }
.measure ol { margin: 3.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.measure li { display: grid; grid-template-columns: 3rem 1fr; align-items: center; min-height: 66px; border-bottom: 1px solid var(--line); }
.measure li span { color: #62645f; font-size: .65rem; }
.measure li b { font-size: .86rem; font-weight: 500; }

.contact { max-width: var(--max); margin: 0 auto; padding: var(--space) var(--side); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 8rem); align-items: start; }
.contact-copy { padding: clamp(1rem, 3vw, 2.5rem); background: rgba(251,251,249,.9); }
.contact h2 { max-width: 10ch; }
.contact-copy > p:last-child { color: var(--muted); max-width: 35rem; }
.contact-form { padding: clamp(1.5rem, 4vw, 3rem); background: rgba(255,255,255,.95); border: 1px solid var(--line); }
.contact-form label { display: block; margin: 1.2rem 0 .45rem; color: var(--muted); font-size: .7rem; font-weight: 600; }
.contact-form label:first-child { margin-top: 0; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #6f716c; border-radius: 0; padding: .65rem .1rem; color: var(--ink); background: transparent; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); outline: 0; box-shadow: 0 2px 0 var(--ink); }
.contact-form button { width: 100%; min-height: 52px; margin-top: 2rem; border: 1px solid #aaa; color: #777; background: #efefec; cursor: not-allowed; }
.contact-form p { margin: 1rem 0 0; color: var(--muted); font-size: .67rem; }

footer { min-height: 72svh; padding: var(--space) var(--side) 3rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; border-top: 1px solid var(--line); }
footer div { display: flex; flex-direction: column; background: rgba(251,251,249,.88); padding: 1rem; }
footer b { font-size: clamp(1.5rem, 3vw, 3rem); font-weight: 500; letter-spacing: -.04em; }
footer span, footer p { color: var(--muted); font-size: .7rem; }
footer p { max-width: 31rem; margin: 0; text-align: right; background: rgba(251,251,249,.88); padding: 1rem; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 9.5rem; }
  .hero-copy { padding-right: 12vw; }
  .hero-image { min-height: 58svh; }
  .statement { grid-template-columns: 2rem 1fr; min-height: 92svh; }
  .statement-copy { grid-column: 2; }
  .archive-grid { column-count: 2; }
  .story { grid-template-columns: 1fr; }
  .story-image img { aspect-ratio: 4 / 3; object-fit: contain; object-position: 50% 50%; }
  .measure-inner { margin-left: 0; }
  .contact { grid-template-columns: 1fr; }
  .page-wash { background: rgba(251,251,249,.73); }
}

@media (max-width: 620px) {
  :root { --space: 5.5rem; }
  .site-header { height: 70px; }
  .mobile-menu { top: 70px; }
  .brand small { display: none; }
  .language { padding-left: 0; border-left: 0; }
  .hero { gap: 2rem; padding-top: 8.2rem; }
  h1 { font-size: clamp(3.45rem, 17vw, 5.2rem); }
  .hero-image { min-height: 55svh; }
  .scroll-note { display: none; }
  .statement { grid-template-columns: 1fr; padding-top: 7rem; padding-bottom: 7rem; }
  .statement > .section-index { margin-bottom: 1rem; }
  .statement-copy { grid-column: 1; padding: 0; background: rgba(251,251,249,.88); }
  .columns { grid-template-columns: 1fr; }
  .gallery-head { grid-template-columns: 1fr; }
  .archive-grid { column-count: 1; }
  .gallery-filters button { flex: 1 1 8.5rem; padding: .55rem .7rem; font-size: .7rem; }
  .lightbox { width: 96vw; }
  .lightbox-figure img { max-height: 56vh; }
  .story-copy { padding: 0; }
  .measure-inner { padding: 1rem; }
  .contact-copy, .contact-form { padding: 1rem; }
  footer { min-height: 82svh; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
  footer p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
