:root {
  --color-black: #070707;
  --color-ink: #191919;
  --color-muted: #6f6a66;
  --color-cream: #f5f0e8;
  --color-soft: #ddd6d0;
  --color-taupe: #c8beb8;
  --color-accent: #5f3642;
  --color-white: #ffffff;
  --shadow-soft: 0 1.5rem 3rem rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
}

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

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

h1,
h2,
h3,
h4,
.site-logo {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
}

.page-section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #84776c;
}

.section-title {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-copy {
  color: var(--color-muted);
}

.btn-brand,
.btn-brand-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--color-black);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-brand {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-brand-outline {
  background: transparent;
  color: var(--color-black);
}

.btn-brand-outline:hover,
.btn-brand-outline:focus {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.desktop-nav {
  display: none;
}

.desktop-nav .nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.5rem;
}

.nav-group {
  display: flex;
  gap: 1.05rem;
  align-items: center;
}

.nav-group-right {
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.25rem;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav-link:hover,
.nav-link:focus,
.nav-link.is-active {
  color: var(--color-white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-caret {
  font-size: 0.65rem;
  line-height: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  min-width: 12rem;
  padding: 0.75rem 0;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-dropdown-menu a:hover {
  background: #1d1d1d;
  color: var(--color-white);
}

.site-logo {
  color: var(--color-white);
  font-size: 2.2rem;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 1rem;
}

.mobile-nav {
  display: block;
}

.mobile-nav .navbar {
  min-height: 5rem;
}

.mobile-nav .navbar-brand {
  color: var(--color-white);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mobile-nav .navbar-brand:hover,
.mobile-nav .navbar-brand:focus {
  color: var(--color-white);
}

.mobile-nav .navbar-toggler {
  border: 0;
  box-shadow: none;
}

.mobile-nav .navbar-toggler:focus {
  box-shadow: none;
}

.mobile-nav .navbar-nav .nav-link {
  padding: 0.9rem 0;
}

.mobile-nav .dropdown-menu {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.mobile-nav .dropdown-item {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 0.9rem;
}

.mobile-nav .dropdown-item:hover,
.mobile-nav .dropdown-item:focus {
  background: #1d1d1d;
  color: var(--color-white);
}

.hero-home {
  padding: 5rem 0 4.5rem;
  background: linear-gradient(to right, var(--color-white) 0%, var(--color-white) 54%, #fbf8f2 54%, #fbf8f2 100%);
}

.hero-slider {
  position: relative;
  background: var(--color-black);
  color: var(--color-white);
  min-height: 27rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-slider h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-slider p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-swiper {
  width: 100%;
  min-height: 27rem;
}

.hero-slide {
  position: relative;
  min-height: 27rem;
  padding: 2rem 2rem 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  background-color: #6c434d;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.hero-slide-copy {
  max-width: 28rem;
  position: relative;
  z-index: 2;
}

.hero-slide .section-label {
  color: rgba(255, 255, 255, 0.82);
}

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

.hero-slide p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-swiper .swiper-pagination {
  position: absolute !important;
  left: 0 !important;
  width: 100% !important;
  bottom: 1.2rem !important;
  z-index: 2;
}

.hero-swiper .swiper-pagination-bullet {
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--color-white);
}

.hero-swiper:not(.swiper-initialized) .swiper-slide + .swiper-slide {
  display: none;
}

.hero-copy h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-band {
  background: #060606;
  color: var(--color-cream);
}

.about-band .section-copy {
  color: rgba(245, 240, 232, 0.75);
}

.image-collage {
  position: relative;
  min-height: 24rem;
}

.image-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.image-card-left {
  top: 2rem;
  left: 0;
  width: 54%;
  height: 16rem;
  background: #d9d3ce;
  color: var(--color-ink);
  z-index: 2;
}

.image-card-right {
  top: 0;
  right: 0;
  width: 58%;
  height: 18.5rem;
  background: #f7f4ef;
  color: var(--color-ink);
}

.video-placeholder {
  min-height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 20px, rgba(0, 0, 0, 0.03) 20px, rgba(0, 0, 0, 0.03) 40px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--color-soft);
}

.video-placeholder h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
}

.films-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(198, 171, 144, 0.16), transparent 24%),
    radial-gradient(circle at right center, rgba(130, 88, 101, 0.2), transparent 28%),
    linear-gradient(180deg, #080808 0%, #141111 100%);
}

.films-hero-panel {
  height: 100%;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.films-hero-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.films-hero-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.98;
  color: var(--color-white);
  text-transform: uppercase;
}

.films-overview-shell {
  background: linear-gradient(180deg, #faf6f1 0%, #fffdfb 100%);
}

.films-overview-card,
.films-side-card {
  height: 100%;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: var(--color-white);
  border: 1px solid rgba(48, 31, 26, 0.08);
  box-shadow: 0 1.25rem 3rem rgba(60, 33, 23, 0.08);
}

.films-overview-card .section-title {
  margin-bottom: 1rem;
}

.films-side-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(255, 250, 245, 0.92)),
    linear-gradient(135deg, #f7eee6 0%, #ecdfd3 100%);
}

.films-feature-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.9rem;
  color: var(--color-muted);
}

.films-gallery-shell {
  background:
    linear-gradient(180deg, #fffdfb 0%, #f7f0ea 100%);
}

.films-section-head {
  max-width: 52rem;
  margin-bottom: 2.8rem;
}

.films-stack {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.film-entry {
  background: var(--color-white);
  border: 1px solid rgba(48, 31, 26, 0.08);
  box-shadow: 0 1.35rem 3rem rgba(60, 33, 23, 0.08);
  overflow: hidden;
}

.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24)),
    linear-gradient(135deg, #ddd2c8 0%, #b99792 55%, #6b444f 100%);
}

.film-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  pointer-events: none;
  z-index: 1;
}

.film-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-caption {
  padding: 1.5rem 1.5rem 1.75rem;
  text-align: center;
}

.film-caption h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  text-transform: uppercase;
  line-height: 1.05;
}

.film-caption p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.films-cta-band {
  margin-top: 3rem;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: #15110f;
  color: var(--color-white);
}

.films-cta-band .section-label {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.62);
}

.films-cta-band h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1;
}

.photos-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(196, 170, 136, 0.18), transparent 24%),
    radial-gradient(circle at right center, rgba(118, 84, 92, 0.2), transparent 28%),
    linear-gradient(180deg, #080808 0%, #151110 100%);
}

.photos-hero-panel {
  height: 100%;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.photos-hero-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.photos-hero-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.98;
  color: var(--color-white);
  text-transform: uppercase;
}

.photos-gallery-shell {
  background:
    linear-gradient(180deg, #faf6f1 0%, #fffdfb 30%, #f6efe8 100%);
}

.photos-section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.7rem;
}

.photos-section-head .section-title {
  margin-bottom: 0;
  max-width: 54rem;
}

.photos-section-head .section-copy {
  max-width: 46rem;
}

.portfolio-shell {
  background: var(--color-cream);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.split-heading-note {
  color: var(--color-muted);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-card {
  height: 100%;
}

.portfolio-card-modern {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(48, 31, 26, 0.08);
  box-shadow: 0 1.25rem 3rem rgba(60, 33, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portfolio-card-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 54, 66, 0.18);
  box-shadow: 0 1.75rem 3.75rem rgba(60, 33, 23, 0.14);
}

.portfolio-card-lifted {
  margin-top: 2rem;
}

.portfolio-thumb {
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  background-color: var(--color-taupe);
  background-position: center;
  background-size: cover;
}

.portfolio-thumb-modern {
  position: relative;
  aspect-ratio: 4 / 4.8;
  margin-bottom: 0;
  overflow: hidden;
}

.portfolio-thumb-modern::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.portfolio-thumb-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28));
}

.portfolio-card-body {
  display: grid;
  gap: 0.85rem;
  padding: 1.45rem 1.45rem 1.6rem;
}

.portfolio-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  background: #f6eee7;
  color: #6d5051;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1.06;
}

.portfolio-location {
  font-size: 0.76rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b6a66 !important;
}

.portfolio-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.photos-cta-band {
  margin-top: 3rem;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: #15110f;
  color: var(--color-white);
}

.photos-cta-band .section-label {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.62);
}

.photos-cta-band h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1;
}

.instagram-shell {
  background: #cec8c5;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.instagram-tile {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f4ee 0%, #baa9a4 100%);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.inner-hero {
  padding: 7rem 0 5rem;
  background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
  color: var(--color-white);
}

.inner-hero p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.72);
}

.blog-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(174, 133, 144, 0.24), transparent 28%),
    radial-gradient(circle at right center, rgba(214, 193, 166, 0.14), transparent 30%),
    linear-gradient(180deg, #080808 0%, #161311 100%);
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.blog-btn-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-white);
}

.blog-btn-light:hover {
  border-color: #d8c3c8;
  background: #d8c3c8;
  color: #120e10;
}

.blog-hero-panel {
  height: 100%;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.blog-hero-kicker {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.blog-hero-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 0.96;
}

.blog-hero-panel p {
  margin-bottom: 1.5rem;
}

.blog-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5f3642;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.blog-inline-link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M3 8a.75.75 0 0 1 .75-.75h6.69L7.72 4.53a.75.75 0 1 1 1.06-1.06l4 4a.75.75 0 0 1 0 1.06l-4 4a.75.75 0 1 1-1.06-1.06l2.72-2.72H3.75A.75.75 0 0 1 3 8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M3 8a.75.75 0 0 1 .75-.75h6.69L7.72 4.53a.75.75 0 1 1 1.06-1.06l4 4a.75.75 0 0 1 0 1.06l-4 4a.75.75 0 1 1-1.06-1.06l2.72-2.72H3.75A.75.75 0 0 1 3 8Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease;
}

.blog-inline-link:hover,
.blog-inline-link:focus {
  color: #2f1a20;
}

.blog-inline-link:hover::after,
.blog-inline-link:focus::after {
  transform: translateX(4px);
}

.blog-hero-panel .blog-inline-link {
  color: rgba(255, 255, 255, 0.88);
}

.blog-hero-panel .blog-inline-link:hover,
.blog-hero-panel .blog-inline-link:focus {
  color: var(--color-white);
}

.blog-feature-shell {
  padding-top: 0;
  background: linear-gradient(180deg, #faf6f1 0%, #fffdfb 100%);
}

.blog-feature-card {
  margin-top: -3rem;
  background: var(--color-white);
  box-shadow: 0 1.75rem 4rem rgba(40, 25, 20, 0.12);
  overflow: hidden;
}

.blog-feature-media {
  position: relative;
  min-height: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at top left, rgba(247, 234, 220, 0.85), transparent 26%),
    linear-gradient(135deg, #d9cbc1 0%, #b59287 42%, #5d3941 100%);
}

.blog-feature-media::before,
.blog-card-media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.blog-media-badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  padding: 0.65rem 0.9rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-feature-copy {
  padding: clamp(2rem, 4vw, 4rem);
}

.blog-feature-copy h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.blog-feature-copy p {
  color: var(--color-muted);
}

.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin: 1.8rem 0 2rem;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b6a66;
}

.blog-grid-shell {
  background:
    linear-gradient(180deg, #fffdfb 0%, #f8f2ec 100%);
}

.blog-section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.blog-section-head .section-title {
  margin-bottom: 0;
  max-width: 54rem;
}

.blog-section-head .section-copy {
  max-width: 46rem;
}

.blog-card-premium {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(48, 31, 26, 0.08);
  box-shadow: 0 1.25rem 3rem rgba(60, 33, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 54, 66, 0.18);
  box-shadow: 0 1.75rem 3.75rem rgba(60, 33, 23, 0.14);
}

.blog-card-offset {
  margin-top: 2rem;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
}

.media-tone-1 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.06), rgba(10, 10, 10, 0.28)),
    linear-gradient(145deg, #f0e1d8 0%, #d4b7ad 45%, #8f6564 100%);
}

.media-tone-2 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.3)),
    linear-gradient(145deg, #e7dfd3 0%, #c3ac97 42%, #6f4d45 100%);
}

.media-tone-3 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.28)),
    linear-gradient(145deg, #ece6de 0%, #ccb8b0 40%, #9a7179 100%);
}

.media-tone-4 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.06), rgba(10, 10, 10, 0.3)),
    linear-gradient(145deg, #f1e8df 0%, #dac9bd 38%, #8f7263 100%);
}

.media-tone-5 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.3)),
    linear-gradient(145deg, #ede3dc 0%, #d7b7ab 44%, #6d444a 100%);
}

.media-tone-6 {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.26)),
    linear-gradient(145deg, #eee8dd 0%, #c6b39b 42%, #7c5c4e 100%);
}

.blog-card-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.7rem;
}

.blog-chip {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  background: #f6eee7;
  color: #6d5051;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card-premium h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
  line-height: 1.06;
  text-transform: uppercase;
}

.blog-card-premium p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.blog-cta-strip {
  margin-top: 3rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: #15110f;
  color: var(--color-white);
}

.blog-cta-strip .section-label {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.65rem;
}

.blog-cta-strip h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  text-transform: uppercase;
  line-height: 1;
}

.contact-banner {
  min-height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255, 248, 241, 0.78), rgba(255, 248, 241, 0.78)),
    linear-gradient(135deg, #f8f1ea 0%, #efe4da 50%, #d9c4c1 100%);
  text-align: center;
}

.contact-banner h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-banner p {
  max-width: 38rem;
  margin: 1rem auto 0;
  color: var(--color-muted);
}

.contact-showcase {
  background: linear-gradient(180deg, #fffdf9 0%, #fcf6ef 100%);
}

.contact-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 251, 245, 0.88);
  border: 1px solid rgba(95, 54, 66, 0.08);
  box-shadow: 0 1.5rem 3rem rgba(70, 46, 50, 0.08);
}

.contact-intro {
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at top left, rgba(95, 54, 66, 0.12), transparent 42%);
}

.contact-intro h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.contact-intro p {
  color: var(--color-muted);
}

.contact-points {
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
}

.contact-point-title {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7b6a66;
}

.contact-point-value {
  font-size: 1rem;
  color: var(--color-ink);
}

.contact-helper {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form-shell {
  background: rgba(255, 252, 248, 0.96);
}

.content-card {
  height: 100%;
  padding: 2rem;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.content-card-dark {
  background: #0f0f0f;
  color: var(--color-white);
}

.content-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.list-clean {
  padding-left: 1rem;
  margin-bottom: 0;
  color: var(--color-muted);
}

.blog-card,
.service-card,
.contact-card {
  height: 100%;
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card h3,
.service-card h3,
.contact-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.blog-card p,
.service-card p,
.contact-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f615d;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(95, 54, 66, 0.08);
  background: #f9eef0;
  color: var(--color-ink);
}

.contact-form .form-control {
  min-height: 3.25rem;
}

.contact-form textarea.form-control {
  min-height: 8rem;
  border-radius: 1.5rem;
  resize: vertical;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #ad8e96;
  background: #fff7f8;
  box-shadow: none;
}

.contact-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(95, 54, 66, 0.16);
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.74rem;
  color: #6d5a5e;
}

.contact-chip input {
  margin: 0;
  accent-color: var(--color-accent);
}

.contact-page-link {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.contact-page-link a {
  font-size: clamp(1.4rem, 4vw, 2.3rem);
  letter-spacing: 0.16em;
  text-transform: lowercase;
}

.form-status-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.72);
}

.form-status-modal.is-open {
  display: flex;
}

.form-status-dialog {
  width: min(100%, 32rem);
  padding: 2.25rem;
  background: var(--color-white);
  color: var(--color-ink);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.form-status-dialog h3 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.form-status-dialog p {
  margin-bottom: 1.5rem;
  color: var(--color-muted);
}

.site-footer {
  background: var(--color-accent);
  color: rgba(255, 255, 255, 0.92);
  padding: 4rem 0 2rem;
}

.footer-cta {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
}

.footer-line {
  color: rgba(255, 255, 255, 0.78);
}

.footer-divider {
  height: 1px;
  margin: 2rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.16);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: block;
  }

  .mobile-nav {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .blog-feature-card {
    margin-top: -2rem;
  }

  .blog-feature-media {
    min-height: 22rem;
  }

  .blog-card-offset {
    margin-top: 0;
  }

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

  .hero-copy {
    margin-top: 1rem;
  }

  .image-collage {
    min-height: 19rem;
    margin-top: 2rem;
  }

  .image-card-left {
    width: 58%;
    height: 13rem;
  }

  .image-card-right {
    width: 60%;
    height: 15rem;
  }

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

@media (max-width: 767.98px) {
  .films-hero-panel h2,
  .films-cta-band h3,
  .film-caption h3,
  .photos-cta-band h3,
  .photos-hero-panel h2 {
    line-height: 1.02;
  }

  .films-cta-band,
  .photos-cta-band {
    display: grid;
  }

  .portfolio-card-lifted {
    margin-top: 0;
  }

  .films-stack {
    grid-template-columns: 1fr;
  }

  .blog-hero-panel h2,
  .blog-feature-copy h2 {
    line-height: 1.02;
  }

  .blog-feature-card {
    margin-top: -1.5rem;
  }

  .blog-feature-media {
    min-height: 18rem;
  }

  .blog-hero-actions,
  .blog-cta-strip {
    display: grid;
  }

  .blog-card-body {
    padding: 1.4rem;
  }

  .page-section {
    padding: 4rem 0;
  }

  .hero-home {
    padding-top: 3rem;
  }

  .hero-slider {
    min-height: 18rem;
  }

  .hero-slide {
    min-height: 18rem;
    padding: 1.5rem 1.5rem 3.25rem;
  }

  .hero-swiper {
    min-height: 18rem;
  }

  .image-collage {
    min-height: 16rem;
  }

  .image-card-left {
    top: 1.5rem;
    height: 10.5rem;
  }

  .image-card-right {
    height: 12rem;
  }

  .video-placeholder {
    min-height: 15rem;
  }

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