/* =========================================================
   MEENA PHOTOGRAPHY
   GLOBAL / NAVBAR / HERO / SERVICES
   CLEAN + PERFORMANCE-FIRST REWRITE
========================================================= */

:root {
  --iv: #FFFDF9;
  --ch: #F8E8D2;
  --cr: #FDF6EE;
  --rg: #f9e0ba;
  --go: #D4AF37;
  --tp: #A88E73;
  --blk: #222222;
  --nt: #3D2B1F;
  --fh: "Bricolage Grotesque", Georgia, serif;
  --fb: "Marcellus", "Inter", system-ui, sans-serif;
  --hb: "Bodoni Moda", serif;
  --ez: cubic-bezier(.4, 0, .2, 1);
}

/* =========================================================
   RESET / GLOBAL
========================================================= */

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  background: var(--iv);
  color: var(--blk);
  font-family: var(--fb);
}

section {
  position: relative;
  overflow-x: hidden;
}

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

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    height .5s var(--ez),
    background .5s var(--ez),
    box-shadow .5s var(--ez),
    border-color .5s var(--ez);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .45);
  transition: margin .5s var(--ez);
}

.navbar.scrolled {
  height: 80px;
  background: rgba(255, 253, 249, .88);
  border-bottom: 1px solid rgba(217, 167, 122, .2);
  box-shadow: 0 2px 30px rgba(169, 120, 68, .09);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.navbar.scrolled .nav-container {
  margin-top: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  width: 150px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: box-shadow .3s ease;
}

.logo-wrapper:hover {
  box-shadow: 0 4px 30px rgba(169, 120, 68, .12);
}

.logo-icon {
  width: 54px;
  height: 42px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  color: var(--nt);
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.logo-sub {
  margin-top: 2px;
  color: var(--tp);
  font-family: var(--fh);
  font-size: .72rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: .4rem .6rem;
  border-radius: 4px;
  color: #000;
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--nt);
}

.nav-link:hover,
.nav-link.active {
  color: var(--go);
}

.nav-link.active {
  -webkit-text-stroke: 1px #000;
}

.nav-dot {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--go);
  transform: translateX(-50%);
}

/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.has-dropdown {
  position: relative;
}

/* Invisible hover bridge */
.has-dropdown::after {
  content: "";
  position: absolute;

  left: 0;
  right: 0;
  top: 100%;

  height: 14px;

  background: transparent;

  z-index: 999;
}


.dropdown {
  position: absolute;

  top: calc(100% + 8px);
  left: 50%;

  min-width: 210px;

  margin: 0;
  padding: 8px;

  list-style: none;

  border: 1px solid rgba(217, 167, 122, .25);
  border-radius: 14px;

  background: rgba(255, 253, 249, .98);

  box-shadow:
    0 20px 60px rgba(169, 120, 68, .18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, -8px);

  transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .25s ease;

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  z-index: 1001;
}


/* Keep dropdown open when parent OR dropdown is hovered */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translate(-50%, 0);
}


/* Dropdown links */

.dropdown li {
  margin: 0;
  padding: 0;
}


.dropdown li a {
  display: block;

  padding: 11px 15px;

  border-radius: 9px;

  color: var(--nt);

  font-family: var(--fb);

  font-size: 13px;

  font-weight: 500;

  white-space: nowrap;

  transition:
    background .2s ease,
    color .2s ease,
    padding-left .2s ease;
}


.dropdown li a:hover {
  color: var(--gold, #c99650);

  background: rgba(212, 175, 55, .09);

  padding-left: 19px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .55rem 1.2rem;
  border: 2px solid var(--rg);
  border-radius: 6px;
  background: var(--rg);
  color: #fff;
  font-family: var(--fb);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(217, 167, 122, .4);
  transition:
    transform .3s var(--ez),
    background .3s var(--ez),
    color .3s var(--ez),
    box-shadow .3s var(--ez);
}

.btn-book:hover {
  background: transparent;
  color: var(--rg);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 25px rgba(217, 167, 122, .5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--iv);
  transform-origin: center;
  transition: transform .35s var(--ez), opacity .35s var(--ez);
}

.navbar.scrolled .hamburger span {
  background: var(--nt);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 540px;
  overflow: hidden;
}

@media(max-width:999px) {
  .hero {
    height: 30vh;
  }

  .slide-content {
    padding: 250px 1.5rem 175px !important;
    text-align: center;
  }

  .c-dots {
    bottom: 115px;
  }
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  inset: -5%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: kbEffect 11s ease-in-out both;
  will-change: transform;
}

@keyframes kbEffect {
  from {
    transform: scale(1.09) translate3d(1.2%, 1%, 0);
  }

  to {
    transform: scale(1) translate3d(0, 0, 0);
  }
}

.slide-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  min-height: 100%;
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, .28),
      rgba(0, 0, 0, .15) 35%,
      rgba(255, 255, 255, .05) 65%,
      transparent),
    linear-gradient(to top,
      rgba(0, 0, 0, .20),
      transparent 45%);
  pointer-events: none;
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 1.5rem 175px;
  text-align: center;
}

.slide-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #000;
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-shadow: 0 1px 8px rgba(255, 255, 255, .6);
}

.tl {
  display: block;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rg));
  opacity: .8;
}

.tl:last-child {
  background: linear-gradient(90deg, var(--rg), transparent);
}

.slide-headline {
  margin: 0 0 12px;
  color: var(--blk);
  font-family: var(--fh);
  font-size: clamp(2.7rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: .04em;
  text-shadow:
    2px 2px 0 rgba(255, 255, 255, .6),
    0 4px 30px rgba(255, 255, 255, .5);
}

.hgold {
  color: #fff;
  font-style: italic;
  -webkit-text-stroke: 1px #000;
}

.slide-div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.dl {
  display: block;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, .55),
      transparent);
}

.slide-sub {
  margin: 0 0 26px;
  color: rgba(34, 34, 34, .72);
  font-family: var(--fb);
  font-size: clamp(.8rem, 1.15vw, .93rem);
  font-weight: 400;
  letter-spacing: .08em;
  text-shadow: 0 1px 10px rgba(255, 255, 255, .5);
}

.slide-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn-primary,
.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  overflow: hidden;
  transition:
    transform .3s var(--ez),
    box-shadow .3s var(--ez),
    background .3s var(--ez),
    border-color .3s var(--ez),
    color .3s var(--ez);
}

.btn-primary {
  padding: .85rem 2.1rem;
  background: linear-gradient(135deg, var(--rg), #C4906A);
  color: #000;
  box-shadow: 0 8px 30px rgba(196, 144, 106, .42);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.btn-primary:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 14px 40px rgba(196, 144, 106, .52);
}

.btn-primary:hover::after {
  opacity: 1;
}

.ba {
  font-size: 1rem;
  transition: transform .3s ease;
}

.btn-primary:hover .ba {
  transform: translateX(4px);
}

.btn-outline {
  padding: .82rem 1.9rem;
  border: 1.5px solid rgba(34, 34, 34, .32);
  background: rgba(255, 253, 249, .28);
  color: var(--blk);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: var(--rg);
  background: rgba(255, 253, 249, .55);
  color: #000;
  transform: translate3d(0, -3px, 0);
}

/* =========================================================
   SOCIAL PROOF
========================================================= */

.proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border: 1px solid rgba(217, 167, 122, .3);
  border-radius: 50px;
  background: rgba(255, 253, 249, .38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.proof-av {
  display: flex;
  align-items: center;
}

.av {
  width: 35px;
  height: 35px;
  margin-left: -10px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  transition: transform .3s ease;
}

.av:first-child {
  margin-left: 0;
}

.av:hover {
  position: relative;
  z-index: 5;
  transform: scale(1.15) translate3d(0, -2px, 0);
}

.proof-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 1px;
  color: var(--rg);
  font-size: .78rem;
}

.rating {
  margin-left: 5px;
  color: var(--blk);
  font-family: var(--fb);
  font-size: .82rem;
  font-weight: 700;
}

.pcount {
  color: rgba(34, 34, 34, .62);
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 500;
}

/* =========================================================
   HERO BADGE / CONTROLS
========================================================= */

.slide-badge {
  position: absolute;
  right: 2.5rem;
  bottom: 175px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(217, 167, 122, .35);
  border-radius: 4px;
  background: rgba(255, 253, 249, .32);
  backdrop-filter: blur(12px);
}

.slide-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rg);
  animation: pdot 2s ease-in-out infinite;
}

@keyframes pdot {
  50% {
    opacity: .7;
    transform: scale(1.35);
  }
}

.slide-badge span {
  color: var(--blk);
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.c-arrow {
  position: absolute;
  top: 50%;
  z-index: 50;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 253, 249, .5);
  border-radius: 50%;
  background: rgba(255, 253, 249, .28);
  color: var(--blk);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  transform: translateY(-50%);
  transition:
    transform .35s var(--ez),
    background .35s var(--ez),
    border-color .35s var(--ez),
    color .35s var(--ez);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.c-arrow:hover {
  border-color: var(--rg);
  background: rgba(255, 253, 249, .72);
  color: var(--rg);
  box-shadow: 0 8px 30px rgba(217, 167, 122, .35);
  transform: translateY(-50%) scale(1.08);
}

.c-prev {
  left: 1.5rem;
}

.c-next {
  right: 1.5rem;
}

.c-dots {
  position: absolute;
  left: 50%;
  bottom: 145px;
  z-index: 50;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.dot {
  width: 8px;
  height: 8px;
  border: 1.5px solid rgba(255, 253, 249, .7);
  border-radius: 50%;
  background: rgba(255, 253, 249, .5);
  transition:
    width .4s var(--ez),
    background .4s var(--ez),
    border-color .4s var(--ez);
}

.dot.active {
  width: 28px;
  border-radius: 4px;
  border-color: var(--rg);
  background: var(--rg);
}

/* =========================================================
   THUMBNAILS
========================================================= */

.c-thumbs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  border-top: 1px solid rgba(255, 253, 249, .4);
  background: rgba(255, 253, 249, .2);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.thumb {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 253, 249, .2);
  cursor: pointer;
  background: transparent;
}

.thumb:last-child {
  border-right: 0;
}

.ti {
  width: 100%;
  height: 65px;
  background-position: center;
  background-size: cover;
  filter: brightness(.6) saturate(.8);
  transition: transform .5s ease, filter .4s ease;
}

.thumb:hover .ti,
.thumb.active .ti {
  filter: brightness(.85) saturate(1.1);
  transform: scale(1.05);
}

.thumb span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px;
  color: rgba(255, 253, 249, .92);
  font-family: var(--fb);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(34, 34, 34, .65), transparent);
}

.thumb.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  height: 3px;
  background: linear-gradient(90deg, var(--rg), var(--go));
}

/* =========================================================
   PROGRESS
   Avoid infinite CSS animation on mobile.
========================================================= */

.c-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 3px;
  background: rgba(255, 253, 249, .2);
}

.c-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--rg), var(--go));
}

.c-progress.running .c-bar {
  animation: pFill 5s linear forwards;
}

@keyframes pFill {
  to {
    width: 100%;
  }
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-ind {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
  animation: floatY 2.5s ease-in-out infinite;
}

@keyframes floatY {
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.s-mouse {
  width: 24px;
  height: 38px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  border: 2px solid rgba(34, 34, 34, .5);
  border-radius: 12px;
  background: rgba(255, 253, 249, .25);
  backdrop-filter: blur(8px);
}

.s-wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--rg);
  animation: swAnim 2s ease-in-out infinite;
}

@keyframes swAnim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.scroll-ind span {
  color: #000;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}

/* =========================================================
   HERO CONTENT REVEAL
========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-slide.active .afu {
  animation: fadeUp .75s var(--ez) both;
}

.hero-slide.active .d1 {
  animation-delay: .1s;
}

.hero-slide.active .d2 {
  animation-delay: .25s;
}

.hero-slide.active .d3 {
  animation-delay: .4s;
}

.hero-slide.active .d4 {
  animation-delay: .5s;
}

.hero-slide.active .d5 {
  animation-delay: .65s;
}

.hero-slide.active .d6 {
  animation-delay: .8s;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .nav-link {
    padding: .4rem .5rem;
    font-size: .78rem;
  }

  .btn-book {
    padding: .5rem .9rem;
    font-size: .7rem;
  }

}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .1rem;
    overflow-y: auto;
    border-left: 1px solid rgba(217, 167, 122, .2);
    background: rgba(255, 253, 249, .98);
    box-shadow: -10px 0 50px rgba(0, 0, 0, .1);
    transition: right .45s var(--ez);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(217, 167, 122, .1);
    color: var(--nt);
    font-size: .9rem;
  }

  .btn-book {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .has-dropdown .dropdown {
    position: static;
    min-width: 0;
    padding-left: 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown li a {
    color: var(--tp);
  }

  .slide-content {
    padding: 190px 1.5rem 195px;
  }

  .slide-headline {
    font-size: clamp(2.1rem, 8vw, 3.8rem);
  }

  .c-arrow {
    width: 42px;
    height: 42px;
  }

  .c-prev {
    left: .75rem;
  }

  .c-next {
    right: .75rem;
  }

  .slide-badge {
    right: 1rem;
    bottom: 195px;
  }

  .ti {
    height: 52px;
  }
}

.scrolled .nav-container {
  background: transparent;
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 640px;
  }

  .navbar {
    height: 70px;
  }

  .nav-container {
    margin-top: 10px;
    padding: 8px 15px;
  }

  .navbar.scrolled {
    height: 70px;
  }

  .navbar.scrolled .nav-container {
    margin-top: 0;
  }

  .slide-bg {
    animation-duration: 9s;
  }

  .slide-content {
    padding: 230px 1.2rem 180px;
  }

  .slide-headline {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .slide-badge {
    display: none;
  }

  .c-dots {
    bottom: 105px;
  }

  .scroll-ind {
    bottom: 25px;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 1rem;
  }

  .slide-content {
    padding: 260px 1.2rem 190px;
  }

  .slide-headline {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .slide-sub {
    font-size: .75rem;
  }

  .slide-tag {
    font-size: .62rem;
  }

  .slide-actions {
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    padding: .7rem 1.4rem;
    font-size: .7rem;
  }

  .proof {
    gap: 10px;
    padding: 8px 14px;
  }

  .av {
    width: 30px;
    height: 30px;
  }

  .c-dots {
    bottom: 105px;
  }

  .logo-main {
    font-size: 1.05rem;
  }

  .logo-sub {
    font-size: .65rem;
  }

  .logo-icon {
    width: 44px;
    height: 34px;
  }

  .hamburger span {
    background: #000;
  }

  .ti {
    height: 44px;
  }

  .thumb span {
    font-size: .55rem;
  }
}

@media (max-width: 400px) {
  .slide-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .slide-headline {
    font-size: clamp(1.6rem, 10vw, 2.1rem);
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .slide-bg {
    transform: none !important;
  }
}

.s-sparkle {
  position: absolute;
  width: 44px;
  height: 44px;
  animation: pulse 3s infinite
}


/* =========================================================
   TESTIMONIAL CAROUSEL
========================================================= */

.testimonial-carousel {
  position: relative;

  width: min(1000px, 100%);

  margin: 0 auto;

  padding: 0 70px 55px;
}


.testimonial-viewport {
  width: 100%;

  overflow: hidden;
}


.testimonial-track {
  display: flex;

  width: 100%;

  transition:
    transform .65s cubic-bezier(.22, .61, .36, 1);
}


.testimonial-slide {
  flex: 0 0 100%;

  width: 100%;

  padding: 5px;
}


/* =========================================================
   CARD
========================================================= */

.testimonial-card {
  position: relative;

  min-height: 360px;

  padding: 42px 50px;

  background:
    #fffdf9;

  border:
    1px solid rgba(33, 30, 27, .08);

  box-shadow:
    0 20px 60px rgba(33, 30, 27, .07);

  text-align: center;
}


.testimonial-top {
  display: flex;

  align-items: center;

  justify-content: space-between;
}


.testimonial-number {
  color: #b59a7a;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .18em;
}


.testimonial-stars {
  color: #c89b62;

  font-size: 11px;

  letter-spacing: 2px;
}


/* =========================================================
   QUOTE
========================================================= */

.testimonial-quote {
  margin-top: 30px;

  color: #c89b62;

  font-family: Georgia, serif;

  font-size: 72px;

  line-height: .5;
}


/* =========================================================
   TEXT
========================================================= */

.testimonial-text {
  max-width: 720px;

  margin: 28px auto 35px;

  color: #5f5851;

  font-family:
    var(--fb),
    Arial,
    sans-serif;

  font-size: 15px;

  line-height: 1.9;
}


/* =========================================================
   AUTHOR
========================================================= */

.testimonial-author {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;
}


.testimonial-avatar {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #211e1b;

  color: #fff;

  font-family: var(--fh);

  font-size: 17px;
}


.testimonial-author strong {
  display: block;

  color: #211e1b;

  font-size: 12px;

  text-align: left;
}


.testimonial-author span {
  display: block;

  margin-top: 4px;

  color: #9a7551;

  font-size: 9px;

  letter-spacing: .08em;

  text-transform: uppercase;

  text-align: left;
}


/* =========================================================
   ARROWS
========================================================= */

.testimonial-arrow {
  position: absolute;

  top: 50%;

  z-index: 5;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 48px;
  height: 48px;

  border:
    1px solid rgba(33, 30, 27, .15);

  border-radius: 50%;

  background: #fffdf9;

  color: #211e1b;

  font-size: 19px;

  cursor: pointer;

  transform:
    translateY(-50%);

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}


.testimonial-prev {
  left: 5px;
}


.testimonial-next {
  right: 5px;
}


.testimonial-arrow:hover {
  background: #211e1b;

  color: #fff;

  transform:
    translateY(-50%) scale(1.05);
}


/* =========================================================
   DOTS
========================================================= */

.testimonial-dots {
  position: absolute;

  bottom: 0;

  left: 50%;

  display: flex;

  align-items: center;

  gap: 7px;

  transform:
    translateX(-50%);
}


.testimonial-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background:
    #d5ccc2;

  cursor: pointer;

  transition:
    width .3s ease,
    background .3s ease;
}


.testimonial-dot.active {
  width: 24px;

  border-radius: 10px;

  background:
    #c89b62;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .testimonial-carousel {
    padding:
      0 0 50px;
  }


  .testimonial-card {
    min-height: 390px;

    padding:
      32px 24px;
  }


  .testimonial-text {
    font-size: 13px;

    line-height: 1.8;
  }


  .testimonial-quote {
    margin-top: 25px;

    font-size: 60px;
  }


  .testimonial-arrow {
    top: auto;

    bottom: 0;

    width: 40px;
    height: 40px;

    transform: none;
  }


  .testimonial-arrow:hover {
    transform:
      scale(1.05);
  }


  .testimonial-prev {
    left: 20px;
  }


  .testimonial-next {
    right: 20px;
  }


  .testimonial-dots {
    bottom: 14px;
  }

}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    position: relative;
    padding: 110px 24px;
    overflow: hidden;
    background: #fbf6ee;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: -200px;
    border-radius: 50%;
    background: rgba(200, 155, 98, .07);
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    width: min(1400px, 100%);
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.testimonials-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.testimonials-label {
    display: block;
    margin-bottom: 20px;
    color: #a27b52;
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
}

.testimonials-heading h2 {
    margin: 0;
    color: #211e1b;
    font-family: var(--fh);
    font-size: clamp(45px, 6vw, 78px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.045em;
}

.testimonials-heading h2 span {
    display: block;
    color: #c89b62;
}

.testimonials-heading-right p {
    max-width: 470px;
    margin: 0;
    color: #756d65;
    font-family: var(--fb);
    font-size: 15px;
    line-height: 1.9;
}
/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .testimonials-section {
        padding: 90px 20px;
    }

    .testimonials-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .testimonials-section {
        padding: 75px 16px;
    }

    .testimonials-heading {
        margin-bottom: 40px;
    }

    .testimonials-heading h2 {
        font-size: 45px;
    }

    .testimonials-heading-right p {
        font-size: 13px;
        line-height: 1.8;
    }

}
