:root {
  --black: #0b080c;
  --black-soft: #120a12;
  --burgundy: #97004f;
  --burgundy-dark: #54003f;
  --plum: #26002b;
  --gold: #e1ad45;
  --yellow: #f7cf4c;
  --pink: #ed2a75;
  --white: #fffaf4;
  --text: #eee8e2;
  --muted: #cfc4c9;
  --gradient: linear-gradient(90deg, #26002b 0%, #54003f 52%, #97004f 100%);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Quicksand", Arial, sans-serif;
  --content: min(90%, 1720px);
}

/* Premium interaction polish: visual-only, no layout changes. */
@media (hover: hover) and (pointer: fine) {

  .profile-card,
  .type-card,
  .available-card,
  .testimonial-card,
  .faq-grid details,
  .proof-grid article {
    will-change: transform;
  }

  .profile-card::before,
  .type-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 22%, rgba(255, 255, 255, .22) 46%, transparent 68%);
    transform: translateX(-125%);
    transition: transform .7s ease;
  }

  .profile-card:hover::before,
  .type-card:hover::before {
    transform: translateX(125%);
  }

  .profile-card:hover,
  .type-card:hover {
    border-color: #ffe07b;
    box-shadow: 0 22px 46px rgba(0, 0, 0, .48), 0 0 0 1px rgba(242, 198, 109, .35), 0 0 24px rgba(215, 46, 114, .2);
  }

  .profile-card .badge,
  .type-card .badge {
    transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
  }

  .profile-card:hover .badge,
  .type-card:hover .badge {
    transform: translateY(-3px);
    background: #d72e72;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
  }

  .profile-card h3,
  .type-card h3,
  .available-card h3 {
    transition: color .28s ease, transform .28s ease;
  }

  .profile-card:hover h3,
  .type-card:hover h3 {
    color: #d72e72;
    transform: translateY(-2px);
  }

  .available-card {
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
  }

  .available-card>span {
    transition: color .3s ease, text-shadow .3s ease, letter-spacing .3s ease;
  }

  .available-card:hover>span {
    color: #ffe06b;
    text-shadow: 0 0 20px rgba(255, 224, 107, .5);
    letter-spacing: .5px;
  }

  .available-card:hover h3 {
    color: #5b0030;
    transform: translateY(-2px);
  }

  .proof-grid article:hover strong {
    text-shadow: 0 5px 18px rgba(255, 226, 102, .32);
  }

  .contact-cta a,
  .action-btn,
  .testimonial-controls>button,
  .floating-contact a {
    transition-timing-function: cubic-bezier(.2, .75, .25, 1);
  }

  .contact-cta a:hover {
    box-shadow: 0 12px 0 rgba(242, 201, 76, .9), 0 18px 34px rgba(0, 0, 0, .34);
  }

  .faq-grid summary::after {
    transition: transform .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
  }

  .faq-grid details:hover summary::after,
  .faq-grid details[open] summary::after {
    transform: translateY(-50%) rotate(90deg);
    background: #f2c66d;
    color: #230d1d;
    box-shadow: 0 0 18px rgba(242, 198, 109, .34);
  }

  .testimonial-card {
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
  }

  .testimonial-card:hover {
    background: linear-gradient(145deg, #160d15 0%, #38102a 100%);
  }

  .testimonial-card footer>b {
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
  }

  .testimonial-card:hover footer>b {
    transform: scale(1.08) rotate(-5deg);
    background: #d72e72;
    box-shadow: 0 8px 18px rgba(215, 46, 114, .3);
  }

  .area-list li:hover a {
    box-shadow: 0 14px 28px rgba(215, 46, 114, .32), 0 0 0 1px rgba(242, 198, 109, .55);
  }

  .site-nav a:hover {
    color: #ffe06b;
  }

  .floating-contact a:hover {
    transform: translateY(-4px) scale(1.08);
    filter: drop-shadow(0 9px 12px rgba(0, 0, 0, .35));
  }
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffe06b;
  outline-offset: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate[hidden] {
  display: none;
}

.age-gate {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 2, 5, .88);
  backdrop-filter: blur(9px);
}

.age-gate-card {
  width: min(100%, 560px);
  padding: 42px;
  border: 1px solid rgba(242, 198, 109, .75);
  border-top: 5px solid var(--pink);
  border-radius: 8px;
  background: linear-gradient(140deg, #130b14 0%, #390b2b 58%, #69033f 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .65), 0 0 0 1px rgba(237, 42, 117, .2);
  text-align: center;
}

.age-gate-mark {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--heading);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.age-gate-kicker {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.age-gate-title {
  margin: 8px 0 14px;
  color: #fff;
  font-family: var(--heading);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
}

.age-gate-card p {
  margin: 0 auto;
  color: #eee4e9;
  font-size: 16px;
  line-height: 1.65;
}

.age-gate-actions {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.age-gate-actions>* {
  min-height: 52px;
  padding: 12px 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--yellow);
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.age-gate-enter {
  background: var(--yellow);
  color: #180b14;
}

.age-gate-exit {
  background: transparent;
  color: #fff;
}

.age-gate-actions>*:hover {
  transform: translateY(-3px);
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .32);
}

.age-gate-card small {
  margin-top: 18px;
  display: block;
  color: #c9bbc2;
  font-size: 12px;
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: -80px;
  padding: 10px 16px;
  background: var(--yellow);
  color: #080608;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: 88px;
  padding: 0 2.7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #050505;
  border-bottom: 1px solid #2c2429;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 205px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.2vw, 46px);
}

.site-nav a {
  position: relative;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 88px;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 23px;
  height: 2px;
  background: var(--yellow);
  transition: right .25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  right: 0;
}

.menu-toggle {
  display: none;
}

.hero {
  width: 100%;
  height: 533px;
  overflow: hidden;
  background: var(--plum);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: url("../images/escortskavya-promo-section-background.webp") center 48% / cover no-repeat;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(18, 2, 17, .68);
}

.promo-content {
  width: min(94%, 1300px);
  padding: 50px 20px;
  text-align: center;
  font-family: var(--heading);
  text-shadow: 0 3px 10px #000;
}

.promo-content>span {
  display: block;
}

.promo-title {
  color: #fff75d;
  font-size: clamp(43px, 5vw, 74px);
  font-weight: 500;
  line-height: 1.05;
}

.promo-phone {
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.15;
}

.promo-phone a {
  color: #fff75d;
  text-decoration: none;
}

.promo-copy {
  color: #fff;
  font-size: clamp(35px, 3.7vw, 57px);
  font-weight: 500;
  line-height: 1.08;
}

.promo-copy b {
  color: #fff75d;
  font-weight: 500;
}

.gradient-band {
  background: var(--gradient);
}

.content-band {
  padding: 52px 0;
}

.content-wrap {
  width: var(--content);
  margin: 0 auto;
}

.prose {
  color: #fff;
}

.prose h1,
.prose h2,
.prose h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.prose h1 {
  font-size: 38px;
  text-align: center;
}

.prose h2 {
  margin-top: 34px;
  font-size: 32px;
}

.prose h3 {
  margin-top: 32px;
  font-size: 30px;
}

.prose p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
}

.prose ul {
  margin: 4px 0 22px;
  padding-left: 24px;
}

.prose li {
  margin: 5px 0;
  font-size: 17px;
  line-height: 1.7;
}

.prose a {
  color: #2eb6ff;
  text-underline-offset: 3px;
}

.proof-section {
  padding: 45px 5%;
  background: #260d1c;
}

.proof-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 34px;
}

.action-btn {
  min-width: 210px;
  padding: 10px 28px;
  border: 2px solid #090709;
  border-radius: 28px;
  background: var(--yellow);
  color: #0a0809;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px 0 #9d2259;
  transition: transform .2s, background .2s, color .2s;
}

.action-btn:hover {
  transform: translateY(-3px);
  background: var(--burgundy);
  color: #fff;
  border-color: var(--gold);
}

.proof-grid {
  width: min(100%, 1450px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.proof-grid article {
  min-height: 155px;
  padding: 24px 15px;
  display: grid;
  place-content: center;
  text-align: center;
  background: #aa1749;
  border: 1px solid #d64c7b;
  border-radius: 7px;
  transition: transform .25s, background .25s, border-color .25s;
}

.proof-grid article:hover {
  transform: translateY(-7px);
  background: #71003e;
  border-color: var(--yellow);
}

.proof-grid strong {
  display: block;
  color: #ffe665;
  font-family: var(--heading);
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.section-dark {
  background: #0c090e;
}

.profile-gallery {
  padding: 68px 5%;
}

.profile-grid {
  width: min(100%, 1600px);
  margin: auto;
  display: grid;
  gap: 18px;
}

.profile-grid-12 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.profile-card,
.type-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #bb8e35;
  border-radius: 7px;
  background: #0b080c;
}

.profile-card {
  aspect-ratio: 3 / 4.15;
}

.profile-card img,
.type-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.profile-card::after,
.type-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8, 4, 8, .98));
  pointer-events: none;
}

.profile-card:hover img,
.type-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.16) contrast(1.04);
}

.badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 5px 11px;
  background: #8b003e;
  color: #ffe158;
  border: 1px solid #dda63e;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.profile-card>div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 13px;
  text-align: center;
}

.profile-card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-card p {
  margin: 4px 0 0;
  color: #d7cbd0;
  font-size: 13px;
  line-height: 1.3;
}

.types-section {
  padding: 67px 5% 74px;
}

.section-title {
  display: block;
  color: #ffc654;
  font-family: var(--heading);
  text-align: center;
  line-height: 1.2;
}

.profile-title,
.type-title,
.available-title {
  margin: 0 0 34px;
  font-size: 34px;
  font-weight: 500;
}

.type-grid {
  width: min(100%, 1550px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.type-card {
  height: 535px;
}

.type-card h3 {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 32px;
  margin: 0;
  color: #fff;
  font-family: var(--body);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.prose-section {
  padding-block: 64px;
}

.story-section {
  background: #080709;
}

.story-row {
  min-height: 660px;
  display: grid;
  grid-template-columns: 50% 50%;
  border-bottom: 1px solid #65103e;
}

.story-row.reverse .story-image {
  order: 2;
}

.story-image {
  min-height: 660px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  max-height: 660px;
  overflow-y: auto;
  padding: 46px clamp(32px, 4vw, 76px);
  background: #0b080c;
  scrollbar-color: var(--burgundy) #1b1018;
}

.story-copy h2,
.story-copy h3 {
  color: #ffc85b;
  font-size: 31px;
  font-weight: 500;
}

.contact-cta {
  padding: 44px 5%;
  display: flex;
  justify-content: center;
  gap: 22px;
  background: #080709;
  border-block: 1px solid #7e2455;
}

.contact-cta a {
  width: min(410px, 46%);
  padding: 13px 25px;
  display: flex;
  justify-content: center;
  gap: 9px;
  border: 2px solid var(--gold);
  border-radius: 32px 4px 32px 4px;
  background: var(--burgundy);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 6px 0 #39001f;
  transition: transform .2s, background .2s, color .2s, border-radius .2s;
}

.contact-cta a span {
  color: var(--yellow);
}

.contact-cta a:hover {
  transform: translateY(-4px);
  background: var(--yellow);
  color: #090709;
  border-color: #090709;
  border-radius: 4px 32px 4px 32px;
}

.contact-cta a:hover span {
  color: #630035;
}

.available-section {
  padding: 70px 4%;
  background: var(--gradient);
}

.available-grid {
  width: min(100%, 1750px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.available-card {
  position: relative;
  height: 455px;
  overflow: hidden;
  border: 1px solid #d6a63e;
  background: #080708;
}

.available-card>img {
  width: 100%;
  height: 67%;
  object-fit: cover;
  transition: transform .45s, filter .45s;
}

.available-card>span {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 5px 10px;
  background: #8a003f;
  color: #ffe366;
  border: 1px solid #e1ad45;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.available-card>div {
  height: 33%;
  padding: 18px 10px;
  background: #d8a943;
  color: #070607;
  text-align: center;
  transition: background .3s, color .3s;
}

.available-card .card-divider {
  display: block;
  width: 96px;
  height: 2px;
  margin: -6px auto 17px;
  background: #7e003f;
}

.available-card h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.available-card p {
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.available-card:hover>img {
  transform: scale(1.06);
  filter: saturate(1.15);
}

.available-card:hover>div {
  background: #8c0046;
  color: #fff;
}

.available-card:hover i {
  background: var(--yellow);
}

.independent-section {
  padding: 70px 5%;
  background: #090709;
}

.independent-layout {
  width: min(100%, 1600px);
  margin: auto;
  display: grid;
  grid-template-columns: 42% 58%;
  border: 1px solid #9c245d;
}

.independent-image {
  min-height: 700px;
}

.independent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.independent-copy {
  max-height: 700px;
  overflow-y: auto;
  padding: 45px 55px;
  background: var(--gradient);
}

.independent-copy h2 {
  color: #ffc95b;
  font-size: 31px;
  font-weight: 500;
}

.faq-section,
.testimonials-section {
  padding: 70px 5%;
  background: #0b090c;
}

.section-heading {
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading>span {
  color: #ffc850;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 8px 0 12px;
  color: #fff;
  font-family: var(--heading);
  font-size: 47px;
  font-weight: 500;
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: #ddd1d7;
  font-size: 17px;
}

.faq-grid {
  width: min(100%, 1720px);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.faq-grid details {
  border: 1px solid #713050;
  border-left: 6px solid var(--pink);
  border-radius: 7px;
  background: #320b27;
  transition: border-color .25s, background .25s, transform .25s;
}

.faq-grid details:hover,
.faq-grid details[open] {
  border-color: var(--gold);
  background: #4a0d36;
  transform: translateY(-2px);
}

.faq-grid summary {
  position: relative;
  min-height: 89px;
  padding: 27px 68px 24px 24px;
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  list-style: none;
  font-family: var(--heading);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--body);
  font-size: 24px;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid details p {
  margin: 0;
  padding: 0 24px 24px;
  color: #eee3e8;
  font-size: 16px;
  line-height: 1.7;
}

.testimonials-section {
  background: var(--gradient);
}

.testimonial-slider {
  width: min(100%, 1550px);
  margin: auto;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  transition: transform .45s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 310px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  border: 1px solid #a94a75;
  border-radius: 7px;
  background: #140b13;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
}

.stars {
  color: #ffd44f;
  letter-spacing: 2px;
}

.testimonial-card>p {
  flex: 1;
  color: #f2e8ed;
  font-size: 16px;
  line-height: 1.75;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial-card footer>b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #9b004b;
  color: #fff;
}

.testimonial-card footer span,
.testimonial-card footer strong {
  display: block;
}

.testimonial-card footer span {
  color: #bfb1b8;
  font-size: 13px;
  line-height: 1.45;
}

.testimonial-card footer strong {
  color: #fff;
  font-size: 15px;
}

.testimonial-controls {
  min-height: 52px;
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-controls>button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: #100a10;
  color: var(--yellow);
  cursor: pointer;
  font-size: 29px;
  line-height: 1;
}

.slider-dots {
  display: flex;
  gap: 5px;
}

.slider-dots button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.slider-dots button::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #9c7388;
  transition: width .2s, background .2s;
}

.slider-dots button.active::after {
  width: 22px;
  border-radius: 8px;
  background: var(--yellow);
}

.areas-section {
  padding: 70px 5%;
  background: #0b090c;
}

.area-group {
  width: min(100%, 1700px);
  margin: auto;
}

.area-group+.area-group {
  margin-top: 60px;
}

.area-group h2 {
  margin: 0 0 28px;
  color: #ffc95b;
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 500;
  text-align: center;
}

.area-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  list-style: none;
}

.area-list li {
  min-height: 49px;
  padding: 11px 12px;
  display: grid;
  place-items: center;
  border: 1px solid #70314f;
  background: #260d20;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.area-list a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.area-list li:hover {
  transform: translateY(-3px);
  background: var(--burgundy);
  border-color: var(--yellow);
  color: #fff;
}

.site-footer {
  background: #050405;
  color: #d5cbd0;
  border-top: 1px solid #541238;
}

.footer-grid {
  width: min(90%, 1600px);
  margin: auto;
  padding: 58px 0 45px;
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr 1.1fr;
  gap: 55px;
}

.site-footer section {
  min-width: 0;
}

.site-footer .footer-logo {
  width: 190px;
  height: auto;
  margin: 0 0 20px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #ffcb59;
  font-family: var(--heading);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.site-footer p,
.site-footer a {
  color: #d5cbd0;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer p {
  margin: 0 0 12px;
}

.site-footer a {
  display: block;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow);
}

.site-footer nav {
  display: grid;
  gap: 6px;
}

.site-footer .dmca-badge {
  width: 100px;
  height: auto;
  margin: 12px 0 0;
}

.copyright {
  padding: 16px 5%;
  background: #000;
  color: #bfb3b9;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid #28131f;
}

.floating-contact {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 28px;
  display: grid;
  gap: 9px;
}

.floating-contact a {
  width: 64px;
  height: 64px;
  display: block;
  transition: transform .2s;
}

.floating-contact a:hover {
  transform: scale(1.08);
}

.floating-contact img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 17px;
  }

  .profile-grid-12 {
    grid-template-columns: repeat(4, 1fr);
  }

  .available-grid {
    gap: 18px;
  }

  .area-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 80px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 1px solid #7d3759;
    border-radius: 4px;
    background: #160d14;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    background: #fff;
    transition: transform .2s, opacity .2s;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 10px 5% 20px;
    display: none;
    background: #090708;
    border-top: 1px solid #482039;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .35);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 10px 0;
    line-height: 1.5;
  }

  .site-nav a::after {
    bottom: 5px;
  }

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

  .profile-grid-12 {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .story-row,
  .independent-layout {
    grid-template-columns: 1fr;
  }

  .story-row.reverse .story-image {
    order: 0;
  }

  .story-image,
  .independent-image {
    min-height: 580px;
    height: 580px;
  }

  .story-copy,
  .independent-copy {
    max-height: none;
    overflow: visible;
  }

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

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

  .testimonial-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .area-list {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 72px;
    padding-inline: 18px;
  }

  .brand img {
    width: 174px;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    height: 180px;
  }

  .hero img {
    height: 100%;
    object-fit: cover;
  }

  .promo {
    min-height: 335px;
  }

  .promo-content {
    padding: 35px 5px;
  }

  .promo-title {
    font-size: 34px;
  }

  .promo-phone {
    font-size: 31px;
  }

  .promo-copy {
    font-size: 29px;
  }

  .content-band,
  .prose-section {
    padding-block: 42px;
  }

  .content-wrap {
    width: 90%;
  }

  .prose h1 {
    font-size: 30px;
  }

  .prose h2 {
    font-size: 27px;
  }

  .prose h3 {
    font-size: 26px;
  }

  .prose p,
  .prose li {
    font-size: 16px;
    line-height: 1.7;
  }

  .proof-section {
    padding: 38px 5%;
  }

  .proof-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .action-btn {
    min-width: 0;
    padding: 10px 9px;
    font-size: 15px;
  }

  .proof-grid {
    gap: 12px;
  }

  .proof-grid article {
    min-height: 124px;
    padding: 18px 8px;
  }

  .proof-grid strong {
    font-size: 42px;
  }

  .proof-grid span {
    font-size: 14px;
  }

  .profile-gallery {
    padding: 45px 4%;
  }

  .profile-grid-12 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .profile-card h3 {
    font-size: 16px;
  }

  .profile-card p {
    font-size: 11px;
  }

  .badge {
    top: 8px;
    right: 8px;
    padding: 4px 7px;
    font-size: 10px;
  }

  .types-section {
    padding: 44px 4% 50px;
  }

  .type-title {
    margin-bottom: 25px;
    font-size: 27px;
  }

  .type-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .type-card {
    height: 560px;
  }

  .story-image,
  .independent-image {
    min-height: 500px;
    height: 500px;
  }

  .story-copy,
  .independent-copy {
    padding: 35px 5%;
  }

  .story-copy h2,
  .story-copy h3,
  .independent-copy h2 {
    font-size: 27px;
  }

  .contact-cta {
    padding: 36px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-cta a {
    width: 100%;
    padding: 11px 5px;
    display: grid;
    gap: 0;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
  }

  .available-section {
    padding: 45px 4%;
  }

  .available-grid {
    gap: 11px;
  }

  .available-card {
    height: 350px;
  }

  .available-card h3 {
    font-size: 19px;
  }

  .available-card p {
    margin-top: 7px;
    font-size: 13px;
  }

  .available-card>div {
    padding: 14px 6px;
  }

  .available-card .card-divider {
    width: 60px;
    margin-bottom: 11px;
  }

  .independent-section {
    padding: 45px 4%;
  }

  .independent-layout {
    display: flex;
    flex-direction: column;
  }

  .independent-image {
    order: -1;
  }

  .faq-section,
  .testimonials-section {
    padding: 50px 5%;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 35px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .faq-grid summary {
    min-height: 76px;
    padding: 21px 62px 20px 18px;
    font-size: 21px;
  }

  .faq-grid summary::after {
    right: 16px;
    width: 34px;
    height: 34px;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 300px;
    padding: 25px;
  }

  .slider-dots {
    gap: 0;
  }

  .areas-section {
    padding: 50px 4%;
  }

  .area-group h2 {
    font-size: 30px;
  }

  .area-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .area-list li {
    min-height: 52px;
    padding: 8px 6px;
    font-size: 11px;
  }

  .footer-grid {
    width: 90%;
    padding-block: 45px 35px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .floating-contact {
    right: 10px;
    bottom: 16px;
    gap: 6px;
  }

  .floating-contact a,
  .floating-contact img {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 156px;
  }

  .proof-grid span {
    font-size: 12px;
  }

  .type-card {
    height: 510px;
  }

  .available-card {
    height: 325px;
  }

  .contact-cta a {
    font-size: 12px;
  }

  .section-heading h2 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* Kochi page refinements */
@media (min-width: 981px) {
  .site-header {
    min-height: 98px;
    padding-inline: 2.7%;
  }

  .brand img {
    width: 240px;
  }

  .site-nav {
    gap: 28px;
  }

  .site-nav a {
    font-size: 19px;
    line-height: 98px;
  }

  .site-nav a::after {
    bottom: 21px;
  }
}

.hero {
  height: auto;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.promo {
  min-height: 570px;
  background-position: center 24%;
  border-top: 3px solid #f3e779;
  border-bottom: 3px solid #f3e779;
}

.promo-overlay {
  background: linear-gradient(90deg, rgba(19, 2, 16, .68), rgba(100, 8, 49, .48), rgba(19, 2, 16, .72));
}

.promo-content {
  width: min(100%, 1500px);
  padding: 46px 32px;
}

.promo-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1.08;
}

.promo-phone {
  margin: 12px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 67px;
  line-height: 1.1;
}

.promo-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1.12;
}

.intro-copy {
  padding: 46px 5%;
}

.intro-copy .content-wrap {
  width: 100%;
  max-width: none;
}

.intro-copy .prose h1 {
  font-size: 38px;
  font-weight: 500;
}

.intro-copy .prose h2 {
  font-size: 32px;
  font-weight: 500;
}

.kochi-hero-intro {
  padding: 68px 5%;
}

.kochi-hero-intro .prose h1 {
  margin-bottom: 24px;
  color: #f2b544;
  font-size: 42px;
  line-height: 1.16;
}

.kochi-intro-summary {
  width: min(100%, 1480px);
  margin: 0 auto 38px !important;
  color: #f7edf2;
  font-size: 18px !important;
  line-height: 1.75 !important;
  text-align: left !important;
}

.kochi-booking-panel {
  position: relative;
  width: min(100%, 1710px);
  margin: 0 auto 48px;
  padding: 38px 40px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e0ad45;
  border-left: 8px solid #f2b544;
  border-radius: 8px;
  background: linear-gradient(110deg, #080709 0%, #100a0e 72%, #1c0a15 100%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .3);
}

.kochi-booking-panel::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: 0;
  width: 8px;
  height: 48%;
  background: #db2470;
}

.kochi-booking-copy>span {
  display: block;
  margin-bottom: 24px;
  color: #f2b544;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.kochi-booking-copy h2 {
  margin: 0 0 20px !important;
  color: #fff !important;
  font-size: 35px !important;
  font-weight: 500 !important;
}

.kochi-booking-copy p {
  margin: 0 !important;
  color: #e9dfe4;
  font-size: 16px !important;
  line-height: 1.6 !important;
  text-align: left !important;
}

.kochi-booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kochi-booking-actions a {
  min-height: 96px;
  padding: 14px 18px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 2px solid #e0ad45;
  border-radius: 8px;
  background: linear-gradient(135deg, #a60050 0%, #76003e 58%, #3b092d 100%);
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.kochi-booking-actions a span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.kochi-booking-actions a strong {
  font-size: 19px;
  font-weight: 600;
}

.kochi-booking-actions a:hover {
  transform: translateY(-4px);
  border-color: #fff0a8;
  background: linear-gradient(135deg, #f6d35d 0%, #ed9b2f 100%);
  color: #130911;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .42), 0 0 0 3px rgba(242, 181, 68, .16);
}

.kochi-body-heading {
  margin-top: 0 !important;
  text-align: center;
}

.prose .kochi-anchor-link {
  color: #f2c94c;
  text-decoration-color: #db2470;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.prose .kochi-anchor-link:hover {
  color: #fff;
  text-decoration-color: #f2c94c;
}

#kochi-profiles,
#kochi-types,
#kochi-booking {
  scroll-margin-top: 24px;
}

.proof-section {
  padding: 22px 4%;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(110deg, #0d090d 0%, #2b101e 100%);
  border-block: 1px solid rgba(215, 160, 61, .42);
}

.proof-actions {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.proof-actions .action-btn {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  text-align: left;
  transform: none;
}

.proof-actions .call-btn {
  font-family: var(--heading);
  font-size: 30px;
  font-weight: 600;
}

.proof-actions .number-btn {
  color: #f1c66d;
  font-size: 20px;
  font-weight: 600;
}

.proof-actions .action-btn:hover {
  color: #f1c66d;
  background: transparent;
  border: 0;
  transform: translateX(5px);
}

.proof-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.proof-grid article {
  min-height: 126px;
  padding: 14px 10px;
  background: linear-gradient(145deg, #7b1239 0%, #ad1f47 100%);
  border: 1px solid #c85971;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.proof-grid article:hover {
  transform: translateY(-4px);
  border-color: #f1c66d;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .42);
}

.proof-grid strong {
  font-size: 50px;
  font-weight: 500;
  color: #f5d578;
}

.proof-grid span {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
}

.profile-gallery {
  padding: 42px 2%;
  background: linear-gradient(120deg, #130b14 0%, #3a1028 100%);
}

.profile-grid {
  width: 100%;
  max-width: 1820px;
  gap: 18px;
}

.profile-card {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff8f1;
  border: 1px solid rgba(241, 198, 109, .7);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .32);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.profile-card::after {
  display: none;
}

.profile-card>img {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  transition: transform .35s ease;
}

.profile-card>div {
  position: static;
  min-height: 92px;
  padding: 11px 10px 13px;
  display: block;
  background: #fff8f1;
  text-align: center;
}

.profile-card h3 {
  color: #47162f;
  font-family: var(--heading);
  font-size: 23px;
  font-weight: 600;
}

.profile-card p {
  margin-top: 7px;
  color: #5d4a54;
  font-size: 13px;
  font-weight: 500;
}

.profile-card:hover {
  transform: translateY(-7px);
  border-color: #f1c66d;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .45);
}

.profile-card:hover>img {
  transform: scale(1.045);
}

.types-section {
  padding: 74px 5% 86px;
}

.type-grid {
  max-width: 1550px;
}

.type-card {
  height: auto;
  aspect-ratio: 3 / 4.35;
}

.type-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 52px rgba(0, 0, 0, .45);
}

.story-section {
  padding: 82px 0;
  background: linear-gradient(135deg, #fffaf6 0%, #fff 48%, #f8edf2 100%);
}

.story-row {
  width: 90%;
  max-width: 1360px;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  border: 0;
}

.story-row+.story-row {
  margin-top: 74px;
  padding-top: 74px;
  border-top: 1px solid rgba(125, 23, 63, .22);
}

.story-image {
  position: sticky;
  top: 28px;
  min-height: 0;
  height: auto;
  overflow: visible;
}

.story-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(125, 23, 63, .28);
  border-radius: 0;
  box-shadow: 0 20px 48px rgba(59, 16, 38, .2);
}

.story-copy {
  max-height: none;
  overflow: visible;
  padding: 10px 0;
  background: transparent;
  color: #2b1822;
}

.story-copy h2,
.story-copy h3 {
  margin: 0 0 22px;
  color: #7d173f;
  font-size: 32px;
  font-weight: 600;
}

.story-copy p {
  margin-bottom: 18px;
  color: #2b1822;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.story-copy strong {
  color: #4c122c;
}

.contact-cta {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #050505;
  border: 3px solid #d72e72;
}

.contact-cta a {
  width: min(680px, 92%);
  min-height: 72px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 2px solid #000;
  border-radius: 999px;
  background: #f2c94c;
  color: #080808;
  box-shadow: 0 8px 0 rgba(215, 46, 114, .75);
  font-size: 26px;
  font-weight: 600;
}

.contact-cta a span {
  margin-right: 8px;
  color: #080808;
  font-family: var(--heading);
  font-size: 31px;
  font-weight: 600;
}

.contact-cta a:hover {
  transform: translateY(-4px) scale(1.015);
  background: #d72e72;
  color: #fff;
  border-color: #000;
  border-radius: 999px;
  box-shadow: 0 12px 0 rgba(242, 201, 76, .9);
}

.contact-cta a:hover span {
  color: #fff;
}

.available-section {
  padding: 24px 4% 64px;
}

.available-grid {
  max-width: 1750px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 24px;
}

.available-card {
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #080709;
  border: 1px solid #d6a43a;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
}

.available-card>span {
  position: static;
  order: -1;
  height: 78px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ff2476;
  font-family: var(--heading);
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 36, 118, .42);
}

.available-card>img {
  width: calc(100% - 24px);
  height: auto;
  aspect-ratio: 3 / 4;
  margin: 0 12px;
  object-fit: cover;
  object-position: center top;
}

.available-card>div {
  position: relative;
  height: auto;
  margin: 58px 12px 12px;
  padding: 16px 10px;
  background: linear-gradient(135deg, #b8862e, #e0b553);
  border: 1px solid #f0cd76;
  color: #130a10;
}

.available-card .card-divider {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 78px;
  height: 2px;
  margin: 0;
  transform: translateX(-50%);
  background: #e5b84d;
  box-shadow: -18px 0 0 -1px #d72e72, 18px 0 0 -1px #d72e72;
}

.available-card h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.15;
}

.available-card p {
  margin-top: 7px;
  font-size: 15px;
}

.available-card:hover {
  transform: translateY(-8px);
  border-color: #f4ca64;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .46), 0 0 0 1px rgba(215, 46, 114, .38);
}

.available-card:hover>img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.04);
}

.available-card:hover>div {
  background: linear-gradient(135deg, #b8862e, #e0b553);
  color: #130a10;
}

.independent-section {
  padding: 66px 4%;
  background: linear-gradient(110deg, #170018 0%, #2d0328 48%, #4b0938 100%);
  border-block: 3px solid #d72e72;
}

.independent-layout {
  width: min(100%, 1750px);
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr);
  gap: 54px;
  border: 0;
}

.independent-image {
  min-height: 780px;
  overflow: hidden;
  border: 1px solid rgba(242, 198, 109, .65);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .38);
}

.independent-image img {
  object-position: center top;
  transition: transform .6s, filter .4s;
}

.independent-image:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.independent-copy {
  align-self: center;
  max-height: none;
  overflow: visible;
  padding: 0;
  background: transparent;
}

.independent-copy h2 {
  margin-bottom: 22px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.24;
}

.independent-copy p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.58;
}

.faq-section {
  padding: 72px 5%;
}

.faq-grid details:hover {
  transform: translateY(-3px);
  border-color: #f2c66d;
  border-left-color: #f2c66d;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
  background: linear-gradient(120deg, #260f21 0%, #4a0c35 100%);
}

.testimonials-section {
  padding: 72px 5%;
  background: linear-gradient(100deg, #150016 0%, #3e062f 55%, #720643 100%);
  border-top: 3px solid #f2c66d;
}

.testimonial-card {
  border-top: 4px solid #d72e72;
  background: linear-gradient(145deg, #0c090d 0%, #20121d 100%);
}

.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: #f2c66d;
  box-shadow: 0 24px 46px rgba(0, 0, 0, .42);
}

.testimonial-controls>button:hover {
  transform: scale(1.08);
  background: #f2c66d;
  color: #160b14;
}

.areas-section {
  padding: 70px 4%;
  background: #09090a;
  border-top: 3px solid #d72e72;
}

.area-group {
  width: 100%;
  max-width: 1750px;
}

.area-group h2 {
  margin-bottom: 34px;
  color: #f2c66d;
  font-size: 43px;
  font-weight: 600;
  text-transform: uppercase;
}

.city-group h2 {
  text-align: center;
  text-transform: none;
}

.area-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px 20px;
}

.area-list li {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.area-list a {
  position: relative;
  z-index: 1;
  min-height: 54px;
  padding: 9px 12px;
  overflow: hidden;
  background: #0e0d0f;
  border: 1px solid #6b294d;
  box-shadow: inset 0 0 0 1px rgba(242, 198, 109, .08);
  font-size: 16px;
  font-weight: 500;
  transition: color .25s, background .25s, border-color .25s, transform .25s, box-shadow .25s;
}

.area-list a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, #d72e72 0%, #8d174f 55%, #f2c66d 130%);
  opacity: 0;
  transform: scaleX(.2);
  transform-origin: center;
  transition: opacity .28s, transform .28s;
}

.area-list li:hover {
  transform: none;
  background: transparent;
  border: 0;
}

.area-list li:hover a {
  color: #fff;
  border-color: #f2c66d;
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(215, 46, 114, .28), 0 0 0 1px rgba(242, 198, 109, .45);
}

.area-list li:hover a::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer-grid {
  width: min(80%, 1520px);
  padding: 66px 0 56px;
  grid-template-columns: 1.15fr .8fr 1fr 1fr;
  gap: 64px;
}

.site-footer .footer-logo {
  width: 240px;
  margin: 64px 0 0;
}

.site-footer h2 {
  color: #eaff00;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 500;
}

.site-footer p,
.site-footer a {
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
}

.site-footer .dmca-badge {
  width: 100px;
  margin-top: 20px;
}

.copyright {
  padding: 16px 5%;
  color: #fff;
  font-size: 16px;
}

@media (max-width: 1200px) and (min-width: 981px) {
  .profile-grid-12 {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-section {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
  }

  .proof-grid {
    gap: 14px;
  }

  .area-list {
    grid-template-columns: repeat(4, 1fr);
    gap-inline: 14px;
  }
}

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

  .promo {
    min-height: 490px;
  }

  .promo-title {
    font-size: 52px;
  }

  .promo-phone {
    font-size: 48px;
  }

  .promo-copy {
    font-size: 43px;
  }

  .proof-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .proof-actions {
    min-height: 92px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .proof-actions .action-btn {
    text-align: center;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .story-section {
    padding: 58px 0;
  }

  .story-row {
    gap: 32px;
    width: 92%;
  }

  .story-image {
    position: static;
  }

  .available-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .independent-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .area-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .area-group h2 {
    margin-bottom: 28px;
    font-size: 36px;
  }

  .footer-grid {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .kochi-booking-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .age-gate {
    padding: 16px;
  }

  .age-gate-card {
    padding: 30px 20px;
  }

  .age-gate-mark {
    width: 74px;
    height: 74px;
    font-size: 32px;
  }

  .age-gate-title {
    font-size: 33px;
  }

  .age-gate-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 180px;
  }

  .hero img {
    height: 100%;
    object-fit: cover;
  }

  .promo {
    min-height: 410px;
    background-position: center top;
  }

  .promo-content {
    padding: 34px 20px;
  }

  .promo-title {
    font-size: 34px;
  }

  .promo-phone {
    margin: 14px 0;
    font-size: 31px;
  }

  .promo-copy {
    font-size: 29px;
    line-height: 1.18;
  }

  .intro-copy {
    padding: 36px 5%;
  }

  .kochi-hero-intro {
    padding: 42px 5%;
  }

  .kochi-hero-intro .prose h1 {
    font-size: 29px;
    line-height: 1.2;
  }

  .kochi-intro-summary {
    margin-bottom: 28px !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    text-align: left !important;
  }

  .kochi-booking-panel {
    margin-bottom: 36px;
    padding: 25px 18px;
    gap: 24px;
    border-left-width: 6px;
  }

  .kochi-booking-copy>span {
    margin-bottom: 15px;
    font-size: 12px;
  }

  .kochi-booking-copy h2 {
    font-size: 27px !important;
  }

  .kochi-booking-copy p {
    font-size: 15px !important;
  }

  .kochi-booking-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kochi-booking-actions a {
    min-height: 76px;
  }

  .kochi-body-heading {
    font-size: 27px !important;
  }

  .proof-section {
    padding: 14px 5%;
  }

  .proof-actions {
    min-height: 82px;
  }

  .proof-actions .call-btn {
    font-size: 25px;
  }

  .proof-actions .number-btn {
    font-size: 17px;
  }

  .proof-grid {
    gap: 10px;
  }

  .proof-grid article {
    min-height: 104px;
    padding: 10px 7px;
  }

  .proof-grid strong {
    font-size: 38px;
  }

  .proof-grid span {
    margin-top: 5px;
    font-size: 13px;
  }

  .profile-gallery {
    padding: 28px 4%;
  }

  .profile-card>div {
    min-height: 82px;
    padding: 9px 7px 10px;
  }

  .profile-card h3 {
    font-size: 19px;
  }

  .profile-card p {
    margin-top: 5px;
    font-size: 12px;
  }

  .story-row {
    grid-template-columns: 1fr;
  }

  .story-row.reverse .story-image {
    order: 0;
  }

  .story-copy {
    padding: 0;
  }

  .story-copy h2,
  .story-copy h3 {
    font-size: 27px;
  }

  .story-copy p {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }

  .contact-cta {
    padding: 30px 5%;
    gap: 14px;
    border-width: 2px;
  }

  .contact-cta a {
    width: 100%;
    min-height: 58px;
    padding: 10px 12px;
    display: flex;
    font-size: 17px;
    box-shadow: 0 5px 0 rgba(215, 46, 114, .75);
  }

  .contact-cta a span {
    margin-right: 5px;
    font-size: 21px;
  }

  .available-section {
    padding: 18px 16px 36px;
  }

  .available-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }

  .available-card>span {
    height: 50px;
    padding: 7px 3px;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .available-card>img {
    width: calc(100% - 14px);
    margin-inline: 7px;
  }

  .available-card>div {
    margin: 38px 7px 7px;
    padding: 11px 5px;
  }

  .available-card .card-divider {
    top: -20px;
    width: 48px;
  }

  .available-card h3 {
    font-size: 16px;
  }

  .available-card p {
    font-size: 12px;
  }

  .independent-section {
    padding: 36px 16px;
  }

  .independent-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .independent-image {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .independent-copy h2 {
    font-size: 26px;
  }

  .independent-copy p {
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
  }

  .faq-section,
  .testimonials-section {
    padding: 42px 16px;
  }

  .areas-section {
    padding: 40px 12px;
  }

  .area-group h2 {
    margin-bottom: 24px;
    font-size: 29px;
  }

  .city-group h2 {
    text-align: center;
  }

  .area-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .area-list a {
    min-height: 50px;
    padding: 8px 5px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .footer-grid {
    width: 90%;
    padding-block: 45px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .site-footer .footer-logo {
    margin-top: 35px;
  }
}

.kochi-hero-intro .prose p,
.prose-section .prose p,
.story-copy p,
.independent-copy p {
  text-align: justify;
}