:root {
  --text: #ffffff;
  --button-border: rgba(255, 255, 255, 0.9);
  --gutter: clamp(20px, 5vw, 64px);
  --nav-gap: clamp(12px, 2vw, 24px);
}

header,
.site-header,
.nav,
.navigation,
.header-container {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #101010;
}

body {
  font-family: Arial, sans-serif;
}

a {
  color: inherit;
}

.embed-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--text);
}

.embed-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  will-change: opacity;
}

.embed-image.is-visible {
  opacity: 1;
}

.embed-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: #d8d8d8;
}

.embed-video.is-ready {
  opacity: 1;
}

.embed-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.embed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.12) 30%,
    rgba(0, 0, 0, 0.18) 100%
  );
  z-index: 1;
}

.embed-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px var(--gutter);
  flex-wrap: wrap;
}

.brand {
  font-family: inherit;
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: var(--nav-gap);
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a.is-active {
  text-decoration: underline;
  text-underline-offset: 0.28em;
}

.book-link {
  border: 1px solid var(--button-border);
  padding: 8px 12px;
}

.gallery-section {
  position: relative;
  z-index: 3;
  width: 100%;
  background: #f4efe8;
  color: #1c1814;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 64px);
}

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

.gallery-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.gallery-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-copy {
  margin: 0;
  max-width: 520px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
}

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

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #d9d0c4;
  min-height: 260px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card.tall {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 7;
}

.gallery-card.square {
  grid-column: span 4;
}

.gallery-card.medium {
  grid-column: span 8;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide,
  .gallery-card.square,
  .gallery-card.medium {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .gallery-section {
    padding-bottom: 40px;
  }

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

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide,
  .gallery-card.square,
  .gallery-card.medium {
    grid-column: span 1;
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  .embed-nav {
    align-items: flex-start;
    padding-top: 24px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .embed-nav {
    gap: 16px;
  }

  .nav-links {
    gap: 10px 14px;
  }

  .nav-links a {
    font-size: 14px;
  }
}
