:root {
  --orange: #f86923;
  --orange-dark: #df5414;
  --ink: #101815;
  --text: #3c4944;
  --muted: #72807a;
  --line: rgba(16, 24, 21, 0.12);
  --soft: #fff7f2;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 21, 0.14);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #fff;
  font-family: "Be Vietnam Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(16, 24, 21, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.phone-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(248, 105, 35, 0.22);
  border-radius: 999px;
  background: rgba(248, 105, 35, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 74px 0;
  overflow: hidden;
  background:
    linear-gradient(108deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.66) 46%, rgba(0, 0, 0, 0.16)),
    url("https://i0.wp.com/workie.in/wp-content/uploads/2022/08/banner-images.jpg?fit=1920%2C760&ssl=1") center/cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  content: "";
  border-radius: 50%;
  background: rgba(248, 105, 35, 0.32);
  filter: blur(30px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 440px);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 28px;
}

.stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.stat strong {
  display: block;
  font-size: 1.25rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.lead-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.lead-card-head {
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff7f2, #fff);
}

.lead-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.lead-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 22px 26px 26px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 24, 21, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(248, 105, 35, 0.8);
  box-shadow: 0 0 0 4px rgba(248, 105, 35, 0.14);
}

.submit-btn,
.primary-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 15px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--orange), #ff8d4c);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(248, 105, 35, 0.3);
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.75;
}

.lead-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 20px;
  color: var(--orange-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  padding: clamp(54px, 7vw, 92px) 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff, #fff8f4);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.image-card {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(248, 105, 35, 0.13);
  color: var(--orange);
  content: "OK";
  font-size: 0.55rem;
  font-weight: 900;
}

.cards,
.amenities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.amenities {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(16, 24, 21, 0.08);
}

.card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.tag {
  padding: 10px 14px;
  border: 1px solid rgba(248, 105, 35, 0.22);
  border-radius: 999px;
  background: rgba(248, 105, 35, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: #f2f2f2;
  box-shadow: 0 16px 44px rgba(16, 24, 21, 0.09);
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.05);
}

.gallery-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
}

.gallery-lightbox.hidden {
  display: none;
}

.gallery-lightbox-inner {
  position: relative;
  width: min(100%, 1040px);
  animation: galleryZoom 0.18s ease-out;
}

@keyframes galleryZoom {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-lightbox img {
  width: 100%;
  max-height: 82vh;
  border-radius: 24px;
  object-fit: contain;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.gallery-lightbox-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-weight: 800;
}

.gallery-lightbox-button {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
}

.gallery-lightbox-close {
  top: -16px;
  right: -16px;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: -18px;
}

.gallery-lightbox-next {
  right: -18px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.logo-box {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 21, 0.07);
}

.logo-box img {
  max-width: 76%;
  max-height: 70px;
  object-fit: contain;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.testimonial {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
  height: 100%;
  overflow: hidden;
}

.testimonial::before {
  position: absolute;
  top: 18px;
  right: 22px;
  content: "\201C";
  color: rgba(248, 105, 35, 0.14);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial img {
  width: 96px;
  height: 96px;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(16, 24, 21, 0.14);
}

.testimonial p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.68;
}

.testimonial-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.testimonial-text.is-expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.testimonial-toggle {
  display: inline-flex;
  align-items: center;
  margin: -2px 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--orange-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
}

.testimonial-toggle:hover {
  text-decoration: underline;
}

.testimonial-toggle.is-hidden {
  display: none;
}

.testimonial h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.testimonial span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.amenity img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 14px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #111815;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: clamp(28px, 5vw, 54px);
}

.contact-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.contact-copy p,
.contact-copy a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-item strong {
  display: block;
  color: #fff;
}

.contact-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.footer {
  padding: 30px 0;
  background: #0f1513;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer img {
  width: 128px;
  filter: brightness(1.4);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
}

body.gallery-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 44px 0;
  }

  .hero-grid,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero p,
  .hero h1,
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .lead-card {
    width: min(100%, 520px);
    margin: 0 auto;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand img {
    width: 118px;
  }

  .phone-pill {
    width: 100%;
    font-size: 0.88rem;
  }

  .hero-stats,
  .cards,
  .testimonial-grid,
  .amenities,
  .logo-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-button {
    width: 38px;
    height: 38px;
  }

  .gallery-lightbox-close {
    top: -8px;
    right: -8px;
  }

  .gallery-lightbox-prev {
    left: 8px;
  }

  .gallery-lightbox-next {
    right: 8px;
  }

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

  .testimonial img {
    width: 78px;
    height: 78px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
