:root {
  --bg: #f4f2ee;
  --surface: #ffffff;
  --text: #1f2520;
  --muted: #556158;
  --brand: #7a5b2f;
  --brand-deep: #5f4623;
  --accent: #d8c19a;
  --line: #ddd5ca;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(33, 30, 24, 0.08);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #f2e8d9, #f4f2ee 35%) no-repeat, var(--bg);
  line-height: 1.55;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: #000;
  border-bottom: 1px solid #1f1f1f;
}

body {
  padding-top: 112px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0 0.65rem;
  border-bottom: 1px solid #3b3b3b;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: clamp(1.7rem, 4vw, 3rem);
  color: #d0b15b;
  line-height: 1;
}

.brand-tag {
  color: #d0b15b;
  font-size: 0.74rem;
  letter-spacing: 0.48em;
  margin-top: 0.5rem;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 1px solid #4a4a4a;
  padding-left: 1rem;
}

.top-contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.phone {
  color: #d6d6d6;
  font-size: 22px;
  font-weight: 600;
}

.mail {
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.4rem);
}

.whatsapp-mark {
  width: 42px;
  height: 42px;
  border: 2px solid #25d366;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.main-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: end;
  position: relative;
  padding: 0.7rem 0;
}

.main-nav a {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.main-nav a.active,
.main-nav a:hover {
  color: #d0b15b;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 270px;
  background: #000;
  border: 1px solid #222;
  z-index: 40;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #2b2b2b;
}

.dd-icon {
  color: #d0b15b;
  font-size: 0.82rem;
  line-height: 1;
}

.caret {
  font-size: 0.72em;
  vertical-align: middle;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.dropdown-menu a:hover {
  background: #0e0e0e;
  color: #d0b15b;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

.header-video {
  position: relative;
  margin-top: 0;
  border-top: 1px solid #222;
  overflow: hidden;
  min-height: 640px;
}

.header-video-media {
  display: block;
  width: 100%;
  height: 640px;
  object-fit: cover;
  opacity: 0.75;
}

.header-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.25));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1.5rem;
}

.header-video-overlay h2 {
  margin: 0;
  font-size: clamp(1.3rem, 3.2vw, 2.7rem);
}

.header-video-overlay p {
  margin: 0;
  max-width: 60ch;
  color: #e6e6e6;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-card {
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem;
  background: linear-gradient(135deg, rgba(89, 67, 35, 0.95), rgba(133, 101, 57, 0.95));
  color: #fff;
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0 0 0.8rem;
  line-height: 1.15;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.hero p {
  max-width: 60ch;
  margin: 0;
  color: #f2ebe2;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.mission-section {
  background: #ededed;
  padding: 4.5rem 0;
}

.mission-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.mission-content {
  max-width: 520px;
}

.mission-kicker {
  margin: 0 0 0.4rem;
  color: #b88e5d;
  font-size: 1.6rem;
}

.mission-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.1;
}

.mission-content p {
  margin: 0 0 1.2rem;
  color: #565656;
  font-size: 1.02rem;
}

.mission-btn {
  display: inline-block;
  background: #222831;
  color: #fff;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
}

.mission-visual {
  display: flex;
  justify-content: center;
}

.mission-frame {
  background: #c9b070;
  padding: 1.6rem 1.6rem 1.9rem;
  max-width: 520px;
  width: 100%;
}

.mission-frame img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.why-section {
  background: #ededed;
  padding: 2.4rem 0 3rem;
}

.why-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.why-kicker {
  margin: 0;
  text-align: center;
  color: #b88e5d;
  letter-spacing: 0.03em;
}

.why-wrap h2 {
  margin: 0.2rem 0 1.4rem;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
}

.why-list {
  border-top: 1px solid #c6a577;
}

.why-item {
  position: relative;
  padding: 1rem 0 0.9rem 1.35rem;
  border-bottom: 1px solid #c6a577;
}

.why-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 3px solid #b88e5d;
  position: absolute;
  left: 0;
  top: 1.22rem;
}

.why-item h3 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  font-weight: 500;
}

.why-item p {
  margin: 0;
  color: #585858;
  font-size: 0.92rem;
}

.experience-section {
  background: #ededed;
  padding: 2.5rem 0 3.2rem;
}

.experience-wrap {
  text-align: center;
}

.experience-kicker {
  margin: 0;
  color: #b88e5d;
  letter-spacing: 0.04em;
}

.experience-wrap h2 {
  margin: 0.35rem 0 1.8rem;
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 500;
}

.experience-wrap h2 span {
  color: #9b9b9b;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto;
}

.experience-item {
  padding: 0.6rem 0.4rem;
}

.experience-icon {
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.experience-icon svg {
  width: 38px;
  height: 38px;
  fill: #111;
}

.experience-value {
  margin-top: 0.4rem;
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  font-weight: 700;
}

.experience-item p {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: #8f8f8f;
  letter-spacing: 0.05em;
}

.services-section {
  background: #ededed;
  padding: 1rem 0 3rem;
}

.services-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.services-kicker {
  margin: 0;
  text-align: center;
  color: #b88e5d;
}

.services-wrap h2 {
  margin: 0.25rem 0 1.3rem;
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-card {
  border: 1px solid #c6a577;
  padding: 1rem;
  min-height: 255px;
}

.service-icon {
  margin-bottom: 0.5rem;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: #b88e5d;
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.1rem, 1.6vw, 1.9rem);
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: #5f5f5f;
  font-size: 0.88rem;
  line-height: 1.65;
}

.pricing-section {
  background: #ededed;
  padding: 1.4rem 0 3.5rem;
}

.pricing-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.pricing-kicker {
  margin: 0;
  text-align: center;
  color: #b88e5d;
}

.pricing-wrap h2 {
  margin: 0.25rem 0 1.5rem;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.pricing-card {
  grid-column: span 2;
  background: #f7f7f7;
  border-radius: 6px;
  text-align: center;
  padding: 1.5rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  animation: pricingUp 650ms ease both;
}

.pricing-card:nth-child(2) {
  animation-delay: 80ms;
}

.pricing-card:nth-child(3) {
  animation-delay: 160ms;
}

.pricing-card:nth-child(4) {
  animation-delay: 240ms;
}

.pricing-card:nth-child(5) {
  animation-delay: 320ms;
}

.pricing-card:hover {
  background: #D1B371;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.pricing-card h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-weight: 500;
}

.pricing-card h3 span {
  font-size: 0.56em;
}

.pricing-meta {
  margin: 0 0 0.2rem;
  color: #444;
  font-size: 0.82rem;
}

.pricing-value {
  margin: 0;
  font-size: 0.9rem;
}

.pricing-card-wide {
  grid-column: span 3;
}

@keyframes pricingUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-section {
  background: #ededed;
  padding: 1.2rem 0 3rem;
}

.team-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.team-kicker {
  margin: 0 0 1.6rem;
  text-align: center;
  color: #b88e5d;
  letter-spacing: 0.03em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 760px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-card img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.team-card h3 {
  margin: 0.55rem 0 0;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.kharar-section {
  background: #ededed;
  padding: 1.2rem 0 3rem;
}

.kharar-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.kharar-content h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.kharar-content p {
  margin: 0 0 0.95rem;
  color: #3e3e3e;
  font-size: 0.92rem;
  line-height: 1.7;
}

.kharar-content a {
  color: #b88e5d;
  text-decoration: underline;
}

.kharar-visual img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.about-founder-section {
  background: #ededed;
  padding: 1.4rem 0 3rem;
}

.about-founder-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.about-founder-image img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-founder-kicker {
  margin: 0;
  color: #b88e5d;
}

.about-founder-content h2 {
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  line-height: 1.1;
}

.about-founder-content p {
  margin: 0 0 1rem;
  color: #5d5d5d;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-founder-content a {
  color: #b88e5d;
  text-decoration: underline;
}

.about-founder-content blockquote {
  margin: 0 0 1.2rem;
  color: #6a6a6a;
  font-style: italic;
  line-height: 1.55;
}

.about-founder-dot {
  display: inline-block;
  width: 14px;
  height: 6px;
  border-radius: 999px;
  background: #de4c2e;
}

.about-director-section {
  background: #ededed;
  padding: 0.3rem 0 3rem;
}

.about-director-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.about-director-content h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.about-director-sub {
  margin: 0.25rem 0 0.65rem;
  color: #4f4f4f;
  font-style: italic;
}

.about-director-content p {
  margin: 0 0 0.75rem;
  color: #5d5d5d;
  font-size: 0.92rem;
  line-height: 1.6;
}

.about-director-content blockquote {
  margin: 0.8rem 0 1rem;
  color: #6a6a6a;
  font-style: italic;
  line-height: 1.6;
}

.about-director-image img {
  display: block;
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.about-leadership-box {
  max-width: 980px;
  margin: 1.4rem auto 0;
  background: #e4e4e4;
  padding: 1.1rem;
}

.about-leadership-box h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.about-leadership-box p {
  margin: 0 0 0.4rem;
  color: #5f5f5f;
  font-size: 0.88rem;
}

.about-leadership-box a {
  color: #b88e5d;
  text-decoration: underline;
}

.onebhk-section {
  background: #ededed;
  padding: 1.2rem 0 3rem;
}

.onebhk-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.onebhk-gallery {
  display: grid;
  grid-template-columns: 2.15fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.onebhk-main-image img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.onebhk-side-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
}

.onebhk-side-images img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.onebhk-content p {
  margin: 0 0 0.85rem;
  color: #505050;
  font-size: 0.9rem;
  line-height: 1.65;
}

.onebhk-content h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.12;
}

.onebhk-content a {
  color: #b88e5d;
  text-decoration: underline;
}

.onebhk-features {
  margin-top: 1.4rem;
  border-top: 1px solid #6f6f6f;
  padding-top: 0.8rem;
}

.onebhk-features h2,
.onebhk-nearby h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.15;
}

.onebhk-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.onebhk-feature-grid ul,
.onebhk-nearby ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.onebhk-feature-grid li,
.onebhk-nearby li {
  margin-bottom: 0.28rem;
  color: #4f4f4f;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.onebhk-feature-grid li::before,
.onebhk-nearby li::before {
  content: "\2713";
  color: #c49b5f;
  position: absolute;
  left: 0;
}

.onebhk-nearby {
  margin-top: 1.2rem;
}

.twobhk-section {
  background: #ededed;
  padding: 1.2rem 0 3rem;
}

.twobhk-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.twobhk-gallery {
  display: grid;
  grid-template-columns: 2.15fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.twobhk-main-image img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.twobhk-side-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
}

.twobhk-side-images img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.twobhk-content p {
  margin: 0 0 0.85rem;
  color: #505050;
  font-size: 0.9rem;
  line-height: 1.65;
}

.twobhk-content h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.12;
}

.twobhk-content a {
  color: #b88e5d;
  text-decoration: underline;
}

.twobhk-features {
  margin-top: 1.3rem;
  border-top: 1px solid #6f6f6f;
  padding-top: 0.8rem;
}

.twobhk-features h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.15;
}

.twobhk-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.twobhk-feature-grid li {
  margin-bottom: 0.28rem;
  color: #4f4f4f;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.twobhk-feature-grid li::before {
  content: "\2713";
  color: #c49b5f;
  position: absolute;
  left: 0;
}

.threebhk-section {
  background: #ededed;
  padding: 1.2rem 0 3rem;
}

.threebhk-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.threebhk-gallery {
  display: grid;
  grid-template-columns: 2.15fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.threebhk-main-image img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.threebhk-side-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
}

.threebhk-side-images img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.threebhk-content p {
  margin: 0 0 0.85rem;
  color: #505050;
  font-size: 0.9rem;
  line-height: 1.65;
}

.threebhk-content h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.12;
}

.threebhk-content a {
  color: #b88e5d;
  text-decoration: underline;
}

.threebhk-features {
  margin-top: 1.3rem;
  border-top: 1px solid #6f6f6f;
  padding-top: 0.8rem;
}

.threebhk-features h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.15;
}

.threebhk-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.threebhk-feature-grid li {
  margin-bottom: 0.28rem;
  color: #4f4f4f;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.threebhk-feature-grid li::before {
  content: "\2713";
  color: #c49b5f;
  position: absolute;
  left: 0;
}

.sixbhk-section {
  background: #ededed;
  padding: 1.2rem 0 3rem;
}

.sixbhk-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.sixbhk-gallery {
  display: grid;
  grid-template-columns: 2.15fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.sixbhk-main-image img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
}

.sixbhk-side-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
}

.sixbhk-side-images img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sixbhk-content p {
  margin: 0 0 0.85rem;
  color: #505050;
  font-size: 0.9rem;
  line-height: 1.65;
}

.sixbhk-content h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.12;
}

.sixbhk-content a {
  color: #b88e5d;
  text-decoration: underline;
}

.sixbhk-features {
  margin-top: 1.3rem;
  border-top: 1px solid #6f6f6f;
  padding-top: 0.8rem;
}

.sixbhk-features h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.15;
}

.sixbhk-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.sixbhk-feature-grid li {
  margin-bottom: 0.28rem;
  color: #4f4f4f;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.sixbhk-feature-grid li::before {
  content: "\2713";
  color: #c49b5f;
  position: absolute;
  left: 0;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: #f8f2e8;
  color: #4e3a1b;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.section {
  padding: 1.2rem 0 2.7rem;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.section-lead {
  margin-top: 0;
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0.1rem 0 0.45rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.meta {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.list {
  padding-left: 1rem;
  margin: 0;
}

.list li {
  margin-bottom: 0.3rem;
}

.form-row {
  display: grid;
  gap: 0.8rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbc2b5;
  background: #fff;
  border-radius: 10px;
  padding: 0.66rem 0.72rem;
  font: inherit;
}

textarea {
  min-height: 130px;
}

.site-footer {
  margin-top: 2rem;
  background: #000;
  color: #fff;
  padding-top: 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.25fr 0.9fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  color: #d0b15b;
  line-height: 1;
}

.footer-brand-tag {
  color: #d0b15b;
  font-size: 0.72rem;
  letter-spacing: 0.48em;
  margin-top: 0.4rem;
}

.footer-about {
  margin: 1rem 0 0;
  color: #b0b0b0;
  max-width: 30ch;
}

.footer-title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: #b9b9b9;
}

.footer-contact-list a {
  color: #d4b66b;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: #d2d2d2;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: #d0b15b;
}

.footer-map {
  border: 1px solid #2c2c2c;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #474747;
  padding: 1.1rem 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #8f8f8f;
}

.footer-contact-chip {
  background: #f2f2f2;
  color: #222;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 600;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 200;
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 12px;
  padding: 1.1rem 1rem 1rem;
  position: relative;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
}

.contact-modal-close {
  position: absolute;
  right: 0.6rem;
  top: 0.4rem;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  color: #444;
}

.contact-modal-kicker {
  margin: 0;
  color: #b88e5d;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.contact-modal-card h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.contact-modal-text {
  margin: 0 0 0.8rem;
  color: #5c5c5c;
  font-size: 0.92rem;
}

.contact-modal-form {
  display: grid;
  gap: 0.55rem;
}

.contact-modal-btn {
  border: 0;
  background: #d1b371;
  color: #111;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
}

.contact-modal-btn:hover {
  background: #c7a35b;
}

@media (max-width: 920px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  body {
    padding-top: 145px;
  }

  .header-top {
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
  }

  .top-contact {
    border-left: 0;
    padding-left: 0;
  }

  .top-contact-text {
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 1rem;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    margin-top: 0.45rem;
  }

  .header-video,
  .header-video-media {
    min-height: 420px;
    height: 420px;
  }

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

  .mission-wrap {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .mission-frame img {
    height: 280px;
  }

  .why-item {
    padding-left: 1.1rem;
  }

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

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

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

  .pricing-card,
  .pricing-card-wide {
    grid-column: span 1;
  }

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

  .team-card img {
    height: 360px;
  }

  .kharar-wrap {
    grid-template-columns: 1fr;
  }

  .kharar-visual img {
    height: 300px;
  }

  .about-founder-wrap {
    grid-template-columns: 1fr;
  }

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

  .about-director-wrap {
    grid-template-columns: 1fr;
  }

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

  .onebhk-gallery {
    grid-template-columns: 1fr;
  }

  .onebhk-main-image img {
    height: 300px;
  }

  .onebhk-side-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .onebhk-side-images img {
    height: 170px;
  }

  .onebhk-feature-grid {
    grid-template-columns: 1fr;
  }

  .twobhk-gallery {
    grid-template-columns: 1fr;
  }

  .twobhk-main-image img {
    height: 300px;
  }

  .twobhk-side-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .twobhk-side-images img {
    height: 170px;
  }

  .twobhk-feature-grid {
    grid-template-columns: 1fr;
  }

  .threebhk-gallery {
    grid-template-columns: 1fr;
  }

  .threebhk-main-image img {
    height: 300px;
  }

  .threebhk-side-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .threebhk-side-images img {
    height: 170px;
  }

  .threebhk-feature-grid {
    grid-template-columns: 1fr;
  }

  .sixbhk-gallery {
    grid-template-columns: 1fr;
  }

  .sixbhk-main-image img {
    height: 300px;
  }

  .sixbhk-side-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .sixbhk-side-images img {
    height: 170px;
  }

  .sixbhk-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card {
    animation: none;
    transition: none;
  }
}
