@font-face {
  font-family: "Matter";
  src: url("https://www.sunteckindia.com/fonts/Matter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("https://www.sunteckindia.com/fonts/Matter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("https://www.sunteckindia.com/fonts/Matter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --sunteck-black: #17191c;
  --sunteck-deep: #f7f3ee;
  --sunteck-text: #1d2125;
  --sunteck-muted: #5d636a;
  --sunteck-cream: #f8f5f1;
  --sunteck-gold: #d5812a;
  --sunteck-gold-dark: #b76815;
  --sunteck-line: rgba(18, 18, 18, 0.08);
  --sunteck-shadow: rgba(17, 19, 20, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Matter", "Segoe UI", sans-serif;
  background: var(--sunteck-cream);
  color: var(--sunteck-text);
  line-height: 1.6;
  padding-bottom: 90px;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(17, 18, 20, 0.06);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--sunteck-black);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(213, 129, 42, 0.9);
  background: rgba(213, 129, 42, 0.08);
  color: var(--sunteck-gold);
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.brand-text {
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--sunteck-text);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: var(--sunteck-gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sunteck-gold);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(213, 129, 42, 0.25);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(17, 18, 20, 0.15);
  color: var(--sunteck-text);
}

.nav-button {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(245,240,232,0.9)), url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 13, 15, 0.44), rgba(12, 13, 15, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 4rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sunteck-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sunteck-gold-dark);
}

.hero h1,
.section-header h2,
.intro h2,
.cta-box h2 {
  margin: 0;
  font-family: "Matter", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 620px;
}

.subtext {
  max-width: 560px;
  margin-top: 1.2rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: end;
}

.intro h2,
.section-header h2,
.cta-box h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: #101114;
}

.intro-copy {
  color: var(--sunteck-muted);
  font-size: 1.05rem;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 1rem;
}

.stats {
  background: #111417;
  color: #ffffff;
}

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

.stats-grid div {
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.stats-grid strong {
  display: block;
  color: var(--sunteck-gold);
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.projects {
  background: #f3efe9;
}

.section-header {
  margin-bottom: 2rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--sunteck-line);
  padding: 2rem 1.6rem;
  box-shadow: 0 18px 34px rgba(17, 18, 20, 0.05);
}

.project-card.highlight {
  background: linear-gradient(180deg, #11151a 0%, #1a2026 100%);
  color: #ffffff;
}

.project-tag {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  background: rgba(213, 129, 42, 0.12);
  border: 1px solid rgba(213, 129, 42, 0.35);
  color: var(--sunteck-gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 1rem 0 0.7rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-family: "Matter", "Segoe UI", sans-serif;
  font-weight: 600;
}

.project-card p {
  margin: 0;
  color: inherit;
  opacity: 0.82;
}

.project-card ul {
  margin: 1.3rem 0 1.8rem;
  padding-left: 1.2rem;
  color: inherit;
  opacity: 0.9;
}

.project-card li + li {
  margin-top: 0.45rem;
}

.amenities {
  background: #f4efe8;
  color: var(--sunteck-text);
}

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

.amenity-item {
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.58);
  padding: 1.5rem 1.2rem;
}

.amenity-item span {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sunteck-gold);
}

.amenity-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-family: "Matter", "Segoe UI", sans-serif;
  font-weight: 600;
}

.amenity-item p {
  margin: 0;
  color: var(--sunteck-muted);
}

.cta-section {
  background: #f3efe9;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--sunteck-line);
  background: rgba(255, 255, 255, 0.55);
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--sunteck-text);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
}

.sticky-cta-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.sticky-cta .btn {
  width: 100%;
  min-height: 52px;
  border-radius: 0;
}

.sticky-quote-btn {
  border-color: rgba(213, 129, 42, 0.65) !important;
  color: var(--sunteck-text) !important;
  background: rgba(213, 129, 42, 0.04) !important;
}

.open-drawer-btn {
  cursor: pointer;
  border: 1px solid transparent;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 12, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 35;
}

.drawer-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.bottom-drawer {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 110%);
  width: min(540px, calc(100% - 1rem));
  background: #fffdfb;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.16);
  padding: 1.2rem 1rem 1.4rem;
  z-index: 40;
  transition: transform 0.28s ease;
}

.bottom-drawer.is-open {
  transform: translate(-50%, 0);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.drawer-header h3 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #111214;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: #f5f1ea;
  color: #111214;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1b1d;
}

.lead-form input {
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: #ffffff;
  min-height: 52px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: #111214;
  border-radius: 10px;
}

.lead-form input:focus {
  outline: 2px solid rgba(213, 129, 42, 0.2);
  border-color: rgba(213, 129, 42, 0.6);
}

.full-width-btn {
  width: 100%;
  margin-top: 0.4rem;
}

.site-footer {
  background: var(--sunteck-deep);
  padding:1rem 0;
}

.footer-inner {
  display: flex;
  justify-content: center;
  text-align: center; color: #101114;
}

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

  .intro-grid,
  .project-grid,
  .amenity-grid,
  .cta-box,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 520px;
  }
}

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

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .bottom-drawer {
    width: min(100%, calc(100% - 0.75rem));
    padding-bottom: 1.1rem;
  }
}
