:root {
  --ink: #172326;
  --muted: #5d6b70;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --line: #ddd7cc;
  --forest: #0f5d4c;
  --teal: #157f7a;
  --copper: #b75b34;
  --gold: #e7b84f;
  --sky: #dcebea;
  --charcoal: #1b2c30;
  --shadow: 0 22px 54px rgba(23, 35, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(221, 215, 204, 0.8);
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--teal));
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(21, 127, 122, 0.08);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  align-items: end;
  padding: clamp(30px, 5vw, 72px);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 20, 21, 0.84), rgba(9, 20, 21, 0.38) 57%, rgba(9, 20, 21, 0.08)),
    url("../Asset/Image/Building photo-1.JPG") center / cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 28%;
  content: "";
  background: linear-gradient(transparent, var(--paper));
}

.hero-content {
  width: min(760px, 100%);
  margin-bottom: clamp(130px, 18vh, 190px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p,
dd {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.15rem, 8vw, 7.15rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 12px 26px rgba(15, 93, 76, 0.24);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.quick-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 56px);
  width: min(460px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: #fff;
  background: rgba(23, 35, 38, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 880;
  line-height: 1;
}

.quick-copy {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.quick-stats,
.contact-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.quick-stats div,
.contact-points div {
  padding: 12px;
  border-radius: 8px;
}

.quick-stats div {
  background: rgba(255, 255, 255, 0.12);
}

dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.quick-card dt {
  color: rgba(255, 255, 255, 0.62);
}

dd {
  margin: 5px 0 0;
  font-size: 1.03rem;
  font-weight: 820;
}

section:not(.hero) {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: 28px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.section-heading-action {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.whatsapp-button {
  gap: 10px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
  white-space: nowrap;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #1fb858;
  outline: none;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.location-grid,
.gallery-shell,
.highlights,
.contact,
.spaces {
  max-width: 1180px;
  margin-inline: auto;
}

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

.location-grid article,
.highlight-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.metric {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 850;
}

.location-grid p,
.split-copy p,
.feature-list p,
.highlight-grid p,
.contact-copy p,
.site-footer p,
.gallery-view figcaption,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.spaces {
  /*display: grid;*/
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-media img {
  width: 100%;
  min-height: 560px;
  max-height: 720px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-copy > p {
  /*max-width: 640px;*/
  margin: 22px 0 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 850;
}

.feature-list p {
  margin: 0;
}

.gallery-section {
  background: var(--sky);
}

.gallery-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.gallery-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.gallery-control {
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(15, 93, 76, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 780;
  text-align: left;
  cursor: pointer;
}

.gallery-control.is-active {
  color: #fff;
  background: var(--forest);
}

.gallery-view {
  margin: 0;
}

.gallery-view img {
  width: 100%;
  height: min(68vh, 660px);
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  background: #d7d1c8;
  box-shadow: var(--shadow);
}

.gallery-view figcaption {
  margin-top: 14px;
}

.highlights {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.highlight-grid article {
  min-height: 190px;
  border-color: rgba(183, 91, 52, 0.18);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.contact-copy p {
  max-width: 620px;
  margin: 22px 0;
}

.contact-points {
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-points div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(23, 35, 38, 0.08);
}

.contact-whatsapp-card {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(37, 211, 102, 0.24);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(23, 35, 38, 0.08);
}

.contact-whatsapp-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-whatsapp-title {
  color: var(--ink) !important;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 850;
  line-height: 1.1 !important;
}

.contact-whatsapp-card .whatsapp-button {
  width: max-content;
  margin-top: 4px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: max-content;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links {
    display: flex;
  }

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

  .hero {
    min-height: 860px;
    align-items: start;
  }

  .hero-content {
    margin: 84px 0 0;
  }

  .quick-card {
    right: 18px;
    bottom: 28px;
  }

  .section-heading,
  .section-heading-action,
  .spaces,
  .gallery-shell,
  .highlights,
  .contact {
    grid-template-columns: 1fr;
  }

  .location-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .gallery-control {
    min-width: max-content;
  }

  .split-media img {
    min-height: 420px;
    max-height: none;
  }
}

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

  .nav-links {
    top: 68px;
  }

  .hero {
    min-height: 890px;
    padding: 24px 18px;
  }

  .hero-content {
    margin-top: 58px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .quick-stats {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions,
  .whatsapp-button,
  .contact-whatsapp-card .whatsapp-button,
  .contact-form .button {
    width: 100%;
  }

  .split-media img,
  .gallery-view img {
    min-height: 360px;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
