:root {
  color-scheme: dark;
  --bg: #090909;
  --surface: #10100f;
  --surface-soft: #151312;
  --line: #2d2927;
  --line-warm: #54332d;
  --text: #f2ede4;
  --muted: #aaa39a;
  --accent: #b54b3c;
  --accent-bright: #d96a58;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 88% 4%, rgb(94 28 22 / 24%), transparent 32rem),
    radial-gradient(circle at 10% 52%, rgb(90 42 29 / 8%), transparent 36rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

.site-header,
main > section,
.site-footer {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

.site-header {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.site-header nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.site-header nav a.active {
  color: var(--text);
}

.site-header nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent-bright);
  content: "";
}

.signature {
  justify-self: end;
  margin-bottom: 0;
  color: #c6b6a8;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
}

.hero {
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: stretch;
  gap: clamp(44px, 6vw, 96px);
  padding: clamp(52px, 7vw, 96px) 0 72px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding-left: clamp(0px, 2vw, 28px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #cc7566;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: #934f43;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 680px;
  margin-bottom: 32px;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.9;
}

h1 em {
  display: block;
  color: #c76959;
  font-weight: 400;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: #cfc2b7;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid #6c4038;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(4 4 4 / 78%));
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 700ms ease;
}

.hero-visual:hover img {
  transform: scale(1.015);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.hero-visual figcaption span {
  color: #cf796b;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.manifesto {
  display: grid;
  grid-template-columns: 160px minmax(320px, 0.95fr) minmax(340px, 0.85fr);
  gap: clamp(38px, 6vw, 100px);
  padding: 130px 0;
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.section-label .label-line {
  width: 34px;
  height: 1px;
  margin-top: 7px;
  background: var(--accent-bright);
  flex: 0 0 auto;
}

.section-label p {
  margin-bottom: 0;
  color: #8f8982;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.story-heading h2,
.atelier h2,
.work-showcase h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 0.98;
}

.story-copy {
  padding-top: 32px;
}

.story-copy p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.story-copy .lead {
  margin-bottom: 26px;
  color: #ddd1c4;
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.55;
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 0 120px;
  border-bottom: 1px solid var(--line);
}

.history-timeline article {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px clamp(26px, 3.5vw, 54px) 48px;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(181 75 60 / 5%), transparent 42%),
    rgb(255 255 255 / 0.35%);
}

.history-timeline article:first-child {
  border-left: 1px solid var(--line);
}

.history-timeline article:last-child {
  border-right: 0;
}

.timeline-year {
  margin-bottom: 70px;
  color: #c56a5a;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.3vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.history-timeline h3,
.process-list h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.history-timeline article > div > p,
.process-list p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.legacy {
  display: grid;
  grid-template-columns: minmax(400px, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(70px, 11vw, 180px);
  padding: 140px 0;
  border-bottom: 1px solid var(--line);
}

.legacy-heading h2,
.philosophy h2,
.creative-respect h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.legacy-copy {
  align-self: end;
}

.legacy-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.legacy-copy p:first-child {
  color: #d3c6ba;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.65;
}

.philosophy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(400px, 1.2fr);
  gap: clamp(60px, 10vw, 170px);
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 110px clamp(34px, 6vw, 92px);
  overflow: hidden;
  border: 1px solid var(--line-warm);
  background:
    radial-gradient(circle at 18% 20%, rgb(159 48 36 / 22%), transparent 28rem),
    linear-gradient(135deg, #15100e, #0d0c0b 64%);
}

.philosophy::after {
  position: absolute;
  right: -110px;
  bottom: -250px;
  width: 480px;
  height: 480px;
  border: 1px solid rgb(217 106 88 / 12%);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgb(217 106 88 / 3%), 0 0 0 108px rgb(217 106 88 / 2%);
  content: "";
  pointer-events: none;
}

.philosophy-content {
  position: relative;
  z-index: 1;
  align-self: end;
}

.philosophy-statement {
  margin-bottom: 26px;
  color: #e4d8cb;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.5;
}

.philosophy-content > p:not(.philosophy-statement) {
  max-width: 650px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 46px;
  padding-top: 25px;
  border-top: 1px solid #4b302b;
}

.principles span {
  position: relative;
  padding-left: 17px;
  color: #d8ccc0;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.principles span::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  content: "";
}

.atelier {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(60px, 10vw, 170px);
  padding: 140px 0;
  border-bottom: 1px solid var(--line);
}

.atelier-heading .section-label {
  margin-bottom: 84px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 34px;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  padding-top: 9px;
  color: #b55e50;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.creative-respect {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(70px, 12vw, 190px);
  padding: 130px 0;
  border-bottom: 1px solid var(--line);
}

.creative-respect > div:last-child {
  align-self: end;
}

.creative-respect > div:last-child > p:first-child {
  color: #d6c9bc;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.65;
}

.creative-respect .universes {
  margin: 34px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #a89f96;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  text-transform: uppercase;
}

.work-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.67fr) minmax(0, 1.33fr);
  gap: clamp(54px, 8vw, 126px);
  padding: 140px 0;
  border-bottom: 1px solid var(--line);
}

.showcase-copy {
  align-self: center;
}

.showcase-copy .section-label {
  margin-bottom: 74px;
}

.showcase-copy h2 {
  margin-bottom: 42px;
  font-size: clamp(2.8rem, 4.5vw, 4.9rem);
}

.outline-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid #633b34;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease;
}

.outline-button:hover,
.secondary-button:hover {
  border-color: #9d5a4e;
  background: rgb(181 75 60 / 8%);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.photo-grid figure {
  position: relative;
  min-height: 290px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.photo-grid .photo-large {
  grid-row: span 2;
  min-height: 600px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease, transform 500ms ease;
}

.photo-grid figure:hover img {
  filter: brightness(1.08);
  transform: scale(1.025);
}

.photo-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgb(2 2 2 / 78%));
  content: "";
  pointer-events: none;
}

.photo-grid figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #e1d6ca;
  font-family: var(--serif);
  font-size: 0.88rem;
}

.closing {
  padding: 140px 0;
  text-align: center;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  max-width: 980px;
  margin: 0 auto 50px;
}

.closing-copy {
  max-width: 720px;
  margin: -20px auto 46px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.7;
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.primary-button {
  min-width: 170px;
  border-color: var(--accent);
  background: var(--accent);
}

.primary-button:hover {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
}

.site-footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.73rem;
}

.site-footer p {
  margin-bottom: 7px;
}

.footer-brand {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-meta {
  text-align: center;
}

.copyright {
  justify-self: end;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .signature {
    display: none;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .manifesto {
    grid-template-columns: 110px 1fr;
  }

  .story-copy {
    grid-column: 2;
    max-width: 720px;
    padding-top: 0;
  }

  .work-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    max-width: 750px;
  }
}

@media (max-width: 820px) {
  .site-header,
  main > section,
  .site-footer {
    width: min(100% - 32px, 1440px);
  }

  .site-header {
    min-height: 92px;
  }

  .brand span {
    display: none;
  }

  .site-header nav {
    gap: 16px;
  }

  .site-header nav a {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-visual {
    min-height: 72vh;
  }

  .manifesto {
    grid-template-columns: 1fr;
    padding: 96px 0;
  }

  .story-copy {
    grid-column: 1;
  }

  .history-timeline {
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }

  .history-timeline article {
    min-height: auto;
    grid-template-columns: 120px 1fr;
    align-items: start;
    gap: 30px;
    padding: 40px 34px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .history-timeline article:last-child {
    border-right: 1px solid var(--line);
  }

  .timeline-year {
    margin-bottom: 0;
    font-size: 2.7rem;
  }

  .legacy,
  .philosophy,
  .creative-respect {
    grid-template-columns: 1fr;
  }

  .legacy,
  .creative-respect {
    gap: 54px;
    padding: 100px 0;
  }

  .philosophy {
    gap: 56px;
    padding: 82px 50px;
  }

  .atelier {
    grid-template-columns: 1fr;
    padding: 100px 0;
  }

  .atelier-heading .section-label {
    margin-bottom: 52px;
  }

  .work-showcase {
    padding: 100px 0;
  }

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

  .photo-grid .photo-large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 68vh;
  }

  .closing {
    padding: 100px 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    display: none;
  }
}

@media (max-width: 540px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0 12px;
  }

  .brand {
    justify-self: start;
  }

  .site-header nav {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-visual figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .manifesto,
  .legacy,
  .atelier,
  .creative-respect,
  .work-showcase,
  .closing {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .history-timeline article {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 26px;
  }

  .timeline-year {
    font-size: 2.3rem;
  }

  .philosophy {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 68px 28px;
  }

  .principles {
    flex-direction: column;
  }

  .process-list li {
    grid-template-columns: 82px 1fr;
    gap: 16px;
  }

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

  .photo-grid .photo-large {
    grid-column: auto;
  }

  .photo-grid figure,
  .photo-grid .photo-large {
    min-height: 520px;
  }

  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .site-footer {
    min-height: 170px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px 0;
  }

  .copyright {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
