/** Shopify CDN: Minification failed

Line 3496:0 Unexpected "}"

**/
:root {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --rule: #e6ded0;
      --quote: #2e3a45;
      --card: #f2efe9;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;

}

body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--serif);
}

/* stacking wrappers */
.screen {
      width: 100%;
      display: flex;
      justify-content: center;
        background: var(--paper);
}

.connector {
      width: 100%;
      display: flex;
      justify-content: center;
      background: var(--paper);
}

.cinner {
      position: relative;
      width: 100%;
      /* max-width: 1109px; */
      container-type: inline-size;
}

.connector .ph {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, #ece5da 0 14px, #e6ddcf 14px 28px);
      border: 1px dashed #bcae97;
      color: #9a8c74;
      overflow: hidden;
}

.connector .ph span {
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.85cqw;
      text-align: center;
      padding: 0.6em;
}

.connector .ph span::before {
      content: "\2b21";
      display: block;
      font-size: 1.6cqw;
      margin-bottom: 0.4em;
      color: #c2b49b;
}

/* ===== Wave Animation ===== */
@keyframes waveShine {
      0% {
            left: -100%;
      }
      100% {
            left: 100%;
      }
}

/* .wave-image{
      
} */
/* .wave-image:hover {
transform: translateY(-5px);
  box-shadow: 0 12px 24px #00000026;
  transition: all 200ms ease;
} */

/* .wave-image::before {
      position: absolute;
  top: 0px;
  left: -80%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -moz-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  -o-transform: skewX(-25deg);
}

#TB-banner .banner-wrapper:hover::before {
	animation: shine 2s;
	-webkit-animation: shine 2s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
} */

/* ===== Zoom Animation ===== */
.zoom-image {
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* 
.zoom-image:hover {
      transform: scale(1.08) translateY(-2px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
} */

/* ===== Modal Styles ===== */
.modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      animation: fadeIn 0.3s ease-in-out;
      overflow-y: auto;
}

@keyframes fadeIn {
      from {
            opacity: 0;
      }
      to {
            opacity: 1;
      }
}

.modal-content {
	background-color: var(--paper);
	margin: 5% auto;
	padding: 2rem;
	border: 1px solid var(--rule);
	border-radius: 12px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 20px 60px #0003;
	animation: slideIn .3s ease-in-out;
}

@keyframes slideIn {
      from {
            transform: translateY(-50px);
            opacity: 0;
      }
      to {
            transform: translateY(0);
            opacity: 1;
      }
}

.modal-content h2 {
	font-family: var(--display);
	font-size: 1.8rem;
	color: var(--ink);
	margin-bottom: 0;
	text-align: center;
	letter-spacing: 0.01em;
	line-height: 1.3;
}

.close {
	color: var(--ink-soft);
	float: right;
	font-size: 2.5rem;
	font-weight: 700;
	cursor: pointer;
	transition: color .3s ease;
	/* position: absolute; */
	/* left: 0; */
	margin: -40px -8px;
}

.close:hover {
      color: var(--gold-deep);
}

/* ===== Calendar Modal ===== */
.booking-calendar-modal {
      max-width: 500px;
}

.calendar-container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
}

.date-section,
.time-section {
      display: flex;
      flex-direction: column;
      gap: 1rem;
}

.date-section label,
.time-section label {
      font-family: var(--serif);
      font-weight: 600;
      color: var(--ink);
      font-size: 1.05rem;
      letter-spacing: 0.01em;
}

#bookingDate {
	padding: .85rem 1rem;
	border: 2px solid var(--rule);
	border-radius: 8px;
	font-family: var(--serif);
	font-size: 1.1rem;
	color: var(--ink);
	background-color: #fff;
	transition: all .3s ease;
	cursor: pointer;
}

#bookingDate:hover,
#bookingDate:focus {
      border-color: var(--gold-deep);
      outline: none;
      box-shadow: 0 0 0 3px rgba(143, 106, 63, 0.1);
}

.time-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 0.75rem;
}
.time-btn {
	padding: .8rem 1rem;
	border: 2px solid var(--rule);
	background-color: #fff;
	border-radius: 8px;
	font-family: var(--serif);
	font-size: 1.15rem;
	color: var(--ink);
	cursor: pointer;
	transition: all .3s ease;
	font-weight: 500;
}
.time-btn:hover {
      border-color: var(--gold-deep);
      background-color: rgba(143, 106, 63, 0.05);
}

.time-btn.active {
      background-color: var(--gold-deep);
      color: #fff;
      border-color: var(--gold-deep);
      box-shadow: 0 4px 12px rgba(143, 106, 63, 0.3);
}

.selected-display {
	padding: 1rem;
	background-color: #8f6a3f14;
	border-left: 4px solid var(--gold-deep);
	border-radius: 4px;
	color: var(--ink);
	font-family: var(--serif);
	min-height: 1.5rem;
	font-size: 0.9cqw;
}

/* ===== Form Styles ===== */
.booking-details-modal {
      max-width: 650px;
}

.booking-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
}

/* Step 2 layout: row 1 = 2 cols, row 2 = 2 cols, row 3 = 1 col (Notes), then submit button */
.form-row {
      display: flex;
  gap: 0.8rem;
  flex-direction: column;
}
/* 
.form-row-2 {
      grid-template-columns: 1fr 1fr;
}

.form-row-1 {
      grid-template-columns: 1fr;
} */


.form-group {
      display: flex;
      flex-direction: column;
}

.form-group label {
      font-family: var(--serif);
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.5rem;
      font-size: 1rem;
      letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
      padding: 0.85rem 1rem;
      border: 2px solid var(--rule);
      border-radius: 8px;
      font-family: var(--serif);
      font-size: 0.95rem;
      color: var(--ink);
      background-color: #fff;
      transition: all 0.3s ease;
      resize: vertical;
      min-height: 45px;
}

.form-group textarea {
      min-height: 80px;
      font-family: var(--serif);
}

.form-group input:focus,
.form-group textarea:focus {
      outline: none;
      border-color: var(--gold-deep);
      box-shadow: 0 0 0 3px rgba(143, 106, 63, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
      color: var(--ink-soft);
}

.step-info {
	padding: 0.7rem 1rem;
	background-color: #8f6a3f1a;
	border-left: 4px solid var(--gold-deep);
	border-radius: 4px;
	color: var(--ink);
	font-family: var(--serif);
	margin: 1rem 0;
	font-size: 0.9cqw;
}

/* ===== Buttons ===== */
.next-btn,
.send-btn,
.confirm-btn {
  padding:1.1rem 2.5rem;
  border:none;
  border-radius:50px;
  font-family:var(--label);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.95rem;
  cursor:pointer;
  transition:all .35s cubic-bezier(.25,.46,.45,.94);
  background:linear-gradient(135deg,var(--gold-deep) 0%,#a5753f 100%);
  color:#fff;
  box-shadow:0 4px 15px #8f6a3f4d;
  margin: 15px 0 0;
  text-align: center;
}

.next-btn:hover,
.send-btn:hover,
.confirm-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(143, 106, 63, 0.4);
      background: linear-gradient(135deg, #a5753f 0%, #8f6a3f 100%);
}

.next-btn:active,
.send-btn:active,
.confirm-btn:active {
      transform: translateY(-1px);
}

/* ===== Confirmation Modal ===== */
.confirmation-content {
      text-align: center;
      max-width: 450px;
}

.confirmation-icon {
      font-size: 3.5rem;
      color: var(--gold-deep);
      margin: 1.5rem 0;
      animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
      0% {
            transform: scale(0);
      }
      50% {
            transform: scale(1.2);
      }
      100% {
            transform: scale(1);
      }
}

.confirmation-content h2 {
      color: var(--ink);
      margin-bottom: 1rem;
}

.confirmation-content p {
      color: var(--ink-soft);
      font-size: 0.95rem;
      line-height: 1.8;
      margin: 1.5rem 0;
      text-align: left;
}

/* ===== s1 (home2.html) ===== */
#s1 {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}

#s1 .stage {
      position: relative;
      width: 100%;
      /* max-width: 1109px; */
      aspect-ratio: 1109 / 691;
      background: var(--paper);
      container-type: inline-size;
      overflow: hidden;
}

#s1 .logo {
      position: absolute;
      top: 4.2%;
      left: 0;
      width: 100%;
      text-align: center;
}

#s1 .logo-link {
      display: inline-block;
      transition: transform 0.3s ease;
      z-index: 1;
    pointer-events: all;
}

/* #s1 .logo-link:hover {
      transform: scale(1.05);
} */

#s1 .logo img {
      width: 56%;
      height: auto;
      vertical-align: top;
      mix-blend-mode: multiply;
      margin: 0 auto;
}

#s1 .nav {
      position: absolute;
      top: 23.5%;
      left: 2.80%;
      display: flex;
      gap: 1.2cqw;
      font-family: var(--serif);
      letter-spacing: 0.01em;
      font-size: 1.4cqw;
      color: var(--ink-soft);
      z-index: 1;
    pointer-events: all;
}

#s1 .nav a {
      position: relative;
      color: inherit;
      text-decoration: none;
}
/* 
#s1 .nav a:first-child {
      text-decoration: underline;
      text-underline-offset: 3px;
} */

#s1 .booknow {
	position: absolute;
	left: 89%;
	top: 23.46%;
	width: 9.02%;
	height: 3.74%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #000;
	border-radius: 0;
	font-family: var(--label);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: .9cqw;
	color: #fff;
	text-decoration: none;
	transition: all .35s cubic-bezier(.25,.46,.45,.94);
	cursor: pointer;
	background: #000;
      z-index: 1;
    pointer-events: all;
}

#s1 .booknow:hover {
	box-shadow: 0 6px 16px #0000001f;
	background-color: #000;
}

#s1 .login {
	position: absolute;
	left: 91.28%;
	top: 24.2%;
	display: flex;
	align-items: center;
	gap: .4cqw;
	font-family: var(--label);
	text-transform: uppercase;
	letter-spacing: .05em;
	font-size: 0.8cqw;
	color: var(--ink);
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}

#s1 .login:hover {
	color: var(--gold-deep);
}
#s1 .login::before {
	content: "";
	width: 1.4cqw;
	height: 1.4cqw;
	border-radius: 50%;
	border: 1px solid var(--ink);
	display: inline-block;
	background: radial-gradient(circle at 50% 38%,var(--ink) 0 26%,transparent 27%),radial-gradient(circle at 50% 95%,var(--ink) 0 42%,transparent 43%);
	transition: all .3s ease;
}

#s1 .login:hover::before {
	border-color: var(--gold-deep);
	background: radial-gradient(circle at 50% 38%, var(--gold-deep) 0 26%, transparent 27%),
            radial-gradient(circle at 50% 95%, var(--gold-deep) 0 42%, transparent 43%);
}

#s1 .heading {
      position: absolute;
      left: 61.32%;
      top: 32.6%;
      width: 34.99%;
}

#s1 .heading h1 {
	font-family: var(--display);
	font-weight: 600;
	font-size: 2.1cqw;
	line-height: 1.2;
	letter-spacing: .01em;
	white-space: wrap;
}

#s1 .heading h1 .pin {
      color: var(--ink);
      white-space: nowrap;
}
#s1 .heading p {
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.5cqw;
	margin-top: 0.2cqw;
}

#s1 .ph {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, #ece5da 0 14px, #e6ddcf 14px 28px);
      border: 1px dashed #bcae97;
      color: #9a8c74;
      overflow: hidden;
}

#s1 .ph span {
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.85cqw;
      text-align: center;
      padding: 0.6em;
}

#s1 .ph span::before {
      content: "⬡";
      display: block;
      font-size: 1.6cqw;
      margin-bottom: 0.4em;
      color: #c2b49b;
}

#s1 .p1 {
      left: 2.71%;
      top: 30.97%;
      width: 38.05%;
      height: 66.57%;
}

#s1 .p2 {
	left: 41%;
	top: 31.11%;
	width: 17.76%;
	height: 29%;
}
#s1 .p3 {
	left: 54%;
	top: 60.35%;
	width: 17.31%;
	height: 39.07%;
}
#s1 .p4 {
	left: 71.45%;
	top: 60.35%;
	width: 27.14%;
	height: 39.07%;
}

/* #s1 .stage::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold-deep), transparent);
      opacity: .5;
} */

/* ===== s2 (reviews.html) ===== */
#s2 {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --quote: #2e3a45;
      --card: #f2efe9;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}

#s2 .stage {
      position: relative;
      width: 100%;
      /* max-width: 1109px; */
      aspect-ratio: 1109 / 691;
      background: var(--paper);
      container-type: inline-size;
      overflow: hidden;
}

#s2 .ph {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, #ece5da 0 14px, #e6ddcf 14px 28px);
      border: 1px dashed #bcae97;
      color: #9a8c74;
      overflow: hidden;
}

#s2 .ph span {
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.85cqw;
      text-align: center;
      padding: 0.6em;
}

#s2 .ph span::before {
      content: "⬡";
      display: block;
      font-size: 1.6cqw;
      margin-bottom: 0.4em;
      color: #c2b49b;
}

#s2 .pic1 {
	left: 1.971%;
	top: 6.223%;
	width: 47.16%;
	height: 93.198%;
}
#s2 .heading {
	position: absolute;
	left: 55.752%;
	top: 20.342%;
	width: 40.83%;
	font-family: var(--display);
	font-weight: 600;
	font-size: 2.3cqw;
	line-height: 1.12;
	letter-spacing: .022em;
	color: var(--ink);
}
#s2 .card {
	position: absolute;
	left: 49.602%;
	top: 77.852%;
	width: 25.618%;
	height: 21.615%;
	background: var(--card);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5cqw;
}
.carousel-wrapper {
      flex: 1;
      overflow: hidden;
      position: relative;
}

.carousel-container {
      position: relative;
      width: 100%;
      height: 100%;
}

.testimonial-slide {
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      position: absolute;
      width: 100%;
      height: 100%;
}

.testimonial-slide.active {
      opacity: 1;
      position: relative;
}

#s2 .card .quote {
	font-family: var(--serif);
	font-weight: 500;
	color: var(--quote);
	font-size: 1.3cqw;
	line-height: 1.24;
	margin-bottom: 0.5cqw;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

#s2 .card .author {
	font-family: var(--serif);
	color: #8c8283;
	font-size: 1.3cqw;
	letter-spacing: .01em;
}

#s2 .card .arrows {
	display: flex;
	align-items: center;
	font-family: var(--label);
	font-weight: 300;
	color: var(--ink);
	font-size: 1.2cqw;
	/* margin-top: 1.2cqw; */
	cursor: pointer;
	transition: all .3s ease;
	gap: 10px;
	justify-content: end;
}
#s2 .card .arrows span {
	cursor: pointer;
	transition: all .3s ease;
	-webkit-user-select: none;
	user-select: none;
	background: #fff;
	padding: 3px 9px;
	border-radius: 40px;
}
#s2 .card .arrows span:hover {
      color: var(--gold-deep);
      transform: scale(1.2);
}

/* ===== s3 (methods.html) ===== */
#s3 {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --rule: #e6ded0;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}

#s3 .stage {
      position: relative;
      width: 100%;
      /* max-width: 1109px; */
      aspect-ratio: 1109 / 691;
      background: var(--paper);
      container-type: inline-size;
      overflow: hidden;
}

#s3 .title {
      position: absolute;
      left: 39.78%;
      top: 4.052%;
      width: 30%;
      text-align: center;
      font-family: var(--display);
      font-weight: 500;
      font-size: 2.15cqw;
      line-height: 1;
      letter-spacing: 0.005em;
      color: var(--ink);
      white-space: nowrap;
}

#s3 .subtitle {
      position: absolute;
      left: 41.929%;
      top: 8.394%;
      width: 25.789%;
      text-align: center;
      font-family: var(--serif);
      font-style: italic;
      color: var(--ink-soft);
      font-size: 1.25cqw;
      line-height: 1;
      letter-spacing: 0.01em;
      white-space: nowrap;
}

#s3 .menu {
	position: absolute;
	left: 2.738%;
	top: 8.55%;
	width: 42.282%;
	height: 54.043%;
	display: flex;
	flex-direction: column;
}
#s3 .item {
      flex: 1;
}

#s3 .item+.item {
      border-top: 1px solid var(--rule);
      padding-top: 1.5cqw;
}

#s3 .item h3 {
	font-family: var(--serif);
	font-weight: 500;
	color: var(--ink);
	font-size: 1.52cqw;
	line-height: 1;
	letter-spacing: .005em;
}
#s3 .item p {
	font-family: var(--serif);
	color: var(--ink-soft);
	font-size: 1.22cqw;
	line-height: 1.4;
	margin: 0.45cqw 0;
	white-space: wrap;
      font-weight: 500;
}

#s3 .ph {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, #ece5da 0 14px, #e6ddcf 14px 28px);
      border: 1px dashed #bcae97;
      color: #9a8c74;
      overflow: hidden;
}

#s3 .ph span {
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.85cqw;
      text-align: center;
      padding: 0.6em;
}

#s3 .ph span::before {
      content: "⬡";
      display: block;
      font-size: 1.6cqw;
      margin-bottom: 0.4em;
      color: #c2b49b;
}

#s3 .pic {
	left: 45.04%;
	top: 43.741%;
	width: 27.773%;
	height: 31.259%;
}

/* ===== s4 (glimpse.html) ===== */
#s4 {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}

#s4 .stage {
	position: relative;
	width: 100%;
	aspect-ratio: 1309 / 691;
	background: var(--paper);
	container-type: inline-size;
}

#s4 .ph {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, #ece5da 0 14px, #e6ddcf 14px 28px);
      border: 1px dashed #bcae97;
      color: #9a8c74;
      overflow: hidden;
}

#s4 .ph span {
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.85cqw;
      text-align: center;
      padding: 0.6em;
}

#s4 .ph span::before {
      content: "⬡";
      display: block;
      font-size: 1.6cqw;
      margin-bottom: 0.4em;
      color: #c2b49b;
}

#s4 .pic-top {
	top: -29.7%;
	height: 38.996%;
      left: 45.04%;
  width: 27.773%;
}
#s4 .title {
	position: absolute;
	top: -16%;
	font-family: var(--display);
	font-weight: 600;
	color: var(--ink);
	font-size: 2.3cqw;
	line-height: 1;
	letter-spacing: .005em;
	white-space: nowrap;
	left: 12%;
	max-width: 600px;
	text-wrap: wrap;
}
#s4 .subtitle {
	position: absolute;
	top: -15%;
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.35cqw;
	line-height: 1;
	letter-spacing: .01em;
	white-space: nowrap;
	right: 2.4%;
	font-weight: 550;
}
/* ===== s5 (colors.html) ===== */
#s5 {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --rule: #ddd4c4;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}

#s5 .stage {
      position: relative;
      width: 100%;
      /* max-width: 1109px; */
      aspect-ratio: 1109 / 691;
      background: var(--paper);
      container-type: inline-size;
      /* overflow: hidden; */
}

#s5 .ph {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, #ece5da 0 14px, #e6ddcf 14px 28px);
      border: 1px dashed #bcae97;
      color: #9a8c74;
      overflow: hidden;
}

#s5 .ph span {
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.85cqw;
      text-align: center;
      padding: 0.6em;
}

#s5 .ph span::before {
      content: "⬡";
      display: block;
      font-size: 1.6cqw;
      margin-bottom: 0.4em;
      color: #c2b49b;
}

#s5 .title {
	font-family: var(--display);
	font-weight: 600;
	color: var(--ink);
	font-size: 2.4cqw;
	line-height: 1;
	letter-spacing: .005em;
	white-space: nowrap;
	text-align: center;
	margin: 0;
	margin: -44px 0 0;
	z-index: 25;
	position: relative;
}
#s5 .subtitle {
	text-align: center;
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.45cqw;
	line-height: 1;
	letter-spacing: .01em;
	white-space: nowrap;
	margin-top: 11px;
      text-wrap: wrap;
}

#s5 .pic1 {
	left: 1.5%;
	top: 10.051%;
	width: 36.249%;
	height: 79.884%;
}
#s5 .textblock {
	position: absolute;
	left: 39.511%;
	top: 10.485%;
	width: 58.497%;
	height: 80.595%;
	overflow: hidden;
}
#s5 .list {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
}

#s5 .row {
      flex-basis: 0;
      position: relative;
      border-top: 1px solid var(--rule);
      padding-top: 1.0cqw;
      transition:all 400ms ease-in-out;
}

#s5 .row:first-child {
      border-top: 0;
}

#s5 .r01 {
      flex-grow: 1.143;
}

#s5 .r02 {
      flex-grow: 0.969;
}

#s5 .r03 {
      flex-grow: 0.991;
}

#s5 .r04 {
      flex-grow: 1.205;
}

#s5 .r05 {
      flex-grow: 1.019;
}

#s5 .rnum {
	position: absolute;
	left: 0;
	top: 1cqw;
	font-family: var(--serif);
	font-feature-settings: "lnum" 1;
	color: var(--ink-soft);
	font-size: 1.55cqw;
	letter-spacing: .04em;
}

#s5 .rname {
	position: absolute;
	left: 8.5%;
	top: 1.55cqw;
	font-family: var(--serif);
	font-style: italic;
	font-weight: 500;
	color: var(--ink);
	font-size: 1.8cqw;
	line-height: 1cqw;
	letter-spacing: .01em;
}
#s5 .rdesc {
	position: absolute;
	left: 8.5%;
	top: 3.5cqw;
	width: 50%;
	font-family: var(--serif);
	color: var(--ink-soft);
	font-size: 1.28cqw;
	line-height: 1.32;
      font-weight: 550;
}     
#s5 .rswatch {
      right: 2%;
      top: 50%;
      transform: translateY(-50%);
      width: 14%;
      height: auto;
      border: 0;
}

#s5 .rs01 {
      aspect-ratio: 0.981;
}

#s5 .rs02 {
      aspect-ratio: 1.032;
}

#s5 .rs03 {
      aspect-ratio: 1.009;
}

#s5 .rs04 {
      aspect-ratio: 0.981;
}

#s5 .rs05 {
      aspect-ratio: 0.981;
}

#s5 .rswatch span {
      font-size: 0.7cqw;
}

/* ===== s6 (pricing.html) ===== */
#s6 {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --rule: #d8cfc0;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}

#s6 .stage {
      position: relative;
      width: 100%;
      /* max-width: 1109px; */
      aspect-ratio: 1109 / 691;
      background: var(--paper);
      container-type: inline-size;
      overflow: hidden;
}

#s6 .title {
	font-family: var(--display);
	font-weight: 600;
	color: var(--ink);
	font-size: 2.4cqw;
	line-height: 1;
	letter-spacing: .005em;
	white-space: nowrap;
	text-align: center;
	margin: 0;
}
#s6 .subtitle {
	text-align: center;
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.45cqw;
	line-height: 1;
	letter-spacing: .01em;
	white-space: nowrap;
	margin-top: 11px;
      font-weight: 550;
}

#s6 .menu {
	position: absolute;
	left: 1.5%;
	top: 20.984%;
	width: 42.462%;
	height: 43.706%;
	display: flex;
	flex-direction: column;
}

#s6 .mitem {
	flex: 1;
	position: relative;
	border-top: 1px dashed var(--rule);
	padding: 1cqw;
}

#s6 .mitem:first-child {
      border-top: 0;
      padding-top: 0;
}
#s6 .mitem .name {
	font-family: var(--serif);
	color: var(--ink);
	font-size: 1.45cqw;
	line-height: 1;
	letter-spacing: .005em;
}
#s6 .mitem .sub {
	font-family: var(--serif);
	color: #555;
	font-size: 1.35cqw;
	line-height: 1;
	margin-top: .55cqw;
}

#s6 .mitem .price {
	position: absolute;
	right: 0;
	top: .7cqw;
	font-family: var(--serif);
	color: var(--ink);
	font-size: 1.45cqw;
	line-height: 1;
	letter-spacing: .01em;
}

#s6 .mitem:first-child .price {
      top: 0;
}

#s6 .ph {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, #ece5da 0 14px, #e6ddcf 14px 28px);
      border: 1px dashed #bcae97;
      color: #9a8c74;
      overflow: hidden;
}

#s6 .ph span {
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.85cqw;
      text-align: center;
      padding: 0.6em;
}

#s6 .ph span::before {
      content: "⬡";
      display: block;
      font-size: 1.6cqw;
      margin-bottom: 0.4em;
      color: #c2b49b;
}

#s6 .pic2 {
	left: 50.823%;
	top: 22.26%;
	width: 46.543%;
	height: 58.467%;
}

/* ===== s7 (group.html) ===== */
#s7 {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}

#s7 .stage {
      position: relative;
      width: 100%;
      /* max-width: 1109px; */
      aspect-ratio: 1109 / 691;
      background: var(--paper);
      container-type: inline-size;
      overflow: hidden;
}

#s7 .ph {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, #ece5da 0 14px, #e6ddcf 14px 28px);
      border: 1px dashed #bcae97;
      color: #9a8c74;
      overflow: hidden;
}

#s7 .ph span {
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.85cqw;
      text-align: center;
      padding: 0.6em;
}

#s7 .ph span::before {
      content: "⬡";
      display: block;
      font-size: 1.6cqw;
      margin-bottom: 0.4em;
      color: #c2b49b;
}

#s7 .pic1 {
	left: 0%;
	top: 0%;
	width: 100%;
	height: 90.671%;
}

/* ===== s8 (cta-footer.html) ===== */
#s8 {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --rule: #cfc7b8;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}
#s8 .stage {
	position: relative;
	width: 100%;
	aspect-ratio: 530 / 691;
	background: var(--paper);
	container-type: inline-size;
	overflow: hidden;
}
#s8 .title {
	position: absolute;
	left: 0;
	top: 5%;
	width: fit-content;
	text-align: center;
	font-family: var(--display);
	font-weight: 600;
	font-size: 2.4cqw;
	line-height: 1;
	letter-spacing: .005em;
	color: var(--ink);
	white-space: nowrap;
	right: 0;
	margin: 0 auto;
}
#s8 .title.google_review_title{
      top: 32.5%;
}
#s8 .subtitle {
	position: absolute;
	left: 0;
	top: 7.764%;
	width: fit-content;
	text-align: center;
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.5cqw;
	line-height: 1;
	letter-spacing: .01em;
	white-space: nowrap;
	right: 0;
	margin: 0 auto;
	font-weight: 550;
}
#s8 .btn {
	position: absolute;
	left: 0;
	top: 12.931%;
	width: 12%;
	height: 2.125%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #000;
	border-radius: 0;
	font-family: var(--serif);
	color: #fff;
	font-size: 1.15cqw;
	letter-spacing: .02em;
	transition: all .35s cubic-bezier(.25,.46,.45,.94);
	cursor: pointer;
	margin: 0 auto;
	right: 0;
	background: #000;
	text-transform: uppercase;
	font-family: var(--font-paragraph--family);
	letter-spacing: 2px;
}
#s8 .line {
	position: absolute;
	left: 4.336%;
	top: 85.1%;
	width: 91.163%;
	height: 1px;
	background: var(--rule);
}
#s8 .logo {
	position: absolute;
	left: 5.05%;
	top: 87.183%;
	font-family: var(--display);
	font-weight: 500;
	color: var(--ink);
	font-size: 2.72cqw;
	letter-spacing: .18em;
	line-height: 1;
	white-space: nowrap;
	display: inline-block;
}
#s8 .footer {
	position: absolute;
	left: 33.544%;
	top: auto;
	width: 62.429%;
	height: 13.028%;
	font-family: var(--serif);
	color: var(--ink-soft);
	font-size: 1.2cqw;
	line-height: 1.74;
	bottom: 0;
}

#s8 .footer .blk {
      position: absolute;
}

#s8 .footer a {
      color: inherit;
      text-decoration: none;
}

#s8 .footer .b-addr {
      left: 0;
      top: 0;
      white-space: nowrap;
}

#s8 .footer .b-contact {
      left: 0;
      top: 42%;
      white-space: nowrap;
}

#s8 .footer .b-social {
      left: 45%;
      top: 0;
}

#s8 .footer .b-nav {
      left: 75%;
      top: 0;
}

#s8 .footer .b-legal {
	left: 75%;
	top: 36%;
	white-space: nowrap;
}

#s8 .footer .cur {
      text-decoration: underline;
      text-underline-offset: 2px;
}

/* ---- photo joins (assembled-site only; original screens untouched) ---- */
#s3 .pic {
      border-bottom: 0;
}

#s4 .pic-big {
	border-bottom: 0;
	width: 60%;
	height: 750px;
	left: 0;
	right: 0;
	position: absolute;
	top: 24%;
	margin: 0 auto;
}
/* ---- Unified sticky section title (methods -> pricing) ---- */
#s3 .title,
#s3 .subtitle{
      display: none;
}

.titleband {
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: var(--paper);
}

.bandtitle {
	/* position: sticky; */
	/* top: 0; */
	/* z-index: 30; */
	width: 100%;
	container-type: inline-size;
	background: var(--paper);
	text-align: center;
	padding-top: 2.2cqw;
	padding-bottom: 1.4cqw;
	border-bottom: 1px solid rgba(27,24,21,.07);
}
.bandtitle .bt-title {
	font-family: var(--display);
	font-weight: 600;
	font-size: 2.4cqw;
	line-height: 1;
	letter-spacing: .005em;
	color: var(--ink);
}
.bandtitle .bt-sub {
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.45cqw;
	line-height: 1;
	letter-spacing: .01em;
	margin-top: 0.5cqw;
}

/* ===== s9 (gallery.html) ===== */
#s9 {
      --paper: #fdfcfa;
      --ink: #1b1815;
      --ink-soft: #444;
      --gold-deep: #8f6a3f;
      --serif: "Cormorant Garamond", Georgia, serif;
      --display: "Bodoni Moda", "Didot", Georgia, serif;
      --label: "Jost", "Helvetica Neue", Arial, sans-serif;
}

#s9 .stage {
      position: relative;
      width: 100%;
      /* max-width: 1109px; */
      aspect-ratio: 1900 / 812;
      background: var(--paper);
      container-type: inline-size;
      overflow: visible;
}

#s9 .ph {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, #ece5da 0 14px, #e6ddcf 14px 28px);
      border: 1px dashed #bcae97;
      color: #9a8c74;
      overflow: hidden;
}

#s9 .ph span {
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.85cqw;
      text-align: center;
      padding: 0.6em;
}

#s9 .ph span::before {
      content: "⬡";
      display: block;
      font-size: 1.6cqw;
      margin-bottom: 0.4em;
      color: #c2b49b;
}
#s9 .g1 {
	left: 4%;
	top: -7%;
	width: 22.79%;
	height: 75.57%;
}
#s9 .g2 {
	left: 34.21%;
	top: 32.01%;
	width: 24.79%;
	height: 82.57%;
}
#s9 .g3 {
	right: 4%;
	top: 1.42%;
	width: 28.16%;
	height: 81.16%;
}

#s9 .g4 {
      left: 82.68%;
      top: 5.42%;
      width: 15.89%;
      height: 45.81%;
}
#s9 .gallery-btn {
	position: absolute;
	left: 0;
bottom: -26%;
	width: 13%;
	height: 6.6%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #8a8275;
	border-radius: 50px;
	font-family: var(--serif);
	color: var(--ink);
	font-size: 1.2cqw;
	letter-spacing: .02em;
	white-space: nowrap;
	text-decoration: none;
	transition: all .35s cubic-bezier(.25,.46,.45,.94);
	cursor: pointer;
	right: 0;
	margin: 0 auto;
}
#s9 .gallery-btn:hover {
      /* transform: translateY(-3px); */
      background-color: rgba(139, 106, 63, 0.08);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      border-color: #8f6a3f;
}
#s9 {
	padding: 220px 0;
}
#s9 .title {
	position: absolute;
	top: -24%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: fit-content;
	font-family: var(--display);
	font-weight: 600;
	color: var(--ink);
	font-size: 2.5cqw;
	line-height: 1;
	letter-spacing: .005em;
	white-space: nowrap;
}
#s9 .subtitle {
	position: absolute;
	top: -14%;
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.45cqw;
	line-height: 1;
	letter-spacing: .01em;
	margin-top: 1cqw;
	width: fit-content;
	margin: 0 auto;
	left: 0;
	right: 0;
}

.about-des-block {
	position: absolute;
	left: 55.752%;
	top: 25.342%;
	width: 40.83%;
}
.about-des {
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.4cqw;
	line-height: 1.3;
	letter-spacing: .01em;
	margin-top: 1cqw;
      font-weight: 500;
}





/* ---- s6 package cards (replaces flat price list) ---- */
#s6 .menu {
      left: 1.5%;
      top: 12%;
      width: 46%;
      height: 86%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 0.5cqw;
}

#s6 .package {
	border-top: 1px dashed var(--rule);
	padding-top: .5cqw;
	/* flex: 1; */
	position: relative;
}

#s6 .package:first-child {
      border-top: 0;
      padding-top: 0;
}

#s6 .package-head {
      display: flex;
      align-items: baseline;
      gap: 0.5cqw;
      flex-wrap: wrap;
}

#s6 .package-title {
      font-family: var(--serif);
      font-weight: 600;
      color: var(--ink);
      font-size: 1.35cqw;
      line-height: 1.05;
      letter-spacing: 0.005em;
}

#s6 .package-title span {
      font-style: italic;
      font-weight: 550;
      color: var(--ink-soft);
}

#s6 .package-badge {
	font-family: var(--label);
	text-transform: uppercase;
	letter-spacing: .06em;
	font-size: 0.5cqw;
	color: #fff;
	background: var(--gold-deep);
	padding: .15cqw .5cqw;
	border-radius: 20px;
	white-space: nowrap;
}

#s6 .package-desc {
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.2cqw;
	line-height: 1.2;
	margin-top: .2cqw;
	font-weight: 550;
}

#s6 .package-list {
      list-style: none;
      margin: 0.3cqw 0 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.1cqw;
}

#s6 .package-list li {
	font-family: var(--serif);
	color: var(--ink-soft);
	font-size: 1.1cqw;
	line-height: 1.2;
	padding-left: .9cqw;
	position: relative;
	font-weight: 550;
}
#s6 .package-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--gold-deep);
}

#s6 .package-foot {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-top: 0.3cqw;
}

#s6 .package-duration {
	font-family: var(--serif);
	color: #555;
	font-size: 1.1cqw;
}

#s6 .package-price {
	font-family: var(--serif);
	font-weight: 600;
	color: var(--ink);
	font-size: 1.35cqw;
	letter-spacing: .01em;
	position: absolute;
	right: 0;
	top: 0;
}
#s6 .package-note {
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.1cqw;
	margin-top: .1cqw;
}

#s6 .package-travel-note {
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.1cqw;
	line-height: 1.25;
	border-top: 1px dashed var(--rule);
	padding-top: .4cqw;
	margin-top: .1cqw;
	font-weight: 550;
}

.comment_comments_wrapper__Vf3s0 {
  margin-top:0;
  padding-bottom:0;
  border-bottom:none
}
@media(max-width:768px) {
  .comment_comments_wrapper__Vf3s0 {
    margin-top:0;
    margin-left:0;
    margin-right:0;
    padding-left:0;
    padding-right:0;
    width:100%
  }
}
.comment_comments__8Nhcf {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px 36px;
  row-gap:28px
}
@media(max-width:768px) {
  .comment_comments__8Nhcf {
    grid-template-columns:1fr;
    gap:20px;
    row-gap:20px
  }
}
.comment_comments_button__BrWch {
	margin: 40px auto 0;
	border: 1px solid rgba(0,0,0,.12);
	color: #1d1d1d;
	width: fit-content;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 500;
	font-family: Montserrat,sans-serif;
	border-radius: 12px;
	background: #fff9;
	transition: all .2s ease;
	cursor: pointer;
	letter-spacing: -.05px;
	box-shadow: 0 1px 3px #0000000a;
	text-decoration: none;
	display: block;
	align-items: center;
	justify-content: center;
}
.comment_comments_button__BrWch:hover {
  background:hsla(0,0%,100%,.9);
  border-color:rgba(0,0,0,.18);
  box-shadow:0 2px 6px rgba(0,0,0,.06);
  transform:translateY(-1px)
}
.comment_comments_button__BrWch:active {
  transform:translateY(0)
}
.comment_comments_button__BrWch:visited {
  color:#1d1d1d
}
@media(max-width:768px) {
  .comment_comments_button__BrWch {
    margin-top:32px;
    padding:10px 20px;
    font-size:14px;
    border-radius:10px
  }
}
.comment_alternate_image__FWXz0 {
  text-transform:uppercase;
  width:100%;
  height:100%;
  text-align:center;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  font-weight:600;
  font-family:Montserrat,sans-serif;
  vertical-align:middle;
  background:linear-gradient(135deg,#1d1d1d,#1d1d1d);
  color:#fff;
  letter-spacing:.3px;
  border-radius:50%
}
@media(max-width:768px) {
  .comment_comments__8Nhcf {
    grid-template-columns:repeat(1,1fr)
  }
}
.comment_container__gkUws {
  position:relative;
  max-width:100%;
  background:hsla(0,0%,100%,.8);
  border:1px solid rgba(0,0,0,.08);
  border-radius:20px;
  padding:28px;
  transition:all .25s ease;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
  display:flex;
  flex-direction:column;
  overflow:hidden
}
@media(max-width:768px) {
  .comment_container__gkUws {
    padding:22px;
    border-radius:16px
  }
}
.comment_container__gkUws:hover {
  background:hsla(0,0%,100%,.95);
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  border-color:rgba(0,0,0,.1)
}
.comment_content__SkIJP {
  position:relative;
  display:flex;
  flex-direction:column;
  flex:1
}
.comment_rating_wrapper__6XN9C {
  display:flex;
  align-items:center;
  margin:0 0 24px;
  line-height:1
}
@media(max-width:768px) {
  .comment_rating_wrapper__6XN9C {
    margin-bottom:20px
  }
}
.comment_rating_wrapper__6XN9C .rating-container {
  display:flex;
  gap:5px
}
@media(max-width:768px) {
  .comment_rating_wrapper__6XN9C .rating-container {
    gap:4px
  }
}
.comment_rating_wrapper__6XN9C .star-svg {
  display:inline-block;
  vertical-align:middle
}
.comment_meta_wrapper__qo1OI {
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  row-gap:4px;
  margin-top:auto;
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,.05)
}
@media(max-width:768px) {
  .comment_meta_wrapper__qo1OI {
    gap:6px;
    padding-top:16px
  }
}
.comment_name__WxF_Q {
  font-family:Montserrat,sans-serif;
  font-weight:600;
  font-size:14px;
  color:rgba(0,0,0,.7);
  letter-spacing:-.05px;
  line-height:1.4
}
@media(max-width:768px) {
  .comment_name__WxF_Q {
    font-size:13px
  }
}
.comment_verified___SFuR {
  transform:translateY(1px);
  max-width:12px;
  height:12px;
  flex-shrink:0
}
@media(max-width:768px) {
  .comment_verified___SFuR {
    max-width:11px;
    height:11px
  }
}
.comment_verified_tooltip__HlTH0 {
  position:absolute;
  width:320px;
  left:50%;
  top:0;
  transform:translate(-50%,-120%);
  padding:25px 15px;
  box-shadow:2px 2px 10px 1px rgba(0,0,0,.2);
  background-color:#fff;
  border-radius:16px;
  font-weight:400;
  line-height:120%
}
.comment_date__WVOOW {
  color:rgba(0,0,0,.4);
  font-size:12px;
  font-family:Montserrat,sans-serif;
  display:inline-block;
  letter-spacing:-.05px;
  line-height:1.4;
  font-weight:400
}
@media(max-width:768px) {
  .comment_date__WVOOW {
    font-size:11px
  }
}
.comment_service_name__Qto3r {
  font-size:11px;
  font-weight:500;
  color:rgba(0,0,0,.6);
  font-family:Montserrat,sans-serif;
  margin:0;
  display:inline-flex;
  align-items:center;
  letter-spacing:-.05px;
  padding:3px 8px;
  background:rgba(0,0,0,.04);
  border-radius:10px;
  width:fit-content;
  border:1px solid rgba(0,0,0,.08);
  transition:all .2s ease
}
@media(max-width:768px) {
  .comment_service_name__Qto3r {
    font-size:10px;
    padding:2px 6px
  }
}
.comment_service_name__Qto3r:before {
  content:"💆";
  margin-right:4px;
  font-size:10px;
  line-height:1
}
.comment_text__bXUgI {
  display:-webkit-box;
  overflow:hidden;
  text-overflow:ellipsis;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  -ms-word-break:break-all;
  word-break:break-all;
  font-size:15px;
  line-height:1.7;
  color:rgba(0,0,0,.75);
  font-family:Montserrat,sans-serif;
  font-weight:400;
  margin:0 0 20px;
  padding-top:4px;
  letter-spacing:-.01px;
  position:relative;
  flex:1
}
@media(max-width:768px) {
  .comment_text__bXUgI {
    font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
    padding-top:3px
  }
}
.comment_text_modal__wgXVi {
  font-size:15px;
  line-height:1.7;
  color:rgba(0,0,0,.75);
  font-family:Montserrat,sans-serif;
  font-weight:400;
  margin:0 0 20px;
  padding-top:4px;
  letter-spacing:-.01px;
  position:relative
}
.comment_more__ZznsW {
  font-size:14px;
  font-weight:500;
  color:rgba(0,0,0,.7);
  text-decoration:underline;
  text-underline-offset:3px;
  cursor:pointer;
  transition:color .2s ease;
  font-family:Montserrat,sans-serif;
  margin-top:4px;
  margin-bottom:12px;
  display:inline-block
}
@media(max-width:768px) {
  .comment_more__ZznsW {
    font-size:13px;
    margin-top:3px;
    margin-bottom:10px
  }
}
.comment_more__ZznsW:hover {
  color:#1d1d1d
}
.comment_comments_back__9Iglh {
  top:0;
  left:0;
  position:fixed;
  z-index:1000;
  width:100vw;
  height:100vh;
  background-color:rgba(0,0,0,.7)
}
.comment_comments_back__9Iglh div::-webkit-scrollbar {
  width:5px
}
.comment_comments_back__9Iglh div::-webkit-scrollbar-thumb {
  background-color:gray;
  border-radius:25px
}
.comment_comments_modal__EeuNm {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:700px;
  max-width:90vw;
  max-height:80%;
  background-color:#fff;
  overflow:auto;
  border-radius:12px;
  box-shadow:0 8px 32px rgba(0,0,0,.12)
}
.comment_close__Qkgm7 {
  cursor:pointer;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  transition:background-color .2s ease
}
.comment_close__Qkgm7:hover {
  background-color:rgba(0,0,0,.05)
}
.comment_controls__M_my4 {
  padding:16px 24px;
  position:sticky;
  top:0;
  background-color:#fff;
  height:fit-content;
  border-bottom:1px solid rgba(0,0,0,.08);
  z-index:1;
  display:flex;
  justify-content:flex-end;
  align-items:center
}
.comment_comments_in_modal__jmXzl {
  padding:24px
}
.comment_comments_in_modal__jmXzl>div {
  margin-bottom:24px
}
.comment_comments_in_modal__jmXzl>div:last-child {
  margin-bottom:0
}
@media(max-width:768px) {
  .comment_comments_in_modal__jmXzl>div {
    margin-bottom:20px
  }
}
@media screen and (max-width:420px) {
  .comment_verified_tooltip__HlTH0 {
    max-width:90vw
  }
}
.artistPage_ratings_comments___E8sr{
top: 32%;
  position: absolute;
  width: 93%;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.section_review_wrap {
	position: absolute;
	top: 58%;
	margin: 0 auto;
	left: 0;
	right: 0;
}     
.section_review {
	max-width: 1520px;
	margin: 0 auto;
	border-bottom: 2px solid var(--border);
	padding-bottom: 50px;
}
 
  /* .section_review h2.title{
    text-align:center;
    font-weight:400;
    letter-spacing:0.35em;
    font-size:28px;
    margin:0 0 40px;
    text-transform:uppercase;
  } */
.section_review .title-main {
	width: fit-content;
	text-align: center;
	font-family: var(--display);
	font-weight: 600;
	font-size: 2.4cqw;
	line-height: 1;
	letter-spacing: .005em;
	color: var(--ink);
	white-space: nowrap;
	right: 0;
	margin: 0 auto 60px;
      text-wrap: wrap;
}
  .section_review .carousel{
    position:relative;
    display:flex;
    align-items:stretch;
  }
  .section_review .track-wrap{
    overflow:hidden;
    flex:1;
  }
  .section_review .track{
    display:flex;
    gap:24px;
    transition: transform .4s ease;
  }
.section_review .card {
	flex: 0 0 calc(25% - 18px);
	background: #f2efe9;
	padding: 28px 26px 30px;
	display: flex;
	flex-direction: column;
	min-height: 415px;
}
.section_review .card h3 {
	font-size: 19px;
	font-weight: 400;
	margin: 0 0 8px;
}
.section_review .stars {
	color: var(--star);
	font-size: 22px;
	letter-spacing: 2px;
	margin-bottom: 10px;
	font-family: inter;
}
.section_review  .author_name{
letter-spacing: 0.6px;
font-size: 18px;
}
  .section_review .author{
    font-family: Arial, Helvetica, sans-serif;
    font-size:14px;
    color:var(--text);
    margin-bottom:16px;
  }
 .section_review .review-text {
	font-family: "inter",Helvetica,sans-serif;
	font-size: 18px;
	line-height: 1.6;
       overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 6; /* number of lines to show */
           line-clamp: 6; 
   -webkit-box-orient: vertical;
	color: var(--text);
}
  .section_review .review-text .ellipsis{ color:var(--text); }
.section_review .read-more {
	font-family: Inter,Helvetica,sans-serif;
	font-size: 17px;
	color: var(--link);
	text-decoration: underline;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-align: left;
	width: fit-content;
	margin-bottom: auto;
	margin-top: 10px;
}
  .section_review .card-footer{
    margin-top:20px;
  }
.section_review .see-review {
	font-family: "Inter",Helvetica,sans-serif;
	font-size: 18px;
	color: var(--link);
	text-decoration: underline;
	display: inline-block;
	margin-bottom: 0px;
}
  .section_review .date {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 18px;
	color: var(--text);
      display:none;
}
.section_review .nav-btn {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	flex: 0 0 80px;
	color: #555;
	/* background: #555; */
}
.section_review .nav-btn svg {
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 50px;
	/* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
	/* font-size: 100px; */
	scale: 3;
	/* fill: #555; */
	/* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
	box-shadow: rgba(0, 0, 0, 0.10) 0px 5px 15px;
}
 .section_review  .nav-btn:hover{ color:#333; }
.section_review .nav-btn:disabled {
	opacity: 0.6;
	cursor: default;
}
/* ========================== */
.section_video_wrap {
	position: absolute;
	left: 0;
	right: 0;
	top: 20%;
	margin: 0 auto;
	width: max-content;
}
.section_video_wrap .title-main {
	width: fit-content;
	text-align: center;
	font-family: var(--display);
	font-weight: 600;
	font-size: 2.4cqw;
	line-height: 1;
	letter-spacing: .005em;
	color: var(--ink);
	white-space: nowrap;
	right: 0;
	margin: 0 auto 60px;
      text-wrap: wrap;
}

/* ============================================================
   HAMBURGER + DRAWER (right-to-left)
   ============================================================ */
.hamburger {
      display: none;
      position: absolute;
      z-index: 50;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      padding: 6px;
    pointer-events: all;
}

.hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      transition: all .3s ease;
}

.drawer-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.5);
      z-index: 998;
      opacity: 0;
      transition: opacity .3s ease;
}

.drawer-overlay.active {
      display: block;
      opacity: 1;
}

.mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: 78%;
      max-width: 320px;
      height: 100%;
      background: var(--paper);
      z-index: 999;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.25,.46,.45,.94);
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 30px rgba(0,0,0,.15);
}

.mobile-drawer.active {
      transform: translateX(0);
}

.drawer-top {
      display: flex;
      align-items: center;
      justify-content: end;
      padding: 20px;
      border-bottom: 1px solid var(--rule);
}

.drawer-login {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--label);
      text-transform: uppercase;
      letter-spacing: .05em;
      font-size: 13px;
      color: var(--ink);
      text-decoration: none;
}

.drawer-login-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1px solid var(--ink);
      display: inline-block;
      background: radial-gradient(circle at 50% 38%,var(--ink) 0 26%,transparent 27%),
                  radial-gradient(circle at 50% 95%,var(--ink) 0 42%,transparent 43%);
}

.drawer-close {
      font-size: 30px;
      line-height: 1;
      cursor: pointer;
      color: var(--ink-soft);
}

.drawer-nav {
      display: flex;
      flex-direction: column;
      padding: 6px 0;
}

.drawer-nav a {
      font-family: var(--serif);
      font-size: 19px;
      color: var(--ink);
      text-decoration: none;
      text-align: center;
      padding: 22px 20px;
      border-bottom: 1px solid var(--rule);
}

.drawer-nav a.cur {
      text-decoration: underline;
      text-underline-offset: 4px;
}
@media (max-width: 1799px) {
      #s8 .stage {
            aspect-ratio: 480 / 691;
      }
}
@media (max-width: 1699px) {
      #s4 .pic-big {
    width: 80%;
}
 #s8 .stage {
	aspect-ratio: 460 / 691;
}
#s8 .title {
	top: 4%;
}
#s8 .subtitle {
	top: 6.764%;
}
#s8 .btn {
	top: 11.931%;
	height: 2.325%;
}
#s8 .footer {
    height: 14.328%;
}
#s8 .footer .b-legal {
      top: 36%;
}
/* #gallery #s8 .footer .b-legal {
      top: 40%;
} */
#s8 .logo {
	top: 86.3%;
}
#s8 .line {
	top: 84.5%;
}
      #s5 .stage {
            aspect-ratio: 800 / 691;
      }
      #s5 .title {
	margin: 80px 0 0;
}
#s5 .pic1 {
	left: 1.5%;
	top: 16.051%;
	width: 36.249%;
	height: 75.884%;
}
#s5 .textblock {
	position: absolute;
	left: 39.511%;
	top: 15.485%;
	width: 58.497%;
	height: 75.595%;
	overflow: hidden;
}
#s9 {
	padding: 165px 0 190px;
}
#s1 .nav {
    font-size: 1.6cqw;
}
#s1 .booknow {
    font-size: 1cqw;
}
#s1 .heading h1 {
    font-size: 2.2cqw;
}
#s1 .heading p {
    font-size: 1.6cqw;
}
#s2 .heading {
    font-size: 2.4cqw;
}
.about-des {
    font-size: 1.5cqw;
}
#s2 .card .author {
    font-size: 1.4cqw;
}
.bandtitle .bt-title {
    font-size: 2.5cqw;
}
.bandtitle .bt-sub {
    font-size: 1.5cqw;
}
#s3 .item h3 {
    font-size: 1.7cqw;
}
#s3 .item p {
    font-size: 1.4cqw;
}
#s5 .subtitle {
    font-size: 1.5cqw;
}
#s5 .rnum {
    font-size: 1.65cqw;
}
#s5 .rname {
    font-size: 2cqw;
}
#s5 .rdesc {
    font-size: 1.38cqw;
}
#s6 .subtitle {
    font-size: 1.5cqw;
}
#s6 .package-title {
    font-size: 1.45cqw;
}
#s6 .package-desc {
    font-size: 1.3cqw;
}
#s6 .package-list li {
    font-size: 1.2cqw;
}
#s6 .package-duration {
    font-size: 1.2cqw;
}
#s6 .package-note {
    font-size: 1.2cqw;
}
#s6 .stage {
    aspect-ratio: 1090 / 691;
}
#s9 .gallery-btn {
    font-size: 1.4cqw;
}
#s8 .btn {
    font-size: 1.45cqw;
}
#s8 .footer {
    font-size: 1.4cqw;
}
}

@media (max-width: 1499px) {
      #s9 {
	padding: 140px 0 165px;
}
      #s8 .stage {
	aspect-ratio: 420  / 691;
}
#s1 .heading h1 {
    font-size: 2.3cqw;
}
#s1 .heading p {
    font-size: 1.7cqw;
}
#s2 .heading {
    font-size: 2.5cqw;
}
.about-des {
    font-size: 1.6cqw;
}
#s2 .card .author {
    font-size: 1.5cqw;
}
.bandtitle .bt-title {
    font-size: 2.6cqw;
}
.bandtitle .bt-sub {
    font-size: 1.6cqw;
}
#s3 .item h3 {
    font-size: 1.8cqw;
}
#s3 .item p {
    font-size: 1.5cqw;
}
#s4 .title {
    font-size: 2.4cqw;
}
#s4 .pic-big {
    width: 90%;
}
#s5 .title {
    font-size: 2.5cqw;
}
#s5 .subtitle {
    font-size: 1.45cqw;
}
#s5 .rnum {
    font-size: 1.75cqw;
}
#s5 .rname {
    font-size: 2.1cqw;
}
#s5 .rdesc {
    font-size: 1.48cqw;
}
#s6 .subtitle {
    font-size: 1.6cqw;
}
#s6 .title {
    font-size: 2.5cqw;
}
#s6 .package-title {
    font-size: 1.55cqw;
}
#s6 .package-badge {
    font-size: 0.7cqw;
}
#s6 .package-price {
    font-size: 1.55cqw;
}
#s6 .package-desc {
    font-size: 1.4cqw;
}
#s6 .package-list li, #s6 .package-duration, #s6 .package-note {
        font-size: 1.3cqw;
    }
    #s6 .pic2 {
    top: 20.26%;
    height: 68.467%;
}
#s6 .stage {
    aspect-ratio: 990 / 691;
}
#s9 .gallery-btn {
    width: 14%;
    height: 7.4%;
    font-size: 1.5cqw;
}
#s8 .title {
    font-size: 2.5cqw;
}
#s8 .subtitle {
    font-size: 1.6cqw;
}
.section_video_wrap .title-main {
    font-size: 2.5cqw;
}
.section_review .title-main {
    font-size: 2.5cqw;
}
.section_review .card h3 {
    font-size: 18px;
}
.section_review .see-review{
      font-size: 17px;
}
.section_review .date {
    font-size: 17px;
}
.section_review .card {
    padding: 22px 22px 20px;
    min-height: 380px;
}
#s8 .footer {
    font-size: 1.6cqw;
}
}
@media (max-width: 1399px) {
     #s8 .stage {
	aspect-ratio: 400 / 691;
}
#s8 .btn {
	top: 10.931%;
	height: 2.325%;
}
}
@media (max-width: 1299px) {
      #s8 .stage {
	aspect-ratio:  400 / 691;
}
#s8 .title {
	top: 3%;
}
#s8 .subtitle {
	top: 5.264%;
}
#s8 .btn {
	top: 9.931%;
	height: 1.925%;
}
#s1 .nav {
    font-size: 1.7cqw;
}
#s1 .heading p {
    font-size: 1.8cqw;
}
.about-des {
    font-size: 1.7cqw;
}
#s2 .heading {
    font-size: 2.6cqw;
}
#s1 .heading h1 {
    font-size: 2.4cqw;
}
.bandtitle .bt-title {
    font-size: 2.7cqw;
}
.bandtitle .bt-sub {
    font-size: 1.7cqw;
}
#s3 .item h3 {
    font-size: 2cqw;
}
#s3 .item p {
    font-size: 1.6cqw;
}
#s5 .subtitle {
    font-size: 1.75cqw;
}
#s5 .rnum {
    font-size: 2.15cqw;
}
#s5 .rname {
    font-size: 2.2cqw;
}
#s5 .rdesc {
    font-size: 1.58cqw;
}
#s6 .package-title {
    font-size: 1.65cqw;
}
#s6 .package-price {
    font-size: 1.65cqw;
}
    #s6 .package-list li, #s6 .package-duration, #s6 .package-note {
        font-size: 1.4cqw;
    }
    #s6 .stage {
    aspect-ratio: 940 / 691;
}
#s6 .package-travel-note {
    font-size: 1.3cqw;
}
#s9 .gallery-btn {
    width: 15%;
    height: 7.6%;
    font-size: 1.6cqw;
}
#s8 .btn {
    font-size: 1.55cqw;
    height: 2.025%;
}
#s8 .footer {
    font-size: 1.7cqw;
}
}
@media (max-width: 1199px) {
       #s9 {
    padding: 120px 0 116px;
  }
      #s8 .stage {
	aspect-ratio:360 / 691;
}
#s9{
      padding: 120px 0 110px;
}
}

.cinner_sm_hide{
      display:block;
}
/* ============================================================
   MOBILE RESPONSIVE max-width: 575px
   ============================================================ */
@media (max-width: 991px) {
      #s1 .logo {
	top: 1.2%;
}
.cinner_sm_hide{
      display:none;
}


  /* ---- global: hide desktop nav, show hamburger ---- */
  #s1 .nav,
  #s1 .login {
        display: none;
  }

  .hamburger {
	display: flex;
	top: 7%;
	right: 5%;
}
  .connector#c1,
  .connector#c2,
  .connector#c3 {
        display: none;
  }

  /* ---- global: every .stage becomes a flowing column ---- */
  #s1 .stage, #s2 .stage, #s3 .stage, #s4 .stage, #s5 .stage,
  #s6 .stage, #s7 .stage, #s8 .stage, #s9 .stage {
        aspect-ratio: auto;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        overflow: visible;
        padding: 0;
        container-type: normal;
  }

  /* ---- global: release every absolutely positioned child ---- */
  #s1 .ph, #s1 .heading, #s1 .booknow,
  #s2 .ph, #s2 .heading, #s2 .card, .about-des-block,
  #s3 .title, #s3 .subtitle, #s3 .menu, #s3 .ph,
  #s4 .title, #s4 .subtitle, #s4 .ph,
  #s5 .title, #s5 .subtitle, #s5 .ph, #s5 .textblock, #s5 .list,
  #s6 .title, #s6 .subtitle, #s6 .menu, #s6 .ph,
  #s7 .ph,
  #s8 .title, #s8 .subtitle, #s8 .btn, #s8 .line, #s8 .logo,
  #s8 .footer, #s8 .footer .blk, .artistPage_ratings_comments___E8sr,
  #s9 .title, #s9 .subtitle, #s9 .ph, #s9 .gallery-btn {
        position: static !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        margin: 0;
  }

  /* ============ S1 HERO ============ */
  #s1 .stage { padding: 22px 20px 32px; gap: 14px; }
  #s1 .logo { padding-top: 2px; }
  #s1 .logo img { width: 60%; }
 #s1 .booknow {
	width: fit-content !important;
	padding: 10px 22px;
	font-size: 11px;
	align-self: center;
	margin-top: 112px;
}
  #s1 .heading { text-align: center; margin-top: 6px !important; }
  #s1 .heading h1 {
	font-size: 26px;
}
  #s1 .heading h1 .pin {
	display: block;
	font-size: 23px;
	margin-top: 2px;
}
#s1 .heading p {
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 18px;
	margin-top: .2cqw;
	font-weight: 500;
}
  #s1 .stage { display: grid !important; grid-template-columns: 1fr 1fr; gap: 10px; }
  #s1 .logo, #s1 .booknow, #s1 .heading { grid-column: 1 / -1; }
#s1 .p1 {
	grid-column: 1 / -1;
	aspect-ratio: 3/4;
}
  #s1 .p2 { grid-column: 1 / -1; aspect-ratio: 16/8; }
  #s1 .p3, #s1 .p4 { aspect-ratio: 1/1; }

  /* ============ S2 ABOUT ============ */
  #s2 .stage { padding: 30px 20px; gap: 16px; }
  #s2 .pic1 { aspect-ratio: 4/5; }
#s2 .heading {
	font-size: 28px;
	text-align: center;
}
  .about-des-block { }
.about-des {
	font-size: 17px;
	line-height: 1.5;
	text-align: center;
}
  #s2 .card { padding: 18px; }
  #s2 .card .quote {
	font-size: 20px;
}
#s2 .card .author {
	font-size: 18px;
}
#s2 .card .arrows {
	font-size: 17px;
}
.bandtitle .bt-title {
	font-size: 26px;
}
.bandtitle .bt-sub {
	font-size: 17px;
	margin-top: 1cqw;
}
  /* ============ S3 METHODS ============ */
 #s3 .stage {
	padding: 24px 20px 0px;
	gap: 20px;
}
  #s3 .menu { gap: 14px; }
  #s3 .item + .item { border-top: 1px solid var(--rule); padding-top: 14px; margin-top: 14px; }
#s3 .item h3 {
	font-size: 19px;
}
 #s3 .item p {
	font-size: 16px;
	margin: 6px 0 0;
}
  #s3 .pic { aspect-ratio: 4/3; }

  /* ============ S4 GLIMPSE ============ */
#s4 .stage {
	padding: 0 20px 0;
	gap: 12px;
}
 #s4 .pic-top {
    aspect-ratio: 3.8/3;
    margin-top: -0.5px;
}
  #s4 .pic-big { aspect-ratio: 16/10; }

  /* ============ S5 COLORS ============ */
  #s5 .stage { padding: 20px 20px 30px; gap: 16px; }
  #s5 .pic1 { aspect-ratio: 4/5; }
  #s5 .textblock { overflow: visible; }
  #s5 .list { display: flex; flex-direction: column; }

#s5 .row {
	display: grid;
	grid-template-columns: 22px 1fr 92px;
	grid-template-rows: auto auto;
	grid-template-areas: "num name swatch" "num desc swatch";
	column-gap: 10px;
	align-items: start;
	padding: 20px 0;
	flex-grow: unset !important;
	border-top: 1px solid var(--rule);
      min-height: 140px;
}
  #s5 .row:first-child { border-top: 0; padding-top: 0; }

 #s5 .rnum {
	grid-area: num;
	font-size: 20px;
}
#s5 .rname {
	grid-area: name;
	font-size: 24px;
	line-height: 1.15;
	left: 1.5%;
}

#s5 .rdesc {
	position: absolute;
	left: 6.5%;
	top: 45%;
	width: 75%;
	font-family: var(--serif);
	color: var(--ink-soft);
	font-size: 2.2cqw;
	line-height: 1.52;
}
  #s5 .rswatch {
        grid-area: swatch;
        width: 100% !important;
        aspect-ratio: 1/1;
        align-self: center;
  }

  /* ============ S6 PRICING PACKAGES ============ */
  #s6 .stage { padding: 20px 20px 30px; gap: 18px; }
  #s6 .menu { overflow: visible !important; gap: 16px !important; }
  #s6 .package { flex: unset !important; padding-top: 14px; }
  #s6 .package:first-child { padding-top: 0; }
  #s6 .package-title {
	font-size: 20px;
}
  #s6 .package-badge { font-size: 9px; padding: 3px 9px; }
  #s6 .package-desc {
	font-size: 17px;
	margin-top: 4px;
}
 #s6 .package-list li {
	font-size: 17px;
	padding-left: 14px;
	margin-top: 2px;
}
  #s6 .package-foot { margin-top: 8px; }
 #s6 .package-duration {
	font-size: 17px;
}
#s6 .package-price {
	position: static !important;
	font-size: 22px;
}
  #s6 .package-note { font-size: 17px; }
  #s6 .package-travel-note { font-size: 17px; padding-top: 10px; }
  #s6 .pic2 { aspect-ratio: 4/3; }

  /* ============ S7 GROUP ============ */
  #s7 .pic1 { aspect-ratio: 4/5; }

  /* ============ S8 CTA / REVIEWS / FOOTER ============ */
  #s8 .stage { padding: 30px 20px; gap: 6px; }
#s8 .title {
	font-size: 24px;
	text-align: center;
	white-space: normal;
}     
  #s8 .subtitle { font-size: 14px; text-align: center; white-space: normal; margin-top: 6px !important; }
#s8 .btn {
	width: fit-content !important;
	padding: 8px 26px;
	font-size: 13px;
	align-self: center;
	margin-top: 14px !important;
}

  .artistPage_ratings_comments___E8sr { margin-top: 28px !important; }
  .comment_comments__8Nhcf { grid-template-columns: 1fr !important; }
  .comment_container__gkUws { padding: 20px !important; }

  #s8 .line { margin-top: 26px !important; }
#s8 .logo {
	text-align: center;
	font-size: 40px;
	margin-top: 22px !important;
}
  #s8 .footer {
        font-size: 19px;
        line-height: 1.7;
        text-align: center;
        margin-top: 18px !important;
        display: flex;
        flex-direction: column;
        gap: 16px;
  }
  #s8 .footer .blk { }

  /* ============ S9 GALLERY ============ */
  #s9 { padding: 0 !important; }
  #s9 .stage {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 26px 20px 30px;
  }
  #s9 .title, #s9 .subtitle, #s9 .gallery-btn { grid-column: 1 / -1; }
 #s9 .title {
	font-size: 26px;
	text-align: center;
	white-space: normal;
}
  #s9 .subtitle {
	font-size: 17px;
	text-align: center;
	white-space: normal;
	margin-top: 4px !important;
}
#s9 .g1, #s9 .g2, #s9 .g3, #s9 .g4 {
	aspect-ratio: 3/4;
}
#s9 .g2 {
	aspect-ratio: 3/4;
}
#s9 .g3 {
	margin: -180px 0 0;
}
 #s9 .gallery-btn {
	width: fit-content !important;
	padding: 8px 24px;
	font-size: 18px;
	margin: 6px auto 0 !important;
}
  /* ============ MODALS extra breathing room ============ */
  .modal-content { padding: 1.4rem; margin: 10% auto; }
  .time-grid { grid-template-columns: repeat(auto-fit, minmax(78px, 1fr)); }
  .next-btn, .send-btn, .confirm-btn { width: 100%; padding: 1rem 1.5rem; }

  #s4 .title {
	font-size: 26px;
	text-align: center;
}
#s4 .subtitle {
	font-size: 17px;
	/* margin-top: 1cqw; */
	text-align: center;
}
#s5 .title {
	font-size: 26px;
	text-align: center;
}
#s5 .subtitle {
	font-size: 18px;
  margin-top: 1cqw;
  text-align: center;
  margin: 0 0 5px;
}
}
@media (max-width: 490px) {
      .hamburger {
            top: 7.7%;
      }
}
@media (max-width: 480px) {
#s1 .booknow {
	margin-top: 43px;
}
  .hamburger {
	top: 7.1%;
}
#s5 .row {
	min-height: 170px;
}
#s5 .rdesc {
	position: absolute;
	left: 10.5%;
	top: 40%;
	width: 56%;
	font-family: var(--serif);
	color: var(--ink-soft);
	font-size: 4cqw;
	line-height: 1.22;
}
#s5 .rdesc {
	width: 50%;
	font-size: 15.4px;
	top: 60px;
}
#s4 .title {
	font-size: 21px;
	text-align: center;
}
#s4 .subtitle {
	font-size: 18px;
	text-align: center;
	width: 80% !important;
	margin: 0 auto;
	text-wrap: wrap;
}
#s4 .title {
	font-size: 21px;
	text-align: center;
}
}


@media (min-width:400px) and (max-width: 430px) {
      #s1 .booknow{
                    margin-top: 58px;
      }
}
@media (max-width: 390px) {
      .hamburger {
    top: 6.8%;
}
}
@media (max-width: 350px) {
.hamburger {
	top: 7.6%;
}
}
@media (max-width: 360px) {
      #s9 .g3 {
	margin: -90px 0 0;
}
#s9 .g2{
      margin: 90px 0 0;
}
  #s1 .heading h1 {
    font-size: 22px;
  }
  #s2 .heading {
	font-size: 24px;
}
.bandtitle .bt-title {
	font-size: 24px;
}
.bandtitle .bt-sub {
	font-size: 17px;
	margin-top: 1cqw;
	width: 90%;
	margin: 0 auto;
	line-height: 1.3;
      font-weight: 500;
}
#s5 .row {
	min-height: 130px;
}
#s5 .rdesc {
	position: absolute;
	left: 10.5%;
	top: 40%;
	width: 56%;
	font-family: var(--serif);
	color: var(--ink-soft);
	font-size: 4cqw;
	line-height: 1.22;
}
#s5 .row {
	display: grid;
	grid-template-columns: 22px 1fr 82px;
	grid-template-rows: auto auto;
	grid-template-areas: "num name swatch" "num desc swatch";
	column-gap: 10px;
	align-items: start;
	padding: 20px 0;
	flex-grow: unset !important;
	border-top: 1px solid var(--rule);
}
#s4 .title {
	font-size: 20px;
	text-align: center;
	width: 90%;
}
}

/* 
#gallery #s8 .stage {
	aspect-ratio: 1600 / 691;
}
#gallery #s8 .stage .footer {
	height: 40.728%;
}
#gallery #s8 .logo {
	top: 61.583%;
}
#gallery #s8 .line {
	top: 56.49%;
}
#gallery #s8 .title {
	top: 15%;
}
#gallery #s8 .subtitle {
	top: 22.064%;
}
#gallery #s8 .btn {
    top: 32.931%;
    width: 12%;
    height: 6.325%;
    font-size: 1.05cqw;
}

#gallery #s1 .nav a:first-child {
	text-decoration: none;
}
#gallery #s1 .nav a:nth-child(3){
      text-decoration: underline;
      text-underline-offset: 3px;
}

#gallery #s1 .stage {
	min-height: 290px;
	aspect-ratio: auto;
}
#gallery #s1 .nav {
	bottom: 5%;
      top: auto;
}
#gallery #s1 .booknow {
      top: auto;
	bottom: 5%;
	width: 8%;
	height: 14%;
}
#gallery #s1 .login {
      top: auto;
	left: 90.28%;
	bottom: 7%;
}


#gallery-inner {
	max-width: 1860px;
	margin: 60px auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 15px;
	/* background: #fcfbf9; */
} */
.gallery-inner .img{
    overflow:hidden;
    position:relative;
}
.gallery-inner .img::before {
	position: absolute;
	top: 0px;
	left: -80%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
	-moz-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	-o-transform: skewX(-25deg);
}
.gallery-inner .img img {
	transition: all 250ms ease-out;
	-webkit-transition: all 250ms ease-out;
	-moz-transition: all 250ms ease-out;
	-ms-transition: all 250ms ease-out;
	-o-transition: all 250ms ease-out;
}
.gallery-inner .img:hover img{
      transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.gallery-inner .img:hover::before {
	animation: shine 2s;
	-webkit-animation: shine 2s;
}
.gallery-inner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* heights */

.gallery-inner .big {
	height: 900px;
}

.gallery-inner .small {
	height: fit-content;
	width: fit-content;
}

/* alternate rows */

.gallery-inner .big:nth-of-type(1){align-self:start;}
.gallery-inner .small:nth-of-type(2){align-self:start;}

.gallery-inner .big:nth-of-type(3),
.gallery-inner .big:nth-of-type(4) {
	width: 80%;
       margin: 0 0 0 auto;
}
.gallery-inner .small:nth-of-type(5) ,
.gallery-inner .small:nth-of-type(9) {
	align-self: start;
	margin: 0 0 0 auto;
}
.gallery-inner .big:nth-of-type(6){align-self:start;}

.gallery-inner .big:nth-of-type(7){align-self:start;}
.gallery-inner .small:nth-of-type(8){align-self:start;}

/* Responsive */

/* @media(max-width:1499px){
      #gallery #s1 .stage {
	min-height: 240px;
}
}
@media(max-width:1299px){
      #gallery #s1 .stage {
	min-height: 210px;
}
}
@media(max-width:1199px){
      #gallery #s1 .stage {
	min-height: 160px;
}
}
@media(max-width:991px){
        #gallery .hamburger {
top: 60%;
  }
} */
@media(max-width:768px){

    /* #gallery-inner{
        gap:16px;
        padding:0 16px;
    } */

    .gallery-inner .big{
        height:360px;
    }

    .gallery-inner .small{
        height:170px;
    }

}

@media(max-width:575px){

    #gallery-inner{
        grid-template-columns:1fr;
    }

    .gallery-inner .big,
    .gallery-inner .small{
        height:auto;
    }

    .gallery-inner img{
        aspect-ratio:4/5;
        object-fit:cover;
    }
/* #gallery #s1 .stage {
	min-height: auto;
	aspect-ratio: auto;
}
#gallery .hamburger {
	top: 62%;
} */
  #s6 .title {
	font-size: 26px;
      }
      #s6 .subtitle {
	font-size: 17px ;
}
}
@media (max-width: 480px) {
  /* #gallery .hamburger {
    top: 52.8%;
  } */
  #s4 .title {
	font-size: 24px;
	text-align: center;
}
#s6 .subtitle {
	font-size: 17px;
	width: 90% !important;
	margin: 0 auto;
	text-wrap: wrap;
}
}
@media (max-width: 390px) {
  /* #gallery  .hamburger {
    top: 50.8%;
  } */
}


.g1_title {
	position: absolute;
	top: 20%;
	left: 19%;
	right: auto;
	margin: 0 auto;
	width: fit-content;
	font-family: var(--display);
	font-weight: 600;
	color: var(--ink);
	font-size: 1.5cqw;
	line-height: 1;
	letter-spacing: .005em;
	white-space: nowrap;
}
.g1_subtitle{
      position: absolute;
  top: 25%;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.25cqw;
  line-height: 1;
  letter-spacing: .01em;
  margin-top: 1cqw;
  width: fit-content;
  margin: 0 auto;
  left: 19%;
  right: auto;
}
.g2_title {
	position: absolute;
	top: 64%;
	left: 13%;
	right: auto;
	margin: 0 auto;
	width: fit-content;
	font-family: var(--display);
	font-weight: 600;
	color: var(--ink);
	font-size: 1.5cqw;
	line-height: 1;
	letter-spacing: .005em;
	white-space: nowrap;
}
.g2_subtitle {
	position: absolute;
	top: 69.8%;
	font-family: var(--serif);
	font-style: italic;
	color: var(--ink-soft);
	font-size: 1.25cqw;
	line-height: 1;
	letter-spacing: .01em;
	margin-top: 1cqw;
	width: fit-content;
	margin: 0 auto;
	left: 10.7%;
	right: auto;
}

.g1_title, .g1_subtitle , .g2_title , .g2_subtitle{
      display:none;
}

.Google_review_block_2 .k-popup__review--arrow svg {
	width: 385px !important;
}
.Google_review_block_2 .k-popup__review--header__rating-count{
	color: #00 !important;
	font-size: 22px !important;
	line-height: 14px !important;
	font-weight: 400 !important;
}
.Google_review_block_2 .k-popup__review--item__description span {
	color: #111 !important;
	font-size: 22px !important;
	line-height: 30px !important;
	font-weight: 400 !important;
}
.Google_review_block_2 .k-popup__review--item__author-name {
	color: #000000ff !important;
	font-size: 18px !important;
	line-height: 20px !important;
	font-weight: 600 !important;
}     
.Google_review_block_2 .k-popup__review--item__author-date {
	color: #555 !important;
	font-size: 17px !important;
	line-height: 20px !important;
	font-weight: 400 !important;
}
.Google_review_block_2 .k-popup__review--item__source-text {
	color: #000 !important;
	font-size: 14px !important;
	line-height: 18px !important;
	font-weight: 400 !important;
}
.k-popup__powered-by {
	display: none !important;
}
.Google_review_block_2 .k-popup__inner-wrap{
      background: #fdfcfa !important;
}
.Google_review_block_2 .k-popup__review--header__btn a {
	border-radius: 40px !important;
	border: 1px solid #312e2b !important;
	background: transparent !important;
	color: #312e2b !important;
	font-size: 17px !important;
}
.Google_review_block_2 {
	position: absolute;
	width: 100%;
	top: 37%;
}
.Google_review_block_2 .k-popup__review--item__rating {
	margin-bottom: 15px !important;
}
.Google_review_block_2 .k-popup__review--rating {
	gap: 4px !important;
}
@media (max-width:991px){
      .Google_review_block_2 {
            position: relative;
            width: 100%;
            top: 0;
      }
      .Google_review_block_2 .k-popup__review--arrow svg {
	width: 1100px !important;
	height: auto !important;
}
.Google_review_block_2 .k-popup__inner .k-popup__inner-inner {
      padding: 0 !important;
	align-items: unset;
	flex-direction: column;
}
}
@media (max-width:480px){
      .Google_review_block_2 .k-popup__review--arrow svg {
	width: 1500px !important;
	height: auto !important;
}
}
@media (max-width:360px){
      #s4 .title {
	font-size: 21px;
	text-align: center;
}
}

  @media (max-width: 1699px){
      .section_video_wrap {
            top: 19%;
      }
      .section_review_wrap {
            top: 58%;
      }
  }

  @media (max-width: 1499px){
      .section_review .nav-btn svg {
            scale: 2.7;
      }
      .section_review .stars {
            font-size: 21px;
      }
      .section_review .review-text {
	font-size: 17px;
  }
  
}
  @media (max-width: 1399px){
        .section_video_wrap {
              top: 16%;
              width: 95%;
            }
      }
@media (max-width: 1299px){
      .section_review .title-main {
            margin: 0 auto 50px;
      }
      .section_review_wrap {
            top: 54%;
      }
      .section_video_wrap .title-main {
            margin: 0 auto 45px;
      }
      .section_video_wrap {
            top: 16%;
            width: 95%;
      }     
}
@media (max-width: 1199px){
    .section_review_wrap {
	top: 53%;
}
      .section_review .card {
            flex: 0 0 calc(33% - 18px);
      }
}
  @media (max-width: 991px){
      .section_video_wrap {
	top: 40px;
	width: 100%;
      position: relative;
}
.section_review_wrap {
	top: 80px;
	position: relative;
	/* top: 0; */
	width: 100%;
}
  }
  @media (max-width: 980px){
   .section_review  .card{ flex:0 0 calc(50% - 12px); }
  }
  @media (max-width: 620px){
   .section_review  .card{ flex:0 0 100%; }
  }

    @media (max-width: 575px){
      #s1 .booknow {
	margin-top: 72px;
}
#s5 .rdesc {
	width: 70%;
	font-size: 3.1cqw;
      overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
#s6 .subtitle {
	margin-bottom: 20px;
}
#s9 .g2{
      margin: 180px 0 0;
}
.section_video_wrap .title-main {
	margin: 0 auto 25px;
	font-size: 26px;
}
.section_review .title-main {
	/* margin: 0 auto 50px; */
	margin: 0 auto 25px;
	font-size: 26px;
}
.section_review .nav-btn {
	width: 50px;
	flex: 0 0 50px;
}
.section_review .nav-btn svg {
	scale: 2;
}
    }

    @media (max-width: 480px) {
        #s1 .booknow {
    margin-top: 60px;
    font-size: 13px;
    padding: 9px 20px;
}
@media (max-width: 440px)  {
#s1 .booknow {
	margin-top: 57px;
}
}
@media (max-width: 389px)  {
#s1 .booknow {
	margin-top: 45px;
}
}
.about-des {
    font-size: 19px;
}
.bandtitle .bt-sub {
    font-size: 19px;
    line-height: 1.3;
}
#s3 .item h3 {
    font-size: 21px;
}
#s3 .item p {
    font-size: 18px;
    margin: 6px 0 0;
}
#s8 .title {
	line-height: 1.3;
}.section_review .nav-btn {
	width: 35px;
	flex: 0 0 35px;
}
.section_review .nav-btn svg {
	scale: 1.7;
}
.section_review .card h3 {
	margin: 0 0 10px;
}
.section_review .stars {
	font-size: 17px;
}
.section_review .author_name {
	letter-spacing: .6px;
	font-size: 16px;
}
.section_review .review-text {
	font-size: 17px;
}
.section_review .read-more {
	font-size: 16px;
      
}
.section_review .see-review {
	font-size: 17px;
}
.section_review .date {
	font-size: 16px;
}
.section_review .card {
	min-height: 380px;
}
#s5 .rdesc {
	width: 50%;
	font-size: 17px;
}
#s8 .subtitle {
    font-size: 17px;
}
.section_review .card {
	padding: 20px;
}
#s5 .title {
	font-size: 24px;
}
#s9 .title {
	line-height: 1.3;
}
#s8 .footer {
    font-size: 20px;
}
}
@media (max-width: 360px) {
      #s9 .g2 {
	margin: 90px 0 0;
}
#s5 .rdesc {
	width: 60%;
	font-size: 16px;
}
#s5 .row {
	min-height: 170px;
}
}

/* gallery   */
  /* ── Grid ────────────────────────────────────────── */
  .rcr-grid {
    position: relative;
    z-index: 10;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  @media (min-width: 1024px) {
    .rcr-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  /* ── Columns ─────────────────────────────────────── */
  .rcr-col {
    position: relative;
  }

  .rcr-col--left,
  .rcr-col--middle,
  .rcr-col--right {
    display: none;
  }

  .rcr-col--mobile {
    padding: 40px 0;
  }

  @media (min-width: 1024px) {
    .rcr-col--left {
      display: block;
      padding-left: 0;
    }

    .rcr-col--middle {
      display: block;
      padding: 0 1rem;
    }

    .rcr-col--right {
      display: block;
      padding-right: 0;
    }

    .rcr-col--mobile {
      display: none;
    }
  }

  /* ── Desktop Tracks ──────────────────────────────── */
  .rcr-track {
    position: relative;
    width: 100%;
    height: 100vh;
  }

  /* Left col: img 01 starts near top, fully visible on load */
  .rcr-col--left .rcr-track:nth-child(1) {
    margin-top: 5vh;
  }

  .rcr-col--left .rcr-track:nth-child(2),
  .rcr-col--left .rcr-track:nth-child(3) {
    margin-top: 10vh;
  }

  /* Middle col: img 04 starts ~35vh half above fold, half below */
  .rcr-col--middle .rcr-track:nth-child(1) {
    margin-top: 35vh;
  }

  .rcr-col--middle .rcr-track:nth-child(2),
  .rcr-col--middle .rcr-track:nth-child(3) {
    margin-top: 10vh;
  }

  /* Right col: img 07 starts ~15vh fully visible, offset from left */
  .rcr-col--right .rcr-track:nth-child(1) {
    margin-top: 15vh;
  }

  .rcr-col--right .rcr-track:nth-child(2),
  .rcr-col--right .rcr-track:nth-child(3) {
    margin-top: 10vh;
  }

  /* ── Sticky / Mask / Image ───────────────────────── */
  .rcr-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    gap: 15px;
  }

  .rcr-mask {
    position: relative;
    width: 100%;
    height: 700px;
    max-width: 34rem;
    background: var(--bg-alt, #d9d9d9);
    overflow: hidden;
    display: block;
    opacity: 1;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(.16,.8,.24,1), transform 0.9s cubic-bezier(.16,.8,.24,1);
  }

  .rcr-mask.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .rcr-mask::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--border, rgba(0,0,0,.08));
    pointer-events: none;
  }

  .rcr-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    filter: saturate(0.95);
  }

  /* ── Celebrity name below image (desktop) ─────────── */
  .rcr-name {
    display: block;
    width: 100%;
    max-width: 34rem;
    margin-top: 0;
    text-align: center;
  }
.rcr-name a {
	/* font-family: Cormorant Garamond,Georgia,serif; */
	/* font-weight: 500; */
	/* font-size: 1.15rem; */
	/* letter-spacing: .03em; */
	/* color: var(--text, #222); */
	text-decoration: none;
	font-family: var(--serif);
	color: #000;
	font-size: 1.4cqw;
	line-height: 1.2;
	padding-left: 0;
	position: relative;
	font-weight: 550;
	padding: 10px 0 0;
}

  .rcr-name a:hover {
    text-decoration: underline;
  }

  /* ── Mobile Tracks ───────────────────────────────── */
  .rcr-m-track {
    position: relative;
    width: 100%;
    height: 70vh;
    margin-bottom: 2rem;
  }

  .rcr-m-track:nth-child(1) {
    margin-top: 0;
  }

  .rcr-m-sticky {
    position: sticky;
    top: 10vh;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .rcr-m-mask {
    position: relative;
    width: 85%;
    max-width: 320px;
    aspect-ratio: 3/4;
    background: var(--bg-alt, #d9d9d9);
    overflow: hidden;
    display: block;
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(.16,.8,.24,1), transform 0.8s cubic-bezier(.16,.8,.24,1);
  }

  .rcr-m-mask.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .rcr-m-mask::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--border, rgba(0,0,0,.08));
    pointer-events: none;
  }

  .rcr-m-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    filter: saturate(0.95);
  }

  /* ── Celebrity name below image (mobile) ──────────── */
  .rcr-m-name {
    display: block;
    width: 85%;
    max-width: 320px;
    margin: 1rem auto 0;
    text-align: center;
  }

  .rcr-m-name a {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    color: var(--text, #222);
    text-decoration: none;
  }

  .rcr-m-name a:hover {
    text-decoration: underline;
  }
.home_gallery_new .title {
	font-family: var(--display);
	font-weight: 600;
	color: var(--ink);
	font-size: 2.4cqw;
	line-height: 1.2;
	letter-spacing: .005em;
	white-space: wrap;
	text-align: center;
	margin: 0;
}
.home_gallery_new {
	padding: 0 40px;
	background: #fdfcfa;
      margin: 0 0 -100px;
}
@media (max-width: 1023px) {
      .rcr-col--mobile{
            padding: 40px 0;
      grid-template-columns: repeat(2,1fr);
      gap: 2rem;
      display: grid;
      }
      .rcr-m-sticky {
            flex-direction: column;
      }
}
  /* ── Responsive tweaks (from original stylesheet) ── */
  @media (max-width: 1699px) {
      .home_gallery_new .title {
            font-size: 2.5cqw;
      }
      .rcr-mask {
            height: 600px;
      }
      .rcr-name a {
            font-size: 1.5cqw;
      }
  }
  @media (max-width: 1499px) {
        .rcr-mask {
              height: 540px;
            }
            .rcr-name a {
                  font-size: 1.6cqw;
            }
      }
      @media (max-width: 991px) {
            .rcr-col--mobile{
            grid-template-columns:1fr;
            }
            .home_gallery_new .title {
	font-size: 26px;
	text-align: center;
}
    .rcr-col--mobile{
      padding: 15px 0;
}
      }
  @media (max-width: 575px) {
    .rcr-m-sticky {
      height: 60vh;
    }
    .rcr-m-track {
	height: 70vh;
      margin-bottom: 0;
}
.home_gallery_new {
	padding: 0;
	margin: 0 0 0;
}
 .home_gallery_new .title {
	font-size: 24px;
}
  }
/* ============================================================
   HOME FIXES + INSTAGRAM CAROUSEL
   ============================================================ */

/* 1. Gallery no longer pulls #s8 up over its title / subtitle / button */
@media (min-width: 576px) {
  .home_gallery_new {
    margin: 0;
  }
}
.home_gallery_new .title {
  padding: 40px 0 0;
}

/* 3. #s8 (home only): every element keeps the pixel position it had before.
      The stage height is now "old ratio x stage width + a fixed supplement",
      and that supplement is exactly the room the Instagram carousel needs --
      fixed px, because the carousel caps at 1520px and does not keep growing
      with the viewport. Top-anchored blocks are pinned in cqw (stage width),
      the footer group is anchored to the bottom, so both stay put. */
@media (min-width: 992px) {
  #s8.home_s8 { container-type: inline-size; }
  #s8.home_s8 .stage { aspect-ratio: auto; height: calc(100cqw * 1.30377 + 400px); }
  #s8.home_s8 .title { top: 6.519cqw; }
  #s8.home_s8 .subtitle { top: 10.122cqw; }
  #s8.home_s8 .btn { top: 16.859cqw; height: 3.031cqw; }
  #s8.home_s8 .section_video_wrap { top: 26.075cqw; }
  #s8.home_s8 .section_review_wrap { top: 75.619cqw; }
  #s8.home_s8 .line { top: auto; bottom: 19.426cqw; }
  #s8.home_s8 .logo { top: auto; bottom: 13.99cqw; }
  #s8.home_s8 .footer { height: 16.986cqw; }

  @media (max-width: 1799px) {
    #s8.home_s8 .stage { aspect-ratio: auto; height: calc(100cqw * 1.43958 + 355px); }
    #s8.home_s8 .title { top: 7.198cqw; }
    #s8.home_s8 .subtitle { top: 11.177cqw; }
    #s8.home_s8 .btn { top: 18.615cqw; height: 3.347cqw; }
    #s8.home_s8 .section_video_wrap { top: 28.792cqw; }
    #s8.home_s8 .section_review_wrap { top: 83.496cqw; }
    #s8.home_s8 .line { top: auto; bottom: 21.45cqw; }
    #s8.home_s8 .logo { top: auto; bottom: 15.731cqw; }
    #s8.home_s8 .footer { height: 18.755cqw; }
  }

  @media (max-width: 1699px) {
    #s8.home_s8 .stage { aspect-ratio: auto; height: calc(100cqw * 1.50217 + 410px); }
    #s8.home_s8 .title { top: 6.009cqw; }
    #s8.home_s8 .subtitle { top: 10.161cqw; }
    #s8.home_s8 .btn { top: 17.922cqw; height: 3.493cqw; }
    #s8.home_s8 .section_video_wrap { top: 28.541cqw; }
    #s8.home_s8 .section_review_wrap { top: 87.126cqw; }
    #s8.home_s8 .line { top: auto; bottom: 23.284cqw; }
    #s8.home_s8 .logo { top: auto; bottom: 17.86cqw; }
    #s8.home_s8 .footer { height: 21.523cqw; }
  }

  @media (max-width: 1499px) {
    #s8.home_s8 .stage { aspect-ratio: auto; height: calc(100cqw * 1.64524 + 340px); }
    #s8.home_s8 .title { top: 6.581cqw; }
    #s8.home_s8 .subtitle { top: 11.128cqw; }
    #s8.home_s8 .btn { top: 19.629cqw; height: 3.825cqw; }
    #s8.home_s8 .section_video_wrap { top: 31.26cqw; }
    #s8.home_s8 .section_review_wrap { top: 95.424cqw; }
    #s8.home_s8 .line { top: auto; bottom: 25.501cqw; }
    #s8.home_s8 .logo { top: auto; bottom: 19.82cqw; }
    #s8.home_s8 .footer { height: 23.573cqw; }
  }

  @media (max-width: 1399px) {
    #s8.home_s8 .stage { aspect-ratio: auto; height: calc(100cqw * 1.7275 + 325px); }
    #s8.home_s8 .title { top: 6.91cqw; }
    #s8.home_s8 .subtitle { top: 11.685cqw; }
    #s8.home_s8 .btn { top: 18.883cqw; height: 4.016cqw; }
    #s8.home_s8 .section_video_wrap { top: 27.64cqw; }
    #s8.home_s8 .section_review_wrap { top: 100.195cqw; }
    #s8.home_s8 .line { top: auto; bottom: 26.776cqw; }
    #s8.home_s8 .logo { top: auto; bottom: 20.947cqw; }
    #s8.home_s8 .footer { height: 24.752cqw; }
  }

  @media (max-width: 1299px) {
    #s8.home_s8 .stage { aspect-ratio: auto; height: calc(100cqw * 1.7275 + 250px); }
    #s8.home_s8 .title { top: 5.183cqw; }
    #s8.home_s8 .subtitle { top: 9.094cqw; }
    #s8.home_s8 .btn { top: 17.156cqw; height: 3.498cqw; }
    #s8.home_s8 .section_video_wrap { top: 27.64cqw; }
    #s8.home_s8 .section_review_wrap { top: 93.285cqw; }
    #s8.home_s8 .line { top: auto; bottom: 26.776cqw; }
    #s8.home_s8 .logo { top: auto; bottom: 20.947cqw; }
    #s8.home_s8 .footer { height: 24.752cqw; }
  }

  @media (max-width: 1199px) {
    #s8.home_s8 .stage { aspect-ratio: auto; height: calc(100cqw * 1.91944 + 285px); }
    #s8.home_s8 .title { top: 5.758cqw; }
    #s8.home_s8 .subtitle { top: 10.104cqw; }
    #s8.home_s8 .btn { top: 19.062cqw; height: 3.887cqw; }
    #s8.home_s8 .section_video_wrap { top: 30.711cqw; }
    #s8.home_s8 .section_review_wrap { top: 101.731cqw; }
    #s8.home_s8 .line { top: auto; bottom: 29.751cqw; }
    #s8.home_s8 .logo { top: auto; bottom: 23.576cqw; }
    #s8.home_s8 .footer { height: 27.502cqw; }
  }

}

/* 4. Instagram carousel */
.section_insta_wrap {
  margin: 50px auto 0;
}
.section_insta {
  max-width: 1520px;
  margin: 0 auto;
}
.section_insta .title-main {
  width: fit-content;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.4cqw;
  line-height: 1;
  letter-spacing: .005em;
  color: var(--ink);
  white-space: nowrap;
  margin: 0 auto 10px;
}
.section_insta .insta_handle {
  display: block;
  width: fit-content;
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 550;
  font-size: 1.5cqw;
  letter-spacing: .01em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .3s ease;
}
.section_insta .insta_handle:hover {
  color: var(--gold-deep);
}
.section_insta .carousel {
  position: relative;
  display: flex;
  align-items: center;
}
.section_insta .track-wrap {
  overflow: hidden;
  flex: 1;
}
.section_insta .track {
  display: flex;
  gap: 24px;
  transition: transform .4s ease;
}
.section_insta .nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  flex: 0 0 80px;
  color: #555;
}
.section_insta .nav-btn svg {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50px;
  scale: 3;
  box-shadow: rgba(0, 0, 0, 0.10) 0px 5px 15px;
}
.section_insta .nav-btn:hover {
  color: #333;
}
.section_insta .nav-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

/* card: 5 per row on desktop */
.insta_card {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 4 * 24px) / 5);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2efe9;
  text-decoration: none;
}
.insta_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.16,.8,.24,1);
}
.insta_card .insta_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 24, 21, 0.35);
  opacity: 0;
  transition: opacity .35s ease;
}
.insta_card .insta_icon {
  width: 40px;
  height: 40px;
  fill: #fff;
  transform: scale(.8);
  transition: transform .35s cubic-bezier(.16,.8,.24,1);
}
.insta_card:hover img,
.insta_card:focus-visible img {
  transform: scale(1.06);
}
.insta_card:hover .insta_overlay,
.insta_card:focus-visible .insta_overlay {
  opacity: 1;
}
.insta_card:hover .insta_icon,
.insta_card:focus-visible .insta_icon {
  transform: scale(1);
}

/* 4 up from 992px to 1199px, then 3 / 2 / 1 */
@media (max-width: 1199px) {
  .insta_card {
    flex: 0 0 calc((100% - 3 * 24px) / 4);
  }
}
/* The shared rule offsets .section_review_wrap with position:relative + top:80px,
   which moves it visually without reserving the space, so its last 80px landed on
   top of the logo/footer. Reserve it as margin instead (home only). */
@media (max-width: 991px) {
  #s8.home_s8 .section_review_wrap {
    top: 0;
    margin-top: 80px;
  }
  .section_insta_wrap {
    margin: 60px auto 0;
    width: 100%;
  }
  .section_insta .title-main {
    font-size: 26px;
    white-space: normal;
    text-align: center;
  }
  .section_insta .insta_handle {
    font-size: 16px;
    margin: 0 auto 22px;
  }
  .insta_card {
    flex: 0 0 calc((100% - 2 * 20px) / 3);
  }
  .section_insta .track {
    gap: 20px;
  }
  .section_insta .nav-btn {
    width: 60px;
    flex: 0 0 60px;
  }
  .section_insta .nav-btn svg {
    scale: 2.4;
  }
}
@media (max-width: 767px) {
  .insta_card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
  .section_insta .track {
    gap: 16px;
  }
  .section_insta .nav-btn {
    width: 46px;
    flex: 0 0 46px;
  }
  .section_insta .nav-btn svg {
    scale: 2;
  }
  .insta_card .insta_icon {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 575px) {
  .section_insta_wrap {
    margin: 40px auto 0;
  }
  .section_insta .title-main {
    font-size: 24px;
  }
  .insta_card {
    flex: 0 0 100%;
  }
  .section_insta .track {
    gap: 12px;
  }
  .section_insta .nav-btn {
    width: 34px;
    flex: 0 0 34px;
  }
  .section_insta .nav-btn svg {
    scale: 1.6;
  }
  .insta_card .insta_icon {
    width: 28px;
    height: 28px;
  }
}

/* touch devices have no hover keep the icon visible */
@media (hover: none) {
  .insta_card .insta_overlay {
    opacity: 1;
    background: rgba(27, 24, 21, 0.18);
  }
  .insta_card .insta_icon {
    transform: scale(1);
  }
}
 #the-journal .page-wrapper #s1 .stage,
 #the-journal .page-wrapper #s8 .stage,
  body.template-article .page-wrapper #s1 .stage,
 body.template-article .page-wrapper #s8 .stage,
 #privacy-policy .page-wrapper #s1 .stage,
 #privacy-policy .page-wrapper #s8 .stage,
  #terms-amp-conditions .page-wrapper #s1 .stage,
 #terms-amp-conditions .page-wrapper #s8 .stage,
 body.template-page .page-wrapper #s1 .stage, 
 body.template-page .page-wrapper #s8 .stage
 {
      background: none !important;
           pointer-events: none;
 }
  #the-journal .page-wrapper #s1 .stage *,
#the-journal .page-wrapper #s8 .stage *,
body.template-article .page-wrapper #s1 .stage *,
body.template-article .page-wrapper #s8 .stage *,
#privacy-policy .page-wrapper #s1 .stage *,
#privacy-policy .page-wrapper #s8 .stage *,
#terms-amp-conditions .page-wrapper #s1 .stage *,
#terms-amp-conditions .page-wrapper #s8 .stage * {
        pointer-events: all;
}
body.template-article .blog-post-content p,
body.template-article .blog-post-content ul{
 font-size:20px;
}

@media (max-width: 575px) {
   #the-journal .page-wrapper .hamburger,
   #gallery .page-wrapper .hamburger,
      #privacy-policy .page-wrapper .hamburger,
      #terms-amp-conditions .page-wrapper .hamburger,
      body.template-article .page-wrapper .hamburger ,
      body.template-page .page-wrapper .hamburger {
        top: 60.5%;
    }
    #gallery .rcr-m-name {
      margin: 2rem auto 0;
      }
      .template-blog .blog-post-card__title-link div{
            font-size: 28px;
      }
}
@media (max-width: 480px) {
   #the-journal .page-wrapper .hamburger,
   #gallery .page-wrapper .hamburger,
      #privacy-policy .page-wrapper .hamburger,
      #terms-amp-conditions .page-wrapper .hamburger,
      body.template-article .page-wrapper .hamburger ,
      body.template-page .page-wrapper .hamburger {
        top: 54.5%;
    }
}