@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

: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;
  --color-paper: #fffdfa;
  --color-sand: #ece3db;
  --color-border: rgba(62, 37, 30, 0.1);
  --shadow-soft: 0 1.5rem 3rem rgba(0, 0, 0, 0.12);
  --shadow-card: 0 1.75rem 4rem rgba(56, 34, 28, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top, rgba(95, 54, 66, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, #f8f3ee 100%);
  font-family: "Manrope", sans-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.03em;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-main__inner > .content-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

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

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

.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: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  min-height: 5.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
  text-align: center;
}

.site-branding__logo img {
  width: auto;
  max-height: 3.4rem;
}

.site-branding__text {
  min-width: 0;
}

.site-branding__name {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-branding__name a,
.site-branding__slogan {
  color: var(--color-white);
}

.site-branding__slogan {
  margin: 0.25rem 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.site-header__nav {
  min-width: 0;
}

.site-header__region {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.site-header__nav .menu,
.site-header__nav--left .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.05rem;
  justify-content: flex-start;
}

.site-header__nav--right .menu {
  justify-content: flex-end;
}

.site-header__nav--left {
  justify-self: start;
}

.site-header__region {
  justify-self: end;
}

.site-header__nav .menu-item {
  position: relative;
  margin: 0;
  padding: 0;
}

.site-header__nav .menu-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  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;
}

.site-header__nav .menu-item--expanded > a::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 0.45rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.8;
}

.site-header__nav .menu-item > a::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;
}

.site-header__nav .menu-item > a:hover::after,
.site-header__nav .menu-item > a:focus::after,
.site-header__nav .menu-item--active-trail > a::after,
.site-header__nav .menu-item > a.is-active::after {
  transform: scaleX(1);
}

.site-header__nav .menu-item > a:hover,
.site-header__nav .menu-item > a:focus,
.site-header__nav .menu-item--active-trail > a,
.site-header__nav .menu-item > a.is-active {
  color: var(--color-white);
}

.site-header__nav .menu .menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  min-width: 12rem;
  display: grid;
  gap: 0;
  padding: 0.75rem 0;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 20;
}

.site-header__nav--right .menu .menu {
  left: auto;
  right: 0;
}

.site-header__nav .menu-item:hover > .menu,
.site-header__nav .menu-item:focus-within > .menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header__nav .menu .menu-item > 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;
}

.site-header__nav .menu .menu-item > a::after {
  display: none;
}

.site-header__nav .menu .menu-item > a:hover,
.site-header__nav .menu .menu-item > a:focus {
  background: #1d1d1d;
  color: var(--color-white);
}

.hero-home {
  padding: 5.5rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(246, 239, 231, 0.92) 52%, rgba(246, 239, 231, 0.92) 100%);
}

.hero-slider {
  position: relative;
  background: #120f10;
  color: var(--color-white);
  min-height: 27rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 1.4rem;
  box-shadow: 0 2rem 4.5rem rgba(19, 12, 10, 0.24);
}

.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;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(111, 69, 80, 0.9) 0%, rgba(29, 22, 24, 0.96) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.hero-slide-content {
  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.76);
}

.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-copy {
  max-width: 32rem;
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.hero-copy p {
  max-width: 31rem;
  color: var(--color-muted);
}

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

.hero-actions > * {
  min-width: 0;
}

.about-band {
  background:
    radial-gradient(circle at top right, rgba(132, 95, 104, 0.16), transparent 28%),
    linear-gradient(180deg, #080808 0%, #141111 100%);
  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;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  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 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.home-films {
  background:
    linear-gradient(180deg, #d8d1cb 0%, #d1c8c1 100%);
}

.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);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.video-placeholder iframe,
.video-placeholder video,
.video-placeholder embed,
.video-placeholder object {
  display: block;
  width: 100%;
  min-height: 22rem;
}

.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:
    radial-gradient(circle at top right, rgba(95, 54, 66, 0.08), transparent 24%),
    linear-gradient(180deg, #fcf8f2 0%, #f1e9e0 100%);
}

.portfolio-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0, rgba(255, 255, 255, 0.24) 1px, transparent 1px, transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 1px, transparent 1px, transparent 25%);
  background-size: 12rem 12rem;
  opacity: 0.24;
}

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

.portfolio-section-head {
  margin-bottom: 3rem;
}

.portfolio-section-intro {
  max-width: 42rem;
}

.portfolio-section-intro .section-copy {
  max-width: 34rem;
}

.portfolio-section-aside {
  max-width: 19rem;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 251, 247, 0.8);
  border: 1px solid rgba(95, 54, 66, 0.1);
  border-radius: 1.1rem;
  box-shadow: 0 1rem 2.5rem rgba(60, 33, 23, 0.08);
}

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

.portfolio-grid-shell {
  position: relative;
}

.portfolio-grid-shell .field--name-field-portfolio-item {
  position: relative;
  z-index: 1;
}

.portfolio-card {
  height: 100%;
}

.portfolio-card-modern {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.94));
  border: 1px solid rgba(48, 31, 26, 0.08);
  border-radius: 1.35rem;
  box-shadow: 0 1.3rem 3.2rem 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(-8px);
  border-color: rgba(95, 54, 66, 0.18);
  box-shadow: 0 2rem 4.2rem rgba(60, 33, 23, 0.14);
}

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

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

.portfolio-thumb-modern {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 0;
  overflow: hidden;
  background: #1a1716;
}

.portfolio-thumb-modern > div,
.portfolio-thumb-modern .field,
.portfolio-thumb-modern .field__item,
.portfolio-thumb-modern .media,
.portfolio-thumb-modern .media__content,
.portfolio-thumb-modern picture {
  height: 100%;
}

.portfolio-thumb-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.4s ease;
}

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

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

.portfolio-card-modern:hover .portfolio-thumb-modern img {
  transform: scale(1.06);
}

.portfolio-card-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.55rem 1.45rem 1.7rem;
}

.portfolio-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  text-transform: uppercase;
  line-height: 1.08;
}

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

.portfolio-grid-shell .field__item:nth-child(2n) .portfolio-card-modern {
  transform: translateY(2rem);
}

.portfolio-grid-shell .field__item:nth-child(2n) .portfolio-card-modern:hover {
  transform: translateY(calc(2rem - 8px));
}

.portfolio-grid-shell .field__items {
  align-items: stretch;
}

.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%, #f2e8de 100%);
}

.location-card {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(255, 251, 247, 0.94));
  border: 1px solid rgba(95, 54, 66, 0.1);
  border-radius: 1.5rem;
  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);
  border-radius: 1rem;
}

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

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

.contact-form-shell h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  text-transform: uppercase;
}

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

.contact-form-shell .webform-submission-form > .js-form-item,
.contact-form-shell .webform-submission-form > fieldset,
.contact-form-shell .webform-submission-form > .form-actions {
  margin: 0;
}

.contact-form-shell .js-form-item {
  display: grid;
  gap: 0.45rem;
}

.contact-form-shell label,
.contact-form-shell legend span {
  display: block;
  margin-bottom: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f615d;
}

.contact-form-shell .form-required::after {
  margin-left: 0.2rem;
  color: var(--color-accent);
}

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

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

.contact-form-shell .form-control::placeholder,
.contact-form-shell .form-select::placeholder {
  color: #9a8b86;
}

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

.contact-form-shell input[type="date"] {
  color-scheme: light;
}

.contact-form-shell .fieldset-wrapper {
  margin-top: 0.9rem;
}

.contact-form-shell fieldset {
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid rgba(95, 54, 66, 0.1);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
}

.contact-form-shell fieldset legend {
  float: none;
  width: auto;
  margin-bottom: 0;
  padding: 0;
}

.contact-form-shell .form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-form-shell .form-check {
  margin: 0;
  padding: 0;
}

.contact-form-shell .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form-shell .form-check-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(95, 54, 66, 0.16);
  border-radius: 999px;
  background: var(--color-white);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #6d5a5e;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-form-shell .form-check-label::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid rgba(95, 54, 66, 0.35);
  border-radius: 50%;
  background: transparent;
  transition: inherit;
}

.contact-form-shell .form-check-input:checked + .form-check-label {
  border-color: var(--color-accent);
  background: #f3e3e7;
  color: var(--color-accent);
}

.contact-form-shell .form-check-input:checked + .form-check-label::before {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: inset 0 0 0 0.18rem #f3e3e7;
}

.contact-form-shell .form-check-label:hover,
.contact-form-shell .form-check-input:focus + .form-check-label {
  border-color: rgba(95, 54, 66, 0.3);
  transform: translateY(-1px);
}

.contact-form-shell .form-actions {
  padding-top: 0.35rem;
}

.contact-form-shell .webform-button--submit,
.contact-form-shell .btn-primary {
  min-width: min(100%, 16rem);
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--color-black);
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-form-shell .webform-button--submit:hover,
.contact-form-shell .webform-button--submit:focus,
.contact-form-shell .btn-primary:hover,
.contact-form-shell .btn-primary:focus {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: none;
}

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

@media (min-width: 768px) {
  .contact-form-shell .webform-submission-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }

  .contact-form-shell .js-form-item-what-is-your-story,
  .contact-form-shell .js-form-item-date-of-the-event,
  .contact-form-shell .js-form-item-venue,
  .contact-form-shell .js-form-item-event-type,
  .contact-form-shell .js-form-item-wedding-planner-onboard,
  .contact-form-shell .js-form-item-event-details,
  .contact-form-shell .js-form-item-guest-count,
  .contact-form-shell fieldset,
  .contact-form-shell .form-actions {
    grid-column: 1 / -1;
  }
}

.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:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #6b3d4a 0%, #5a313d 100%);
  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 (max-width: 1199.98px) and (min-width: 992px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem 2rem;
  }

  .site-branding {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .site-header__nav .menu {
    gap: 0.75rem;
  }

  .site-header__nav .menu-item > a {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .hero-home {
    padding-top: 4.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 239, 231, 0.92) 100%);
  }
}

@media (max-width: 991.98px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 1rem;
    min-height: auto;
  }

  .site-branding {
    order: 1;
    width: 100%;
    justify-self: center;
  }

  .site-header__nav--left {
    order: 2;
    width: 100%;
  }

  .site-header__region {
    order: 3;
  }

  .site-header__region,
  .site-header__nav {
    width: 100%;
  }

  .site-header__nav .menu {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .site-header__nav--right {
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header__nav .menu-item {
    width: 100%;
  }

  .site-header__nav .menu-item > a {
    width: 100%;
    padding: 0.75rem 0;
  }

  .site-header__nav .menu .menu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    margin-left: 1rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header__nav .menu .menu-item > a {
    padding: 0.45rem 0;
    color: rgba(255, 255, 255, 0.68);
  }

  .site-header__nav .menu .menu-item > a:hover,
  .site-header__nav .menu .menu-item > a:focus {
    background: transparent;
    color: var(--color-white);
  }

  .portfolio-section-aside {
    max-width: none;
  }

  .portfolio-grid-shell .field__item:nth-child(2n) .portfolio-card-modern {
    transform: translateY(0);
  }

  .portfolio-grid-shell .field__item:nth-child(2n) .portfolio-card-modern:hover {
    transform: translateY(-8px);
  }

  .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;
    max-width: none;
  }

  .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) {
  .site-header {
    position: relative;
  }

  .site-header__inner {
    gap: 0.85rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .site-branding__logo img {
    max-height: 2.65rem;
  }

  .site-branding__name {
    font-size: 1.45rem;
  }

  .site-branding__slogan {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .portfolio-section-head {
    margin-bottom: 2.2rem;
  }

  .portfolio-card-body {
    padding: 1.3rem 1.2rem 1.4rem;
  }

  .portfolio-section-aside {
    display: none;
  }

  .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: 2.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 239, 231, 0.94) 100%);
  }

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

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

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

  .image-collage {
    min-height: 0;
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .image-card-left {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 12rem;
  }

  .image-card-right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 14rem;
  }

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

  .video-placeholder iframe,
  .video-placeholder video,
  .video-placeholder embed,
  .video-placeholder object {
    min-height: 15rem;
  }

  .footer-links {
    gap: 0.8rem 1rem;
  }

  .footer-socials a {
    width: 2.75rem;
    height: 2.75rem;
  }

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

@media (max-width: 575.98px) {
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .btn-brand,
  .btn-brand-outline {
    width: 100%;
    padding: 0.9rem 1rem;
  }

  .hero-actions {
    display: grid;
    gap: 0.8rem;
  }

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

  .hero-slide-copy {
    max-width: none;
  }

  .portfolio-thumb-modern::before,
  .film-frame::before {
    inset: 0.7rem;
  }

  .location-card,
  .contact-panel,
  .films-overview-card,
  .films-side-card {
    padding: 1.25rem;
  }

  .footer-line {
    font-size: 0.92rem;
  }
}

.gallery-grid .field__items {
  margin: 0 auto;
}

.gallery-grid .field__item {
  width: 33.333%;
  padding: 8px;
  box-sizing: border-box;
}

.gallery-grid .gallery-item {
  display: block;
}

.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .gallery-grid .field__item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .gallery-grid .field__item {
    width: 100%;
  }
}