: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);
  --mobile-header-height: clamp(4.2rem, 9vw, 5rem);
}

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: #fcf9f4;
  font-family: "Cormorant", serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  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: fixed;
  top: 0;
  width: 100%;
  z-index: 5000;
  background: #fcf9f4;
  top: 0px;
  z-index: 999;
  padding: 2px 0;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.05);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
}

.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: var(--mobile-header-height);
}

.mobile-nav .navbar-brand {
  color: var(--color-white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 4vw, 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 {
  position: relative;
  width: clamp(2.7rem, 7vw, 3rem);
  height: clamp(2.7rem, 7vw, 3rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  color: var(--color-white);
  z-index: 5002;
}

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

.mobile-nav .navbar-toggler-icon {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav .navbar-toggler-icon::before,
.mobile-nav .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.28s ease, top 0.28s ease, opacity 0.18s ease;
}

.mobile-nav .navbar-toggler-icon::before {
  top: -0.42rem;
}

.mobile-nav .navbar-toggler-icon::after {
  top: 0.42rem;
}

.mobile-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.mobile-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-nav .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

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

.mobile-nav .navbar-nav {
  width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.mobile-nav .navbar-collapse {
  margin-top: 0;
  padding: clamp(0.85rem, 2.5vw, 1rem) clamp(0.85rem, 2.5vw, 1rem) clamp(1rem, 3vw, 1.25rem);
  border-radius: 0;
  background: rgba(7, 10, 14, 0.98);
  border: 0;
  box-shadow: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--mobile-header-height);
  bottom: 0;
  height: calc(100dvh - var(--mobile-header-height));
  max-height: calc(100dvh - var(--mobile-header-height));
  z-index: 5001;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-0.8rem);
  transition: transform 0.28s ease;
  isolation: isolate;
}

.mobile-nav .navbar-collapse.show {
  transform: translateY(0);
}

.mobile-nav .navbar-collapse.collapsing {
  display: block;
  height: calc(100dvh - var(--mobile-header-height));
  transition: none;
}

.mobile-nav .navbar-collapse::before,
.mobile-nav .navbar-collapse::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.mobile-nav .navbar-collapse::before {
  background:
    radial-gradient(circle at 18% 8%, rgba(176, 122, 79, 0.14), transparent 18%),
    radial-gradient(circle at 82% 4%, rgba(255, 255, 255, 0.08), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%);
}

.mobile-nav .navbar-collapse::after {
  inset: auto -10% 0;
  height: clamp(7rem, 18vw, 10rem);
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.08), transparent 35%),
    radial-gradient(ellipse at 60% 80%, rgba(176, 122, 79, 0.10), transparent 35%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.09) 50%, rgba(255, 255, 255, 0.02) 100%);
  filter: blur(10px);
  transform: translateY(1rem) scaleX(1.05);
  animation: mobileMenuWave 7s ease-in-out infinite;
}

.mobile-nav .navbar-collapse.show::before,
.mobile-nav .navbar-collapse.show::after,
.mobile-nav .navbar-collapse.collapsing::before,
.mobile-nav .navbar-collapse.collapsing::after {
  opacity: 1;
}

.mobile-nav .navbar-collapse.show::after {
  animation-play-state: running;
}

.mobile-nav .navbar-collapse.collapsing::after {
  animation-play-state: paused;
}

@keyframes mobileMenuWave {
  0% {
    transform: translateX(-2%) translateY(1rem) scaleX(1.05);
  }
  50% {
    transform: translateX(2%) translateY(0.4rem) scaleX(1.08);
  }
  100% {
    transform: translateX(-2%) translateY(1rem) scaleX(1.05);
  }
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: none;
}

.mobile-nav-group {
  margin-bottom: 0;
  padding: 0;
  border-bottom: 0;
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0;
  border-bottom: 0;
}

.mobile-nav-parent {
  flex: 1;
  min-width: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.mobile-nav-group > .mobile-nav-row .mobile-nav-parent {
  padding: 0.82rem 0;
}

.mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
  min-width: 1rem;
  user-select: none;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-submenu-toggle:focus {
  outline: none;
  color: #f5d7bf;
}

.mobile-submenu-toggle[aria-expanded="true"] {
  color: #f5d7bf;
}

.mobile-submenu-toggle::before {
  content: "+";
  display: block;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.mobile-submenu-toggle[aria-expanded="true"]::before {
  content: "-";
}

.mobile-nav-parent::after {
  display: none;
}

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

.mobile-submenu {
  display: block;
  margin-top: 0;
  padding: 0.35rem 0 0.15rem 1rem;
  border-left: 0;
}

.mobile-submenu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-submenu-list li {
  margin: 0;
  padding: 0;
}

.mobile-submenu-list a {
  display: block;
  width: 100%;
  margin-left: 0;
  padding: 0.65rem 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 0;
}

.mobile-submenu-list a::before {
  content: "";
  display: none;
}

.mobile-submenu[hidden] {
  display: none !important;
}

.mobile-submenu-list a:hover,
.mobile-submenu-list a:focus {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
}

.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;
}

.location-shell {
  background:
    linear-gradient(180deg, #fffdf9 0%, #f6eee5 100%);
}

.location-card {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: rgba(255, 251, 246, 0.94);
  border: 1px solid rgba(95, 54, 66, 0.1);
  box-shadow: 0 1.5rem 3rem rgba(60, 33, 23, 0.08);
}

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

.location-map-frame {
  min-height: 24rem;
  overflow: hidden;
  border: 1px solid rgba(95, 54, 66, 0.12);
  box-shadow: 0 1rem 2.4rem rgba(42, 24, 20, 0.12);
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
}

.faq-hero {
  background:
    radial-gradient(circle at top left, rgba(195, 166, 132, 0.16), transparent 25%),
    radial-gradient(circle at right center, rgba(120, 80, 92, 0.18), transparent 30%),
    linear-gradient(180deg, #0b0b0b 0%, #171311 100%);
}

.faq-shell {
  background: linear-gradient(180deg, #fffdf9 0%, #f6efe8 100%);
}

.faq-intro {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(95, 54, 66, 0.1);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: 0 1.15rem 2.75rem rgba(60, 33, 23, 0.08);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  padding: 1.35rem 1.5rem;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-white);
  background: #15110f;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-muted);
  background: rgba(255, 252, 248, 0.96);
}

.faq-cta-strip {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #15110f 0%, #2a1a1d 100%);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1.5rem 3rem rgba(32, 18, 15, 0.18);
}

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

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

.faq-cta-strip p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.74);
}

.faq-cta-button {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.faq-cta-button:hover,
.faq-cta-button:focus {
  border-color: #d7b7ab;
}

.locations-hero {
  background:
    radial-gradient(circle at top left, rgba(201, 168, 132, 0.18), transparent 24%),
    radial-gradient(circle at right center, rgba(112, 79, 94, 0.22), transparent 30%),
    linear-gradient(180deg, #080808 0%, #171211 100%);
}

.locations-shell {
  background: linear-gradient(180deg, #fffdf9 0%, #f7efe8 100%);
}

.locations-section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.6rem;
}

.locations-section-head .section-title {
  margin-bottom: 0;
  max-width: 52rem;
}

.locations-section-head .section-copy {
  max-width: 45rem;
}

.location-story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(48, 31, 26, 0.08);
  box-shadow: 0 1.25rem 3rem rgba(60, 33, 23, 0.08);
}

.location-story-lifted {
  margin-top: 2rem;
}

.location-story-media {
  position: relative;
  aspect-ratio: 4 / 4.1;
}

.location-story-media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.location-tone-jaipur {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.28)),
    linear-gradient(145deg, #f0dfd0 0%, #d8b39b 40%, #8f5c53 100%);
}

.location-tone-mumbai {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.28)),
    linear-gradient(145deg, #e7ddd7 0%, #baa8a4 40%, #5d4751 100%);
}

.location-tone-goa {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.28)),
    linear-gradient(145deg, #f0e5d7 0%, #cdbd9e 38%, #7f6f56 100%);
}

.location-story-body {
  display: grid;
  gap: 0.9rem;
  padding: 1.6rem;
}

.location-story-body h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.06;
  text-transform: uppercase;
}

.location-story-body p {
  margin: 0;
  color: var(--color-muted);
}

.locations-cta-band,
.city-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);
}

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

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

.city-hero {
  position: relative;
  overflow: hidden;
}

.city-hero-jaipur {
  background:
    radial-gradient(circle at top left, rgba(219, 178, 138, 0.2), transparent 24%),
    radial-gradient(circle at right center, rgba(121, 72, 68, 0.18), transparent 28%),
    linear-gradient(180deg, #0c0908 0%, #1a1311 100%);
}

.city-hero-mumbai {
  background:
    radial-gradient(circle at top left, rgba(173, 159, 154, 0.2), transparent 24%),
    radial-gradient(circle at right center, rgba(91, 70, 86, 0.2), transparent 28%),
    linear-gradient(180deg, #080808 0%, #171214 100%);
}

.city-hero-goa {
  background:
    radial-gradient(circle at top left, rgba(208, 186, 143, 0.2), transparent 24%),
    radial-gradient(circle at right center, rgba(118, 100, 70, 0.2), transparent 28%),
    linear-gradient(180deg, #0a0a08 0%, #17140f 100%);
}

.city-shell {
  background: linear-gradient(180deg, #fffdf9 0%, #f7f0e8 100%);
}

.city-panel {
  height: 100%;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(95, 54, 66, 0.08);
  box-shadow: 0 1.25rem 3rem rgba(60, 33, 23, 0.08);
}

.city-panel-dark {
  background:
    linear-gradient(180deg, rgba(22, 18, 17, 0.96), rgba(22, 18, 17, 0.96)),
    linear-gradient(135deg, #362227 0%, #1a1514 100%);
  color: var(--color-white);
}

.city-panel-dark p,
.city-panel-dark .list-clean {
  color: rgba(255, 255, 255, 0.72);
}

.city-feature-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.city-feature-card {
  padding: 1.2rem;
  background: var(--color-white);
  border: 1px solid rgba(48, 31, 26, 0.08);
}

.city-feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.city-feature-card p {
  margin: 0;
  color: var(--color-muted);
}

.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);
}

.films-title-only {
  padding: 3rem 0 1.5rem;
  background: #f4efe8;
  color: var(--color-ink);
}

.films-title-only .section-title {
  margin: 0 auto;
  max-width: 60rem;
  text-align: center;
}

.photos-page .nav-link::after {
  display: none;
}

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

.photos-page .nav-dropdown-menu {
  min-width: 11rem;
  padding: 0.5rem 0;
  background: #050505;
  border: 0;
  box-shadow: none;
}

.photos-page .nav-dropdown-menu a {
  padding: 0.55rem 1rem;
  text-align: center;
}

.photos-page .nav-dropdown-menu a:hover {
  background: transparent;
  color: var(--color-white);
  opacity: 0.78;
}

.photos-title-only {
  padding: 3rem 0 1.5rem;
  background: #fffdfb;
  color: var(--color-ink);
}

.photos-title-only .section-title {
  margin: 0 auto;
  max-width: 60rem;
  text-align: center;
}

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

.photo-story-row {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.photo-story-row:first-child {
  margin-top: 0;
}

.photo-story-row-reverse {
  flex-direction: row-reverse;
}

.photo-story-media {
  overflow: hidden;
  background: #d2cbc5;
  box-shadow: 0 1.5rem 3rem rgba(60, 33, 23, 0.12);
}

.photo-story-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.photo-story-copy {
  max-width: 22rem;
  color: var(--color-ink);
}

.photo-story-copy h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  text-transform: uppercase;
  line-height: 0.98;
}

.photo-story-copy .portfolio-location {
  margin-bottom: 0;
}

.photo-story-row-reverse .photo-story-copy {
  margin-left: auto;
  text-align: right;
}

.about-page {
  background: #f4efe8;
}

.about-page main {
  background: #f4efe8;
}

.about-page .site-header {
  background: #050505;
}

.about-hero {
  padding: 2rem 0 1rem;
  background: linear-gradient(180deg, #f8f4ee 0%, #f4efe8 100%);
}

.about-hero-spacer {
  height: clamp(1rem, 4vw, 2.5rem);
}

.about-hero-frame {
  width: min(100%, 66rem);
  margin: 0 auto;
  overflow: hidden;
  background: #e8e1d8;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.about-hero-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-intro {
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: 2rem 0 0;
}

.about-intro h1 {
  margin: 0.25rem 0 1rem;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.about-intro-quote {
  margin: 0 auto 1rem;
  max-width: 42rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.2;
  color: #1e1a16;
}

.about-intro-copy {
  margin: 0 auto 1rem;
  max-width: 54rem;
  color: #4c423a;
}

.about-intro-copy-secondary {
  margin-bottom: 0;
}

.about-recognition {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
  background: #f4efe8;
}

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

.about-recognition-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
}

.about-recognition-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.8rem;
  border-bottom: 1px solid rgba(95, 54, 66, 0.3);
  color: #7b5f4a;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-footer-band {
  padding: 1rem 0 1.75rem;
  background: #f4efe8;
}

.about-footer-band-button {
  border-color: rgba(95, 54, 66, 0.7);
  color: #5f3642;
}

.about-footer-band-button:hover,
.about-footer-band-button:focus {
  background: #5f3642;
  border-color: #5f3642;
  color: var(--color-white);
}

.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;
}

.blog-detail-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 16% 18%, rgba(176, 122, 79, 0.16), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(98, 66, 84, 0.18), transparent 22%),
    linear-gradient(180deg, #11151b 0%, #0b0d11 100%);
  color: var(--color-white);
}

.blog-detail-hero .blog-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-detail-hero h1 {
  max-width: 58rem;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.92;
  text-wrap: balance;
}

.blog-detail-hero p {
  max-width: 50rem;
  color: rgba(255, 255, 255, 0.78);
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1.5rem;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-detail-layout {
  background:
    radial-gradient(circle at top left, rgba(176, 122, 79, 0.08), transparent 22%),
    linear-gradient(180deg, #fcfaf7 0%, #f5efe7 100%);
}

.blog-detail-card,
.blog-detail-sidebar-card {
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.blog-detail-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.blog-detail-feature {
  margin-bottom: 2rem;
  aspect-ratio: 16 / 8.5;
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.35)),
    linear-gradient(135deg, #f0e1d8 0%, #d4b7ad 45%, #8f6564 100%);
}

.blog-detail-content {
  max-width: 44rem;
}

.blog-detail-content h2 {
  margin: 2rem 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.96;
}

.blog-detail-content p {
  margin-bottom: 1rem;
}

.blog-detail-content ul {
  padding-left: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--color-muted);
}

.blog-detail-content li + li {
  margin-top: 0.55rem;
}

.blog-detail-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--color-accent);
  border-radius: 1rem;
  background: rgba(176, 122, 79, 0.08);
  color: var(--color-ink);
  font-size: 1.05rem;
}

.blog-detail-sidebar {
  display: grid;
  gap: 1.25rem;
}

.blog-detail-sidebar-card {
  padding: 1.3rem;
}

.blog-detail-sidebar-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.5rem;
  line-height: 1;
}

.blog-detail-list {
  display: grid;
  gap: 0.9rem;
}

.blog-detail-list a {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(12, 15, 20, 0.03);
  border: 1px solid rgba(12, 15, 20, 0.05);
}

.blog-detail-list a:hover,
.blog-detail-list a:focus {
  transform: translateY(-2px);
  background: rgba(176, 122, 79, 0.08);
}

.blog-detail-list strong {
  color: var(--color-ink);
  font-weight: 700;
}

.blog-detail-list span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.blog-detail-tag {
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(176, 122, 79, 0.10);
  color: var(--color-accent);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-detail-cta {
  margin-top: 1.5rem;
  padding: 1.3rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(17, 21, 27, 0.94), rgba(11, 13, 17, 0.94)),
    radial-gradient(circle at top right, rgba(176, 122, 79, 0.12), transparent 32%);
  color: var(--color-white);
}

.blog-detail-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.blog-detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.blog-detail-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 24, 33, 0.10);
  background: rgba(255, 255, 255, 0.80);
}

.blog-detail-nav a:hover,
.blog-detail-nav a:focus {
  transform: translateY(-2px);
  border-color: rgba(176, 122, 79, 0.28);
  background: rgba(176, 122, 79, 0.08);
}

.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-intro .contact-point-title {
  color: rgba(255, 255, 255, 0.62);
}

.contact-intro .contact-point-value {
  color: var(--color-white);
}

.contact-intro .contact-helper {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.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;
}

body.modal-open {
  overflow: hidden;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(8, 8, 8, 0.76);
}

.inquiry-modal.is-open {
  display: flex;
}

.inquiry-modal-dialog {
  position: relative;
  width: min(100%, 68rem);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, #f6ece4 0%, #ecd9d0 100%);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.28);
}

.inquiry-modal-head {
  margin-bottom: 1.5rem;
  padding-right: 2.5rem;
}

.inquiry-modal-head h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.inquiry-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: #171311;
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 1;
}

.inquiry-modal-close:hover,
.inquiry-modal-close:focus {
  background: var(--color-accent);
}

.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;
  background: transparent;
  font-family: inherit;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  cursor: pointer;
}

.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;
}

.footer-socials-wrap {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.footer-socials-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--color-white);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.footer-socials svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

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

  .mobile-nav {
    display: none;
  }
}

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

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

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

  .location-story-lifted {
    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);
  }

  .location-map-frame,
  .location-map-frame iframe {
    min-height: 20rem;
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    padding-top: 1.25rem;
  }

  .about-hero-frame img {
    aspect-ratio: 4 / 3;
  }

  .about-intro {
    padding-top: 1.5rem;
  }

  .about-intro h1 {
    margin-bottom: 0.85rem;
  }

  .about-recognition {
    padding-top: 1rem;
    padding-bottom: 2.75rem;
  }

  .about-recognition-row {
    gap: 0.75rem;
  }

  .about-recognition-row span {
    min-height: 2.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .about-footer-band {
    padding-bottom: 1.25rem;
  }

  .photo-story-row {
    margin-top: 2.5rem;
  }

  .photo-story-copy {
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }

  .photo-story-row-reverse .photo-story-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .photo-story-media img {
    aspect-ratio: 4 / 3;
  }

  .films-hero-panel h2,
  .films-cta-band h3,
  .film-caption h3,
  .locations-cta-band h3,
  .photos-cta-band h3,
  .photos-hero-panel h2,
  .city-cta-band h3 {
    line-height: 1.02;
  }

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

  .city-feature-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .faq-cta-strip h3 {
    line-height: 1.02;
  }

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

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

  .blog-hero-actions,
  .blog-cta-strip,
  .faq-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;
  }

  .location-map-frame,
  .location-map-frame iframe {
    min-height: 17rem;
  }

  .inquiry-modal {
    padding: 0.9rem;
  }

  .inquiry-modal-dialog {
    max-height: calc(100vh - 1.8rem);
  }

  .inquiry-modal-head {
    padding-right: 2rem;
  }
}

:root {
  --color-black: #0c0f14;
  --color-ink: #151922;
  --color-muted: #66707d;
  --color-cream: #f7f1e9;
  --color-soft: #e8ddd1;
  --color-taupe: #c8b29f;
  --color-accent: #b07a4f;
  --color-white: #ffffff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --border-soft: rgba(18, 24, 33, 0.10);
  --shadow-soft: 0 1.4rem 3.5rem rgba(16, 21, 30, 0.10);
  --shadow-lift: 0 2rem 4rem rgba(16, 21, 30, 0.16);
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
}

html {
  background:
    radial-gradient(circle at top left, rgba(176, 122, 79, 0.10), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(98, 66, 84, 0.08), transparent 22%),
    linear-gradient(180deg, #fbf8f4 0%, #f5efe7 48%, #f1e9e0 100%);
}

body {
  color: var(--color-ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(176, 122, 79, 0.10), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(98, 66, 84, 0.10), transparent 20%),
    linear-gradient(180deg, #fcfaf7 0%, #f6f0e8 46%, #f2ebe2 100%);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  background: rgba(176, 122, 79, 0.22);
  color: var(--color-black);
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-logo,
.section-title,
.hero-copy h1,
.inner-hero h1,
.contact-banner h1,
.films-hero h1,
.photos-hero h1,
.blog-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

p {
  color: var(--color-muted);
}

.page-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-label {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.26em;
}

.section-title {
  line-height: 0.92;
  text-wrap: balance;
}

.section-copy {
  max-width: 58rem;
}

a,
button,
.btn-brand,
.btn-brand-outline,
.footer-links a,
.footer-socials a {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-brand,
.btn-brand-outline,
.footer-cta {
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-brand {
  border: 1px solid transparent;
  background: linear-gradient(135deg, #b07a4f 0%, #8f5a58 100%);
  box-shadow: 0 0.9rem 2rem rgba(143, 90, 88, 0.20);
}

.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(135deg, #8f5a58 0%, #b07a4f 100%);
  box-shadow: 0 1rem 2.3rem rgba(143, 90, 88, 0.28);
}

.btn-brand-outline {
  border-color: rgba(12, 15, 20, 0.18);
  background: rgba(255, 255, 255, 0.66);
  color: var(--color-ink);
  backdrop-filter: blur(14px);
}

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

/*.site-header {
  background: #fcf9f4;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}*/

body.is-scrolled .site-header {
  box-shadow: 0 0.75rem 2rem rgba(10, 12, 16, 0.18);
}

.site-logo,
.mobile-nav .navbar-brand {
  letter-spacing: 0.03em;
}

.nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #38230F;
  font-size: 16px;
  display: block;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.nav-link::after 
.nav-link:hover:after {
  content: '';
  position: absolute;
  top: 3px;
  right: 0px;
  height: 20px;
}

.nav-dropdown-menu,
.mobile-nav .dropdown-menu {
  border-radius: 1rem;
  background: rgba(11, 14, 19, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.22);
}

.mobile-nav .navbar-collapse {
  margin-top: 0;
  padding: 1rem 1rem 1.25rem;
  border-radius: 0;
  background: rgba(7, 10, 14, 0.98);
  border: 0;
  box-shadow: none;
}

.mobile-nav .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.hero-home {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 82% 20%, rgba(176, 122, 79, 0.14), transparent 20%),
    radial-gradient(circle at 18% 18%, rgba(98, 66, 84, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(246, 239, 231, 0.96) 100%);
}

.hero-slider,
.hero-slide {
  border-radius: var(--radius-xl);
}

.hero-slider {
  min-height: 34rem;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-slide {
  min-height: 34rem;
  padding: 2rem 2rem 3rem;
  overflow: hidden;
}

.hero-slide::before {
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.18) 0%, rgba(7, 9, 12, 0.86) 100%),
    linear-gradient(135deg, rgba(176, 122, 79, 0.08), rgba(98, 66, 84, 0.12));
}

.hero-slide h2,
.hero-copy h1,
.section-title,
.inner-hero h1,
.contact-banner h1,
.films-hero h1,
.photos-hero h1,
.blog-hero h1 {
  text-shadow: 0 0.15rem 1rem rgba(0, 0, 0, 0.08);
}

.hero-slide-copy {
  max-width: 34rem;
}

.hero-copy {
  max-width: 36rem;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.5vw, 5.6rem);
}

.hero-actions {
  gap: 0.85rem;
}

.about-band {
  background:
    radial-gradient(circle at top right, rgba(176, 122, 79, 0.08), transparent 24%),
    linear-gradient(180deg, #11151b 0%, #0b0d11 100%);
  color: rgba(255, 255, 255, 0.94);
}

.about-band .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

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

.image-card {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.image-card-left,
.image-card-right {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #d9cdbf 0%, #f1e7db 100%);
}

.video-placeholder {
  border-radius: var(--radius-xl);
  min-height: 24rem;
  border: 1px solid rgba(12, 15, 20, 0.10);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(12, 15, 20, 0.12) 0%, rgba(176, 122, 79, 0.25) 100%);
  box-shadow: var(--shadow-soft);
}

.video-placeholder h2 {
  color: var(--color-white);
  text-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.18);
}

.portfolio-shell,
.films-overview-shell,
.photos-gallery-shell,
.contact-showcase,
.instagram-shell,
.location-shell,
.films-gallery-shell {
  position: relative;
}

.portfolio-shell::before,
.photos-gallery-shell::before,
.contact-showcase::before,
.location-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(176, 122, 79, 0.08), transparent 26%),
    radial-gradient(circle at 100% 30%, rgba(98, 66, 84, 0.06), transparent 24%);
  pointer-events: none;
}

.portfolio-card,
.portfolio-card-modern,
.film-entry,
.content-card,
.service-card,
.contact-card,
.contact-panel,
.films-overview-card,
.films-side-card,
.location-card,
.blog-card {
  border-radius: var(--radius-xl);
}

.portfolio-card-modern,
.film-entry,
.content-card,
.service-card,
.contact-panel,
.films-overview-card,
.films-side-card,
.location-card,
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.portfolio-card-modern:hover,
.film-entry:hover,
.content-card:hover,
.service-card:hover,
.contact-panel:hover,
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.portfolio-thumb,
.portfolio-thumb-modern {
  border-radius: calc(var(--radius-xl) - 0.4rem);
}

.portfolio-thumb-modern::before {
  inset: 0.9rem;
  border-radius: 1rem;
}

.portfolio-card-body {
  gap: 0.6rem;
}

.portfolio-tag {
  border-radius: 999px;
  background: rgba(176, 122, 79, 0.12);
  color: var(--color-accent);
}

.portfolio-card h3,
.film-caption h3,
.content-card h2,
.content-card h3,
.service-card h3,
.contact-panel h3,
.contact-intro h2,
.inner-hero h1,
.contact-banner h1,
.films-hero h1,
.photos-hero h1,
.blog-hero h1 {
  text-wrap: balance;
}

.instagram-shell {
  background:
    radial-gradient(circle at 15% 10%, rgba(176, 122, 79, 0.10), transparent 22%),
    linear-gradient(180deg, #f4ede4 0%, #ebe2d7 100%);
}

.instagram-grid {
  gap: 1.1rem;
}

.instagram-tile {
  border-radius: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(6, 8, 11, 0.12), rgba(6, 8, 11, 0.48)),
    linear-gradient(135deg, #d9c0ac 0%, #8c5d61 100%);
}

.location-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, rgba(176, 122, 79, 0.08), transparent 28%);
}

.location-map-frame {
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 15, 20, 0.10);
}

.location-map-frame iframe {
  min-height: 24rem;
}

.inner-hero,
.contact-banner,
.blog-hero,
.films-hero,
.photos-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(176, 122, 79, 0.16), transparent 22%),
    radial-gradient(circle at bottom left, rgba(98, 66, 84, 0.18), transparent 24%),
    linear-gradient(180deg, #11151b 0%, #0b0d11 100%);
  color: var(--color-white);
}

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

.inner-hero p,
.contact-banner p,
.blog-hero p,
.films-hero p,
.photos-hero p {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.76);
}

.content-card,
.service-card,
.contact-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.content-card-dark,
.contact-intro {
  background:
    linear-gradient(180deg, rgba(17, 21, 27, 0.90), rgba(11, 13, 17, 0.90)),
    radial-gradient(circle at top left, rgba(176, 122, 79, 0.12), transparent 32%);
  color: rgba(255, 255, 255, 0.94);
}

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

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea,
.form-control,
.form-select {
  min-height: 3.25rem;
  border-radius: 1rem;
  border-color: rgba(18, 24, 33, 0.12);
  background-color: rgba(255, 255, 255, 0.90);
  box-shadow: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus,
.form-control:focus,
.form-select:focus {
  border-color: rgba(176, 122, 79, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(176, 122, 79, 0.14);
}

.contact-label {
  color: var(--color-muted);
  font-weight: 700;
}

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(176, 122, 79, 0.12), transparent 24%),
    linear-gradient(180deg, #0f1217 0%, #090b0f 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 4.5rem 0 2.4rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

.footer-cta {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  padding: 0.95rem 1.8rem;
  backdrop-filter: blur(14px);
}

.footer-cta:hover,
.footer-cta:focus {
  background: rgba(176, 122, 79, 0.22);
  border-color: rgba(255, 255, 255, 0.30);
}

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

.footer-divider {
  background: rgba(255, 255, 255, 0.10);
}

.footer-links a,
.footer-socials a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffffff;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-socials a:hover,
.footer-socials a:focus {
  background: rgba(176, 122, 79, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
}

.inquiry-modal,
.form-status-modal {
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(16px);
}

.inquiry-modal-dialog,
.form-status-dialog {
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at top right, rgba(176, 122, 79, 0.08), transparent 28%);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (min-width: 1200px) {
  .hero-home .row {
    align-items: stretch;
  }

  .hero-copy {
    padding-left: 0.75rem;
  }
}

@media (max-width: 1199.98px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-nav {
    display: block !important;
  }

  .hero-slider,
  .hero-slide {
    min-height: 28rem;
  }

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

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

@media (max-width: 767.98px) {
  :root {
    --mobile-header-height: 4.4rem;
  }

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

  .section-title {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

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

  .hero-slider,
  .hero-slide {
    min-height: 24rem;
    border-radius: 1.25rem;
  }

  .hero-slide {
    padding: 1.25rem 1.25rem 2rem;
  }

  .mobile-nav .navbar-brand {
    font-size: 1.45rem;
  }

  .mobile-nav .navbar-toggler {
    width: 2.55rem;
    height: 2.55rem;
  }

  .mobile-nav .navbar-collapse {
    padding: 0.9rem 0.85rem 1rem;
  }

  .mobile-nav .navbar-collapse::after {
    height: 6.5rem;
  }

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

  .mobile-nav-group > .mobile-nav-row .mobile-nav-parent {
    padding: 0.74rem 0;
  }

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

  .footer-links,
  .footer-socials {
    gap: 0.75rem;
  }
}

@media (max-width: 479.98px) {
  :root {
    --mobile-header-height: 4.1rem;
  }

  .mobile-nav .navbar-brand {
    font-size: 1.25rem;
    letter-spacing: 0.03em;
  }

  .mobile-nav .navbar-toggler {
    width: 2.35rem;
    height: 2.35rem;
  }

  .mobile-nav .navbar-toggler-icon {
    width: 1.1rem;
  }

  .mobile-nav .navbar-collapse {
    padding: 0.8rem 0.8rem 0.95rem;
  }

  .mobile-nav .navbar-collapse::after {
    height: 5.5rem;
  }

  .mobile-nav .navbar-nav .nav-link {
    padding: 0.68rem 0;
    font-size: 0.76rem;
  }

  .mobile-nav-parent {
    font-size: 0.76rem;
  }

  .mobile-submenu-list a {
    font-size: 0.72rem;
    padding: 0.58rem 0;
  }
}


/*----- Shubham CSS---*/

.desktop-nav .site-logo img {
  max-width: 120px !important;
}
