/* ============================================
   VGK Sai Dharmik  Landing Page Styles
   Color palette from logo:
   --forest: #243E1A | --leaf: #5B933E | --gold: #D4B028
   --slate: #5D6D9B | --black: #0a0a0a | --cream: #f8f6f1
   ============================================ */

:root {
  --forest: #243e1a;
  --forest-dark: #1a2e14;
  --leaf: #5b933e;
  --leaf-light: #6fad4d;
  --gold: #d4b028;
  --gold-light: #e8c84a;
  --slate: #5d6d9b;
  --black: #0a0a0a;
  --dark: #121212;
  --cream: #f8f6f1;
  --white: #ffffff;
  --gray-100: #f0ede6;
  --gray-200: #e2ddd4;
  --gray-400: #9a958c;
  --gray-600: #5c5850;
  --shadow-sm: 0 2px 8px rgba(36, 62, 26, 0.08);
  --shadow-md: 0 8px 30px rgba(36, 62, 26, 0.12);
  --shadow-lg: 0 20px 60px rgba(36, 62, 26, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-number: "Outfit", "DM Sans", system-ui, sans-serif;
  --header-h: 76px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--cream);
  overflow-x: hidden;
  font-variant-numeric: lining-nums tabular-nums;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Typography */
.text-accent {
  color: var(--leaf);
}

.num {
  font-family: var(--font-number);
  font-variant-numeric: lining-nums tabular-nums;
}

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__desc {
  font-size: 1.05rem;
  max-width: 640px;
  color: var(--gray-600);
}

.section__header {
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin-inline: auto;
}

.section__cta {
  text-align: center;
  margin-top: 3rem;
}

.section {
  padding: 5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5 rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn--primary:hover {
  background: var(--leaf);
  border-color: var(--leaf);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest-dark);
  border-color: var(--gold);
}

.btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 176, 40, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn--outline-dark:hover {
  background: var(--forest);
  color: var(--white);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 62, 26, 0.12);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.header__logo img {
  height: 42px;
  width: auto;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.5rem;
  flex: 1 1 auto;
  margin-right: 1.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
}

.header__menu a {
  position: relative;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: var(--transition);
}

.header__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.header__menu a:hover {
  color: var(--leaf);
}

.header__menu a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.header__menu-toggle {
  display: none;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
}

.header__phone-icon {
  display: none;
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.header__cta {
  flex-shrink: 0;
  padding-block: 0.42rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: block;
  padding-top: var(--header-h);
  background: var(--black);
  overflow: hidden;
}

.hero__banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero__form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}

.hero__form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* Forms */
.form__group {
  margin-bottom: 1.1rem;
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--forest);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-variant-numeric: lining-nums tabular-nums;
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(91, 147, 62, 0.15);
}

.form__group input.error,
.form__group textarea.error {
  border-color: #c0392b;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.form__consent input {
  margin-top: 3px;
  accent-color: var(--leaf);
  flex-shrink: 0;
}

.form__error {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.3rem;
  min-height: 1rem;
}

/* About */
.section--about {
  background: var(--white);
  padding: 5.5rem 0;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.about__content {
  max-width: 560px;
}

.about__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 1.7rem;
}

.about__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.about__desc {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.07rem;
  line-height: 1.85;
  color: var(--dark);
  margin-bottom: 1.6rem;
}

.about__facts {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.about__facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-number);
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--gray-600);
}

.about__facts span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
}

.about__facts strong {
  color: var(--forest);
  margin-right: 0.25rem;
}

.about__actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.about__actions .btn {
  min-width: 220px;
  border-radius: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(36, 62, 26, 0.12);
}

.about__media {
  position: relative;
  min-height: 430px;
}

.about__image {
  position: absolute;
  width: 47%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 22px 45px rgba(10, 10, 10, 0.18);
  will-change: transform;
}

.about__image--one {
  left: 5%;
  bottom: 0;
  height: 78%;
  animation: aboutFloatLeft 5.5s ease-in-out infinite;
}

.about__image--two {
  right: 0;
  top: 0;
  height: 78%;
  animation: aboutFloatRight 5.5s ease-in-out infinite;
}

@keyframes aboutFloatLeft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-28px);
  }
}

@keyframes aboutFloatRight {
  0%,
  100% {
    transform: translateY(-28px);
  }

  50% {
    transform: translateY(0);
  }
}

/* Highlights */
.section--highlights {
  background: linear-gradient(180deg, var(--cream) 0%, #f5f2eb 100%);
  padding: 7rem 0;
}

.highlights__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4.25rem;
}

.highlights__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.01em;
}

.highlights__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.highlights__top-cta {
  border-radius: 0;
  min-width: 210px;
  padding: 0.9rem 1.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(36, 62, 26, 0.12);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 2.6vw, 2.5rem);
}

.highlight-card {
  background: var(--white);
  min-height: 205px;
  padding: 2.4rem 1.7rem;
  border-radius: 4px;
  border: 1px solid rgba(36, 62, 26, 0.08);
  box-shadow: 0 8px 24px rgba(36, 62, 26, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.highlight-card:hover {
  background: var(--forest);
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(36, 62, 26, 0.2);
}

.highlight-card__icon {
  width: 58px;
  height: 58px;
  color: var(--gold);
  margin-bottom: 1.55rem;
  transition: var(--transition);
}

.highlight-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-card:hover .highlight-card__icon {
  color: var(--white);
  transform: translateY(-4px);
}

.highlight-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--black);
  max-width: 170px;
  transition: var(--transition);
}

.highlight-card:hover h3 {
  color: var(--white);
}

.highlights__mobile-cta {
  display: none;
}

/* Amenities */
.section--amenities {
  background: var(--white);
  color: var(--gray-600);
  padding: 7rem 0;
}

.amenities__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(4rem, 9vw, 8rem);
  align-items: center;
}

.amenities__content {
  max-width: 380px;
}

.amenities__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 5.4vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.amenities__desc {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 1.8rem;
}

.amenities__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.95rem 1.35rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(36, 62, 26, 0.12);
  transition: var(--transition);
}

.amenities__btn::before {
  content: "\25C9";
  margin-right: 0.55rem;
  font-size: 0.72rem;
}

.amenities__btn:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.05rem;
}

.amenity-card {
  min-height: 210px;
  padding: 1.15rem;
  background: var(--cream);
  border: 1px solid rgba(36, 62, 26, 0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(36, 62, 26, 0.05);
}

.amenity-card:hover {
  background: var(--forest);
  transform: translateY(-7px);
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(36, 62, 26, 0.18);
}

.amenity-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(212, 176, 40, 0.35);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.amenity-card:hover img {
  border-color: var(--gold);
  transform: scale(1.05);
}

.amenity-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: var(--transition);
}

.amenity-card:hover h3 {
  color: var(--white);
}

/* Pricing */
.section--pricing {
  background: var(--white);
  padding: 7.5rem 0;
}

.pricing__container {
  max-width: 1040px;
}

.pricing__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: var(--black);
  margin-bottom: 3.5rem;
}

.pricing__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.pricing__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(36, 62, 26, 0.12);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(36, 62, 26, 0.08);
}

.pricing__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing__table th {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  padding: 1.35rem 1.5rem;
}

.pricing__table th + th,
.pricing__table td + td {
  border-left: 1px solid rgba(36, 62, 26, 0.08);
}

.pricing__table td {
  padding: 1.85rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(36, 62, 26, 0.1);
  font-family: var(--font-number);
  font-size: 1.18rem;
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--gray-600);
}

.pricing__table tbody tr:hover {
  background: rgba(91, 147, 62, 0.04);
}

.pricing__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.9rem 1.35rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  font-variant-numeric: lining-nums tabular-nums;
}

.pricing__btn::before {
  content: "\1F512";
  margin-right: 0.55rem;
  font-size: 0.8rem;
}

.pricing__btn:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

/* Floor Plan */
.section--floor-plan {
  background: var(--cream);
  padding: 7rem 0;
}

.floor-plan__top {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px) auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.floor-plan__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
  color: var(--black);
}

.floor-plan__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.floor-plan__intro {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray-600);
}

.floor-plan__arrows {
  display: flex;
  gap: 0.85rem;
}

.floor-plan__arrows button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(36, 62, 26, 0.35);
  background: transparent;
  color: var(--forest);
  font-size: 1.5rem;
  line-height: 1;
}

.floor-plan__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.floor-plan-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 18px 46px rgba(36, 62, 26, 0.12);
  border-radius: 10px;
}

.floor-plan-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: blur(10px);
  transform: scale(1.04);
  transition: var(--transition);
}

.floor-plan-card:hover img {
  filter: blur(10px);
  transform: scale(1.08);
}

.floor-plan-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.78) 100%);
}

.floor-plan-card__btn {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 0.72rem 1.1rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  z-index: 2;
  font-variant-numeric: lining-nums tabular-nums;
}

.floor-plan-card__btn::before {
  content: "\1F512";
  margin-right: 0.45rem;
  font-size: 0.72rem;
}

.floor-plan-card__btn:hover {
  background: var(--forest);
}

.floor-plan-card__content {
  position: absolute;
  left: 2.2rem;
  bottom: 2rem;
  z-index: 2;
  color: var(--white);
}

.floor-plan-card__content h3 {
  font-family: var(--font-number);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.8rem;
  font-variant-numeric: lining-nums tabular-nums;
}

.floor-plan-card__content p {
  position: relative;
  padding-left: 1rem;
  font-family: var(--font-number);
  font-size: 0.92rem;
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  color: rgba(255, 255, 255, 0.86);
}

.floor-plan-card__content p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

/* Facility Tabs */
.section--location {
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 176, 40, 0.12) 0%, transparent 32%),
    linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 52%, #10240e 100%);
  color: var(--white);
  padding: 7rem 0;
}

.location__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.location__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.35rem;
  border: 1px solid rgba(212, 176, 40, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.location__title {
  position: relative;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  padding-bottom: 1.35rem;
}

.location__title em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

.location__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: var(--gold);
  transform: translateX(-50%);
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 2.25rem;
  align-items: start;
}

.location__map {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.location__map iframe {
  width: 100%;
  height: 520px;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}

.facility-tabs {
  display: grid;
  gap: 1.8rem;
}

.facility-tabs__nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
  padding: 0.85rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.facility-tabs__btn {
  min-height: 72px;
  padding: 0.75rem 0.45rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.facility-tabs__btn span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.facility-tabs__btn:hover,
.facility-tabs__btn.active {
  background: var(--cream);
  color: var(--gold);
}

.facility-tabs__panels {
  max-height: 520px;
  overflow-y: auto;
  padding: 2.35rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.facility-panel h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.55rem;
}

.facility-panel__desc {
  color: var(--gray-600);
  margin-bottom: 1.7rem;
}

.facility-list {
  display: grid;
  gap: 1rem;
}

.facility-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--cream);
  border-radius: 10px;
  font-size: 0.95rem;
}

.facility-list span {
  color: var(--black);
  font-weight: 600;
}

.facility-list strong {
  flex: 0 0 auto;
  font-family: var(--font-number);
  font-weight: 800;
  color: var(--gold);
  background: rgba(212, 176, 40, 0.1);
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-variant-numeric: lining-nums tabular-nums;
}

.facility-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.facility-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gallery */
.section--gallery {
  background: var(--white);
  color: var(--gray-600);
  padding: 7rem 0;
}

.gallery__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.gallery__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  font-weight: 500;
  line-height: 1;
  color: var(--black);
}

.gallery__title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.gallery__counter {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--font-number);
  color: rgba(36, 62, 26, 0.48);
  font-variant-numeric: lining-nums tabular-nums;
}

.gallery__counter span:first-child {
  color: var(--forest);
  font-size: 2.25rem;
}

.gallery__counter i {
  width: 54px;
  height: 1px;
  background: rgba(212, 176, 40, 0.45);
}

.gallery-carousel {
  position: relative;
}

.gallery-carousel__stage {
  position: relative;
  height: min(58vw, 560px);
  min-height: 360px;
  overflow: hidden;
  background: var(--black);
}

.gallery-carousel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gallery-carousel__image.active {
  opacity: 1;
  transform: scale(1);
}

.gallery-carousel__arrow {
  position: absolute;
  top: calc(min(58vw, 560px) / 2);
  z-index: 3;
  width: 52px;
  height: 72px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: var(--transition);
}

.gallery-carousel__arrow:hover {
  background: rgba(212, 176, 40, 0.85);
}

.gallery-carousel__arrow--prev {
  left: 0;
}

.gallery-carousel__arrow--next {
  right: 0;
}

.gallery-carousel__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.gallery-carousel__thumb {
  height: 84px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
  overflow: hidden;
  transition: var(--transition);
}

.gallery-carousel__thumb.active,
.gallery-carousel__thumb:hover {
  border-color: var(--gold);
  opacity: 1;
}

.gallery-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.gallery-carousel__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(36, 62, 26, 0.2);
  transition: var(--transition);
}

.gallery-carousel__dots span.active {
  width: 30px;
  background: var(--gold);
}

.floorplan__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  text-align: center;
  margin-bottom: 2rem;
}

.floorplan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.floorplan-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.floorplan-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--leaf);
}

.floorplan-card__visual {
  height: 160px;
  background: linear-gradient(135deg, var(--slate) 0%, #7a8ab5 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.floorplan-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.floorplan-card p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* Developer */
.section--developer {
  background: var(--forest-dark);
  color: var(--white);
}

.section--developer .section__title {
  color: var(--white);
}

.developer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.developer__content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.developer__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(91, 147, 62, 0.25);
  border-radius: var(--radius-md);
}

.stat-card__number {
  display: inline;
  font-family: var(--font-number);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  font-variant-numeric: lining-nums tabular-nums;
}

.stat-card__suffix {
  font-family: var(--font-number);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: lining-nums tabular-nums;
}

.stat-card__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}

/* Contact */
.section--contact {
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info p {
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.contact__item a {
  color: var(--leaf);
  transition: color var(--transition);
  font-family: var(--font-number);
  font-variant-numeric: lining-nums tabular-nums;
}

.contact__item a:hover {
  color: var(--forest);
}

.contact__form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--leaf);
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 1.5rem;
}

.footer__top {
  text-align: center;
  margin-bottom: 2rem;
}

.footer__logo {
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.footer__rera {
  font-size: 0.88rem;
  color: var(--gold);
  font-family: var(--font-number);
  font-variant-numeric: lining-nums tabular-nums;
}

.footer__disclaimer {
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  font-family: var(--font-number);
  font-variant-numeric: lining-nums tabular-nums;
}

.footer__bottom a:hover {
  color: var(--leaf-light);
}

.fixed-contact-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.fixed-brochure-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(36, 62, 26, 0.25);
  transition: var(--transition);
}

.fixed-brochure-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(36, 62, 26, 0.32);
}

.fixed-contact-actions__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(36, 62, 26, 0.25);
  transition: var(--transition);
  animation: callJump 1.4s ease-in-out infinite;
}

.fixed-contact-actions__icon:hover {
  animation-play-state: paused;
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(36, 62, 26, 0.32);
}

.fixed-contact-actions__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

@keyframes callJump {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(-5px);
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

.modal__content--form {
  max-width: 460px;
  text-align: left;
}

.modal__content--form h3,
.modal__content--form p {
  text-align: center;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
}

.modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--forest) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.modal__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.modal__content p {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

/* Responsive */
@media (max-width: 1024px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__content {
    max-width: 720px;
  }

  .about__media {
    min-height: 460px;
    max-width: 720px;
    width: 100%;
  }

  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .amenities__content {
    max-width: 620px;
  }

  .amenities__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .developer__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .floor-plan__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .floor-plan__intro {
    max-width: 620px;
  }

  .floor-plan__arrows {
    display: none;
  }

  .location__grid {
    grid-template-columns: 1fr;
  }

  .location__map {
    position: relative;
    top: auto;
  }

  .location__map,
  .location__map iframe {
    min-height: 420px;
    height: 420px;
  }

  .facility-tabs__panels {
    max-height: 560px;
  }

  .gallery-carousel__stage {
    height: 460px;
  }

  .floorplan__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 92px;
  }

  .header__inner {
    gap: 0.75rem;
  }

  .header__logo img {
    height: 34px;
  }

  .header__actions {
    gap: 0.5rem;
  }

  .header__phone {
    font-size: 0.82rem;
  }

  .header__cta {
    padding: 0.42rem 0.85rem;
    font-size: 0.7rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .highlights__grid {
    grid-template-columns: 1fr;
  }

  .about__title {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .about__actions .btn {
    min-width: 190px;
  }

  .highlights__top {
    align-items: flex-start;
  }

  .amenities__grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenity-card {
    min-height: 190px;
  }

  .section--location {
    padding: 5rem 0;
  }

  .facility-tabs__nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .facility-tabs__panels {
    padding: 1.5rem;
  }

  .gallery__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-carousel__stage {
    min-height: 300px;
    height: 54vw;
  }

  .gallery-carousel__thumbs {
    gap: 0.45rem;
  }

  .gallery-carousel__thumb {
    height: 64px;
  }

  .developer__stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

}

@media (max-width: 480px) {
  :root {
    --header-h: 128px;
  }

  .header__inner {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0.55rem 0;
  }

  .header__actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .fixed-contact-actions {
    right: 1rem;
    bottom: 1rem;
    gap: 0.5rem;
  }

  .fixed-brochure-btn {
    padding: 0.78rem 1rem;
    font-size: 0.68rem;
  }

  .fixed-contact-actions__icon {
    width: 42px;
    height: 42px;
  }

  .fixed-contact-actions__icon img {
    width: 23px;
    height: 23px;
  }

  .about__media {
    display: grid;
    gap: 1rem;
    min-height: 0;
  }

  .about__image {
    position: static;
    width: 100%;
    height: 260px;
    min-height: 0;
    animation: none;
    transform: none;
  }

  .about__actions .btn {
    width: 100%;
  }

  .highlights__top {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
  }

  .highlights__top-cta {
    display: none;
  }

  .highlights__grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: 180px;
  }

  .highlights__mobile-cta {
    display: block;
    margin-top: 2rem;
  }

  .highlights__mobile-cta .btn {
    width: 100%;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .section--pricing {
    padding: 5rem 0;
  }

  .pricing__title {
    margin-bottom: 2.4rem;
  }

  .pricing__table {
    min-width: 660px;
  }

  .section--floor-plan {
    padding: 4.5rem 0;
  }

  .location__map,
  .location__map iframe {
    min-height: 340px;
    height: 340px;
  }

  .facility-tabs__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-tabs__btn {
    min-height: 62px;
  }

  .facility-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .floor-plan__grid {
    grid-template-columns: 1fr;
  }

  .floor-plan-card,
  .floor-plan-card img {
    min-height: 330px;
  }

  .amenities__grid {
    grid-template-columns: 1fr;
  }

  .section--amenities {
    padding: 4.5rem 0;
  }

  .amenities__title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .amenity-card {
    min-height: 185px;
  }

  .section--gallery {
    padding: 4.5rem 0;
  }

  .gallery__counter span:first-child {
    font-size: 1.75rem;
  }

  .gallery-carousel__stage {
    height: 300px;
    min-height: 300px;
  }

  .gallery-carousel__arrow {
    width: 42px;
    height: 58px;
    font-size: 1.8rem;
  }

  .gallery-carousel__thumbs {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
    overflow-x: auto;
  }

  .gallery-carousel__thumb {
    height: 56px;
  }

}

/* Desktop/mobile phone icon visibility fix */
.header__phone-icon { display: none !important; }
.header__phone span { display: inline !important; }
@media (max-width: 640px) {
  .header__phone-icon { display: block !important; }
  .header__phone span { display: none !important; }
}

/* Header menu responsive refinements */
@media (max-width: 900px) {
  .header__menu {
    gap: 0.9rem;
    margin-right: 0.7rem;
  }

  .header__menu a {
    font-size: 0.78rem;
  }

  .header__cta {
    padding: 0.38rem 0.75rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 96px !important; }

  .header, .header__inner { height: var(--header-h) !important; }

  .header__inner {
    flex-wrap: wrap !important;
    align-content: center !important;
    row-gap: 0.45rem !important;
  }

  .header__logo { order: 1; }
  .header__actions { order: 2; }
  .header__menu {
    order: 3;
    flex: 0 0 100% !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin-right: 0 !important;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .header__menu a {
    font-size: 0.68rem !important;
  }

  .header__cta {
    padding: 0.32rem 0.62rem !important;
    font-size: 0.56rem !important;
  }

  .hero { padding-top: var(--header-h) !important; }
}

@media (max-width: 380px) {
  :root { --header-h: 100px !important; }
  .header__menu { gap: 0.75rem !important; }
  .header__menu a { font-size: 0.62rem !important; }
  .header__cta { padding: 0.3rem 0.52rem !important; font-size: 0.52rem !important; }
}

/* Final mobile layout overrides */
@media (max-width: 640px) {
  :root {
    --header-h: 66px !important;
  }

  .header,
  .header__inner {
    height: var(--header-h) !important;
  }

  .header__inner {
    position: relative;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    padding-block: 0 !important;
  }

  .header__logo {
    order: 1;
    flex: 0 0 auto;
  }

  .header__logo img {
    height: 30px !important;
    width: auto !important;
  }

  .header__actions {
    order: 2;
    width: auto !important;
    flex: 0 0 auto;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0.4rem !important;
  }

  .header__menu-toggle {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(212, 176, 40, 0.45);
    border-radius: 50%;
    background: rgba(212, 176, 40, 0.12);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
  }

  .header__menu-toggle span {
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transition: var(--transition);
  }

  .header__menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .header__menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .header__menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header__cta {
    min-width: auto !important;
    padding: 0.34rem 0.58rem !important;
    font-size: 0.55rem !important;
    line-height: 1 !important;
  }

  .header__menu {
    order: 3;
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    width: min(220px, calc(100vw - 2rem)) !important;
    margin-right: 0 !important;
    padding: 0.7rem;
    display: none;
    flex: 0 0 auto !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start !important;
    gap: 0.25rem !important;
    overflow: visible;
    border: 1px solid rgba(36, 62, 26, 0.12);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(36, 62, 26, 0.18);
  }

  .header__menu.open {
    display: flex;
  }

  .header__menu a {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    font-size: 0.78rem !important;
    text-align: left;
  }

  .header__menu a:hover,
  .header__menu a.active {
    background: rgba(212, 176, 40, 0.12);
  }

  .hero {
    padding-top: var(--header-h) !important;
  }

  .about__layout {
    grid-template-columns: 1fr !important;
  }

  .about__media {
    display: none !important;
  }

  .pricing__table-wrap {
    overflow-x: visible !important;
  }

  .pricing__table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed;
  }

  .pricing__table th,
  .pricing__table td {
    padding: 0.85rem 0.35rem !important;
    font-size: 0.72rem !important;
    line-height: 1.25;
    word-break: normal;
  }

  .pricing__btn {
    width: 100%;
    min-width: 0;
    padding: 0.52rem 0.2rem;
    font-size: 0.56rem;
    letter-spacing: 0.02em;
  }

  .pricing__btn::before {
    display: none;
  }

  .facility-tabs__nav {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0.18rem !important;
    padding: 0.35rem !important;
    border-radius: 12px;
  }

  .facility-tabs__btn {
    min-height: 42px !important;
    padding: 0.38rem 0.12rem !important;
    border-radius: 8px;
  }

  .facility-tabs__btn span {
    font-size: clamp(0.38rem, 1.65vw, 0.5rem) !important;
    line-height: 1.05;
    letter-spacing: 0 !important;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  :root {
    --header-h: 62px !important;
  }

  .header__logo img {
    height: 26px !important;
  }

  .header__menu-toggle {
    width: 31px;
    height: 31px;
  }

  .header__cta {
    padding: 0.3rem 0.48rem !important;
    font-size: 0.5rem !important;
  }

  .pricing__table th,
  .pricing__table td {
    padding-inline: 0.22rem !important;
    font-size: 0.66rem !important;
  }

  .pricing__btn {
    font-size: 0.5rem;
  }
}
