/* =========================================================
   DANI — V4
   MAIN STYLESHEET
========================================================= */

* {
  box-sizing: border-box;
}

:root {
  --bg: #f4efe9;
  --surface: #ebe4dc;
  --text: #211b20;
  --muted: #756b70;
  --line: rgba(33, 27, 32, 0.14);
  --accent: #9b6678;
  --accent-light: #d5b7bf;
  --shadow: 0 25px 70px rgba(32, 23, 27, 0.13);
}

body.dark {
  --bg: #17131a;
  --surface: #211b22;
  --text: #f3ece8;
  --muted: #b9aeb2;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #d59bad;
  --accent-light: #72505c;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   BASE
========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
}

/* =========================================================
   GRAIN
========================================================= */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  height: 82px;
  padding: 0 5vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 15;

  border-bottom: 1px solid var(--line);

  background: color-mix(
    in srgb,
    var(--bg) 88%,
    transparent
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);
  border-radius: 50%;

  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  gap: 32px;

  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--text);
}

.theme-toggle {
  width: 38px;
  height: 38px;

  border: 1px solid var(--line);
  border-radius: 50%;

  background: none;
  color: var(--text);

  cursor: pointer;
  font-size: 1rem;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.theme-toggle:hover {
  background: var(--surface);
  transform: rotate(10deg);
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow {
  margin: 0;

  color: var(--accent);

  font-size: 0.69rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.2em;
}

h1,
h2 {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.9;
}

h1 {
  font-size: clamp(5rem, 10vw, 9rem);
  letter-spacing: -0.04em;
}

h1 em,
h2 em {
  color: var(--accent);
  font-weight: 500;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: calc(100vh - 82px);

  padding: 8vh 7vw 10vh;

  position: relative;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;

  gap: 4vw;

  overflow: hidden;
}

.hero-background-text {
  position: absolute;

  left: -0.04em;
  bottom: -0.16em;

  z-index: 0;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14rem, 30vw, 32rem);
  font-weight: 700;
  line-height: 0.7;

  letter-spacing: -0.08em;

  color: var(--accent);
  opacity: 0.055;

  pointer-events: none;
  user-select: none;
}

.hero-copy {
  position: relative;
  z-index: 5;

  padding-bottom: 5vh;
}

.hero-copy .eyebrow {
  margin-bottom: 25px;
}

.hero h1 {
  display: flex;
  flex-direction: column;

  font-size: clamp(5.5rem, 10vw, 10rem);
  line-height: 0.72;
  letter-spacing: -0.065em;
}

.hero h1 em {
  margin-left: 0.32em;
}

.hero-text {
  max-width: 400px;

  margin: 40px 0 32px;

  color: var(--muted);

  font-size: 0.9rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  padding: 14px 20px;

  border: 1px solid var(--line);

  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.button.primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.button.primary:hover,
.button.ghost:hover {
  transform: translateY(-3px);
}

.button.primary:hover {
  box-shadow: var(--shadow);
}

.button.ghost:hover {
  background: var(--surface);
}

/* =========================================================
   HERO ART
========================================================= */

.hero-art {
  position: relative;
  z-index: 3;

  width: min(100%, 650px);

  justify-self: end;

  aspect-ratio: 0.95 / 1;
}

.hero-photo-shadow {
  position: absolute;

  width: 70%;
  height: 87%;

  right: 12%;
  top: 8%;

  background: var(--accent-light);

  opacity: 0.5;

  transform: rotate(-5deg);
}

.hero-frame {
  position: absolute;

  width: 72%;
  height: 88%;

  right: 7%;
  top: 5%;

  padding: 10px;

  background: #f7f2ed;

  box-shadow:
    0 30px 70px rgba(30, 20, 25, 0.2);

  transform: rotate(3deg);

  transition:
    transform 0.7s ease,
    box-shadow 0.7s ease;
}

.hero-frame:hover {
  transform: rotate(0deg) translateY(-8px);

  box-shadow:
    0 40px 90px rgba(30, 20, 25, 0.25);
}

.hero-frame img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.hero-frame:hover img {
  transform: scale(1.035);
}

.hero-frame::after {
  content: "";

  position: absolute;
  inset: 10px;

  background:
    linear-gradient(
      to bottom,
      transparent 55%,
      rgba(0, 0, 0, 0.62)
    );

  pointer-events: none;
}

.hero-caption {
  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 25px;

  z-index: 2;

  display: flex;
  justify-content: space-between;

  color: white;

  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

/* =========================================================
   HERO NOTES
========================================================= */

.hero-note {
  position: absolute;
  z-index: 6;

  display: flex;
  flex-direction: column;

  color: var(--muted);

  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.note-one {
  left: 0;
  top: 16%;

  transform: rotate(-7deg);
}

.note-one span {
  font-family: "Cormorant Garamond", serif;

  font-size: 3rem;
  line-height: 0.8;

  color: var(--accent);
}

.note-one small {
  margin-top: 8px;
}

.note-two {
  right: 0;
  bottom: 10%;

  padding: 10px 13px;

  border: 1px solid var(--line);

  background: var(--bg);

  transform: rotate(6deg);
}

.hero-stamp {
  position: absolute;

  left: 13%;
  bottom: 6%;

  z-index: 8;

  width: 82px;
  height: 82px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--accent);
  border-radius: 50%;

  background: color-mix(
    in srgb,
    var(--bg) 85%,
    transparent
  );

  color: var(--accent);

  transform: rotate(-13deg);
}

.hero-stamp span {
  font-family: "Cormorant Garamond", serif;

  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stamp small {
  margin-top: 4px;

  font-size: 0.42rem;
  letter-spacing: 0.18em;
}

.hero-scroll {
  position: absolute;

  left: 7vw;
  bottom: 32px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--muted);

  font-size: 0.58rem;
  letter-spacing: 0.18em;
}

.hero-scroll span {
  animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* =========================================================
   INTRO
========================================================= */

.intro {
  padding: 13vh 12vw;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  text-align: center;
}

.intro h2,
.section-heading h2,
.about-copy h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.intro > p:last-child {
  max-width: 620px;

  margin: 28px auto 0;

  color: var(--muted);
}

/* =========================================================
   SECTIONS
========================================================= */

.gallery-section,
.video-section {
  padding: 12vh 7vw;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 45px;
}

.section-note {
  max-width: 310px;

  margin: 0;

  color: var(--muted);

  font-size: 0.82rem;
}

/* =========================================================
   GALLERY FILTERS
========================================================= */

.filters {
  display: flex;
  gap: 22px;

  margin-bottom: 30px;

  border-bottom: 1px solid var(--line);
}

.filter {
  padding: 0 0 13px;

  border: 0;
  border-bottom: 1px solid transparent;

  background: none;

  color: var(--muted);

  cursor: pointer;

  font-size: 0.65rem;

  text-transform: uppercase;
  letter-spacing: 0.12em;

  transition: color 0.2s ease;
}

.filter:hover {
  color: var(--text);
}

.filter span {
  margin-left: 5px;

  font-size: 0.55rem;
}

.filter.active {
  color: var(--text);
  border-color: var(--accent);
}

/* =========================================================
   GALLERY
========================================================= */

.gallery {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  grid-auto-rows: 320px;

  gap: 20px;

  align-items: stretch;
}

.photo-card {
  position: relative;

  min-width: 0;

  overflow: hidden;

  background: var(--surface);

  cursor: pointer;

  isolation: isolate;

  transform: translateY(0);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.photo-card.tall {
  grid-row: span 2;
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 25px 55px rgba(30, 20, 25, 0.14);
}

.photo-placeholder {
  width: 100%;
  height: 100%;

  overflow: hidden;

  background: var(--surface);
}

.photo-placeholder img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(.2, .7, .2, 1),
    filter 0.5s ease;
}

.photo-card:hover .photo-placeholder img {
  transform: scale(1.055);

  filter: saturate(1.05);
}

.photo-card::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      to top,
      rgba(10, 8, 12, 0.72),
      rgba(10, 8, 12, 0.08) 55%,
      transparent
    );

  opacity: 0.8;

  pointer-events: none;

  transition: opacity 0.4s ease;
}

.photo-card:hover::after {
  opacity: 1;
}

.photo-meta {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 4;

  padding: 22px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  color: #fff;

  pointer-events: none;

  transform: translateY(4px);

  transition: transform 0.4s ease;
}

.photo-card:hover .photo-meta {
  transform: translateY(0);
}

.photo-meta strong {
  font-family: "Cormorant Garamond", serif;

  font-size: 1.5rem;
  font-weight: 500;

  line-height: 1;
}

.photo-meta span {
  font-size: 0.58rem;

  letter-spacing: 0.15em;

  opacity: 0.75;
}

.photo-card.hide {
  display: none;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section {
  min-height: 760px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  background: var(--surface);

  overflow: hidden;
}

.about-image {
  position: relative;

  min-height: 700px;

  display: grid;
  place-items: center;

  overflow: hidden;
}

.about-image::before {
  content: "DANI";

  position: absolute;

  left: -0.05em;
  bottom: -0.12em;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(12rem, 24vw, 25rem);

  font-weight: 700;

  line-height: 0.7;

  color: var(--accent);

  opacity: 0.08;

  pointer-events: none;
}

.about-image-frame {
  position: relative;

  width: 68%;
  height: 78%;

  padding: 10px;

  background: #f7f2ed;

  box-shadow:
    0 30px 70px rgba(30, 20, 25, 0.18);

  transform: rotate(-3deg);

  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

.about-image-frame:hover {
  transform: rotate(0deg) translateY(-6px);

  box-shadow:
    0 40px 90px rgba(30, 20, 25, 0.25);
}

.about-image-frame img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.about-image-label {
  position: absolute;

  left: 25px;
  bottom: 22px;

  color: #fff;

  font-size: 0.58rem;
  letter-spacing: 0.16em;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-side-note {
  position: absolute;

  right: 8%;
  top: 15%;

  display: flex;
  flex-direction: column;

  color: var(--muted);

  transform: rotate(6deg);

  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.about-side-note span {
  font-family: "Cormorant Garamond", serif;

  font-size: 3.2rem;
  line-height: 0.8;

  color: var(--accent);
}

.about-side-note small {
  margin-top: 8px;

  font-size: 0.52rem;
}

.about-copy {
  padding: 10vw 8vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 {
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.84;
}

.about-description {
  max-width: 500px;

  margin: 35px 0 50px;

  color: var(--muted);

  font-size: 0.9rem;
  line-height: 1.85;
}

/* =========================================================
   FACTS
========================================================= */

.facts {
  max-width: 560px;

  display: grid;

  gap: 0;
}

.fact {
  display: grid;

  grid-template-columns: 45px 1fr;

  column-gap: 15px;

  padding: 18px 0;

  border-top: 1px solid var(--line);
}

.fact:last-child {
  border-bottom: 1px solid var(--line);
}

.fact-number {
  padding-top: 3px;

  color: var(--accent);

  font-size: 0.62rem;

  letter-spacing: 0.12em;
}

.fact strong {
  font-family: "Cormorant Garamond", serif;

  font-size: 1.5rem;
  font-weight: 600;
}

.fact p {
  margin: 4px 0 0;

  color: var(--muted);

  font-size: 0.75rem;
  line-height: 1.6;
}

/* =========================================================
   VIDEOS — EDITORIAL ARCHIVE
========================================================= */

.video-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 28px;
}

.video-card {
  min-width: 0;

  transition:
    transform 0.4s ease;
}

.video-card:hover {
  transform: translateY(-4px);
}

/* Video window */

.video-placeholder {
  position: relative;

  aspect-ratio: 16 / 10;

  min-height: 300px;

  display: grid;
  place-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(213, 155, 173, 0.34),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(155, 102, 120, 0.28),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      var(--surface),
      var(--accent-light)
    );

  cursor: default;

  isolation: isolate;

  transition:
    box-shadow 0.5s ease,
    transform 0.5s ease;
}

/* Soft texture */

.video-placeholder::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 45%,
      transparent 60%
    );

  transform: translateX(-100%);

  transition: transform 0.8s ease;

  pointer-events: none;

  z-index: 1;
}

.video-card:hover .video-placeholder::after {
  transform: translateX(100%);
}

/* Inner frame */

.video-placeholder::before {
  content: "";

  position: absolute;

  inset: 14px;

  border: 1px solid rgba(255, 255, 255, 0.4);

  pointer-events: none;

  z-index: 2;
}

/* Video number */

.video-number {
  position: absolute;

  top: 28px;
  left: 30px;

  z-index: 4;

  color: rgba(255, 255, 255, 0.75);

  font-size: 0.58rem;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

/* Play button */

.video-play {
  position: relative;

  z-index: 4;

  width: 70px;
  height: 70px;

  display: grid;
  place-items: center;

  padding-left: 4px;

  border: 1px solid rgba(255, 255, 255, 0.75);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);

  color: #fff;

  font-size: 0.95rem;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    transform 0.45s cubic-bezier(.2, .8, .2, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.video-card:hover .video-play {
  transform: scale(1.1);

  background: rgba(255, 255, 255, 0.14);

  box-shadow:
    0 10px 35px rgba(20, 12, 18, 0.2);
}

.video-play span {
  display: block;
  transform: translateX(2px);
}

/* Coming soon text */

.video-placeholder-text {
  position: absolute;

  left: 30px;
  bottom: 26px;

  z-index: 4;

  display: flex;
  flex-direction: column;

  color: #fff;

  text-transform: uppercase;

  letter-spacing: 0.15em;

  text-shadow:
    0 2px 15px rgba(0, 0, 0, 0.2);
}

.video-placeholder-text span {
  font-size: 0.68rem;
  font-weight: 500;
}

.video-placeholder-text small {
  margin-top: 5px;

  font-size: 0.5rem;

  opacity: 0.72;
}

/* Video information */

.video-info {
  display: grid;

  grid-template-columns: 35px 1fr;

  gap: 15px;

  padding: 19px 4px 18px;

  border-bottom: 1px solid var(--line);

  transition:
    padding 0.3s ease;
}

.video-card:hover .video-info {
  padding-left: 9px;
}

.video-info > span {
  padding-top: 3px;

  color: var(--accent);

  font-size: 0.6rem;

  letter-spacing: 0.12em;
}

.video-info strong {
  display: block;

  font-family: "Cormorant Garamond", serif;

  font-size: 1.4rem;

  font-weight: 600;

  line-height: 1.1;
}

.video-info small {
  display: block;

  margin-top: 5px;

  color: var(--muted);

  font-size: 0.6rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}

/* =========================================================
   CLOSING
========================================================= */

.closing {
  padding: 15vh 5vw;

  border-top: 1px solid var(--line);

  text-align: center;
}

.closing h2 {
  margin: 15px 0 35px;

  font-size: clamp(4rem, 8vw, 7rem);
}

/* =========================================================
   FOOTER
========================================================= */

footer {
  padding: 28px 7vw;

  display: flex;
  justify-content: space-between;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 0.6rem;

  letter-spacing: 0.15em;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
  position: fixed;
  inset: 0;

  z-index: 50;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 7vw;

  background: rgba(15, 12, 16, 0.94);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  width: min(900px, 88vw);

  position: relative;
}

.lightbox-photo {
  aspect-ratio: 4 / 5;

  display: grid;
  place-items: center;

  overflow: hidden;

  background: #211b22;

  color: #ddd;
}

.lightbox-photo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.lightbox-caption {
  padding-top: 14px;

  display: flex;
  justify-content: space-between;

  color: #fff;

  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;

  border: 0;

  background: none;

  color: #fff;

  cursor: pointer;
}

.lightbox-close {
  right: 30px;
  top: 20px;

  font-size: 2.5rem;

  z-index: 5;
}

.lightbox-nav {
  top: 50%;

  font-size: 4rem;

  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 3vw;
}

.lightbox-nav.next {
  right: 3vw;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

  nav {
    display: none;
  }

  .hero {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 55px;

    padding: 9vh 6vw 12vh;
  }

  .hero-background-text {
    font-size: 55vw;
    bottom: 28%;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(5rem, 20vw, 8rem);
  }

  .hero-art {
    width: 100%;
    max-width: 600px;

    justify-self: center;
  }

  .hero-frame {
    width: 76%;
    height: 90%;

    right: 9%;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-note {
    margin-top: 20px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    grid-auto-rows: 260px;

    gap: 18px;
  }

  .photo-card.tall {
    grid-row: span 2;
  }

  .photo-card.wide {
    grid-column: span 2;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 65vh;
  }

  .about-image-frame {
    width: 70%;
    height: 80%;
  }

  .about-side-note {
    right: 10%;
  }

  .about-copy {
    padding: 12vh 8vw;
  }

  .video-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }
}

/* =========================================================
   PHONE
========================================================= */

@media (max-width: 520px) {

  .site-header {
    padding: 0 5vw;
  }

  .hero {
    padding: 7vh 5vw 10vh;

    gap: 45px;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero h1 em {
    margin-left: 0.18em;
  }

  .hero-text {
    margin: 30px 0;
  }

  .hero-art {
    aspect-ratio: 0.9 / 1;
  }

  .hero-frame {
    width: 78%;
    height: 88%;
    right: 8%;
  }

  .hero-note.note-one {
    left: -2%;
  }

  .hero-note.note-two {
    right: -2%;
  }

  .hero-stamp {
    left: 5%;
    bottom: 5%;

    width: 68px;
    height: 68px;
  }

  .hero-stamp span {
    font-size: 1.35rem;
  }

  .gallery-section,
  .video-section {
    padding: 9vh 5vw;
  }

  .gallery {
    grid-template-columns: 1fr;

    grid-auto-rows: 330px;

    gap: 15px;
  }

  .photo-card.tall,
  .photo-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .intro {
    padding: 11vh 8vw;
  }

  .about-image {
    min-height: 520px;
  }

  .about-image-frame {
    width: 76%;
    height: 78%;
  }

  .about-side-note {
    right: 5%;
    top: 12%;
  }

  .about-side-note span {
    font-size: 2.5rem;
  }

  .about-copy {
    padding: 10vh 7vw;
  }

  .about-copy h2 {
    font-size: 4rem;
  }

  /* Video mobile */

  .video-grid {
    gap: 35px;
  }

  .video-placeholder {
    min-height: 220px;

    aspect-ratio: 16 / 10;
  }

  .video-placeholder::before {
    inset: 10px;
  }

  .video-number {
    top: 22px;
    left: 22px;
  }

  .video-play {
    width: 58px;
    height: 58px;
  }

  .video-placeholder-text {
    left: 22px;
    bottom: 20px;
  }

  .video-info {
    padding-top: 16px;
  }

  footer {
    padding: 25px 5vw;
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox-content {
    width: 100%;
  }

  .lightbox-nav {
    font-size: 3rem;
  }

  .lightbox-close {
    right: 18px;
    top: 12px;
  }
}