@font-face {
  font-family: 'Cardo-Regular';
  src: url('../fonts/Cardo-Regular.woff2') format('TrueType');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CormorantGaramond-Regular';
  src: url('../fonts/CormorantGaramond-VariableFont_wght.woff2') format('TrueType');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost-Regular';
  src: url('../fonts/Jost-VariableFont_wght.woff2') format('TrueType');
  font-style: normal;
  font-display: swap;
}

:root {
  --green-900: #0f1f10;
  --green-800: #15281a;
  --green-700: #1a2e1a;
  --green-600: #233a23;
  --green-500: #2e4b2f;
  --gold-500: #c9a84c;
  --gold-400: #d8bb6a;
  --gold-300: #fed482;
  --gold: #c9a84c;
  --gold-lt: #e8cfa0;
  --cream-50: #faf7ef;
  --cream-100: #f3ede0;
  --ink-900: #111512;
  --ink-700: #2b322c;
  --ink-500: #5b6058;
  --ink-300: #9aa097;
  --line: rgba(26, 46, 26, 0.12);
  --forest: #1a2e1a;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(15, 31, 16, 0.06);
  --shadow: 0 14px 40px rgba(15, 31, 16, 0.1);
  --shadow-lg: 0 30px 60px rgba(15, 31, 16, 0.18);
  --container: 1200px;
  --pad-x: clamp(20px, 4vw, 40px);
  --section-y: clamp(80px, 10vw, 130px);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Jost-Regular', sans-serif;
  --font-display: 'CormorantGaramond-Regular', serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  font-family: 'Cardo-Regular';
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gold-500);
  color: var(--green-900);
}

.btn-green {
  background: #434e41;
  color: #ffffff;
  width: auto;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.center {
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: var(--green-700);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  z-index: 200;
  transition: width 80ms linear;
}

.h2,
h1,
h2,
h3,
h4,
h5,
.display {
  font-family: var(--font-display);
  color: var(--green-900);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

.display {
  font-size: clamp(2.1rem, 5.4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
}

.h2.light {
  color: #fff;
}

.in h3 {
  color: #c9a84c;
  font-size: 18px;
  line-height: 1.6;
  font-family: var(--font-body);
  letter-spacing: 0.4px;
  font-weight: normal;
}

.lede {
  background: #3245249c;
  width: 55%;
  border: 1px solid #fed48269;
  border-radius: 35px;
  padding: 10px 20px 8px;
  font-size: 14px;
  margin: 0 auto 30px;
  font-family: var(--font-body);
  font-style: normal;
}

.muted {
  color: var(--ink-500);
}

.rule {
  width: 60px;
  height: 2px;
  background: var(--gold-500);
  margin: 18px 0 30px;
  border-radius: 2px;
}

.rule.center {
  margin-inline: auto;
}

.g {
  color: var(--gold-300);
}

.g-strong {
  color: var(--gold-300);
  font-weight: 700;
}

.btn {
  --btn-bg: var(--gold-500);
  --btn-fg: var(--green-900);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid #fed482;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 168, 76, 0.35);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn.full {
  width: 100%;
  justify-content: center;
}

.btn-gold:hover {
  --btn-bg: var(--gold-400);
}

.btn-dark {
  --btn-bg: var(--green-700);
  --btn-fg: #fff;
}

.btn-dark:hover {
  --btn-bg: var(--green-800);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
    box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
}

.navbar.is-scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
  padding: 0;
  background: var(--forest);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

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

.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(255 255 255);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .btn-gold::after {
  content: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: #fff;
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0 var(--pad-x);
  background: rgba(15, 31, 16, 0.96);
  backdrop-filter: blur(16px);
}

.mobile-menu a {
  color: #fff;
  padding: 12px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

.mobile-menu .btn {
  margin-top: 12px;
  align-self: flex-start;
  border: 1px solid #fed482;
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--section-y) 0;
}

.section-head {
  text-align: center;
  margin: 0 auto 60px;
}

.section-head .muted {
  margin-top: 14px;
  letter-spacing: 1px;
  font-family: 'Cardo-Regular';
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
}

.align-center {
  align-items: center;
}

/* ========== SHOW VILLA / LEAD FORM ========== */
.showvilla {
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
}

.lead-form {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.lead-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.74rem;
  color: var(--ink-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
}

.lead-form label.full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--ink-300);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}

.form-success {
  margin: 14px 0 0;
  color: var(--green-700);
  font-weight: 600;
  text-align: center;
}

.showvilla .rule {
  margin-bottom: 60px;
}

.showvilla .btn-green {
  margin-top: 50px;
}

/* ========== FEATURES (icon list) ========== */
.features {
  background: #ffffff;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid rgb(69 81 68 / 9%);
  font-size: 18px;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}

.feature-list li:first-child {
  padding-top: 0;
}

.feature-list li>img {
  height: 26px;
}

.features .h2>span {
  display: block;
  text-transform: uppercase;
}

.features .section-label {
  font-size: 20px;
  line-height: 27px;
}

/* ========== EXCLUSIVITY BANNER ========== */
.exclusivity {
  background:
    linear-gradient(180deg, rgba(15, 31, 16, 0.92), rgba(15, 31, 16, 0.96)),
    url('https://kasul.in/wp-content/uploads/2025/08/Kasouli-Villa-Villa-Paving-Cam.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.exclusivity .h2 {
  margin-bottom: 35px;
}

/* ========== ABOUT ========== */
.about {
  background: var(--cream-50);
}

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: transparent;
  border: 1px solid #fed482;
  border-radius: 999px;
  color: #ffffff;
}

.about-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 31, 16, 0.85);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-300);
  font-size: 1.1rem;
}

.about-badge span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.8);
}

.about .btn-dark {
  margin-top: 40px;
}

/* ========== ABOUT ========== */
.ks-section {
  position: relative;
  overflow: hidden;
  padding: 110px 60px;
  text-align: center;
  font-family: 'Cardo-Regular';
  font-weight: 600;
  background: var(--forest);
}

.ks-section::before,
.ks-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #c9a84c 50%, transparent 100%);
  opacity: 0.4;
}

.ks-section::before {
  top: 0;
}

.ks-section::after {
  bottom: 0;
}

.ks-corner {
  position: absolute;
  width: 28px;
  height: 28px;
}

.ks-corner.tl {
  top: 28px;
  left: 28px;
  border-top: 1px solid #c9a84c;
  border-left: 1px solid #c9a84c;
}

.ks-corner.tr {
  top: 28px;
  right: 28px;
  border-top: 1px solid #c9a84c;
  border-right: 1px solid #c9a84c;
}

.ks-corner.bl {
  bottom: 28px;
  left: 28px;
  border-bottom: 1px solid #c9a84c;
  border-left: 1px solid #c9a84c;
}

.ks-corner.br {
  bottom: 28px;
  right: 28px;
  border-bottom: 1px solid #c9a84c;
  border-right: 1px solid #c9a84c;
}

.ks-eyebrow {
  font-family: 'CormorantGaramond-Regular';
  font-size: 10px;
  letter-spacing: 0.38em;
  color: #c9a84c;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.ks-eyebrow .line-left {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c);
  display: block;
}

.ks-eyebrow .line-right {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  display: block;
}

.ks-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  font-weight: normal;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.035em;
  max-width: 820px;
  margin: 0 auto 20px;
}

.ks-heading em {
  color: #c9a84c;
  font-style: italic;
  font-weight: 600;
}

.ks-sub {
  font-size: 1.05rem;
  color: rgb(255 255 255);
  letter-spacing: 0.03em;
}

.ks-sub_2 {
  color: #c9a84c;
  font-size: 18px;
  line-height: 24px;
  font-family: var(--font-body);
  margin-bottom: 52px;
  letter-spacing: 1px;
  font-weight: 600;
}

.ks-sub_2>span {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}

.ks-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
}

.ks-divider .line-left {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6));
}

.ks-divider .line-right {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.6), transparent);
}

.ks-divider .diamond {
  width: 6px;
  height: 6px;
  background: #c9a84c;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ks-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000000;
  background: #c9a84c;
  height: 48px;
  padding: 0 26px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 95px;
  transition: color 0.35s;
}

.ks-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #c9a84c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ks-btn:hover {
  color: #1a2e1a;
}

.ks-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.ks-btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ks-btn-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ks-btn:hover .ks-btn-arrow {
  transform: translateX(5px);
}

@keyframes ksUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== LOCATION ========== */
.location {
  background: #ffffff;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.loc-card:hover {
  background: #fff;
}

.highlight-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fed482;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.loc-card:hover .highlight-bar {
  transform: scaleX(1);
}

.loc-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}

.loc-card:hover {
  transform: translateY(-4px);
}

.loc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--green-900);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.loc-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.loc-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 10px;
  letter-spacing: 0.3px;
  cursor: default;
}

.loc-card p {
  margin: 0;
  color: var(--ink-500);
  cursor: default;
}

/* ========== AMENITIES ========== */
.amenity-section {
  width: 100%;
  background: var(--cream);
  padding: 5rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.amenity-section::before,
.amenity-section::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: var(--gold-light);
  border-style: solid;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.amenity-section::before {
  top: 2rem;
  left: 0rem;
  border-width: 1px 0 0 1px;
}

.amenity-section::after {
  bottom: 2rem;
  right: 0rem;
  border-width: 0 1px 1px 0;
}

.amen-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.amen-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.amen-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.amen-title em {
  font-style: italic;
  color: var(--gold);
}

.amen-header .a-label {
  font-size: 18px;
  line-height: 24px;
}

.amen-count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid #c9a84c;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.4s;
  font-family: 'Cardo-Regular';
}

.amen-rule {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 0.5rem;
  animation: expandRule 0.9s ease forwards 0.5s;
}

.a-num {
  font-size: 16px;
  color: #c9a84c;
  min-width: 20px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  font-family: 'Cardo-Regular';
}

.a-dash {
  width: 18px;
  height: 1px;
  background: #c9a84c;
  flex-shrink: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.a-icon-wrap {
  font-size: 17px;
  color: #c0ae84;
  flex-shrink: 0;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
}

.a-label {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-mid);
  letter-spacing: 0.03em;
  flex: 1;
  transition: color 0.3s;
  font-family: 'Cardo-Regular';
}

.specs .a-label {
  font-size: 16px;
}

.a-arrow {
  font-size: 14px;
  color: transparent;
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateX(-8px);
  font-family: var(--font-body);
}

.amen-footer {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 1.4s;
}

.amen-footer-line {
  flex: 1;
  height: 1px;
}

.amen-footer-line:first-child {
  background: linear-gradient(to right, transparent, var(--gold-light));
}

.amen-footer-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-light));
}

.amen-footer-text {
  font-style: normal;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-family: 'Cardo-Regular';
  text-transform: uppercase;
  font-weight: 600;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandRule {
  to {
    width: 64px;
  }
}

/* ========== LEGACY + PRICE ========== */
.price {
  background:
    linear-gradient(180deg, rgba(15, 31, 16, 0.92), rgba(15, 31, 16, 0.96)),
    url('https://kasul.in/wp-content/uploads/2025/08/Kasouli-Villa_Balcony-Cam.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.legacy_1 {
  display: flex;
  justify-content: center;
}

.legacy {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.1rem);
  color: #fff;
  margin: 0 0 25px;
  line-height: 1.2;
  max-width: 70%;
}

.legacy-sub {
  color: rgba(255, 255, 255, 1);
  margin: 0 auto 32px;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

.price-tag {
  color: var(--gold-300);
}

#faq {
  background: #ffffff;
}

.section-label {
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid rgba(92, 64, 51, 0.12);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  gap: 20px;
}

.faq-q h3 {
  font-family: 'Cardo-Regular';
  font-size: 18px;
  font-weight: 400;
  color: var(--forest);
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(92, 64, 51, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.3s;
  background: none;
  cursor: pointer;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.faq-item.open .faq-a {
  opacity: 1;
  transform: translateY(0);
}

.faq-a p,
.faq-a ul {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.8;
}

.faq-a p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.faq-a ul {
  list-style: none;
  padding-left: 0;
}

.faq-a li {
  padding: 4px 0;
}

.faq-a li::before {
  content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â';
  color: var(--gold);
}

.fores_sec_8_subsec {
  width: 100%;
  display: flex;
  justify-content: center;
}

.faq_sec {
  max-width: 820px;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-top {
  padding-top: 0;
}

.faq-btn-wrap {
  text-align: center;
  margin-top: 50px;
}

.faq_sec .faq-item:nth-child(n+7) {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

.faq_sec.show-all .faq-item:nth-child(n+7) {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

/* ========== GALLERY ========== */
.gallery {
  background: var(--cream-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.g-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 31, 16, 0.5));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.g-item:hover img {
  transform: scale(1.06);
}

.g-item:hover::after {
  opacity: 1;
}

.g-tall {
  grid-row: span 2;
}

.g-wide {
  grid-column: span 2;
}

/* ========== VIDEOS ========== */
.videos {
  background: #ffffff
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
}

.video-block .h2 {
  margin-bottom: 18px;
  text-align: center;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========== FINAL CTA ========== */
.final-cta {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 360px at 10% 30%, rgba(201, 168, 76, 0.18), transparent 60%);
  pointer-events: none;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

.final-cta-inner .h2 {
  margin-bottom: 6px;
}

/* ========== Sticky FAB ========== */
.sticky-fab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fab:hover {
  transform: translateY(-3px) scale(1.05);
}

.fab-wa {
  background: #17c90e;
}

.fab-call {
  background: var(--gold-500);
  color: var(--green-900);
}

.fab-wa img,
.fab-call img {
  height: 30px;
}

/* ========== Reveal animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.form_box {
  text-align: center;
}

.tfc-gallery-item__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tfc-gallery-item:hover .tfc-gallery-item__icon {
  opacity: 1;
}

.tfc-gallery-item__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
}

.tfc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 4, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tfc-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.tfc-lightbox__inner {
  position: relative;
  max-width: 85vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tfc-lightbox__img,
.popup-video {
  max-width: 85vw;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

.tfc-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.tfc-lightbox__close:hover {
  color: #fff;
}

.tfc-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c9a84c;
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.tfc-lightbox__nav:hover {
  background: #c9a84c;
}

.tfc-lightbox__prev {
  left: -60px;
}

.tfc-lightbox__next {
  right: -60px;
}

.tfc-lightbox__meta {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-top: 18px;
  text-align: center;
}

footer {
  background: #0f1f0f;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-size: 55px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}

.footer-tagline {
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.footer-p {
  font-size: 13px;
  color: #373536;
  line-height: 1.8;
}

.footer-p a {
  font-size: 13px;
  color: #373536;
  font-weight: 600;
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials svg {
  width: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbc0bc;
  text-decoration: none;
  font-size: 14px;
  transition: border-color 0.3s, color 0.3s;
}

.social-btn:hover {
  border-color: #fed482;
  color: #fed482;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #fed482;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #bbc0bc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid #bbc0bc;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p,
.footer-bottom p a {
  font-size: 12px;
  color: #bbc0bc;
  margin-bottom: 0;
}

.foot_marg {
  margin-top: 32px;
}

.foot_clr_chng {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  margin-top: 8px;
}

.footer-bottom p.foot_clr_chng {
  color: #bbc0bc;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.footer-col_main img {
  height: 100px;
  object-fit: contain;
}

.footer-col_main .footer-socials img {
  height: auto;
}

.footer-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.hero-bg_2 {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 31, 16, 0.6) 0%, rgba(15, 31, 16, 0.85) 100%),
    url('../images/Kasouli-banner.webp') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(1deg, rgb(0 0 0 / 74%), rgb(0 0 0 / 52%));
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-inner {
  padding-top: 140px;
  padding-bottom: 100px;
  width: 100%;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1.1s var(--ease) 0.25s forwards;
}

.hero-eyebrow {
  font-family: 'Cardo-Regular';
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  transform: translateY(20px);
  animation: fadeUp 1s 0.4s var(--transition) forwards;
  background: #000000;
  padding: 9px 10px 8px;
  margin: 0 auto 50px;
  width: 53%;
  border: 0.5px solid #fed48361;
  border-left: 1px solid #fed483;
  border-right: 1px solid #fed483;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-logo {
  margin: 0 auto 30px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  width: 28%;
}

.hero-sub {
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 48px;
  font-family: var(--font-body);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #fff;
  font-weight: 500;
  background: #172413;
  width: 52%;
  margin: 0 auto;
  padding: 10px 10px 12px;
  border-radius: 5px;
}

.display {
  color: #fff;
}

.amenity-grid {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.amenity-grid li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid #e1e4e1;
  position: relative;
  cursor: default;
  opacity: 0;
  transform: translateX(-18px);
  transition: padding-left 0.35s ease;
}

.amenity-grid li:first-child {
  border-top: 0.5px solid va(--rule);
}

.amenity-grid.in li:nth-child(1) {
  animation: slideIn 0.55s ease forwards 0.55s;
}

.amenity-grid.in li:nth-child(2) {
  animation: slideIn 0.55s ease forwards 0.65s;
}

.amenity-grid.in li:nth-child(3) {
  animation: slideIn 0.55s ease forwards 0.75s;
}

.amenity-grid.in li:nth-child(4) {
  animation: slideIn 0.55s ease forwards 0.85s;
}

.amenity-grid.in li:nth-child(5) {
  animation: slideIn 0.55s ease forwards 0.95s;
}

.amenity-grid.in li:nth-child(6) {
  animation: slideIn 0.55s ease forwards 1.05s;
}

.amenity-grid.in li:nth-child(7) {
  animation: slideIn 0.55s ease forwards 1.15s;
}

.amenity-grid.in li:nth-child(8) {
  animation: slideIn 0.55s ease forwards 1.25s;
}

.amenity-grid li:hover {
  padding-left: 0.75rem;
}

.amenity-grid li:hover .a-dash {
  width: 28px;
  background: var(--gold-deep);
}

.amenity-grid li:hover .a-icon-wrap {
  color: var(--gold-deep);
  transform: scale(1.15);
}

.amenity-grid li:hover .a-label {
  color: var(--ink);
}

.amenity-grid li:hover .a-num {
  color: var(--gold);
}

.amenity-grid li:hover .a-arrow {
  color: var(--gold);
  transform: translateX(0);
}

.amenity-grid li>img[alt="location"] {
  display: none;
}

/* ========== Site Plan ========== */
.site-plan {
  background: #1a2e1a;
}

.site-plan .h2 {
  color: #ffffff;
}

.site-plan .gallery-grid {
  display: flex;
  justify-content: center;
}

.site-plan .g-item {
  background: #ffffff;
  width: 552px;
}

.site-plan .g-item img {
  height: 500px;
  object-fit: contain;
}

/* ========== Floor Plan ========== */
.floor-plan .gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 640px;
}

.floor-plan .g-item:hover img {
  transform: none;
}

.floor-plan .g-item .floor {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.floor-plan .g-item:hover .floor {
  transform: scale(1.06);
}

.floor-plan .section-label {
  text-align: center;
  background: #192b18;
  padding: 16px 0;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
}

/*========= Policies CSS START ==========*/
.policy {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
}

.policy .gold-line {
  margin: 28px auto;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.doc-card {
  background: #FFFFFF;
  border: 1px solid #E4DED2;
  border-radius: 20px;
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.doc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #B8963E;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(28, 51, 32, 0.10);
  border-color: #C9A84C;
}

.doc-card:hover::before {
  opacity: 1;
}

.doc-icon-wrap {
  width: 64px;
  height: 64px;
  border: 1px solid #E4DED2;
  border-radius: 50%;
  background: #F9F7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.doc-icon-wrap img {
  width: 40px;
}

.doc-title {
  font-family: 'Cardo-Regular';
  font-size: 22px;
  font-weight: 500;
  color: #1C3320;
  margin: 0 0 32px;
  letter-spacing: 0.01em;
}

.doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid #B8963E;
  border-radius: 4px;
  background: transparent;
  color: #1C3320;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.doc-btn:hover {
  background: #1C3320;
  color: #F9F7F2;
  border-color: #1C3320;
}

/*========= Policies CSS END ==========*/
/* Mobile Menu */
.forest_header.scrolled .b-nav {
  height: 100vh;
}

.forest_header.scrolled .b-bun--top,
.forest_header.scrolled .b-bun--bottom {
  background: #ffffff;
}

.mobile_menu {
  display: flex;
  justify-content: space-between;
  display: none;
}

.mobile-nav {
  display: block;
  z-index: 99999;
}

.menu_img_div img {
  width: 100%;
}

.mobile-nav .b-nav ul li a:hover,
.mobile-nav .b-nav ul li a:focus {
  color: #000000;
  text-decoration: none;
}

.b-brand,
.b-link {
  font-size: 15px;
  line-height: 20px;
  margin-left: 0;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
}

.b-nav {
  background: #faf8f3;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  box-shadow: 0 5px 24px rgba(24, 24, 24, .27);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: opacity .35s ease, clip-path .45s cubic-bezier(.4, 0, .2, 1);
}

.with_add .b-nav {
  top: 63px;
}

.b-nav.open {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition:
    clip-path .45s cubic-bezier(.4, 0, .2, 1), opacity 0s;
}

.b-nav ul {
  margin-bottom: 0;
  padding: 70px 20px;
  width: 100%;
  display: inline-block;
}

.with_add .b-nav ul {
  padding: 70px 20px;
}

.b-nav li {
  list-style-type: none;
  text-align: left;
  position: relative;
  opacity: 0;
  transform: translateY(0);
  will-change: opacity
}

.b-nav.open li {
  opacity: 1;
  transition:
    opacity .6s cubic-bezier(.22, .85, .37, 1);
}

.b-nav.open li:nth-child(1) {
  transition-delay: .14s;
}

.b-nav.open li:nth-child(2) {
  transition-delay: .18s;
}

.b-nav.open li:nth-child(3) {
  transition-delay: .22s;
}

.b-nav.open li:nth-child(4) {
  transition-delay: .26s;
}

.b-nav.open li:nth-child(5) {
  transition-delay: .30s;
}

.b-link {
  background: none;
  color: #000000;
  width: 100%;
  padding: 20px 0;
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  border-bottom: 1px solid #e7e7e7;
  font-family: var(--font-display);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.b-nav li:first-child .b-link {
  padding-top: 0;
}

.mobile-nav ul li:first-child a {
  padding-top: 0;
}

.b-container.open .b-menu {
  position: fixed;
}

.b-menu {
  cursor: pointer;
  display: block;
  height: 20px;
  position: relative;
  width: 30px;
  z-index: 9999;
}

.b-bun--bottom,
.b-bun--mid,
.b-bun--top {
  height: 1px;
  width: 30px;
}

.b-bun {
  background: #ffffff;
  position: relative;
  transition: all .4s ease;
}

.b-bun--top {
  top: 35px;
}

.b-bun--mid {
  top: 5px;
}

.b-bun--bottom {
  top: 45px;
}

.b-container {
  position: absolute;
  right: 20px;
  top: 10px;
  height: 20px;
  width: 30px;
  display: none;
}

.b-container.open .b-bun--top {
  background: #000000;
  top: 38px;
  transform: rotate(45deg);
}

.b-container.open .b-bun--mid {
  opacity: 0;
}

.b-container.open .b-bun--bottom {
  background: #000000;
  top: 37px;
  transform: rotate(-45deg);
}

.b-container.open .b-bun--bottom,
.b-container.open .b-bun--mid,
.b-container.open .b-bun--top {
  width: 18px;
}

.b-nav-lang .b-container-lang {
  display: block;
  position: fixed;
  top: 10px;
  left: 14px;
  z-index: 10000;
}

.with_add .b-nav-lang .b-container-lang {
  top: 75px;
}

.b-nav ul li a span {
  font-size: 28px;
  font-weight: 200;
  margin-right: 10px;
}

.glow-box {
  padding: 20px 40px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-weight: 400;
  background: linear-gradient(#1a2e1a, #1a2e1a) padding-box, linear-gradient(261deg, #ffac0b, #2cca2c, #ffd27a) border-box;
  background-size: 100% 100%, 300% 100%;
  background-position: 0 0, 0 0;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%, 0% 0%;
  }

  100% {
    background-position: 0% 0%, 300% 0%;
  }
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px #c9a84c;
  }

  to {
    box-shadow:
      0 0 10px #c9a84c,
      0 0 20px #c9a84c,
      0 0 40px #c9a84c;
  }
}

/* ═══════════════════════════ MODAL OVERLAY ════════════════════════════*/
#kasul-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px;
  background: rgb(6 16 8 / 0%);
  backdrop-filter: blur(7px) saturate(0.8);
  -webkit-backdrop-filter: blur(14px) saturate(0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#kasul-overlay::before {
  content: '';
  flex: 1 0 24px;
}

#kasul-overlay::after {
  content: '';
  flex: 1 0 24px;
}

#kasul-overlay.is-open {
  opacity: 1;
  visibility: visible;
}


#kasul-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  padding: 48px 44px 44px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
  border: 1px solid #c9a84ce8;
  box-shadow:
    0 0 0 1px rgba(185, 155, 65, 0.10),
    0 0 48px rgba(140, 110, 30, 0.22),
    0 32px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  margin: auto;
  transform: scale(0.90) translateY(12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.36, 0.64, 1), opacity 0.30s ease;
}

#kasul-overlay.is-open #kasul-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

#kasul-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 60, 0.7) 50%, transparent);
  border-radius: 100%;
}

#kasul-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  color: var(--ink-900);
  background: unset;
  border: unset;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

#kasul-close:hover {
  color: var(--ink-900);
}

#kasul-close svg {
  pointer-events: none;
}

.kasul-modal-eyebrow {
  font-family: 'Jost-Regular';
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
  display: block;
}

.kasul-modal-heading {
  font-family: 'CormorantGaramond-Regular';
  font-size: 30px;
  font-weight: 400;
  color: var(--ink-900);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.kasul-modal-sub {
  font-family: 'Cardo-Regular';
  font-size: 15px;
  font-style: italic;
  color: var(--ink-900);
  margin-bottom: 32px;
  line-height: 1.6;
}

.kasul-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(185 155 65 / 91%) 50%, transparent);
  margin-bottom: 32px;
}

#kasul-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kasul-field {
  position: relative;
}

.kasul-field label {
  display: block;
  font-family: 'Jost-Regular';
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 8px;
}

.kasul-field input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.5px;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.kasul-field input::placeholder {
  color: var(--ink-300);
}

.kasul-field input:focus {
  border-color: rgba(200, 168, 60, 0.65);
  box-shadow: 0 0 0 3px rgba(185, 155, 65, 0.10), 0 0 16px rgba(185, 155, 65, 0.08);
}

.kasul-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 168, 60, 0.4), rgba(200, 168, 60, 0.8), rgba(200, 168, 60, 0.4));
  border-radius: 0 0 10px 10px;
  transition: width 0.3s ease, left 0.3s ease;
}

.kasul-field:focus-within::after {
  width: 100%;
  left: 0;
}

.kasul-submit {
  background: unset;
  border: unset;
  margin-top: 20px;
}

.kasul-submit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 48px;
  background: var(--btn-bg);
  color: #ffffff;
  border: 1px solid #fed482;
  border-radius: 999px;
  --btn-bg: var(--gold-500);
  font-family: 'Jost-Regular';
  font-size: 14px;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.kasul-submit span::before {
  content: '';
  position: absolute;
  inset: 0;

  opacity: 0;
  transition: opacity 0.3s;
}

.kasul-submit span:hover {
  border-color: rgba(185, 155, 65, 0.85);
  box-shadow: 0 0 32px rgb(255 201 37 / 35%), inset 0 0 20px rgba(160, 130, 40, 0.08);
}

.kasul-submit span:hover::before {
  opacity: 1;
}

.kasul-submit span:active {
  transform: scale(0.985);
}

#kasul-success {
  display: none;
  text-align: center;
  padding: 16px 0 8px;
}

.kasul-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(185, 155, 65, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(185, 155, 65, 0.08);
}

.kasul-success-icon svg {
  stroke: rgba(200, 168, 60, 0.9);
}

.kasul-success-heading {
  font-family: 'CormorantGaramond-Regular';
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 12px;
}

.kasul-success-text {
  font-family: 'CormorantGaramond-Regular';
  font-size: 16px;
  font-style: italic;
  color: #000000;
  line-height: 1.7;
}


body.kasul-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
}

/* ========== Responsive ========== */
@media (max-width: 1240px) {
  .nav-links {
    gap: 25px;
  }

  .footer-grid {
    gap: 40px;
  }
}

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

  .nav-links a {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .floor-plan .gallery-grid {
    grid-auto-rows: 550px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile_menu {
    display: flex;
  }

  .b-container {
    display: block;
  }

  .mobile_menu .btn-gold {
    color: #000000;
    margin-top: 30px;
    font-weight: 400;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
  }

  .mobile-menu.open {
    max-height: 600px;
    padding-top: 18px;
    padding-bottom: 24px;
  }

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

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

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .about-img img {
    height: 420px;
  }

  .legacy {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .floor-plan .gallery-grid {
    grid-auto-rows: 450px;
  }
}

@media (max-width: 768px) {



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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .tfc-lightbox__inner,
  .tfc-lightbox__img {
    max-width: 67vw;
  }

  .floor-plan .gallery-grid {
    grid-auto-rows: 380px;
  }

  .nav-inner {
    padding: 14px 30px;
  }

  .hero-eyebrow {
    width: 90%;
  }

  .section-head {
    margin: 0 auto 40px;
  }

  .showvilla .rule {
    margin-bottom: 30px;
  }

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

  .footer-grid {
    gap: 30px;
  }

  .hero {
    min-height: 80vh;
  }

  .display {
    font-size: clamp(2.0rem, 5.4vw, 2.5rem);
  }
  .hero-sub{
    margin-bottom: 30px;
  }
  #kasul-modal{
    padding: 20px 16px;
    max-width: 540px;
  }
  .kasul-submit{
    margin-top: 10px;
  }
  .kasul-modal-heading{
    font-size: 20px;
    line-height: 27px;
  }
  .kasul-modal-sub, .kasul-divider{
    margin-bottom: 20px;
  }
  .kasul-modal-sub{
    font-size: 14px;
    line-height: 19px;
  }
  
}

@media (max-width: 640px) {
  :root {
    --section-y: 64px;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .feature-list,
  .lead-form .row,
  .loc-grid,
  .amenity-grid,
  .gallery-grid,
  .floor-plan .gallery-grid {
    grid-template-columns: 1fr;
  }

  .floor-plan .gallery-grid {
    grid-auto-rows: 300px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .g-tall,
  .g-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .lead-form {
    padding: 24px;
  }

  .footer {
    padding-top: 50px;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .amen-header .a-label {
    font-size: 16px;
    line-height: 21px;
  }

  .site-plan .g-item img {
    height: 300px;
  }
}

@media (max-width: 550px) {
  .amenity-section {
    padding: 4rem 1.5rem 3rem;
  }

  .amenity-grid li {
    gap: 0.5rem;
  }

  .hero-logo {
    width: 40%;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .hero-eyebrow {
    width: 100%;
  }

}

@media (max-width: 480px) {

  .tfc-lightbox__inner,
  .tfc-lightbox__img {
    max-width: 50vw;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}