body {
  color: #5f5148;
  background: #fcf8f2;
  transition: background-color 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.home-editorial-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #1e1e1e;
}

.home-editorial-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  filter: grayscale(100%);
  transition: opacity 0.6s ease;
}

.home-editorial-video.is-playing {
  opacity: 0.72;
}

.home-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.42) 100%);
  z-index: 1;
}

.home-editorial-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 2.3rem 3.2rem 2.7rem;
}

.home-editorial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.home-editorial-brand {
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.3s;
}

.home-editorial-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.home-editorial-nav a {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.6s;
}

.home-editorial-main {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  pointer-events: none;
}
.home-editorial-main .hero-book-btn {
  pointer-events: auto;
}

.home-editorial-main h1 {
  margin: 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 6.5vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: 0.07em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 6px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: fadeInUp 0.85s ease forwards;
  animation-delay: 0.9s;
}

.home-editorial-vertical {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.1s;
}

.home-editorial-note {
  position: absolute;
  left: 3.2rem;
  bottom: 3.2rem;
  margin: 0;
  max-width: 32rem;
  font-size: clamp(0.92rem, 1.2vw, 1.1rem);
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

.home-editorial-scroll-wrap {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.62rem;
  z-index: 3;
}

.home-editorial-scroll {
  width: 1.6rem;
  height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.48rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.35s;
}

.home-editorial-scroll span {
  width: 0.11rem;
  height: 0.88rem;
  border-radius: 999px;
  background: #fff;
  animation: editorialScroll 1.4s ease-in-out infinite;
}

.home-editorial-scroll-text {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.45s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes editorialScroll {
  0% {
    transform: translateY(0);
    opacity: 0.25;
  }
  50% {
    transform: translateY(11px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.25;
  }
}

@media (max-width: 991px) {
  .home-editorial-inner {
    padding: 1.4rem 1.2rem 2.4rem;
  }

  .home-editorial-nav {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 70%;
  }

  .home-editorial-nav a {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .home-editorial-vertical {
    left: 0.4rem;
  }

  .home-editorial-note {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 4.2rem;
    max-width: none;
    line-height: 1.8;
  }

  .home-editorial-scroll-wrap {
    bottom: 1.05rem;
    gap: 0.52rem;
  }

  .home-editorial-scroll-text {
    letter-spacing: 0.14em;
    font-size: 0.66rem;
  }
}

a,
.item-name a,
.heading h4,
.contact-info a,
.knowledge-share a,
.team-names h6,
.ownmenu ul.dropdown li a {
  color: #6d5748;
}

a:hover,
a:focus,
.item-name a:hover,
.item-name a:focus,
.ownmenu ul.dropdown li a:hover {
  color: #b68063;
}

.primary-color,
.price,
.item-owner span,
.shop-page .product-num,
.contact-info i,
.about-footer i,
.social_icons a:hover,
.knowledge-share .date .huge {
  color: #b68063 !important;
}

.btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn:visited {
  background: #b68063;
  border-color: #b68063;
  color: #fff !important;
}

.btn-round,
.btn-round:hover,
.btn-round:focus {
  background: transparent;
  border-color: #b68063;
  color: #b68063 !important;
}

.btn-round:hover,
.btn-round:focus {
  background: #b68063;
  color: #fff !important;
}

.light-gray-bg,
.tweet {
  background: #f3e8dd !important;
}

.news-letter {
  background: linear-gradient(rgba(120, 91, 73, 0.86), rgba(120, 91, 73, 0.86)), url("../images/special-bg.jpg") center center/cover no-repeat;
}

.news-letter .heading span {
  color: #fff !important;
}

.journal-page {
  background: #f8f4ee;
}

.journal-cover-story {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #221f1d;
}

.journal-cover-media,
.journal-cover-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journal-cover-media img {
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

.journal-cover-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 20, 18, 0.28) 0%, rgba(24, 20, 18, 0.54) 55%, rgba(24, 20, 18, 0.72) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 48%);
}

.journal-cover-story .container {
  position: relative;
  z-index: 2;
}

.journal-cover-copy {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 20px 110px;
  text-align: center;
}

.journal-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(249, 247, 242, 0.85);
}

.journal-cover-copy h2 {
  margin: 0 0 20px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  color: #f9f7f2 !important;
}

.journal-cover-copy p {
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.95;
  color: rgba(249, 247, 242, 0.9) !important;
}

.journal-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff !important;
}

.journal-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

.journal-link:before {
  content: "\2192";
  font-size: 12px;
  line-height: 1;
  order: 2;
}

.journal-editorial {
  position: relative;
}

.journal-editorial .container {
  position: relative;
}

.journal-sidebar {
  position: absolute;
  top: 20px;
  right: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 4;
}

.journal-sidebar span,
.journal-sidebar a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.56);
}

.journal-sidebar a:hover {
  color: #b68063;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px 34px;
  padding-right: 72px;
}

.journal-card {
  display: grid;
  gap: 22px;
}

.journal-card-team {
  grid-column: 1;
}

.journal-card-pmu {
  grid-column: 2;
  margin-top: 90px;
}

.journal-quote-break {
  grid-column: 1 / -1;
  min-height: auto;
  margin: 18px 0 26px;
  padding: 58px 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f7f2;
  border-top: 1px solid rgba(45, 45, 45, 0.08);
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
  text-align: center;
}

.journal-quote-inner {
  max-width: 980px;
  margin: 0 auto;
}

.journal-quote-break p {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.22;
  color: #2d2d2d;
}

.journal-quote-text {
  max-width: 26ch;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
}

.journal-quote-word {
  display: inline-block;
  opacity: 0.1;
  color: rgba(45, 45, 45, 0.4);
  transition: color 0.3s ease;
}

.journal-quote-space {
  display: inline-block;
  width: 0.28em;
}

.journal-quote-word.is-highlight {
  color: #d4af37;
}

.journal-quote-break cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.54);
}

.journal-card-studio {
  grid-column: 1;
}

.journal-card-glow {
  grid-column: 2;
  margin-top: 0;
}

.journal-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d9cab9;
}

.journal-card-media:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  opacity: 0.38;
  mix-blend-mode: soft-light;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.journal-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.journal-card-team .journal-card-media img {
  aspect-ratio: 0.9 / 1.1;
}

.journal-card-pmu .journal-card-media img,
.journal-card-glow .journal-card-media img {
  aspect-ratio: 0.92 / 0.98;
}

.journal-card-studio .journal-card-media img {
  aspect-ratio: 1.25 / 0.9;
}

.journal-card:hover .journal-card-media img {
  transform: scale(1.035);
  filter: saturate(0.82);
}

.journal-card:hover .journal-card-media:before {
  opacity: 0.55;
}

.journal-card-copy {
  max-width: 92%;
}

.journal-card-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b68063;
}

.journal-card-copy h3 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.02;
  color: #2d2d2d;
}

.journal-card-copy h3 a {
  color: inherit;
}

.journal-card-copy p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.95;
  color: #5f5148;
}

.journal-card-copy p:first-letter {
  float: left;
  margin: 8px 14px 0 0;
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  line-height: 0.8;
  color: #2d2d2d;
}

@media (max-width: 1199px) {
  .journal-grid {
    gap: 34px 28px;
    padding-right: 54px;
  }

  .journal-card-pmu {
    margin-top: 60px;
  }

  .journal-card-glow {
    margin-top: -30px;
  }
}

@media (max-width: 991px) {
  .journal-cover-story {
    min-height: 68vh;
  }

  .journal-cover-copy {
    padding: 110px 20px 90px;
  }

  .journal-sidebar {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-bottom: 34px;
  }

  .journal-sidebar span,
  .journal-sidebar a {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-right: 0;
  }

  .journal-card-team,
  .journal-card-pmu,
  .journal-card-studio,
  .journal-card-glow {
    grid-column: 1;
    margin-top: 0;
  }

  .journal-card-copy {
    max-width: none;
  }

  .journal-quote-break {
    min-height: auto;
    padding: 56px 24px;
  }
}

@media (max-width: 767px) {
  .journal-cover-copy h2 {
    font-size: 42px;
  }

  .journal-cover-copy p {
    font-size: 15px;
    line-height: 1.8;
  }

  .journal-card-copy h3 {
    font-size: 32px;
  }

  .journal-card-copy p {
    font-size: 15px;
    line-height: 1.8;
  }

  .journal-card-copy p:first-letter {
    margin: 4px 10px 0 0;
    font-size: 52px;
  }

  .journal-quote-break p {
    font-size: 30px;
  }

  .journal-quote-text {
    max-width: none;
  }
}

.sub-bnr {
  min-height: 340px;
  padding: 120px 0 90px;
  background: linear-gradient(rgba(120, 91, 73, 0.62), rgba(120, 91, 73, 0.62)), url("../images/slide-bg-1.jpg") center center/cover no-repeat !important;
}

/* Treatments page video hero */
.treatments-hero {
  position: relative;
  width: 100%;
  height: 62vh;
  min-height: 380px;
  overflow: hidden;
  background: #111;
}
.treatments-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.72;
}
.treatments-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.48) 100%);
  z-index: 1;
}
.treatments-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.treatments-hero h4,
.treatments-hero p {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.home-slider {
  background: #efe4d7;
}

.home-slider .tp-caption,
.home-slider .btn {
  text-shadow: 0 2px 12px rgba(77, 54, 40, 0.18);
}

.home-slider .btn {
  box-shadow: 0 12px 28px rgba(109, 87, 72, 0.18);
}

.sub-bnr.hero-slide-1 {
  background: linear-gradient(rgba(120, 91, 73, 0.62), rgba(120, 91, 73, 0.62)), url("../images/slide-bg-1.jpg") center center/cover no-repeat !important;
}

.sub-bnr.hero-slide-2 {
  background: linear-gradient(rgba(120, 91, 73, 0.62), rgba(120, 91, 73, 0.62)), url("../images/slide-bg-2.jpg") center center/cover no-repeat !important;
}

.sub-bnr .position-center-center {
  width: 100%;
}

.sub-bnr h4,
.sub-bnr p,
.sub-bnr .breadcrumb li,
.sub-bnr .breadcrumb li a,
.testimonial .testi-in,
.testimonial .testi-in h5,
.tweet,
.tweet span {
  color: #fff;
}

header,
header.header-1 {
  position: relative;
  z-index: 99999;
  margin: 0 !important;
  border: 0 !important;
}

.sticky-wrapper {
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

header .sticky {
  background: rgba(252, 248, 242, 0.97);
  padding: 2px 0;
  box-shadow: none !important;
  border: 0 !important;
  transition: background 0.35s ease;
}

/* Transparent header at top of page (over hero video) */
.sticky-wrapper:not(.is-sticky) .sticky {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.sticky-wrapper:not(.is-sticky) .navbar li a,
.sticky-wrapper:not(.is-sticky) .navbar li.active a {
  color: #1a1612 !important;
}

.sticky-wrapper:not(.is-sticky) .navbar li a:hover {
  color: #b68063 !important;
}

/* Homepage: navbar overlays the hero (floats on top, no background) */
/* Global: transparent floating navbar on all pages */
header,
header.header-1 {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: transparent !important;
  padding: 0 !important;
}
header .sticky {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
.sticky-wrapper {
  background: transparent !important;
  height: auto !important;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
/* Hero must start at top-0, not pushed below header */
.home-page .home-editorial-hero {
  margin-top: 0 !important;
}

/* Before scroll: white text */
.sticky-wrapper:not(.is-sticky) .navbar li a,
.sticky-wrapper:not(.is-sticky) .navbar li.active a {
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.sticky-wrapper:not(.is-sticky) .navbar li a:hover {
  color: #c9a96e !important;
}

/* After scroll: warm solid background + dark text */
.sticky-wrapper.is-sticky .sticky {
  background: rgba(252, 248, 242, 0.97) !important;
  box-shadow: 0 2px 20px rgba(82, 63, 49, 0.10) !important;
}
.sticky-wrapper.is-sticky .navbar li a,
.sticky-wrapper.is-sticky .navbar li.active a {
  color: #1a1612 !important;
  text-shadow: none !important;
}
.sticky-wrapper.is-sticky .navbar li a:hover {
  color: #b68063 !important;
}

header .sticky .container {
  max-width: 1320px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 14px 40px !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  overflow: visible;
}

header .logo {
  float: none !important;
  margin: 0 !important;
  display: block !important;
  flex: 0 0 auto !important;
  min-width: 0;
  padding: 0 !important;
}

header .navbar {
  float: none !important;
  display: block !important;
  text-align: right;
  flex: 1 1 auto !important;
  min-width: 0;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

header .navbar .nav {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  white-space: nowrap;
  float: none !important;
  width: auto !important;
}

header .navbar li {
  float: none !important;
  display: inline-flex !important;
  margin: 0 0 0 14px !important;
  flex: 0 0 auto;
  width: auto !important;
}

header,
header:before,
header:after,
header .logo:before,
header .logo:after,
header nav:before,
header nav:after,
header .navbar:before,
header .navbar:after,
header .ownmenu:before,
header .ownmenu:after,
header .container:before,
header .container:after,
.sticky-wrapper,
.sticky-wrapper:before,
.sticky-wrapper:after {
  border: 0 !important;
  box-shadow: none !important;
}

.ownmenu > li > a {
  color: #6d5748;
  padding: 4px 0;
  margin: 0;
  letter-spacing: 0.16em;
}

header .navbar li a {
  font-size: 12px;
}

header .navbar li a:before,
header .navbar li.active a:before {
  top: auto;
  bottom: 8px;
  left: 0;
  height: 3px;
  background: #d8b37b;
}

.ownmenu > li.active > a,
.ownmenu > li:hover > a,
.ownmenu > li > a:hover,
.ownmenu > li > a:focus {
  color: #b68063;
}

.nav-right,
.user-basket,
.user-acc,
.search-open,
.on-sale,
.quinty,
.colors-shop,
.like-us,
.papular-block .overlay .inn a:nth-child(n+2),
.papular-block .overlay [data-toggle="tooltip"] {
  display: none !important;
}

/* ── Navbar booking button ── */
.nav-book-li a {
  background: #b68063 !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 7px 20px !important;
  margin-left: 10px !important;
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  transition: background 0.2s ease !important;
  white-space: nowrap !important;
}
.nav-book-li a:hover {
  background: #9e6b50 !important;
  color: #fff !important;
}

/* ── Hero booking button ── */
.hero-book-btn {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  border: 1px solid rgba(249,247,242,0.7);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f9f7f2 !important;
  text-decoration: none !important;
  transition: background 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  animation: fadeInUp 0.85s ease forwards;
  animation-delay: 1.25s;
}
.hero-book-btn:hover {
  background: rgba(249,247,242,0.12);
  border-color: #f9f7f2;
  color: #f9f7f2 !important;
}

/* ── Hero "Glow" word accent ── */
.hero-glow-word {
  font-style: italic;
}

.arrival-block .overlay .price,
.papular-block .overlay .price {
  display: none;
}

.home-focus-bento {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(240, 222, 204, 0.58), transparent 32%),
    linear-gradient(180deg, #fcf8f2 0%, #f4ebdf 100%);
}

.home-focus-head {
  max-width: 780px;
  margin: 0 auto 54px;
}

.home-focus-head span {
  display: block;
  line-height: 1.9;
  text-align: center !important;
  width: 100%;
}

.focus-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 8px;
  align-items: start;
}

/* Card = flex column: image on top, text below */
.focus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  transform: translateY(38px);
  opacity: 0;
  transition:
    transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.85s ease;
}

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

/* Image container — clips and rounds the image */
.focus-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #d0d0d0;
  flex-shrink: 0;
}

/* Default small card image height */
.focus-card .focus-card-media { min-height: 220px; }
.focus-card-hero .focus-card-media { min-height: 400px; }
.focus-card-wide .focus-card-media { min-height: 220px; }
.focus-card-tall .focus-card-media { min-height: 400px; }

.focus-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Keep ::before gradient off — text is no longer on the image */
.focus-card:before { display: none; }

@media (hover: hover) and (pointer: fine) {
  .focus-card:hover .focus-card-media img { transform: scale(1.05); }
}
.focus-card:focus-visible .focus-card-media img { transform: scale(1.05); }

/* Text below image — clean, minimal */
.focus-card-copy {
  position: static;
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 14px 4px 0;
  border-radius: 0;
}

.focus-card-kicker {
  display: block;
  margin-bottom: 5px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #888;
  font-family: 'Montserrat', sans-serif;
}

.focus-card-copy h5 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.18;
  color: #111;
  font-weight: 400;
}

/* Hide p everywhere — caption style needs no body copy */
.focus-card-copy p { display: none !important; }

/* Grid span rules */
.focus-card-hero { grid-column: span 2; grid-row: span 2; align-self: stretch; }
.focus-card-wide { grid-column: span 2; }
.focus-card-tall { grid-row: span 2; align-self: stretch; }

/* Spanning cards: let the image grow to fill available height — kills the white gap */
.focus-card-hero .focus-card-media,
.focus-card-tall .focus-card-media {
  flex: 1 1 0;
  min-height: 260px;
}

/* Hero title slightly larger */
.focus-card-hero .focus-card-copy h5 { font-size: 26px; }
.focus-card-tall .focus-card-copy h5  { font-size: 22px; }

.home-kinetic-categories {
  padding: 64px 0 64px;
  background:
    linear-gradient(180deg, #eee5d8 0%, #e5d8c6 100%);
  color: #2d2d2d;
  position: relative;
  overflow: hidden;
}

/* Animated grain overlay for visual texture */
.home-kinetic-categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  animation: kineticGrain 7s steps(6) infinite;
}

@keyframes kineticGrain {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-3%, 2%); }
  33%  { transform: translate(2%, -3%); }
  50%  { transform: translate(-1%, 4%); }
  66%  { transform: translate(3%, -1%); }
  83%  { transform: translate(-2%, -2%); }
  100% { transform: translate(0, 0); }
}

.home-kinetic-categories > .container {
  position: relative;
  z-index: 1;
}

.home-kinetic-categories > .container:only-child {
  /* when accordion is outside container, let it breathe */
  padding-bottom: 0;
}

.home-kinetic-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-kinetic-head span {
  display: block;
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.9;
  color: rgba(45, 45, 45, 0.72);
}

/* Full-bleed accordion — outside the container */
.kinetic-accordion {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(160, 130, 100, 0.28);
  position: relative;
  z-index: 1;
}

/* Each row: distinct warm tone + compact 110px height */
.kinetic-row {
  position: relative;
  display: block;
  height: 110px;
  overflow: hidden;
  border-top: 1px solid rgba(160, 130, 100, 0.28);
  color: #2d2d2d;
  transition:
    height 0.85s cubic-bezier(0.7, 0, 0.3, 1),
    background 0.85s cubic-bezier(0.7, 0, 0.3, 1),
    box-shadow 0.85s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Each row gets a subtly distinct warm tone for visible depth */
.kinetic-row-skin {
  background:
    linear-gradient(180deg, rgba(244, 235, 222, 0.9) 0%, rgba(238, 226, 210, 0.95) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

.kinetic-row-glow {
  background:
    linear-gradient(180deg, rgba(238, 227, 212, 0.9) 0%, rgba(228, 214, 196, 0.95) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

.kinetic-row-defined {
  background:
    linear-gradient(180deg, rgba(230, 217, 200, 0.9) 0%, rgba(220, 204, 183, 0.95) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

.kinetic-row:focus-visible {
  height: 400px;
  background:
    linear-gradient(160deg, rgba(20, 15, 10, 0.96) 0%, rgba(35, 25, 15, 0.98) 100%);
  box-shadow:
    0 -1px 0 rgba(182, 128, 80, 0.22),
    0 1px 0 rgba(182, 128, 80, 0.22),
    0 24px 60px rgba(20, 10, 5, 0.22);
}

.kinetic-row-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.kinetic-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.06);
  clip-path: inset(0 50% 0 50%);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease,
    clip-path 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.kinetic-row:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 19, 19, 0.52) 0%, rgba(19, 19, 19, 0.14) 45%, rgba(19, 19, 19, 0.46) 100%);
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.kinetic-row:after {
  /* Removed: was causing visual misalignment */
  display: none;
}

.kinetic-row:focus-visible:before {
  opacity: 1;
}




.kinetic-row:focus-visible .kinetic-row-media img {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}

.kinetic-row-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  text-align: center;
  box-sizing: border-box;
}

/* Row number — editorial left-side accent */
.kinetic-row-num {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(109, 87, 72, 0.55);
  font-family: 'Montserrat', sans-serif;
  transition: color 0.6s ease, opacity 0.6s ease;
  z-index: 3;
}

.kinetic-row:focus-visible .kinetic-row-num {
  color: rgba(212, 175, 55, 0.7);
}

.kinetic-row h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.08;
  text-align: center;
  transition:
    transform 0.9s cubic-bezier(0.7, 0, 0.3, 1),
    color 0.6s ease;
}

.kinetic-row-reveal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(26px);
  top: calc(50% + 2.2rem);
  width: 100%;
  max-width: 720px;
  opacity: 0;
  text-align: center;
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.7, 0, 0.3, 1);
}

.kinetic-row-reveal p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(249, 247, 242, 0.94);
  text-align: center;
}

.kinetic-row-reveal span {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f9f7f2;
}

.kinetic-row-reveal span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

.kinetic-row:focus-visible .kinetic-row-shell {
  justify-content: center;
}

.kinetic-row:focus-visible h5 {
  color: #f9f7f2;
  transform: translateY(-10px);
}

.kinetic-row:focus-visible .kinetic-row-reveal {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .kinetic-row:hover {
    height: 400px;
    background:
      linear-gradient(160deg, rgba(20, 15, 10, 0.96) 0%, rgba(35, 25, 15, 0.98) 100%);
    box-shadow:
      0 -1px 0 rgba(182, 128, 80, 0.22),
      0 1px 0 rgba(182, 128, 80, 0.22),
      0 24px 60px rgba(20, 10, 5, 0.22);
  }

  .kinetic-row:hover:before {
    opacity: 1;
  }

  .kinetic-row:hover .kinetic-row-media img {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }

  .kinetic-row:hover .kinetic-row-num {
    color: rgba(212, 175, 55, 0.7);
  }

  .kinetic-row:hover .kinetic-row-shell {
    justify-content: center;
  }

  .kinetic-row:hover h5 {
    color: #f9f7f2;
    transform: translateY(-10px);
  }

  .kinetic-row:hover .kinetic-row-reveal {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

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

  .focus-card-hero,
  .focus-card-wide {
    grid-column: span 2;
  }

  .focus-card-tall {
    grid-row: span 2;
  }

  .focus-card .focus-card-media { min-height: 200px; }
  .focus-card-hero .focus-card-media,
  .focus-card-tall .focus-card-media { flex: 1 1 0; min-height: 220px; }
  .focus-card-wide .focus-card-media { min-height: 200px; }

  .focus-card-copy h5 { font-size: 16px; }
  .focus-card-hero .focus-card-copy h5 { font-size: 22px; }
  .focus-card-tall .focus-card-copy h5 { font-size: 20px; }

  .home-kinetic-categories {
    padding: 50px 0 0;
  }

  .kinetic-row {
    height: 200px;
  }

  .kinetic-row:focus-visible {
    height: 380px;
  }

  .kinetic-row-media img {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }

  .kinetic-row:before {
    opacity: 1;
  }

  .kinetic-row h5 {
    color: #f9f7f2;
    transform: none;
    text-align: center;
  }

  .kinetic-row-reveal {
    margin-top: 16px;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991px) and (hover: hover) and (pointer: fine) {
  .kinetic-row:hover {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .home-focus-head {
    margin-bottom: 34px;
  }

  .focus-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .focus-card,
  .focus-card-hero,
  .focus-card-wide,
  .focus-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .focus-card .focus-card-media,
  .focus-card-hero .focus-card-media,
  .focus-card-wide .focus-card-media,
  .focus-card-tall .focus-card-media {
    min-height: 260px;
  }

  .focus-card-copy h5,
  .focus-card-hero .focus-card-copy h5,
  .focus-card-tall .focus-card-copy h5 {
    font-size: 18px;
  }

  .home-kinetic-head {
    margin-bottom: 28px;
  }

  .kinetic-row {
    height: auto;
  }

  .kinetic-row-shell {
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    max-width: none;
    text-align: center;
    padding: 20px;
  }

  .kinetic-row h5 {
    font-size: 32px;
    letter-spacing: 0.12em;
    width: 100%;
    text-align: center;
  }

  .kinetic-row-reveal p {
    font-size: 14px;
    line-height: 1.75;
    text-align: center;
  }
}

.shop-page .papular-block.row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.shop-page .papular-block.row::before {
  display: none;
}

.shop-page .papular-block.row > [class*="col-"] {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.shop-page .papular-block.row:has(.item:hover) > [class*="col-"]:has(.item:hover) {
  z-index: 30;
}

.shop-page .papular-block.row:has(.item:hover) > [class*="col-"]:not(:has(.item:hover)) {
  filter: none;
  opacity: 1;
  transform: none;
}

.shop-page .papular-block .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0 28px;
  background: #fff;
  border: 1px solid rgba(182, 128, 99, 0.14);
  box-shadow: 0 18px 40px rgba(109, 87, 72, 0.08);
  overflow: hidden;
  position: relative;
  transform-origin: center center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shop-page .papular-block .item:hover {
  transform: scale(1.08);
  border-color: rgba(182, 128, 99, 0.35);
  box-shadow: 0 34px 70px rgba(109, 87, 72, 0.24);
  z-index: 10;
}

.shop-page .papular-block .item-img {
  margin-bottom: 0;
}

.shop-page .papular-block .item:hover .img-1 {
  left: 0;
}

.shop-page .papular-block .item .img-2 {
  display: none;
}

.shop-page .papular-block .overlay {
  background: rgba(255, 255, 255, 0.08);
}

.shop-page .papular-block .overlay .inn {
  background: rgba(45, 58, 75, 0.82);
}

.shop-page .papular-block .overlay .inn a {
  background: transparent;
}

.shop-page .papular-block .item-name {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 26px 26px 0;
  margin-bottom: 0;
  text-align: center;
}

.shop-page .papular-block .item-name a {
  display: block;
  width: 100%;
  min-height: 3.2em;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0.14em;
  overflow-wrap: anywhere;
  word-break: normal;
}

.shop-page .papular-block .item-name p {
  flex: 1 1 auto;
  max-width: 26ch;
  margin: 10px auto 0;
  line-height: 1.8;
}

.shop-page .papular-block .price {
  margin-top: 22px;
  padding: 0 26px;
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .shop-page .papular-block.row > [class*="col-"] {
    margin-bottom: 30px;
  }

  .shop-page .papular-block .item:hover {
    transform: none;
    z-index: auto;
  }

  .shop-page .papular-block .item-name a {
    min-height: 0;
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .shop-page .papular-block .item-name p {
    max-width: 28ch;
  }
}

.heading span,
.heading p,
.item-name p,
.shop-detail p,
.contact-form label,
.contact-info,
footer p,
footer li a,
.vision-text p,
.vision-text h2,
.history-block p,
.history-block li,
.item-decribe p,
.item-decribe li {
  color: #7a6a5f;
}

.images-slider,
.item,
.contact-form,
.contact-info,
.small-about,
.shop-detail,
.item-decribe,
.tweet .col-md-8 {
  border-radius: 10px;
}

.history-block img,
.video-block img,
.images-slider img,
.contact .contact-info,
.item .item-img img {
  filter: saturate(0.92);
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.logo-img {
  width: auto;
  display: block !important;
  transition: opacity 0.35s ease;
}

/* Both states use the full logo at the same height — no layout shift */
.logo-full { height: 52px; }
.logo-icon { display: none !important; }

/* Before scroll: show white logo, hide dark logo */
.logo-dark  { opacity: 0; position: absolute; pointer-events: none; }
.logo-light { opacity: 1; position: static;   pointer-events: auto; }

/* After scroll: show dark logo, hide white logo */
.sticky-wrapper.is-sticky .logo-light { opacity: 0; position: absolute; pointer-events: none; }
.sticky-wrapper.is-sticky .logo-dark  { opacity: 1; position: static;   pointer-events: auto; }

.brand-name,
.brand-foot-name {
  display: inline-block;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-foot-est {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 3px;
  margin-bottom: 14px;
}

.brand-name {
  color: #6d5748;
  font-size: 16px;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

.sticky-wrapper {
  background: transparent !important;
}

.sticky-wrapper.is-sticky .sticky {
  background: rgba(252, 248, 242, 0.97) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
  z-index: 99999 !important;
}

.brand-foot-name {
  color: #f7efe7;
  font-size: 20px;
  margin-bottom: 16px;
}

.arrival-block .item .img-1,
.arrival-block .item .img-2 {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.home-gallery-editorial {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(248, 240, 231, 0.78), transparent 32%),
    linear-gradient(180deg, #f7f1ea 0%, #efe6db 100%);
  border-top: 1px solid rgba(182, 128, 99, 0.1);
  border-bottom: 1px solid rgba(182, 128, 99, 0.08);
}

.home-gallery-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.home-gallery-editorial .container {
  position: relative;
}

.home-gallery-editorial .container:before {
  content: "";
  position: absolute;
  top: -24px;
  left: 15px;
  right: 15px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(182, 128, 99, 0.2) 50%, transparent 100%);
}

.home-gallery-title {
  display: block;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #2d2420;
}

.home-gallery-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #7a6a5f;
  max-width: 52ch;
  margin: 0 auto;
}

.editorial-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.editorial-gallery-card {
  position: relative;
  --gallery-shift: 0px;
  transform: translate3d(0, var(--gallery-shift), 0);
  transition: transform 0.5s ease, opacity 0.35s ease, filter 0.35s ease;
  will-change: transform;
}

.editorial-gallery-card-left {
  padding-top: 72px;
}

.editorial-gallery-card-center {
  padding-top: 0;
}

.editorial-gallery-card-right {
  padding-top: 112px;
}

.editorial-gallery-media {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #d9cab9;
  box-shadow: 0 26px 70px rgba(78, 59, 47, 0.13);
}

.editorial-gallery-card-left .editorial-gallery-media {
  height: 520px;
}

.editorial-gallery-card-center .editorial-gallery-media {
  height: 660px;
}

.editorial-gallery-card-right .editorial-gallery-media {
  height: 470px;
}

.editorial-gallery-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 24, 20, 0.03) 0%, rgba(29, 24, 20, 0.18) 100%);
}

.editorial-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-gallery-copy {
  position: relative;
  margin-top: 22px;
  padding: 0 4px;
  text-align: center;
}

.editorial-gallery-copy h6 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #2d2420;
  font-weight: 600;
}

.editorial-gallery-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #7a6a5f;
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
}

@media (hover: hover) and (pointer: fine) {
  .editorial-gallery-grid:hover .editorial-gallery-card {
    opacity: 0.7;
  }

  .editorial-gallery-grid:hover .editorial-gallery-card:hover {
    opacity: 1;
    z-index: 3;
  }

  .editorial-gallery-card:hover {
    transform: translate3d(0, calc(var(--gallery-shift) - 6px), 0) scale(1.02);
  }

  .editorial-gallery-card:hover .editorial-gallery-media img {
    transform: scale(1.08);
  }
}

/* ── Brand Partners redesign ── */
/* ─── Brand Gallery ──────────────────────────────────── */
.bg-section {
  background: #fff;
  padding: 110px 0 100px;
}

.bg-head {
  text-align: center;
  padding-bottom: 64px;
}

.bg-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #b68063;
  margin-bottom: 18px;
}

.bg-head h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.bg-head p {
  font-size: 15px;
  color: #555;
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.85;
}

.bg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bg-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: #e8e0d8;
  box-shadow: 0 8px 30px rgba(109, 87, 72, 0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bg-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(109, 87, 72, 0.18);
}

.bg-item img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  filter: none !important;
  margin: 0 !important;
  transition: transform 0.45s ease !important;
}

.bg-item:hover img {
  transform: scale(1.06) !important;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(245, 240, 234, 0.92) 0%,
    rgba(245, 240, 234, 0.30) 40%,
    transparent 70%
  );
  transition: background 0.35s ease;
}

.bg-item:hover .bg-overlay {
  background: linear-gradient(
    to top,
    rgba(245, 240, 234, 0.97) 0%,
    rgba(245, 240, 234, 0.40) 45%,
    transparent 72%
  );
}

.bg-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  z-index: 2;
  background-color: transparent !important;
}

.bg-num {
  display: none;
}

.bg-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a1a !important;
  line-height: 1.3;
  text-transform: none;
}

@media (max-width: 900px) {
  .bg-section {
    padding: 80px 0 72px;
  }
  .bg-head {
    padding-bottom: 48px;
  }
  .bg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .bg-grid {
    gap: 10px;
  }
}


/* Legacy ghost brand CSS kept below for reference — no longer rendered */
.home-brand-strip .brand-card {
  background: #fffdf9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(109, 87, 72, 0.08);
}

.home-brand-strip .brand-card img {
  width: 100%;
}

.home-brand-strip {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  background: #12100e !important;
  min-height: 72vh;
  display: flex;
  align-items: stretch;
}

/* Override the container inside brand strip to be full-width */
.home-brand-strip > .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.home-brand-head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
  pointer-events: none;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.home-brand-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.home-brand-head h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: 0.1em;
  color: #f9f7f2;
  margin: 0 0 16px;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

.home-brand-head p {
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.9;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(249, 247, 242, 0.68);
}

.brand-ghost-gallery {
  position: relative;
  width: 100%;
  min-height: 72vh;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-ghost-item {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: 'Playfair Display', serif;
  font-size: clamp(70px, 12vw, 180px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
  text-stroke: 1.5px rgba(255, 255, 255, 0.22);
  opacity: 1;
  cursor: pointer;
  white-space: nowrap;
  filter: blur(3px);
  transition:
    color 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-text-stroke-color 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.brand-ghost-item span {
  display: block;
}

.brand-ghost-item.is-active,
.brand-ghost-item:focus-visible {
  color: #d4af37;
  -webkit-text-stroke-color: #d4af37;
  opacity: 1;
  filter: blur(0);
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .brand-ghost-item:hover {
    color: #d4af37;
    -webkit-text-stroke-color: #d4af37;
    opacity: 1;
    filter: blur(0);
    outline: none;
  }
}

.brand-ghost-marquee {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding: 32px 0;
}

.brand-ghost-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  white-space: nowrap;
  width: max-content;
  padding-left: 6vw;
}

.brand-ghost-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.brand-ghost-bg.is-visible {
  opacity: 1;
}

.brand-ghost-bg-inner {
  position: absolute;
  inset: -8%;
  will-change: transform;
}

.brand-ghost-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.06);
  filter: saturate(1) contrast(0.98) brightness(0.75);
  clip-path: circle(0% at var(--reveal-x, 50%) var(--reveal-y, 50%));
  -webkit-mask-image: radial-gradient(circle at var(--reveal-x, 50%) var(--reveal-y, 50%), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, 0) 72%);
  mask-image: radial-gradient(circle at var(--reveal-x, 50%) var(--reveal-y, 50%), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, 0) 72%);
  will-change: transform, opacity, clip-path;
}

.brand-ghost-bg-layer.is-active {
  opacity: 0.92;
  clip-path: circle(46% at var(--reveal-x, 50%) var(--reveal-y, 50%));
}

/* Dark vignette edges so the heading text stays readable */
.brand-ghost-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(12, 10, 8, 0.88) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Extra ambient color wash over the entire section when no hover */
.brand-ghost-gallery:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(182, 128, 99, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(12, 10, 8, 0.42) 0%, rgba(12, 10, 8, 0.12) 40%, rgba(12, 10, 8, 0.42) 100%);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .home-brand-strip {
    min-height: 60vh;
  }

  .brand-ghost-gallery {
    min-height: 60vh;
  }

  .brand-ghost-marquee {
    padding: 22px 0;
  }

  .brand-ghost-item {
    font-size: clamp(52px, 14vw, 100px);
    -webkit-text-stroke-width: 1.2px;
    filter: blur(2px);
  }
}

@media (max-width: 767px) {
  .home-brand-strip {
    min-height: 50vh;
  }

  .brand-ghost-gallery {
    min-height: 50vh;
  }

  .home-brand-head {
    padding: 0 16px;
  }

  .home-brand-head h4 {
    font-size: 2rem;
  }

  .brand-ghost-item {
    font-size: clamp(40px, 13vw, 70px);
    line-height: 0.92;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.18);
    filter: blur(2px);
  }
}

.home-journal-scrapbook {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f0e7 0%, #fbf8f2 100%);
}

.home-journal-scrapbook:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: 0.28;
  mix-blend-mode: multiply;
  animation: journalGrain 8s steps(8) infinite;
  pointer-events: none;
}

.home-journal-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 54px;
}

.home-journal-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b68063;
}

.home-journal-head p {
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.95;
  color: #7a6a5f;
}

.scrapbook-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px 34px;
  align-items: start;
  padding: 12px 20px 0;
}

.scrapbook-card {
  position: relative;
  padding: 26px 26px 30px;
  background: #faf9f6;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.scrapbook-card-glow {
  transform: rotate(-3deg);
}

.scrapbook-card-team {
  margin-top: 110px;
  transform: rotate(2deg);
}

@media (hover: hover) and (pointer: fine) {
  .scrapbook-card:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 34px 85px rgba(0, 0, 0, 0.12);
    z-index: 4;
  }
}

.scrapbook-note {
  position: absolute;
  top: -18px;
  right: 24px;
  font-family: 'Parisienne', cursive;
  font-size: 34px;
  color: rgba(182, 128, 99, 0.86);
  z-index: 3;
}

.scrapbook-media {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.scrapbook-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 104px;
  height: 30px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(220, 195, 166, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 10px rgba(141, 114, 92, 0.08);
  z-index: 2;
}

.scrapbook-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(73, 59, 48, 0.06);
}

.scrapbook-card-glow .scrapbook-media img {
  aspect-ratio: 1.05 / 0.86;
}

.scrapbook-card-team .scrapbook-media img {
  aspect-ratio: 0.92 / 1.08;
}

.scrapbook-copy {
  max-width: 92%;
}

.scrapbook-date {
  margin-bottom: 16px;
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #8d7f73;
}

.scrapbook-copy h5 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.02;
  color: #2d2d2d;
}

.scrapbook-copy h5 a {
  color: inherit;
}

.scrapbook-copy p {
  margin: 0;
  line-height: 1.9;
  color: #5f5148;
}

@keyframes journalGrain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-1.2%, 1.4%); }
  40% { transform: translate(1.1%, -1%); }
  60% { transform: translate(0.8%, 1%); }
  80% { transform: translate(-0.8%, -1.1%); }
  100% { transform: translate(0, 0); }
}

@media (max-width: 991px) {
  .scrapbook-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0;
  }

  .scrapbook-card-glow,
  .scrapbook-card-team {
    margin-top: 0;
    transform: rotate(0deg);
  }
}

@media (max-width: 991px) and (hover: hover) and (pointer: fine) {
  .scrapbook-card:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 767px) {
  .home-journal-head {
    margin-bottom: 34px;
  }

  .scrapbook-card {
    padding: 18px 18px 22px;
  }

  .scrapbook-note {
    right: 18px;
    font-size: 28px;
  }

  .scrapbook-copy {
    max-width: none;
  }

  .scrapbook-copy h5 {
    font-size: 34px;
  }
}

.home-story-editorial {
  position: relative;
  padding: 170px 0 170px;
  background: #ffffff;
  transition: background-color 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.home-story-editorial.is-warm {
  background: #fdfbf7;
}

.home-story-quote {
  display: flex;
  justify-content: center;
  text-align: center;
}

.home-story-quote-inner {
  max-width: 980px;
  margin: 0 auto;
}

.home-story-quote-text {
  max-width: 24ch;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  line-height: 1.18;
  color: #2d2d2d;
}

.home-story-quote-word {
  display: inline-block;
  opacity: 0.1;
  color: rgba(45, 45, 45, 0.38);
}

.home-story-quote-space {
  display: inline-block;
  width: 0.28em;
}

.home-story-quote cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(109, 87, 72, 0.72);
}

.home-story-connector {
  display: flex;
  justify-content: center;
  padding: 70px 0 78px;
}

.home-story-line {
  width: 1px;
  height: 160px;
  background: linear-gradient(180deg, rgba(182, 128, 99, 0.12) 0%, rgba(182, 128, 99, 0.8) 100%);
  transform-origin: top center;
  transform: scaleY(0);
  will-change: transform;
}

.home-story-about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: flex-start;
}

.home-story-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(82, 63, 49, 0.12);
  align-self: flex-start;
  margin-top: 48px;
}

.home-story-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

.home-story-copy {
  max-width: 620px;
}

.home-story-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b68063;
}

.home-story-copy h4 {
  margin: 0 0 22px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
  line-height: 0.98;
  color: #2d2d2d;
}

.home-story-copy p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.95;
  color: #5f5148;
}

.home-story-signature {
  margin-top: 44px;
  max-width: 520px;
}

.home-story-signature svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.home-story-signature path {
  fill: none;
  stroke: #b68063;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1199px) {
  .home-story-about {
    gap: 48px;
  }

  .home-story-media {
    min-height: unset;
  }
}

@media (max-width: 991px) {
  .home-story-editorial {
    padding: 120px 0;
  }

  .home-story-about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-story-media {
    min-height: 500px;
  }

  .home-story-copy {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .home-story-editorial {
    padding: 90px 0;
  }

  .home-story-quote-text {
    max-width: none;
    font-size: 38px;
  }

  .home-story-connector {
    padding: 46px 0 52px;
  }

  .home-story-media {
    min-height: 360px;
  }

  .home-story-copy h4 {
    font-size: 38px;
  }

  .home-story-copy p {
    font-size: 15px;
    line-height: 1.85;
  }
}

@media (max-width: 1199px) {
  .editorial-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .editorial-gallery-card-left,
  .editorial-gallery-card-right {
    padding-top: 68px;
  }

  .editorial-gallery-card-left .editorial-gallery-media,
  .editorial-gallery-card-right .editorial-gallery-media {
    height: 430px;
  }

  .editorial-gallery-card-center .editorial-gallery-media {
    height: 560px;
  }

  .editorial-gallery-copy h6 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .editorial-gallery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .editorial-gallery-card,
  .editorial-gallery-card-left,
  .editorial-gallery-card-center,
  .editorial-gallery-card-right {
    padding-top: 0;
  }

  .editorial-gallery-card-left .editorial-gallery-media,
  .editorial-gallery-card-center .editorial-gallery-media,
  .editorial-gallery-card-right .editorial-gallery-media {
    height: 460px;
  }

  .editorial-gallery-copy {
    margin-top: -34px;
    margin-left: 16px;
    max-width: calc(100% - 28px);
  }

  .editorial-gallery-copy h6 {
    font-size: 24px;
  }

  .editorial-gallery-grid:hover .editorial-gallery-card {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .home-gallery-head {
    margin-bottom: 34px;
  }

  .home-gallery-title {
    font-size: 18px;
    letter-spacing: 0.15em;
  }

  .home-gallery-head p {
    font-size: 17px;
  }

  .editorial-gallery-card-left .editorial-gallery-media,
  .editorial-gallery-card-center .editorial-gallery-media,
  .editorial-gallery-card-right .editorial-gallery-media {
    height: 340px;
  }

  .editorial-gallery-copy h6 {
    font-size: 20px;
    letter-spacing: 0.12em;
  }

  .editorial-gallery-copy p {
    max-width: none;
    padding: 14px 15px;
    line-height: 1.75;
  }
}

.home-brand-strip .brand-card {
  padding: 16px;
}

.testimonial {
  background: #fffdf9 !important;
  border-top: 1px solid rgba(182, 128, 99, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.small-about,
.shop-detail,
.item-decribe {
  background: #fffdf9;
}

footer {
  background: #6d5748;
}

footer h6,
footer p,
footer a,
footer .rights p {
  color: #f7efe7 !important;
}

footer a:hover {
  color: #efd3bd !important;
}

.about-footer p {
  margin-bottom: 9px;
  line-height: 1.6;
  font-size: 13px;
}

.about-footer p i {
  display: none;
}

.about-footer p a {
  display: inline;
}

.social_icons a,
.team-hover,
.contact-form .success-msg,
.ownmenu ul.dropdown,
.selectpicker,
.form-control,
input,
textarea {
  border-color: #e2d2c3 !important;
}

.team-hover {
  background: rgba(182, 128, 99, 0.82);
}

.studio-editorial {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(180deg, #f8f4ee 0%, #efe4d7 100%);
}

.studio-editorial-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}

.studio-editorial-intro h4 {
  max-width: 700px;
  margin: 10px 0 0;
  font-size: 42px;
  line-height: 1.14;
  color: #1f1f1f;
}

.studio-editorial-intro p {
  max-width: 360px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #6d5748;
}

.editorial-kicker,
.editorial-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b68063;
}

.studio-editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.62fr;
  gap: 20px;
  grid-auto-rows: minmax(220px, auto);
}

.editorial-feature,
.editorial-card,
.editorial-note,
.editorial-stat {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 24px 60px rgba(84, 63, 49, 0.12);
}

.editorial-feature,
.editorial-card {
  cursor: pointer;
  border: 0;
}

.editorial-feature:focus,
.editorial-card:focus,
.editorial-feature:focus-visible,
.editorial-card:focus-visible {
  outline: 2px solid rgba(182, 128, 99, 0.8);
  outline-offset: 4px;
}

.editorial-feature {
  grid-row: span 2;
  min-height: 700px;
}

.editorial-note {
  background: #1f2124;
  color: #f8f4ee;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editorial-note h5,
.editorial-card-copy h5 {
  margin: 12px 0 8px;
  font-size: 34px;
  line-height: 1.15;
}

.editorial-note p,
.editorial-card-copy p,
.editorial-stat p {
  margin: 0;
  color: inherit;
  line-height: 1.75;
}

.editorial-stat {
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.86);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editorial-stat strong {
  display: block;
  margin: 24px 0 16px;
  font-size: 88px;
  line-height: 0.9;
  color: #1f2124;
  font-weight: 400;
}

.editorial-feature img,
.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.editorial-feature:hover img,
.editorial-card:hover img,
.editorial-feature:focus img,
.editorial-card:focus img {
  transform: scale(1.04);
}

.editorial-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 28px 28px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.78) 100%);
  color: #fff;
}

.editorial-overlay h5 {
  margin: 12px 0 6px;
  font-size: 36px;
  color: #fff;
}

.editorial-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.editorial-card {
  display: flex;
  flex-direction: column;
}

.editorial-card img {
  height: 370px;
}

.editorial-card-copy {
  padding: 24px 24px 28px;
}

.editorial-card-copy h5 {
  font-size: 28px;
  color: #1f2124;
}

.editorial-card-copy span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b68063;
}

.team-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}

.team-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 20, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.team-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.8fr);
  max-width: 1040px;
  width: 100%;
  background: #fffdf9;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.team-modal-media {
  min-height: 580px;
}

.team-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-modal-content {
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-modal-content h4 {
  margin: 14px 0 8px;
  font-size: 46px;
  line-height: 1.05;
  color: #1f2124;
}

.team-modal-role {
  margin: 0 0 22px;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b68063;
}

.team-modal-specialty {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.6;
  color: #1f2124;
}

.team-modal-description {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #6d5748;
}

.team-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 33, 36, 0.08);
  color: #1f2124;
  font-size: 28px;
  line-height: 1;
}

body.team-modal-open {
  overflow: hidden;
}

.studio-vogue-intro,
.studio-team-accordion {
  background: #fcf8f2;
}

.studio-brand-ribbon {
  padding: 72px 0 80px;
  background: #fcf8f2;
}

.studio-vogue-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 232, 221, 0.95));
  border: 1px solid rgba(182, 128, 99, 0.16);
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 28px 60px rgba(109, 87, 72, 0.12);
}

.studio-vogue-portrait {
  height: 500px;
  border-radius: 26px;
  overflow: hidden;
}

.studio-vogue-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.studio-vogue-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b68063;
}

.studio-vogue-copy h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.35;
  color: #2d3a4b;
  text-transform: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0;
}

.studio-vogue-copy p {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.85;
  color: #7a6a5f;
}

.studio-vogue-owner strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #6d5748;
}

.studio-vogue-owner span {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b68063;
}

.studio-vogue-socials,
.team-accordion-socials {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.studio-vogue-socials a,
.team-accordion-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 128, 99, 0.12);
  color: #6d5748;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.studio-vogue-socials a:hover,
.team-accordion-socials a:hover {
  background: #b68063;
  color: #fff;
  transform: translateY(-2px);
}

.studio-brand-heading {
  margin-bottom: 52px;
}

.studio-brand-title {
  margin: 8px 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #2d3a4b;
  letter-spacing: 0;
  text-transform: none;
}

.studio-brand-subtitle {
  max-width: 540px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: #7a6a5f;
}

.studio-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.studio-brand-chip {
  min-height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(243, 232, 221, 0.84), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(182, 128, 99, 0.12);
  box-shadow: 0 16px 36px rgba(109, 87, 72, 0.08);
}

.studio-brand-chip span {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6d5748;
}

.studio-specialties {
  background: linear-gradient(180deg, #fcf8f2 0%, #f4ebdf 100%);
  padding-top: 110px !important;
  padding-bottom: 140px !important;
}

.studio-section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
}

.studio-section-heading h3 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.25;
  color: #2d3a4b;
  text-transform: none;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0;
}

.studio-section-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #7a6a5f;
}

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

.studio-specialty-card {
  min-height: 290px;
  padding: 34px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(182, 128, 99, 0.12);
  box-shadow: 0 18px 42px rgba(109, 87, 72, 0.08);
}

@media (max-height: 860px) and (min-width: 768px) {
  .studio-specialties {
    padding-top: 90px !important;
    padding-bottom: 120px !important;
  }

  .studio-section-heading {
    margin-bottom: 28px;
  }

  .studio-section-heading h3 {
    font-size: 38px;
  }

  .studio-specialty-card {
    min-height: 260px;
  }
}

.studio-specialty-card.is-accent {
  background: linear-gradient(180deg, rgba(243, 232, 221, 0.92), rgba(255, 255, 255, 0.96));
}

.studio-specialty-card i {
  display: inline-flex;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: rgba(182, 128, 99, 0.12);
  color: #b68063;
  font-size: 26px;
}

.studio-specialty-card h4 {
  margin: 0 0 14px;
  font-size: 24px;
  color: #2d3a4b;
}

.studio-specialty-card p {
  margin: 0;
  color: #7a6a5f;
  line-height: 1.8;
}

.team-accordion {
  display: flex;
  gap: 16px;
  min-height: 620px;
  overflow: hidden;
}

.team-accordion-card {
  position: relative;
  flex: 1 1 0;
  min-width: 96px;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s ease;
  box-shadow: 0 20px 50px rgba(109, 87, 72, 0.12);
}

.team-accordion-card.is-active {
  flex: 7 1 0;
}

.team-accordion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.team-accordion-card.is-active img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.team-accordion-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(29, 25, 21, 0.02) 0%, rgba(45, 58, 75, 0.9) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.team-accordion-card.is-active .team-accordion-overlay {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.team-accordion-overlay h4 {
  margin: 10px 0 10px;
  font-size: 34px;
  color: #fff;
}

.team-accordion-overlay p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.signature-anchors {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signature-arc {
  position: relative;
  background: linear-gradient(180deg, #fcf8f2 0%, #f4ebdf 100%);
}

.signature-arc-head {
  max-width: 900px;
  margin: 0 auto 28px;
  padding-top: 28px;
}

.signature-arc-head h3 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.12;
  color: #2d3a4b;
}

.signature-arc-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #7a6a5f;
}

.signature-arc-shell {
  position: relative;
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid rgba(182, 128, 99, 0.1);
  box-shadow: 0 16px 40px rgba(109, 87, 72, 0.08);
  padding: 24px 24px 30px;
  overflow: hidden;
}

.signature-nav {
  position: absolute;
  top: 262px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(182, 128, 99, 0.35);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.95);
  color: #2d3a4b;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.signature-nav:hover {
  transform: scale(1.05);
  background: #b68063;
  color: #fff;
}

.signature-nav:focus,
.signature-nav:focus-visible {
  outline: 2px solid rgba(182, 128, 99, 0.85);
  outline-offset: 3px;
}

.signature-nav-prev {
  left: 20px;
}

.signature-nav-next {
  right: 20px;
}

.signature-arc-stage {
  position: relative;
  height: 540px;
  user-select: none;
  perspective: 1000px;
}

.signature-card {
  position: absolute;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(109, 87, 72, 0.16);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease, opacity 0.55s ease;
}

.signature-card:focus,
.signature-card:focus-visible {
  outline: 2px solid rgba(182, 128, 99, 0.82);
  outline-offset: 6px;
}

.signature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: grayscale(100%) !important;
  transition: filter 0.55s ease !important;
}
.signature-card:hover img,
.signature-card.is-active:hover img {
  filter: grayscale(0%) !important;
}

.signature-card-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 18px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(31, 33, 36, 0.8) 100%);
}

.signature-card-label span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.signature-detail {
  margin: 22px auto 0;
  max-width: 1160px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(182, 128, 99, 0.12);
  padding: 34px 34px 30px;
  box-shadow: 0 18px 42px rgba(109, 87, 72, 0.08);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.signature-detail.is-changing {
  opacity: 0.6;
  transform: translateY(8px);
}

.signature-detail-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.signature-detail-top h4 {
  margin: 10px 0 0;
  font-size: 40px;
  line-height: 1.08;
  color: #2d3a4b;
}

.signature-detail-price {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b68063;
  white-space: nowrap;
}

.signature-glance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.glance-item {
  border-radius: 22px;
  padding: 16px 16px 18px;
  background: rgba(243, 232, 221, 0.7);
  border: 1px solid rgba(182, 128, 99, 0.12);
}

.glance-item i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(182, 128, 99, 0.14);
  color: #b68063;
  font-size: 18px;
  margin-bottom: 12px;
}

.glance-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2d3a4b;
}

.glance-item span {
  display: block;
  margin-top: 6px;
  color: #7a6a5f;
  line-height: 1.5;
  font-size: 12px;
  word-break: break-word;
}

.signature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.signature-col h5 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2d3a4b;
}

.signature-col ul {
  margin: 0;
  padding-left: 18px;
}

.signature-col li {
  margin-bottom: 8px;
  line-height: 1.8;
  color: #7a6a5f;
}

.signature-actions {
  margin-top: 26px;
}

.signature-arc .container {
  max-width: 1280px;
}

@media (max-width: 767px) {
  .signature-arc {
    padding-top: 80px !important;
    padding-bottom: 70px !important;
  }

  .signature-arc-stage {
    height: 430px;
    margin-bottom: 14px;
  }

  .signature-arc-shell {
    overflow: visible;
  }

  .signature-nav {
    top: 172px;
    width: 44px;
    height: 44px;
    font-size: 22px;
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 4px 18px rgba(109, 87, 72, 0.18);
    z-index: 200;
  }

  .signature-nav-prev {
    left: 6px;
  }

  .signature-nav-next {
    right: 6px;
  }

  .signature-arc-head h3 {
    font-size: 30px;
  }

  .signature-detail {
    padding: 24px;
  }

  .signature-detail-top {
    display: block;
  }

  .signature-detail-top h4 {
    font-size: 30px;
  }

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

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

@media (max-width: 767px) {
  .studio-vogue-hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .studio-vogue-portrait {
    min-height: 360px;
  }

  .studio-vogue-copy h2 {
    font-size: 34px;
  }

  .studio-specialty-grid {
    grid-template-columns: 1fr;
  }

  .studio-section-heading h3 {
    font-size: 30px;
  }

  .team-accordion {
    flex-direction: column;
    min-height: auto;
  }

  .team-accordion-card,
  .team-accordion-card.is-active {
    flex: none;
    min-height: 320px;
  }

  .team-accordion-card img {
    filter: grayscale(0);
  }

  .team-accordion-overlay,
  .team-accordion-card.is-active .team-accordion-overlay {
    opacity: 1;
    transform: none;
  }

  .studio-editorial-intro {
    display: block;
    margin-bottom: 32px;
  }

  .studio-editorial-intro h4 {
    font-size: 30px;
  }

  .studio-editorial-intro p {
    max-width: none;
    margin-top: 16px;
  }

  .studio-editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-feature {
    min-height: 420px;
  }

  .editorial-card img {
    height: 300px;
  }

  .team-modal {
    padding: 18px;
  }

  .team-modal-panel {
    grid-template-columns: 1fr;
  }

  .team-modal-media {
    min-height: 300px;
  }

  .team-modal-content {
    padding: 30px 24px;
  }

  .team-modal-content h4 {
    font-size: 34px;
  }

  header .sticky {
    padding: 6px 0;
  }

  header .sticky .container {
    display: block;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  header .navbar,
  header .logo {
    text-align: center;
    width: 100%;
  }

  header .navbar .nav {
    display: block;
  }

  header .navbar li {
    margin: 0;
  }

  .logo a {
    gap: 8px;
  }

  .brand-name {
    font-size: 16px;
    max-width: 220px;
  }

  .sub-bnr {
    min-height: 280px;
    padding: 110px 0 70px;
  }

}

/* Hide second hover image on treatment cards */
.papular-block .item .img-2 { display: none !important; }
.papular-block .item:hover .img-1 { left: 0 !important; }

.home-team-head {
  margin-bottom: 48px;
}
.home-team-kicker {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b68063;
  margin-bottom: 12px;
}
.home-team-head h4 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: #1a1612;
  margin: 0;
}
.home-team-photo-wrap {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(109, 87, 72, 0.14);
}
.home-team-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.home-team-photo-wrap:hover img {
  transform: scale(1.02);
}


/* ── Filmstrip section ── */
.home-filmstrip {
  position: relative;
  background: #111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 0;
  user-select: none;
}
.filmstrip-row {
  overflow: hidden;
  width: 100%;
}
.filmstrip-track {
  display: flex;
  gap: 8px;
  width: max-content;
}
.filmstrip-row--left .filmstrip-track {
  animation: filmstrip-left 32s linear infinite;
}
.filmstrip-row--right .filmstrip-track {
  animation: filmstrip-right 32s linear infinite;
}
@keyframes filmstrip-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes filmstrip-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.filmstrip-item {
  flex-shrink: 0;
  width: 380px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
}
.filmstrip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.6;
}
.filmstrip-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  line-height: 0.88;
  white-space: nowrap;
}
.filmstrip-word {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}
@media (max-width: 991px) {
  .filmstrip-item { width: 260px; height: 300px; }
}
@media (max-width: 600px) {
  .filmstrip-item { width: 180px; height: 220px; border-radius: 8px; }
  .filmstrip-word { font-size: 52px; -webkit-text-stroke: 2px #fff; color: transparent; }
}

.studio-team-photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(109, 87, 72, 0.14);
}

.studio-team-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════
   CATEGORY OVERVIEW — shop_04.html
═══════════════════════════════════════ */
.cat-overview-section {
  padding: 80px 0 110px;
  background: #fcf8f2;
}
.cat-overview-head {
  text-align: center;
  margin-bottom: 52px;
}
.cat-overview-kicker {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b68063;
  margin-bottom: 12px;
}
.cat-overview-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  color: #1a1612;
  margin: 0;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.cat-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.55s ease;
}
/* Medical category card — full-width feature card */
.cat-card--medical {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 6;
  min-height: 200px;
}
.cat-card--medical .cat-card-photo {
  background-position: center 30%;
}
.cat-card--medical .cat-card-name {
  font-size: 24px;
}
.cat-card-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.cat-card--bw .cat-card-photo {
  filter: grayscale(100%);
}
.cat-card--bw:hover .cat-card-photo {
  filter: grayscale(0%);
}
.cat-card:hover .cat-card-photo {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.cat-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(18, 12, 8, 0.80) 0%,
    rgba(18, 12, 8, 0.14) 50%,
    transparent 100%);
  transition: background 0.35s ease;
}
.cat-card:hover .cat-card-veil {
  background: linear-gradient(to top,
    rgba(18, 12, 8, 0.90) 0%,
    rgba(18, 12, 8, 0.28) 55%,
    transparent 100%);
}
.cat-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 22px;
}
.cat-card-count {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 5px;
}
.cat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.cat-card-arrow {
  display: inline-block;
  margin-top: 9px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 0.25s ease, color 0.25s ease;
}
.cat-card:hover .cat-card-arrow {
  transform: translateX(5px);
  color: #c9a96e;
}

/* ═══════════════════════════════════════
   CATEGORY DETAIL — category.html
═══════════════════════════════════════ */
.cat-detail-gallery {
  padding: 64px 0 0;
  background: #fcf8f2;
}
.cat-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 500px;
}
.cat-photo {
  border-radius: 16px;
  overflow: hidden;
}
.cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.cat-photo:hover img {
  transform: scale(1.03);
}
.cat-photo-big {
  grid-row: 1 / 3;
}
.cat-detail-list-section {
  padding: 72px 0 100px;
  background: #fcf8f2;
}
.cat-list-meta {
  margin-bottom: 36px;
}
.cat-list-meta-kicker {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b68063;
  margin-bottom: 10px;
}
.cat-list-meta-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: #1a1612;
  margin: 0 0 6px;
}
.cat-list-meta-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #aaa;
  margin: 0;
}
.cat-list-header-row {
  display: flex;
  align-items: center;
  padding: 0 4px 10px;
  border-bottom: 1px solid rgba(182, 128, 99, 0.28);
  margin-bottom: 0;
}
.cat-list-col-name,
.cat-list-col-duration,
.cat-list-col-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b0a090;
}
.cat-list-col-name { flex: 1; }
.cat-list-col-duration { width: 140px; text-align: left; flex-shrink: 0; }
.cat-list-col-price { width: 80px; text-align: right; flex-shrink: 0; }
.cat-treatment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cat-treatment-item {
  display: flex;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(182, 128, 99, 0.10);
  gap: 12px;
}
.cat-treatment-item:nth-child(even) {
  background: rgba(201, 169, 110, 0.04);
}
.cat-treatment-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #1a1612;
  flex: 1;
  line-height: 1.4;
}
.cat-treatment-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #999;
  width: 140px;
  flex-shrink: 0;
  white-space: nowrap;
}
.cat-treatment-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #5f4a38;
  width: 80px;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Treatment list — mobile ── */
@media (max-width: 640px) {
  /* Header: hide duration col, keep Behandlung + Preis */
  .cat-list-header-row {
    padding: 0 0 8px;
  }
  .cat-list-col-duration {
    display: none;
  }
  .cat-list-col-name { flex: 1; }
  .cat-list-col-price { width: auto; min-width: 52px; }

  /* Each row: name+duration stacked left, price pinned right */
  .cat-treatment-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 14px 0;
    gap: 2px 8px;
    align-items: start;
  }
  .cat-treatment-name {
    grid-column: 1;
    grid-row: 1;
    font-size: 14px;
    flex: none;
    width: auto;
  }
  .cat-treatment-duration {
    grid-column: 1;
    grid-row: 2;
    width: auto;
    font-size: 9px;
    color: #aaa;
    white-space: normal;
    letter-spacing: 0.04em;
  }
  .cat-treatment-price {
    grid-column: 2;
    grid-row: 1 / 3;
    width: auto;
    min-width: 52px;
    font-size: 13px;
    text-align: right;
    white-space: nowrap;
    align-self: start;
  }
}

/* ── Book Appointment CTA ── */
.cat-book-wrap {
  margin-top: 48px;
  text-align: center;
}
.cat-book-btn {
  display: inline-block;
  padding: 16px 44px;
  background: #111;
  color: #fff !important;
  border: 2px solid #111;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.cat-book-btn:hover {
  background: transparent;
  color: #111 !important;
}

/* Hide breadcrumb everywhere */
.breadcrumb { display: none !important; }

/* Info & FAQ section */
.cat-info-section {
  padding: 60px 0 20px;
}
.cat-info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cat-info-intro {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.8;
  color: #4a3b2e;
}
.cat-info-intro p {
  margin: 0;
}
.cat-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cat-faq-item {
  border-bottom: 1px solid #e8dfd6;
}
.cat-faq-item:first-child {
  border-top: 1px solid #e8dfd6;
}
.cat-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1612;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.cat-faq-q:hover {
  color: #c9a97a;
}
.cat-faq-icon {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}
.cat-faq-icon::before,
.cat-faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cat-faq-icon::before {
  width: 2px; height: 14px;
  top: 2px; left: 8px;
}
.cat-faq-icon::after {
  width: 14px; height: 2px;
  top: 8px; left: 2px;
}
.cat-faq-q[aria-expanded="true"] .cat-faq-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}
.cat-faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  color: #6b5544;
  line-height: 1.75;
  padding-bottom: 0;
}
.cat-faq-q[aria-expanded="true"] + .cat-faq-a {
  padding-bottom: 18px;
}

/* Responsive */
@media (max-width: 991px) {
  .treatments-hero { height: 50vh; min-height: 300px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { aspect-ratio: 4 / 3; }
  .cat-photo-grid { height: 380px; }
  .cat-info-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { border-radius: 14px; }
  .cat-card-name { font-size: 14px; }
  .cat-card--medical { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .cat-card--medical .cat-card-name { font-size: 16px; }
  .cat-photo-grid { grid-template-columns: 1fr; grid-template-rows: 220px 150px 150px; height: auto; }
  .cat-photo-big { grid-row: auto; }
  .cat-overview-title { font-size: 28px; }
  .cat-info-inner { grid-template-columns: 1fr; gap: 32px; }
  .cat-info-section { padding: 40px 0 10px; }
}

/* ═══════════════════════════════════════════════════════════
   MONOCHROME THEME — replaces all warm brown/beige tones
   with clean black, white & neutral grey
═══════════════════════════════════════════════════════════ */

/* ── Base ── */
body {
  background: #fff !important;
  color: #111 !important;
}

/* ── All text links ── */
a, .item-name a, .heading h4, .contact-info a,
.knowledge-share a, .team-names h6,
.ownmenu ul.dropdown li a {
  color: #333 !important;
}
a:hover, a:focus, .item-name a:hover,
.ownmenu ul.dropdown li a:hover {
  color: #111 !important;
}

/* ── Primary accent / price / kicker colours ── */
.primary-color, .price, .item-owner span,
.shop-page .product-num, .contact-info i,
.about-footer i, .social_icons a:hover,
.knowledge-share .date .huge,
.bg-label, .home-journal-kicker, .home-team-kicker,
.cat-overview-kicker, .cat-list-meta-kicker,
.editorial-kicker, .editorial-label,
.studio-vogue-kicker, .studio-vogue-owner span,
.team-modal-role, .signature-detail-price,
.editorial-card-copy span, .home-story-kicker,
.scrapbook-note, .journal-sidebar a:hover,
.journal-card-tag {
  color: #111 !important;
}

/* ── Buttons ── */
.btn, .btn:hover, .btn:focus, .btn:active,
.btn:active:focus, .btn:visited {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}
.btn-round, .btn-round:hover, .btn-round:focus {
  background: transparent !important;
  border-color: #111 !important;
  color: #111 !important;
}
.btn-round:hover, .btn-round:focus {
  background: #111 !important;
  color: #fff !important;
}

/* ── Navbar — sticky bar ── */
.sticky-wrapper.is-sticky .sticky {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07) !important;
}
.sticky-wrapper.is-sticky .navbar li a,
.sticky-wrapper.is-sticky .navbar li.active a {
  color: #111 !important;
}
.sticky-wrapper.is-sticky .navbar li a:hover {
  color: #555 !important;
}
/* Before scroll hover */
.sticky-wrapper:not(.is-sticky) .navbar li a:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}
/* Active underline */
header .navbar li a:before,
header .navbar li.active a:before {
  background: #111 !important;
}
.ownmenu > li.active > a,
.ownmenu > li:hover > a,
.ownmenu > li > a:hover,
.ownmenu > li > a:focus {
  color: #555 !important;
}

/* ── Sub-banner / page hero overlays ── */
.sub-bnr,
.sub-bnr.hero-slide-1,
.sub-bnr.hero-slide-2 {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("../images/slide-bg-1.jpg") center center/cover no-repeat !important;
}

/* ── Section backgrounds — warm cream → white/off-white ── */
.home-focus-bento,
.cat-overview-section,
.cat-detail-gallery,
.cat-detail-list-section,
.signature-arc,
.studio-editorial,
.studio-vogue-intro,
.studio-team-accordion,
.studio-brand-ribbon,
.studio-specialties,
.home-gallery-editorial,
.light-gray-bg,
.tweet,
.journal-page,
.small-about,
.shop-detail,
.item-decribe,
.testimonial {
  background: #f9f9f9 !important;
  border-color: rgba(0,0,0,0.06) !important;
}

/* Focus bento — remove warm gradient */
.home-focus-bento {
  background: #f5f5f5 !important;
}

/* Gallery section — remove warm gradient */
.home-gallery-editorial {
  background: #f9f9f9 !important;
  border-top: 1px solid rgba(0,0,0,0.06) !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}

/* Home slider bg */
.home-slider { background: #e8e8e8 !important; }

/* ── Kinetic categories section ── */
.home-kinetic-categories {
  background: #f0f0f0 !important;
  color: #111 !important;
}
.home-kinetic-head span { color: rgba(0,0,0,0.55) !important; }
.kinetic-accordion { border-bottom-color: rgba(0,0,0,0.12) !important; }
.kinetic-row {
  border-top-color: rgba(0,0,0,0.12) !important;
  color: #111 !important;
}
.kinetic-row-skin,
.kinetic-row-glow,
.kinetic-row-defined {
  background: linear-gradient(180deg, rgba(245,245,245,0.95) 0%, rgba(235,235,235,0.98) 100%) !important;
}
.kinetic-row:hover,
.kinetic-row:focus-visible {
  background: linear-gradient(160deg, rgba(15,15,15,0.97) 0%, rgba(25,25,25,0.99) 100%) !important;
  box-shadow:
    0 -1px 0 rgba(0,0,0,0.18),
    0 1px 0 rgba(0,0,0,0.18),
    0 24px 60px rgba(0,0,0,0.22) !important;
}
.kinetic-row-num { color: rgba(0,0,0,0.35) !important; }
.kinetic-row:hover .kinetic-row-num,
.kinetic-row:focus-visible .kinetic-row-num { color: rgba(255,255,255,0.55) !important; }

/* ── Signature treatments section ── */
.signature-arc {
  background: #f9f9f9 !important;
}
.signature-arc-shell {
  background: rgba(255,255,255,0.9) !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06) !important;
}
.signature-nav {
  border-color: rgba(0,0,0,0.18) !important;
  background: rgba(255,255,255,0.97) !important;
  color: #111 !important;
}
.signature-nav:hover { background: #111 !important; color: #fff !important; }
.signature-nav:focus, .signature-nav:focus-visible { outline-color: rgba(0,0,0,0.5) !important; }
.signature-detail {
  background: rgba(255,255,255,0.98) !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.07) !important;
}
.signature-detail-top h4,
.signature-arc-head h3,
.signature-col h5 { color: #111 !important; }
.signature-detail-price { color: #111 !important; }
.glance-item {
  background: rgba(0,0,0,0.04) !important;
  border-color: rgba(0,0,0,0.07) !important;
}
.glance-item i {
  background: rgba(0,0,0,0.06) !important;
  color: #111 !important;
}
.glance-item strong { color: #111 !important; }
.glance-item span, .signature-col li { color: #555 !important; }
.signature-card:focus, .signature-card:focus-visible { outline-color: rgba(0,0,0,0.5) !important; }
.signature-card { box-shadow: 0 18px 50px rgba(0,0,0,0.14) !important; }

/* ── Studio/About page ── */
.studio-editorial {
  background: linear-gradient(180deg, #f9f9f9 0%, #f0f0f0 100%) !important;
}
.studio-vogue-hero {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,240,240,0.98)) !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 28px 60px rgba(0,0,0,0.08) !important;
}
.studio-vogue-kicker, .editorial-label, .editorial-kicker { color: #111 !important; }
.studio-vogue-copy p, .studio-editorial-intro p,
.studio-section-heading p, .studio-brand-subtitle,
.studio-specialty-card p { color: #555 !important; }
.studio-vogue-owner strong { color: #111 !important; }
.studio-brand-chip {
  background: linear-gradient(135deg, rgba(240,240,240,0.88), rgba(255,255,255,0.94)) !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 16px 36px rgba(0,0,0,0.06) !important;
}
.studio-brand-chip span { color: #333 !important; }
.studio-specialties {
  background: linear-gradient(180deg, #f9f9f9 0%, #f0f0f0 100%) !important;
}
.studio-specialty-card {
  background: rgba(255,255,255,0.9) !important;
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.07) !important;
}
.studio-specialty-card.is-accent {
  background: linear-gradient(180deg, rgba(240,240,240,0.94), rgba(255,255,255,0.98)) !important;
}
.studio-specialty-card i {
  background: rgba(0,0,0,0.06) !important;
  color: #111 !important;
}
.studio-specialty-card h4 { color: #111 !important; }
.studio-vogue-socials a, .team-accordion-socials a {
  background: rgba(0,0,0,0.07) !important;
  color: #333 !important;
}
.studio-vogue-socials a:hover, .team-accordion-socials a:hover {
  background: #111 !important;
  color: #fff !important;
}
.editorial-feature:focus, .editorial-card:focus,
.editorial-feature:focus-visible, .editorial-card:focus-visible {
  outline-color: rgba(0,0,0,0.6) !important;
}
.editorial-feature, .editorial-card, .editorial-note, .editorial-stat {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.09) !important;
}
.editorial-note {
  background: #111 !important;
  color: #f5f5f5 !important;
}
.editorial-card-copy span { color: #555 !important; }
.editorial-card-copy h5 { color: #111 !important; }
.team-accordion-card { box-shadow: 0 20px 50px rgba(0,0,0,0.12) !important; }
.team-modal-panel {
  background: #fff !important;
}
.team-modal-role { color: #555 !important; }
.team-modal-description, .team-modal-content .editorial-label { color: #555 !important; }
.team-hover { background: rgba(0,0,0,0.75) !important; }

/* ── Footer ── */
footer { background: #111 !important; }
footer h6, footer p, footer a, footer .rights p { color: #ccc !important; }
footer a:hover { color: #fff !important; }
.brand-foot-name { color: #fff !important; }

/* ── Shop / treatment item cards ── */
.shop-page .papular-block .item {
  border-color: rgba(0,0,0,0.08) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.07) !important;
}
.shop-page .papular-block .item:hover {
  border-color: rgba(0,0,0,0.18) !important;
  box-shadow: 0 34px 70px rgba(0,0,0,0.15) !important;
}
.shop-page .papular-block .overlay .inn {
  background: rgba(0,0,0,0.85) !important;
}

/* ── Category list ── */
.cat-list-header-row { border-bottom-color: rgba(0,0,0,0.14) !important; }
.cat-list-col-name, .cat-list-col-duration, .cat-list-col-price {
  color: #999 !important;
}
.cat-treatment-item { border-bottom-color: rgba(0,0,0,0.07) !important; }
.cat-treatment-item:nth-child(even) { background: rgba(0,0,0,0.02) !important; }
.cat-treatment-price { color: #111 !important; }
.cat-faq-item { border-color: rgba(0,0,0,0.1) !important; }
.cat-faq-q:hover { color: #555 !important; }
.cat-faq-a { color: #555 !important; }
.cat-info-intro { color: #333 !important; }

/* ── Category overview cards ── */
.cat-card--bw .cat-card-photo { filter: grayscale(100%) !important; }
.cat-card--bw:hover .cat-card-photo { filter: grayscale(0%) !important; }
.cat-card:hover .cat-card-arrow { color: #fff !important; }

/* ── Focus bento cards ── */
.focus-card-media {
  background: #ccc;
}

/* ── Home gallery gallery media ── */
.editorial-gallery-media {
  background: #d0d0d0 !important;
  box-shadow: 0 26px 70px rgba(0,0,0,0.1) !important;
}
.home-gallery-editorial .container:before {
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%) !important;
}
.home-gallery-title { color: #111 !important; }
.home-gallery-head p, .editorial-gallery-copy p { color: #555 !important; }
.editorial-gallery-copy h6 { color: #111 !important; }

/* ── Team photo section ── */
.home-team-photo-wrap {
  box-shadow: 0 24px 60px rgba(0,0,0,0.12) !important;
}

/* ── Journal ── */
.journal-card-media { background: #ccc !important; }
.journal-card-tag { color: #555 !important; }
.journal-card-copy p { color: #555 !important; }
.journal-card-copy p:first-letter { color: #111 !important; }
.journal-quote-word.is-highlight { color: #111 !important; }

/* ── Brand section (bg-section) ── */
.bg-label { color: #555 !important; }
.bg-item {
  background: #d8d8d8 !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
}
.bg-item:hover { box-shadow: 0 24px 56px rgba(0,0,0,0.14) !important; }
.bg-overlay {
  background: linear-gradient(to top, rgba(240,240,240,0.95) 0%, rgba(240,240,240,0.3) 40%, transparent 70%) !important;
}
.bg-item:hover .bg-overlay {
  background: linear-gradient(to top, rgba(240,240,240,0.98) 0%, rgba(240,240,240,0.45) 45%, transparent 72%) !important;
}

/* ── Testimonial ── */
.testimonial {
  border-top-color: rgba(0,0,0,0.08) !important;
}

/* ── Social icons / form borders ── */
.social_icons a, .team-hover, .contact-form .success-msg,
.ownmenu ul.dropdown, .selectpicker, .form-control, input, textarea {
  border-color: #ddd !important;
}

/* ── GLOBAL: all images B&W, reveal colour on hover (filmstrip excluded) ── */
img {
  filter: grayscale(100%) !important;
  transition: filter 0.55s ease !important;
}
img:hover {
  filter: grayscale(0%) !important;
}
/* Parent-level hover for cards where overlays/pseudo-elements sit on top of the image */
.editorial-gallery-card:hover img,
.journal-card:hover img,
.focus-card:hover img,
.editorial-feature:hover img,
.editorial-card:hover img,
.bg-item:hover img,
.scrapbook-card:hover img,
.home-team-photo-wrap:hover img,
.studio-team-photo-wrap:hover img,
.cat-photo:hover img,
.item:hover img {
  filter: grayscale(0%) !important;
}
/* Filmstrip images stay in B&W always (dark section, artistic) */
.filmstrip-item img {
  filter: none !important;
  opacity: 0.6;
}
/* Team accordion: inactive = B&W, active = colour (existing behaviour) */
.team-accordion-card img { filter: grayscale(1) !important; }
.team-accordion-card.is-active img { filter: grayscale(0) !important; }
/* Logo images must never be greyscaled */
.logo-img { filter: none !important; }

/* ── Studio editorial signature path ── */
.home-story-signature path { stroke: #111 !important; }

/* ── Story section quote ── */
.home-story-quote-text { color: #111 !important; }
.home-story-quote cite { color: rgba(0,0,0,0.45) !important; }
.home-story-connector .home-story-line { background: #111 !important; }
.home-story-kicker { color: #555 !important; }
.home-story-copy p { color: #555 !important; }

/* ── Home kinetic row number hover gold → grey ── */
@media (hover: hover) and (pointer: fine) {
  .kinetic-row:hover .kinetic-row-num { color: rgba(255,255,255,0.55) !important; }
}

/* ── Home team photo — hover reveal handled by global rule ── */
.home-team-photo-wrap img,
.studio-team-photo-wrap img {
  transition: filter 0.55s ease, transform 0.5s ease !important;
}

/* ── News letter section ── */
.news-letter {
  background: linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
    url("../images/special-bg.jpg") center center/cover no-repeat !important;
}

/* ── Home slider shadow colours ── */
.home-slider .btn {
  box-shadow: 0 12px 28px rgba(0,0,0,0.18) !important;
}
.home-slider .tp-caption, .home-slider .btn {
  text-shadow: 0 2px 12px rgba(0,0,0,0.25) !important;
}

/* ── Brand name in header ── */
.brand-name { color: #333 !important; }

/* ── Heading kicker labels ── */
.heading span, .home-focus-head span { color: #555 !important; }

/* ── Category card arrow hover ── */
.cat-card:hover .cat-card-arrow { color: rgba(255,255,255,0.9) !important; }

/* ── FAQ hover ── */
.cat-faq-q:hover { color: #333 !important; }

/* ── Treatment price ── */
.cat-treatment-price { color: #111 !important; }

/* ── Journal quote highlight word ── */
.journal-quote-word.is-highlight { color: #333 !important; opacity: 1 !important; }

/* ── Studio brand heading ── */
.studio-brand-title { color: #111 !important; }

/* ── Signature arc background clean ── */
.signature-arc {
  background: #f5f5f5 !important;
}
.signature-arc-head p { color: #555 !important; }

/* Item card hover — global rule handles grayscale/colour reveal */

