:root {
  --bg: #f6f0e7;
  --paper: rgba(246, 240, 231, 0.74);
  --ink: #152019;
  --muted: #5a6a5d;
  --accent: #8b5a3c;
  --accent-soft: #d7b492;
  --line: rgba(21, 32, 25, 0.12);
  --shadow: 0 26px 60px rgba(16, 19, 17, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 180, 146, 0.24), transparent 32%),
    linear-gradient(180deg, #f8f5ef 0%, #f1eadf 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
}

.site-footer {
  padding: 28px 38px 42px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 38px;
  backdrop-filter: blur(14px);
  background: rgba(246, 240, 231, 0.56);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brandmark-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brandmark-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.brandmark-kicker,
.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.brandmark-kicker,
.section-label {
  color: var(--muted);
}

.brandmark-name,
h1,
h2 {
  font-family: Baskerville, "Times New Roman", serif;
}

.brandmark-name {
  font-size: 1.7rem;
}

.site-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  padding-bottom: 4px;
  color: var(--muted);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 112px 38px 52px;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.hero::before {
  width: 240px;
  height: 240px;
  right: -60px;
  top: 120px;
  background: rgba(215, 180, 146, 0.26);
  animation: drift 9s ease-in-out infinite;
}

.hero::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: 60px;
  background: rgba(255, 247, 241, 0.18);
  animation: drift 11s ease-in-out infinite reverse;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 34vh;
  background: linear-gradient(180deg, transparent, rgba(15, 20, 17, 0.22));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  color: #fffaf6;
  text-align: center;
  animation: rise 900ms ease-out both;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 248, 241, 0.8);
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5.3vw, 4.75rem);
  line-height: 0.98;
  max-width: none;
  margin-inline: auto;
}

.hero-body {
  max-width: none;
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  padding: 13px 20px;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button-primary {
  background: rgba(246, 240, 231, 0.92);
  color: var(--ink);
}

.button-secondary {
  border: 1px solid rgba(246, 240, 231, 0.72);
  color: #fffaf6;
}

.button-primary:hover,
.button-secondary:hover,
.collection-link:hover,
.link-list a:hover,
.contact-link:hover {
  transform: translateY(-2px);
}

.section-grid,
.image-band,
.essay-layout,
.collection-grid,
.masonry-grid,
.contact-panel {
  padding: 88px 38px;
}

.section-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
}

.section-copy h2,
.image-band-copy h2,
.essay-card h2,
.contact-panel h2,
.collection-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.section-copy p:not(.section-label),
.image-band-copy p:not(.section-label),
.essay-card p,
.contact-panel p,
.collection-copy p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}

.feature-panel,
.essay-card,
.contact-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.feature-line:last-child {
  border-bottom: 0;
}

.image-band {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: center;
}

.image-band-panel {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.image-band-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.image-band-panel:hover img {
  transform: scale(1.05);
}

.section-grid-last {
  padding-top: 12px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.link-list a,
.contact-link {
  font-family: Baskerville, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.essay-layout {
  max-width: 920px;
  margin: 0 auto;
}

.about-decoration {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.about-decoration img {
  width: min(100%, 360px);
  object-fit: contain;
  opacity: 0.94;
}

.essay-card p:first-of-type {
  margin-top: 24px;
}

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

.collection-card {
  min-height: 100%;
}

.collection-link {
  display: grid;
  gap: 18px;
}

.collection-stack {
  position: relative;
  min-height: 360px;
}

.collection-stack img {
  position: absolute;
  width: 68%;
  height: 78%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.collection-stack .collection-preview-video {
  position: absolute;
  width: 68%;
  height: 78%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
  background: #121212;
}

.collection-stack img:nth-child(1) {
  left: 0;
  top: 0;
}

.collection-stack > :nth-child(1) {
  left: 0;
  top: 0;
}

.collection-stack img:nth-child(2) {
  right: 0;
  top: 42px;
}

.collection-stack > :nth-child(2) {
  right: 0;
  top: 42px;
}

.collection-stack img:nth-child(3) {
  left: 18%;
  bottom: 0;
}

.collection-stack > :nth-child(3) {
  left: 18%;
  bottom: 0;
}

.collection-link:hover .collection-stack img:nth-child(1) {
  transform: rotate(-3deg) translateY(-4px);
}

.collection-link:hover .collection-stack > :nth-child(1) {
  transform: rotate(-3deg) translateY(-4px);
}

.collection-link:hover .collection-stack img:nth-child(2) {
  transform: rotate(3deg) translateY(-6px);
}

.collection-link:hover .collection-stack > :nth-child(2) {
  transform: rotate(3deg) translateY(-6px);
}

.collection-link:hover .collection-stack img:nth-child(3) {
  transform: translateY(-8px);
}

.collection-link:hover .collection-stack > :nth-child(3) {
  transform: translateY(-8px);
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 22px;
}

.photo-tile {
  break-inside: avoid;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.photo-tile img {
  width: 100%;
  transition: transform 360ms ease;
}

.media-tile {
  display: block;
  width: 100%;
  background: #000;
  transition: transform 360ms ease;
}

.photo-tile:hover img {
  transform: scale(1.04);
}

.photo-tile:hover .media-tile {
  transform: scale(1.02);
}

.contact-panel {
  max-width: 740px;
  margin: 0 auto 88px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-16px) translateX(12px);
  }
}

@media (max-width: 960px) {
  .site-header {
    padding: 18px 22px;
  }

  .hero,
  .section-grid,
  .image-band,
  .essay-layout,
  .collection-grid,
  .masonry-grid,
  .contact-panel,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section-grid,
  .image-band,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-grid {
    gap: 42px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    gap: 14px;
  }

  .brandmark {
    gap: 10px;
  }

  .brandmark-logo {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 168px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.02;
    max-width: 9ch;
  }

  .hero-body {
    max-width: 22rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .feature-line {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
