:root {
  --primary: #b48d95;
  --cream: #fff8f2;
  --ink: #2f2328;
  --nav-logo-height: 56px;
  --nav-logo-mobile-height: 42px;
  --shell-top-padding: 1.25rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

body.page-home {
  color: #fffaf8;
  font-family: "Mulish", sans-serif;
  overflow-x: hidden;
  background: #1c1217;
}

body.page-home .home-bg-gallery {
  position: fixed;
  inset: 0;
  z-index: 0;
}

body.page-home .home-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s ease, transform 5s ease;
}

body.page-home .home-bg-slide.is-active {
  opacity: 1;
  transform: scale(1.01);
}

body.page-home .home-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-home .home-bg-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(9, 5, 7, 0.74), rgba(9, 5, 7, 0.45) 45%, rgba(9, 5, 7, 0.74)),
    radial-gradient(circle at 80% 10%, rgba(180, 141, 149, 0.25), transparent 35%);
}

body.page-home .home-shell {
  width: min(1120px, 93vw);
  margin: 0 auto;
  padding: var(--shell-top-padding) 0 2.6rem;
  position: relative;
  z-index: 2;
}

body.page-home .home-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem 0;
}

body.page-home .home-brand img {
  width: auto;
  height: var(--nav-logo-height);
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.65));
}

body.page-home .home-menu {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.page-home .home-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.32rem 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  transition: color 0.2s ease, transform 0.2s ease;
}

body.page-home .home-menu a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

body.page-home .home-hero-wrap {
  min-height: calc(100vh - 7rem);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 1rem 0;
}

body.page-home .home-hero {
  width: min(46rem, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 0;
}

body.page-home .home-eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(180, 141, 149, 0.7);
  border-radius: 999px;
  padding: 0.38rem 1rem;
  background: rgba(180, 141, 149, 0.18);
  backdrop-filter: blur(4px);
}

body.page-home .home-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  max-width: 14ch;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.62);
}

body.page-home .home-title em {
  font-style: normal;
  color: var(--primary);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

body.page-home .home-lead {
  color: #fff;
  max-width: 46ch;
  line-height: 1.75;
  margin-bottom: 1.3rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

body.page-home .home-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

body.page-home .home-btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  border: 1px solid rgba(180, 141, 149, 0.45);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.page-home .home-btn-main {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

body.page-home .home-btn-alt {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  background: rgba(180, 141, 149, 0.12);
  border-color: rgba(180, 141, 149, 0.55);
  backdrop-filter: blur(4px);
}

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

body.page-home .home-btn-alt:hover {
  background: rgba(180, 141, 149, 0.25);
  border-color: var(--primary);
}

body.page-home .home-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.77rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.56);
}

body.page-home .home-meta span {
  position: relative;
  padding: 0.1rem 0.1rem 0.1rem 1rem;
}

body.page-home .home-meta span::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0.5rem;
  top: 0.68rem;
}

body.page-gallery,
body.page-pricing {
  color: var(--ink);
  font-family: "Mulish", sans-serif;
}

body.page-gallery {
  --primary-deep: #8f646e;
  --surface: #fffdfb;
  --muted: #725a62;
  --line: rgba(143, 100, 110, 0.22);
  --shadow: 0 18px 40px rgba(74, 46, 55, 0.12);
}

body.page-pricing {
  --primary-deep: #8f646e;
  --surface: #fffcf9;
  --muted: #725a62;
  --line: rgba(143, 100, 110, 0.22);
  --shadow: 0 18px 40px rgba(74, 46, 55, 0.12);
}

body.page-gallery,
body.page-pricing {
  background-color: #5f6f63;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.045) 1px, transparent 0),
    radial-gradient(circle at 14% 12%, rgba(180, 141, 149, 0.2), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.09), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(38, 54, 45, 0.34), transparent 42%),
    radial-gradient(145% 120% at 50% 50%, transparent 56%, rgba(20, 28, 23, 0.28) 100%),
    linear-gradient(140deg, #6d8072 0%, #5f6f63 46%, #4f5d53 100%);
  background-size: 3px 3px, auto, auto, auto, auto, auto;
  background-position: 0 0, center, center, center, center, center;
}

body.page-gallery .shell,
body.page-pricing .shell {
  width: min(1120px, 93vw);
  margin: 0 auto;
  padding: var(--shell-top-padding) 0 3rem;
}

body.page-gallery nav,
body.page-pricing nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem 0;
  margin-bottom: 1.2rem;
}

body.page-gallery .brand img,
body.page-pricing .brand img {
  width: auto;
  height: var(--nav-logo-height);
  display: block;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.65));
}

body.page-gallery .menu,
body.page-pricing .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

body.page-gallery .menu a,
body.page-pricing .menu a {
  text-decoration: none;
  color: #fff8f4;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.page-gallery .menu a[aria-current="page"],
body.page-pricing .menu a[aria-current="page"] {
  color: #ffe4ea;
  border-color: var(--primary);
}

body.page-gallery .menu a:hover,
body.page-pricing .menu a:hover {
  color: #ffe4ea;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

body.page-gallery .hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 1.2rem;
  text-align: center;
}

body.page-gallery .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

body.page-gallery h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 0.95;
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

body.page-gallery .lead {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.7;
}

body.page-gallery .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 1.1rem;
}

body.page-gallery .chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.page-gallery .chip:hover {
  transform: translateY(-1px);
}

body.page-gallery .chip.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

body.page-gallery .card {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(74, 46, 55, 0.08);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.55s ease, opacity 0.55s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.page-gallery .card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

body.page-gallery .card.is-hidden {
  display: none;
}

body.page-gallery .card button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  isolation: isolate;
}

body.page-gallery .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

body.page-gallery .caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 0.8rem;
  background: linear-gradient(to top, rgba(21, 11, 16, 0.85), rgba(21, 11, 16, 0.2));
  color: #fff;
}

body.page-gallery .caption h2 {
  font-size: 0.96rem;
  color: #fff;
  margin-bottom: 0.15rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

body.page-gallery .caption p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.page-gallery .card:hover {
  box-shadow: 0 14px 30px rgba(74, 46, 55, 0.18);
  border-color: rgba(143, 100, 110, 0.4);
}

body.page-gallery .card:hover img {
  transform: scale(1.06);
}

body.page-gallery.lightbox-open,
body.page-pricing.lightbox-open {
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(21, 12, 16, 0.66);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: calc(100vw - 2rem);
  max-height: calc(100dvh - 2rem);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  background: #fff;
}

.lightbox-media {
  padding: 1rem;
  background: #fff;
}

.lightbox-image {
  width: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 12px;
}

.lightbox-caption {
  padding: 0.85rem 1rem 1.05rem;
  color: var(--ink);
  text-align: center;
}

.lightbox-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}

.lightbox-text {
  margin-top: 0.3rem;
  color: var(--muted, #725a62);
  line-height: 1.5;
}

.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0;
  background: rgba(18, 10, 14, 0.66);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

body.page-gallery .lightbox--gallery {
  width: min(34rem, calc(100vw - 2rem));
  max-height: min(42rem, calc(100dvh - 2rem));
  border-radius: 14px;
}

body.page-gallery .lightbox--gallery .lightbox-image {
  height: min(25rem, calc(100dvh - 10rem));
  max-height: min(25rem, calc(100dvh - 10rem));
  border-radius: 10px;
}

body.page-pricing .lightbox--pricing {
  width: min(46rem, calc(100vw - 2rem));
}

body.page-pricing .lightbox--pricing .lightbox-image {
  height: min(32rem, calc(100dvh - 10rem));
  max-height: min(32rem, calc(100dvh - 10rem));
}

/* ── Pricing Hero ── */
body.page-pricing .pricing-hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  margin-bottom: 1.2rem;
  text-align: center;
}

body.page-pricing .pricing-eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-deep);
  font-weight: 700;
}

body.page-pricing h1,
body.page-pricing h2,
body.page-pricing h3 {
  font-family: "Playfair Display", serif;
  color: var(--ink);
}

body.page-pricing .pricing-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1;
  margin: 0 auto 0.65rem;
  max-width: 20ch;
}

body.page-pricing .pricing-lead {
  max-width: 52ch;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ── Pricing Grid ── */
body.page-pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

body.page-pricing .pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 9px 24px rgba(74, 46, 55, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.page-pricing .pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(74, 46, 55, 0.14);
}

body.page-pricing .pricing-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 14px 30px rgba(143, 100, 110, 0.2);
  background: linear-gradient(140deg, #fffdfb, #fff7f9);
}

body.page-pricing .pricing-badge {
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

body.page-pricing .pricing-card-header {
  text-align: center;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}

body.page-pricing .pricing-card-header h2 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

body.page-pricing .pricing-card-size {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 0.2rem;
  font-weight: 500;
}

body.page-pricing .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  color: var(--ink);
  line-height: 1.1;
}

body.page-pricing .price-prefix {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

body.page-pricing .price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.page-pricing .price-unit {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

body.page-pricing .pricing-card-desc {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}

body.page-pricing .pricing-card ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.4rem;
}

body.page-pricing .pricing-card li {
  color: var(--ink);
  font-size: 0.84rem;
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.45;
}

body.page-pricing .pricing-card li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
  font-size: 0.72rem;
  position: absolute;
  left: 0;
  top: 0.08rem;
}

/* ── Example Photo Toggle ── */
body.page-pricing .example-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.55rem 0.8rem;
  margin-top: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(180, 141, 149, 0.08);
  color: var(--primary-deep);
  font-family: "Mulish", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.page-pricing .example-toggle::after {
  content: "\25BC";
  font-size: 0.52rem;
  transition: transform 0.25s ease;
}

body.page-pricing .example-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

body.page-pricing .example-toggle:hover {
  background: rgba(180, 141, 149, 0.16);
  transform: translateY(-1px);
}

body.page-pricing .example-preview {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 0.5rem;
}

body.page-pricing .example-preview[hidden] {
  display: none;
}

body.page-pricing .example-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ── Info Cards Grid ── */
body.page-pricing .pricing-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

body.page-pricing .pricing-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.1rem;
  box-shadow: 0 9px 24px rgba(74, 46, 55, 0.08);
}

body.page-pricing .pricing-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
  text-align: center;
}

body.page-pricing .pricing-info-card ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

body.page-pricing .pricing-info-card li {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

body.page-pricing .pricing-info-card li::before {
  content: "";
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* ── CTA Section ── */
body.page-pricing .pricing-cta {
  text-align: center;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.6rem 1.2rem;
  margin-bottom: 0.85rem;
}

body.page-pricing .pricing-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

body.page-pricing .pricing-cta p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

body.page-pricing .pricing-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.6rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.page-pricing .pricing-btn-main {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

body.page-pricing .pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(180, 141, 149, 0.35);
}

/* ── Footer Note ── */
body.page-pricing .note {
  color: rgba(255, 248, 244, 0.5);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1024px) {
  body.page-pricing .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  body.page-pricing .pricing-info-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 560px) {
  body.page-gallery .grid {
    grid-template-columns: 1fr;
  }

  body.page-gallery .lightbox-overlay {
    padding: 0.5rem;
  }

  body.page-gallery .card button {
    cursor: default;
  }

  body.page-gallery .lightbox--gallery {
    width: min(22rem, calc(100vw - 1rem));
    max-width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
    border-radius: 12px;
  }

  body.page-gallery .lightbox--gallery .lightbox-media {
    padding: 0.75rem;
  }

  body.page-gallery .lightbox--gallery .lightbox-image {
    height: min(18rem, calc(100dvh - 8.5rem));
    max-height: min(18rem, calc(100dvh - 8.5rem));
  }

  body.page-gallery .lightbox--gallery .lightbox-caption {
    padding: 0.8rem 0.85rem 0.95rem;
  }
}

@media (max-width: 860px) {
  body.page-home .home-nav {
    align-items: flex-start;
  }

  body.page-home .home-hero-wrap {
    min-height: calc(100vh - 8.5rem);
  }

  body.page-home .home-hero {
    width: 100%;
  }
}

@media (max-width: 760px) {
  body.page-home nav.is-mobile-nav,
  body.page-gallery nav.is-mobile-nav,
  body.page-pricing nav.is-mobile-nav {
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }

  body.page-home nav.is-mobile-nav .home-brand img,
  body.page-gallery nav.is-mobile-nav .brand img,
  body.page-pricing nav.is-mobile-nav .brand img {
    height: var(--nav-logo-mobile-height);
    width: auto;
  }

  body.page-home nav.is-mobile-nav .home-menu,
  body.page-gallery nav.is-mobile-nav .menu,
  body.page-pricing nav.is-mobile-nav .menu {
    display: none;
  }

  body.page-home nav.is-mobile-nav .mobile-menu-toggle,
  body.page-gallery nav.is-mobile-nav .mobile-menu-toggle,
  body.page-pricing nav.is-mobile-nav .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 1px solid rgba(180, 141, 149, 0.6);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.68rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  body.page-home nav.is-mobile-nav .mobile-menu-toggle {
    color: #fff;
    background: rgba(11, 6, 8, 0.62);
    border-color: rgba(255, 255, 255, 0.36);
  }

  body.page-gallery nav.is-mobile-nav .mobile-menu-toggle,
  body.page-pricing nav.is-mobile-nav .mobile-menu-toggle {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
  }

  body.page-home nav.is-mobile-nav .mobile-menu-toggle:hover,
  body.page-gallery nav.is-mobile-nav .mobile-menu-toggle:hover,
  body.page-pricing nav.is-mobile-nav .mobile-menu-toggle:hover {
    transform: translateY(-1px);
  }

  body.page-home nav.is-mobile-nav .mobile-menu-panel,
  body.page-gallery nav.is-mobile-nav .mobile-menu-panel,
  body.page-pricing nav.is-mobile-nav .mobile-menu-panel {
    width: 100%;
    order: 10;
    border-radius: 14px;
    padding: 0.4rem;
    display: grid;
    gap: 0.25rem;
  }

  body.page-home nav.is-mobile-nav .mobile-menu-panel {
    background: rgba(10, 6, 8, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  body.page-gallery nav.is-mobile-nav .mobile-menu-panel,
  body.page-pricing nav.is-mobile-nav .mobile-menu-panel {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(143, 100, 110, 0.24);
    box-shadow: 0 10px 24px rgba(74, 46, 55, 0.12);
  }

  body.page-home nav.is-mobile-nav .mobile-menu-panel[hidden],
  body.page-gallery nav.is-mobile-nav .mobile-menu-panel[hidden],
  body.page-pricing nav.is-mobile-nav .mobile-menu-panel[hidden] {
    display: none;
  }

  body.page-home nav.is-mobile-nav .mobile-menu-panel a,
  body.page-gallery nav.is-mobile-nav .mobile-menu-panel a,
  body.page-pricing nav.is-mobile-nav .mobile-menu-panel a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 10px;
    padding: 0.62rem 0.72rem;
  }

  body.page-home nav.is-mobile-nav .mobile-menu-panel a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  body.page-gallery nav.is-mobile-nav .mobile-menu-panel a,
  body.page-pricing nav.is-mobile-nav .mobile-menu-panel a {
    color: var(--ink);
    background: rgba(180, 141, 149, 0.12);
  }

  body.page-home nav.is-mobile-nav .mobile-menu-panel a[aria-current="page"],
  body.page-gallery nav.is-mobile-nav .mobile-menu-panel a[aria-current="page"],
  body.page-pricing nav.is-mobile-nav .mobile-menu-panel a[aria-current="page"] {
    background: var(--primary);
    color: #fff;
  }

  body.page-pricing .pricing-grid {
    grid-template-columns: 1fr;
  }
}
