:root {
  --black: #070707;
  --ink: #151515;
  --muted: #626262;
  --line: #dedede;
  --paper: #f7f4ef;
  --white: #ffffff;
  --red: #e00000;
  --deep-red: #970000;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 36px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.36rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
}

.brand span {
  display: inline-block;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav a {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible,
.brand:hover,
.brand:focus-visible {
  color: rgba(255, 255, 255, 0.72);
  outline: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  min-height: 94svh;
  overflow: hidden;
  padding: 132px 36px 82px;
  color: var(--white);
  background: var(--black);
}

.hero::before,
.hero::after,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 46%);
}

.hero::after {
  z-index: -1;
  background: rgba(0, 0, 0, 0.06);
}

.hero-slides {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 800ms ease,
    transform 5200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-slide:nth-child(2) img {
  object-position: center 38%;
}

.hero-slide:nth-child(3) img {
  object-position: center 54%;
}

.hero-slide:nth-child(4) img {
  object-position: center 34%;
}

.hero-slide:nth-child(5) img {
  object-position: center 36%;
}

.hero-content {
  min-width: 0;
  position: relative;
  grid-column: 1;
  align-self: center;
  margin-top: clamp(18px, 2.8vh, 34px);
  max-width: 600px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--white);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 6.8rem;
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: 4.2rem;
  line-height: 0.98;
  font-weight: 900;
}

h3 {
  margin: 16px 0 10px;
  font-size: 1.16rem;
  line-height: 1.12;
}

.tagline {
  margin: 16px 0 0;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-statement {
  max-width: 500px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  min-width: 176px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.button-primary,
.button-submit {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-submit:hover,
.button-submit:focus-visible {
  background: var(--deep-red);
  border-color: var(--deep-red);
}

.button-secondary {
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero-feature {
  display: none;
  min-width: 0;
  align-self: end;
  margin-bottom: 108px;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.42);
}

.hero-feature span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-feature strong {
  display: block;
  font-size: 1.42rem;
  line-height: 1.08;
}

.hero-feature p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.hero-controls {
  position: absolute;
  left: 36px;
  bottom: 36px;
  display: none;
  align-items: center;
  gap: 10px;
}

.hero-control,
.hero-dot {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  cursor: pointer;
}

.hero-control {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 850;
}

.hero-control:hover,
.hero-control:focus-visible,
.hero-dot:hover,
.hero-dot:focus-visible {
  border-color: var(--white);
  background: var(--red);
  outline: none;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
}

.hero-dot.is-active {
  width: 54px;
  border-color: var(--red);
  background: var(--red);
}

.hero-meta {
  display: none;
  position: absolute;
  right: 36px;
  bottom: 36px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 420px;
}

.hero-meta span {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 750;
}

.intro-section,
.reserve-section,
.social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  padding: 92px 36px;
}

.intro-section,
.reserve-section,
.gallery-section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.intro-copy,
.reserve-copy,
.social-section > div {
  min-width: 0;
  max-width: 640px;
}

.intro-copy p:last-child,
.reserve-copy p:last-child,
.product-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.principles {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principles article {
  min-height: 248px;
  padding: 26px;
  background: var(--paper);
}

.principles span {
  color: var(--red);
  font-weight: 900;
}

.principles p {
  margin: 0;
  color: var(--muted);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  background: var(--white);
}

.product-section figure {
  min-height: 620px;
  margin: 0;
  background: var(--white);
}

.product-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 36px;
}

.gallery-section {
  padding: 92px 36px;
  background: var(--paper);
}

.gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 36px;
}

.gallery-header > div,
.gallery-header-copy,
.gallery-header-copy p {
  min-width: 0;
}

.gallery-header-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--deep-red);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red);
  outline: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, 28vw);
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 54%);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.gallery-item-copy {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.gallery-item-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 4px;
  padding: 5px 8px;
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-item-copy h3 {
  max-width: 16rem;
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.06;
}

.inquiry-form {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: start;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 650;
  outline: none;
}

input,
select {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 128px;
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 0, 0, 0.12);
}

.full-width,
.button-submit,
.form-note {
  grid-column: 1 / -1;
}

.button-submit {
  min-height: 54px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note a {
  color: var(--deep-red);
  font-weight: 850;
}

.social-section {
  align-items: end;
  background: var(--black);
  color: var(--white);
}

.social-section .eyebrow {
  color: var(--red);
}

.social-links {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a {
  display: grid;
  min-height: 168px;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  background: var(--black);
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--deep-red);
  outline: none;
}

.social-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: var(--white);
}

.social-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.social-icon rect,
.social-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 750;
}

.social-links strong {
  overflow-wrap: anywhere;
  font-size: 1.28rem;
  line-height: 1.1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 36px;
  background: var(--white);
  color: var(--black);
}

.site-footer img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.site-footer a {
  color: var(--muted);
  font-weight: 850;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--deep-red);
  outline: none;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 68svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 136px 36px 54px;
  color: var(--white);
  background: var(--black);
}

.page-hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 54%);
}

.page-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-hero-content {
  width: 100%;
  max-width: 720px;
}

.page-hero h1 {
  margin: 0;
  font-size: 5.4rem;
  line-height: 0.94;
  font-weight: 900;
}

.page-hero p:not(.eyebrow) {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.gallery-archive {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 36px 96px;
}

.archive-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.archive-header h2 {
  font-size: 2rem;
}

.archive-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.archive-item {
  display: block;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: var(--black);
}

.archive-item:nth-child(8n + 4),
.archive-item:nth-child(13n + 9) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.archive-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.archive-item:hover img,
.archive-item:focus-visible img {
  transform: scale(1.035);
}

.archive-item:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 36px 96px;
}

.legal-intro {
  min-width: 0;
}

.legal-intro h2 {
  font-size: 2.2rem;
}

.legal-intro p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content {
  min-width: 0;
}

.legal-content article {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-content article + article {
  padding-top: 28px;
}

.legal-content h2,
.legal-content h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.contact-panel {
  min-width: 0;
  align-self: start;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-row {
  display: grid;
  gap: 4px;
  padding: 22px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-row strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 1.15rem;
}

.contact-row:hover,
.contact-row:focus-visible {
  background: var(--paper);
  outline: none;
}

@media (min-width: 981px) {
  .hero-content {
    margin-top: calc(clamp(18px, 2.8vh, 34px) + 2cm);
  }
}

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

  nav {
    gap: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 94svh;
    padding: 112px 22px 70px;
  }

  .hero-feature {
    max-width: 460px;
    margin-bottom: 96px;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .intro-section,
  .reserve-section,
  .social-section,
  .product-section {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .reserve-section,
  .social-section,
  .gallery-section,
  .gallery-archive {
    padding-left: 22px;
    padding-right: 22px;
  }

  .gallery-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(300px, 48vw);
  }

  .principles,
  .social-links {
    grid-template-columns: 1fr;
  }

  .product-section figure {
    min-height: 520px;
  }

  .page-hero {
    padding: 120px 22px 48px;
  }

  .page-hero h1 {
    font-size: 4rem;
  }

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15.5px;
  }

  .site-header {
    align-items: center;
    gap: 14px;
    padding: 18px;
  }

  .brand {
    font-size: 1.18rem;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
  }

  nav a {
    font-size: 0.72rem;
  }

  nav a:first-child,
  nav a:last-child {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: end;
    min-height: 92svh;
    padding: 88px 18px 86px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62) 58%, rgba(0, 0, 0, 0.2)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
  }

  .hero-slide img {
    object-position: 32% center;
  }

  .hero-content {
    width: 100%;
    max-width: 18rem;
    margin-top: 18px;
    padding-bottom: 0;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.2rem;
    line-height: 1.04;
  }

  .tagline {
    margin-top: 12px;
    font-size: 1.24rem;
  }

  .hero-statement {
    width: auto;
    max-width: 17.5rem;
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 17.5rem;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-feature,
  .hero-meta {
    display: none;
  }

  .hero-controls {
    display: none;
  }

  .hero-control {
    display: none;
  }

  .hero-dot {
    width: 24px;
    height: 5px;
    border-radius: 0;
  }

  .hero-dot.is-active {
    width: 40px;
  }

  .intro-copy,
  .reserve-copy,
  .social-section > div,
  .gallery-header > div,
  .gallery-header-copy,
  .gallery-header-copy p {
    max-width: 100%;
  }

  .intro-section,
  .reserve-section,
  .social-section,
  .gallery-section {
    gap: 32px;
    padding: 66px 18px;
  }

  .intro-section {
    padding-top: 42px;
  }

  .intro-copy p:last-child,
  .reserve-copy p:last-child,
  .product-copy p,
  .gallery-header-copy p {
    font-size: 1rem;
  }

  .principles article {
    min-height: 0;
    padding: 22px;
  }

  .product-section figure {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .product-copy {
    padding: 58px 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 8px;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-item-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .social-links a {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    align-content: center;
    column-gap: 14px;
    row-gap: 4px;
    padding: 18px;
  }

  .social-icon {
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
  }

  .social-icon svg {
    width: 22px;
    height: 22px;
  }

  .social-links strong {
    font-size: 1.08rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px;
  }

  .footer-links {
    gap: 12px;
  }

  .page-hero {
    min-height: 64svh;
    padding: 110px 18px 42px;
  }

  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 62%, rgba(0, 0, 0, 0.2)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 58%);
  }

  .page-hero h1 {
    font-size: 3.15rem;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .gallery-archive {
    padding: 50px 18px 72px;
  }

  .archive-header {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
  }

  .archive-header h2 {
    font-size: 1.6rem;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .archive-item:nth-child(8n + 4),
  .archive-item:nth-child(13n + 9) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 54px 18px 72px;
  }

  .legal-intro h2 {
    font-size: 1.8rem;
  }

  .contact-row {
    padding: 18px;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 10px;
  }

  nav {
    gap: 10px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2.75rem;
  }
}

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

  .hero-slide,
  .gallery-item img,
  .archive-item img,
  .button {
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
