:root {
  --paper: #f2eee6;
  --ink: #171816;
  --muted: #645f58;
  --line: #d6cec1;
  --accent: #b6462e;
  --serif: "Bodoni Moda", Georgia, serif;
  --sans: "Manrope", sans-serif;
  --max: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 1rem; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 4.5rem);
  color: #fff;
}

.brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  font-size: 0.9rem;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.2s;
}

.site-nav a:hover { color: #fff; }

.site-nav .nav-cta {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.55rem 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}

.site-nav .nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(800px, 82svh);
  overflow: hidden;
  padding: 9rem clamp(1.5rem, 8vw, 8rem) 4.5rem;
  isolation: isolate;
  background: #353a37;
  color: #fff;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 15, 14, 0.58), transparent 80%),
    linear-gradient(0deg, rgba(12, 15, 14, 0.58), transparent 70%);
}

.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  animation: image-arrive 1.1s ease-out both;
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  animation: content-arrive 0.7s 0.12s ease-out both;
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #fff;
  margin: 0 0 0.8rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 400;
  line-height: 0.95;
  margin: 0 0 0.7rem;
}

.hero-sub {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin: 0 0 1.7rem;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-credit {
  position: absolute;
  right: clamp(1.25rem, 5vw, 4rem);
  bottom: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #c63e23; }

.btn-light {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-light:hover { background: #fff; color: var(--ink); }

.section {
  width: min(100%, calc(var(--max) + 2rem));
  margin: 0 auto;
  padding: 6rem clamp(1.25rem, 5vw, 4rem);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

h2 {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}

.section-kicker {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.feed-label { margin: 0 0 0.25rem; color: var(--muted); font-size: 0.9rem; }
.feed-label a { color: var(--ink); text-underline-offset: 3px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  background: #dfe1dc;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-tile:hover img { transform: scale(1.035); }

.gallery-tile:not(.gallery-tile--sample)::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.48));
}

.tile-caption {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 2.5rem 1rem 0.8rem;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-tile:hover .tile-caption,
.gallery-tile:focus-visible .tile-caption { opacity: 1; }

.gallery-tile--sample img { transition: transform 0.55s ease; }

.feed-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) 1fr;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.6rem;
  background: rgba(23, 25, 24, 0.78);
  color: #fff;
  font-size: 0.7rem;
}

.about-text { max-width: 570px; }
.about-text h2 { max-width: 9ch; margin-bottom: 1.5rem; }
.about-text p:not(.section-kicker) { max-width: 52ch; color: var(--muted); }
.about-signature { margin-top: 1.5rem; color: var(--ink) !important; font-family: var(--serif); font-size: 1.5rem; }

.contact {
  width: 100%;
  max-width: none;
  border-top: 1px solid var(--line);
  text-align: center;
}

.contact > * { max-width: 680px; margin-left: auto; margin-right: auto; }
.contact-sub { color: var(--muted); margin-top: 1rem; margin-bottom: 1.8rem; }

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.contact-link { color: var(--ink); text-underline-offset: 4px; }
.contact-link:hover { color: var(--accent); }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: min(100%, calc(var(--max) + 2rem));
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem) 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@keyframes image-arrive {
  from { transform: scale(1.035); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes content-arrive {
  from { transform: translateY(14px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 760px) {
  .hero { min-height: 76svh; padding: 8rem 1.5rem 4rem; }
  .hero-image { object-position: 58% center; }
  .hero-title { font-size: 6rem; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; }
  .section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .about-grid { grid-template-columns: minmax(0, 0.9fr) 1.1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  .site-header { padding: 1.2rem 1.1rem; }
  .brand { font-size: 1.45rem; }
  .site-nav { gap: 0.85rem; font-size: 0.82rem; }
  .site-nav a:first-child,
  .site-nav a:nth-child(2) { display: none; }
  .site-nav .nav-cta { padding: 0.45rem 0.65rem; }
  .hero { min-height: 72svh; padding: 7rem 1.25rem 4rem; }
  .hero-image { object-position: 56% center; }
  .hero-title { font-size: 4.5rem; }
  .hero-sub { max-width: 25ch; font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 280px); }
  .hero-credit { right: 1rem; bottom: 0.65rem; }
  .section { padding: 3.75rem 1.1rem; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 1.5rem; }
  h2 { font-size: 2.8rem; }
  .gallery { gap: 0.55rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-wrap { max-width: 360px; }
  .about-text h2 { max-width: 11ch; }
  .contact { padding-left: 1.25rem; padding-right: 1.25rem; }
  .site-footer { padding-right: 1.1rem; padding-left: 1.1rem; }
}

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

.site-header {
  width: 100%;
  max-width: 1600px;
  padding-top: 1.65rem;
  padding-bottom: 1.65rem;
}

.brand {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand span { color: #d3ee72; }
.site-nav { gap: 2.2rem; }
.site-nav .nav-cta { border-color: rgba(255, 255, 255, 0.68); }
.site-nav .nav-cta span { margin-left: 0.25rem; }

.hero {
  min-height: min(900px, 92svh);
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.hero::after {
  background: linear-gradient(90deg, rgba(16, 18, 15, 0.66), rgba(16, 18, 15, 0.12) 76%),
    linear-gradient(0deg, rgba(16, 18, 15, 0.48), transparent 66%);
}

.hero-image { object-position: center 30%; }
.hero-kicker { letter-spacing: 0.11em; }
.hero-title { font-size: 8.25rem; }
.hero-sub { max-width: 36ch; }
.hero-credit { text-decoration: none; }
.hero-credit:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.btn { gap: 0.55rem; }
.btn-primary { background: #c5e66a; color: #171816; }
.btn-primary:hover { background: #d7f58a; }

.section { padding-top: 7rem; padding-bottom: 7rem; }
h2 { max-width: 14ch; font-size: 3.8rem; }
.section-kicker { color: var(--accent); letter-spacing: 0.12em; }
.section-head { align-items: end; margin-bottom: 2.7rem; }
.section-head h2 { max-width: 12ch; }
.feed-label { text-decoration: none; }
.feed-label:hover { color: var(--accent); }

.gallery { gap: 1rem; }
.gallery-tile {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  aspect-ratio: 4 / 5;
  background: #d7cfc2;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
}
.gallery-tile:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.gallery-tile img { object-position: center; }
.gallery-tile::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(15, 16, 14, 0.68));
  opacity: 0.72;
  transition: opacity 0.25s;
}
.gallery-tile:hover::after { opacity: 1; }
.tile-caption {
  opacity: 1;
  padding: 2.5rem 1rem 0.9rem;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.text-link { margin-top: 1.35rem; }

.about { background: #e9e2d7; }
.about-grid { gap: clamp(2rem, 7vw, 6rem); }
.about-image { aspect-ratio: 4 / 5; }
.image-note {
  padding: 0.5rem 0.75rem;
  background: var(--ink);
  text-decoration: none;
}
.image-note:hover { background: var(--accent); }
.about-text h2 { max-width: 10ch; }
.about-text p:not(.section-kicker) { color: #514c46; }
.about-signature { font-style: italic; }

.toolkit { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
.toolkit-intro h2 { max-width: 9ch; }
.toolkit-intro > p:last-child { max-width: 34ch; color: var(--muted); }
.toolkit-list article { padding: 1.3rem 0 1.4rem; border-top: 1px solid var(--line); }
.toolkit-list article:last-child { border-bottom: 1px solid var(--line); }
.toolkit-list article > span { color: var(--accent); font-size: 0.74rem; }
.toolkit-list h3 { margin: 0.45rem 0 0.25rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.toolkit-list p { max-width: 52ch; margin: 0; color: var(--muted); font-size: 0.92rem; }

.contact {
  padding-top: 7rem;
  padding-bottom: 7rem;
  border-top: 0;
  background: #20231e;
  color: #f2eee6;
}
.contact .section-kicker { color: #d3ee72; }
.contact h2 { max-width: none; }
.contact-sub { max-width: 52ch; color: rgba(242, 238, 230, 0.72); }
.contact-facts {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin: 0 auto 2rem;
  color: rgba(242, 238, 230, 0.84);
  font-size: 0.82rem;
}
.contact-facts span + span::before { content: "/"; margin-right: 1.8rem; color: #d3ee72; }
.contact-links { gap: 0.75rem; }
.contact .btn-light { border-color: rgba(242, 238, 230, 0.6); }
.contact .btn-light:hover { background: #f2eee6; }

.site-footer { max-width: none; width: 100%; padding-top: 1.5rem; }
.footer-links { display: flex; gap: 1.25rem; }
.site-footer a { text-underline-offset: 3px; }

@media (max-width: 760px) {
  .hero { min-height: 82svh; }
  .hero-title { font-size: 6rem; }
  .section { padding-top: 5rem; padding-bottom: 5rem; }
  .toolkit { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  .site-header { padding: 1.2rem 1.1rem; }
  .brand { font-size: 0.95rem; }
  .site-nav { gap: 0.95rem; font-size: 0.78rem; }
  .site-nav a:first-child,
  .site-nav a:nth-child(2) { display: inline; }
  .site-nav .nav-cta { padding: 0.45rem 0.55rem; }
  .hero { min-height: 78svh; padding: 7rem 1.25rem 4.25rem; }
  .hero-image { object-position: 54% center; }
  .hero-title { font-size: 4.5rem; }
  .hero-sub { max-width: 28ch; }
  .hero-actions { flex-direction: row; width: auto; }
  .hero-actions .btn { min-height: 44px; padding: 0.55rem 0.72rem; font-size: 0.8rem; }
  .hero-credit { max-width: 50%; text-align: right; }
  .section { padding: 4rem 1.1rem; }
  .section-head h2, h2 { font-size: 2.8rem; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
  .gallery-tile { aspect-ratio: 3 / 4; }
  .tile-caption { font-size: 1.05rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 420px; }
  .toolkit { gap: 1.5rem; }
  .contact { padding: 4.5rem 1.25rem; }
  .contact-facts { gap: 0.55rem 1rem; font-size: 0.76rem; }
  .contact-facts span + span::before { margin-right: 1rem; }
  .contact-links { align-items: stretch; flex-direction: column; width: min(100%, 300px); }
  .site-footer { padding: 1.25rem 1.1rem 1.5rem; }
}

.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 4.5rem clamp(3.5rem, 8vw, 8rem) 3rem;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #f2eee6;
  overscroll-behavior: contain;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
}

.lightbox::backdrop { background: rgba(12, 13, 12, 0.94); }
.lightbox-figure { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; min-width: 0; margin: 0; }
.lightbox-figure img { display: block; width: auto; max-width: 100%; height: auto; max-height: calc(100dvh - 9rem); object-fit: contain; }
.lightbox-figure figcaption { color: rgba(242, 238, 230, 0.86); font-family: var(--serif); font-size: 1.35rem; text-align: center; }

.lightbox button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(242, 238, 230, 0.58);
  background: rgba(20, 21, 20, 0.4);
  color: #f2eee6;
  font: inherit;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lightbox button:hover { background: #f2eee6; color: var(--ink); }
.lightbox button:focus-visible { outline: 2px solid #c5e66a; outline-offset: 4px; }
.lightbox .lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 1.9rem; }

@media (max-width: 520px) {
  .lightbox { padding: 4.5rem 0.65rem 2rem; }
  .lightbox[open] { grid-template-columns: 40px minmax(0, 1fr) 40px; gap: 0.35rem; }
  .lightbox button { width: 40px; height: 40px; }
  .lightbox .lightbox-close { top: 1rem; right: 1rem; }
  .lightbox-figure img { max-height: calc(100dvh - 9rem); }
}

