.skip-link{position:fixed;left:12px;top:-60px;z-index:100;padding:10px 14px;background:var(--gold);color:#151b09;font-weight:700;text-transform:uppercase;letter-spacing:.08em;font-size:.72rem}.skip-link:focus{top:12px}
:root {
  --g: #0a1005;
  --g2: #16270b;
  --gold: #d6a62d;
  --gl: #f4d46d;
  --cream: #f5f0df;
  --muted: #afb39d;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--g);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  padding: 10px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a1005cc;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #d6a62d22;
}
.brand {
  display: flex;
  align-items: center;
  transform: translateY(20px);
}
.brand img {
  width: 145px;
  display: block;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
}
nav a {
  opacity: 0.85;
}
nav a:hover {
  color: var(--gl);
  opacity: 1;
}
.cta {
  border: 1px solid var(--gold);
  padding: 9px 15px;
  color: var(--gl) !important;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 1.6rem;
}
.hero {
  min-height: 100vh;
  padding: 140px 8vw 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slider,
.hero-slide,
.shade,
.hero-inner {
  position: absolute;
  inset: 0;
}
.hero-slider {
  overflow: hidden;
}
.hero-slide {
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition:
    opacity 1.2s ease,
    transform 6s ease,
    visibility 0s linear 1.2s;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity 1.2s ease,
    transform 6s ease;
}
.shade {
  background: linear-gradient(90deg, #071004ed, #0d1909bb, #071004e8);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero-text {
  position: relative;
  max-width: 900px;
}
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.23em;
  color: var(--gl);
  font-weight: 700;
}
.hero h1 {
  font: 600 clamp(3.8rem, 8vw, 8.2rem)/0.93 var(--serif);
  letter-spacing: -0.045em;
  margin: 20px 0;
}
.hero h1 em {
  color: var(--gl);
  font-style: italic;
}
.lead {
  font-size: 1.1rem;
  color: #d5d7c7;
}
.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  background: transparent;
}
.gold {
  background: var(--gold);
  color: #151b09;
  border-color: var(--gold);
}
.gold:hover {
  background: var(--gl);
}
.scroll {
  position: absolute;
  right: 8vw;
  bottom: 32px;
  color: #ddd1a8;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  z-index: 3;
}
.section {
  padding: 110px 8vw;
}
.heading {
  max-width: 750px;
  margin-bottom: 52px;
}
.heading h2,
.copy h2,
.contact h2,
.statement h2 {
  font: 600 clamp(2.4rem, 4.6vw, 4.4rem)/1.06 var(--serif);
  letter-spacing: -0.03em;
  margin: 14px 0;
}
.heading > p:last-child,
.copy > p:not(.eyebrow),
.statement > p:last-child,
.contact > div > p:not(.eyebrow) {
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d6a62d44;
  border-bottom: 1px solid #d6a62d44;
}
.cards article {
  position: relative;
  min-height: 330px;
  padding: 35px 26px;
  border-right: 1px solid #d6a62d44;
}
.cards article:last-child {
  border-right: 0;
}
.service-thumb {
  height: 130px;
  border-radius: 12px;
  margin: 0 0 22px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.cards b {
  position: absolute;
  right: 20px;
  top: 16px;
  color: #737a5b;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.cards i {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 2.2rem;
  margin: 18px 0 27px;
}
.cards h3 {
  margin: 0 0 14px;
}
.cards p {
  color: var(--muted);
  margin: 0;
}
.heading h2,
.copy h2,
.contact h2,
.statement h2 {
  font: 600 clamp(2.4rem, 4.6vw, 4.4rem)/1.06 var(--serif);
  letter-spacing: -0.03em;
  margin: 14px 0;
}
.heading > p:last-child,
.copy > p:not(.eyebrow),
.statement > p:last-child,
.contact > div > p:not(.eyebrow) {
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d6a62d44;
  border-bottom: 1px solid #d6a62d44;
}
.cards article {
  position: relative;
  min-height: 330px;
  padding: 35px 26px;
  border-right: 1px solid #d6a62d44;
}
.cards article:last-child {
  border-right: 0;
}
.cards b {
  position: absolute;
  right: 20px;
  top: 16px;
  color: #737a5b;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.cards i {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 2.2rem;
  margin: 18px 0 27px;
}
.cards h3,
.process h3 {
  font: 600 1.7rem var(--serif);
  margin: 0 0 10px;
}
.cards p,
.process p {
  color: var(--muted);
  font-size: 0.93rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #101b08;
}
.split-image {
  min-height: 680px;
  background:
    linear-gradient(145deg, #1b2d0b55, #050a03bb),
    url("assets/heaven-projects-logo.png") center/cover no-repeat;
}
.copy {
  padding: 100px 9vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signature {
  margin-top: 35px;
  border-top: 1px solid #d6a62d44;
  padding-top: 15px;
  color: var(--gl);
  letter-spacing: 0.15em;
  font-size: 0.7rem;
}
.signature small {
  display: block;
  color: #81886c;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.dark {
  background: var(--g2);
}
.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #d6a62d44;
}
.process-card {
  position: relative;
  padding: 18px 12px 22px;
  border-right: 1px solid #d6a62d44;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(214, 166, 45, 0.01)
  );
}
.process-card:last-child {
  border: 0;
}
.process-visual {
  height: 108px;
  border-radius: 10px;
  margin-bottom: 14px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(214, 166, 45, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.process-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.process b {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}
.process h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.process p {
  font-size: 0.8rem;
  line-height: 1.5;
}
.statement {
  text-align: center;
  padding: 110px 8vw;
  background: linear-gradient(135deg, #1a2c0b, #091005);
}
.statement h2 {
  max-width: 900px;
  margin: 18px auto;
}
.statement > p:last-child {
  max-width: 700px;
  margin: auto;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  padding: 110px 8vw;
  background: var(--cream);
  color: #18210d;
}
.contact .eyebrow {
  color: #8a6917;
}
.contact h2 {
  color: #18210d;
}
.details {
  margin-top: 38px;
  display: grid;
  gap: 20px;
}
.details a,
.details div {
  border-top: 1px solid #18210d22;
  padding-top: 13px;
}
.details span {
  display: block;
  color: #8a6917;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}
form {
  background: #fffdf7;
  padding: 32px;
  border: 1px solid #18210d18;
}
label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 16px;
}
input,
select,
textarea {
  width: 100%;
  display: block;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid #d4d2c5;
  background: white;
  font: inherit;
  color: #18210d;
}
form .btn {
  width: 100%;
  border: 0;
}
form small {
  display: block;
  margin-top: 14px;
  color: #70745f;
}
form small a {
  color: #8a6917;
  font-weight: 700;
}
footer {
  position: relative;
  padding: 42px 8vw 18px;
  display: grid;
  grid-template-columns: 1fr 1.7fr 0.9fr;
  align-items: flex-start;
  gap: 150px;
  color: #8c9279;
  font-size: 0.76rem;
  border-top: 1px solid #d6a62d22;
  background: linear-gradient(
    180deg,
    rgba(214, 166, 45, 0.02),
    rgba(214, 166, 45, 0.05)
  );
}
footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.5cm;
  background: linear-gradient(
    90deg,
    rgba(214, 166, 45, 0.9),
    rgba(214, 166, 45, 0.5),
    rgba(214, 166, 45, 0.9)
  );
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: -2cm;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.footer-brand img {
  width: 150px;
  display: block;
}
.footer-copy {
  margin: 20px 0 22px;
  max-width: 270px;
  color: #d5d7c7;
  font-size: 0.82rem;
  line-height: 1.7;
}
.footer-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.social-link {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(214, 166, 45, 0.55);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gl);
  background: linear-gradient(
    180deg,
    rgba(214, 166, 45, 0.18),
    rgba(214, 166, 45, 0.06)
  );
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--cream);
  background: linear-gradient(
    180deg,
    rgba(214, 166, 45, 0.28),
    rgba(214, 166, 45, 0.08)
  );
  box-shadow: 0 12px 24px rgba(214, 166, 45, 0.14);
}

.social-link--placeholder {
  opacity: 0.82;
}
.social-link--placeholder:hover {
  opacity: 1;
}

.social-link svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.45fr 1fr;
  gap: 200px 150px;
  align-items: start;
  padding-top: 18px;
  width: 100%;
}
.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-links-column--meta {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 400px;
  width: 100%;
  margin-left: auto;
  justify-self: end;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  flex: 1;
  margin-right: 0;
}
.footer-links-column a {
  color: #f5f0df;
  font-size: 0.94rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
  white-space: nowrap;
}
.footer-links-column a::before {
  content: "•";
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-links-column--right {
  padding-top: 0;
}
.footer-links-column--right a {
  white-space: normal;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 6px;
  text-align: right;
  padding-top: 12px;
}
.meta-title {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f0df;
}
.meta-year {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gl);
  font-weight: 700;
}
.footer-utility {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  min-width: 210px;
  text-align: right;
  margin-left: auto;
  flex-shrink: 0;
  padding-right: 0;
}
.footer-legal {
  display: block;
  color: #d5d7c7;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-transform: uppercase;
}
.whatsapp-help {
  position: fixed;
  right: 28px;
  bottom: 90px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #18c26c;
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
  color: #071004;
  font-weight: 700;
  z-index: 50;
}
.whatsapp-help span {
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}
.wa-bubble {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d7d46;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.wa-bubble svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}
.footer-links-column a:hover {
  opacity: 1;
  color: var(--gl);
}
.footer-form-link {
  cursor: pointer;
}
.footer-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 90;
}
.footer-modal.open {
  visibility: visible;
  opacity: 1;
}
.footer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 2, 0.75);
}
.footer-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  background: #0f1809;
  border: 1px solid rgba(214, 166, 45, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  padding: 28px 24px 20px;
}
.footer-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.footer-modal h3 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-family: var(--serif);
  color: var(--gl);
}
.footer-modal-text {
  margin: 0 0 20px;
  color: var(--muted);
}
.footer-modal-form {
  display: grid;
  gap: 16px;
}
.footer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.footer-modal-form label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 700;
  color: #d5d7c7;
}
.footer-modal-form input,
.footer-modal-form select,
.footer-modal-form textarea {
  width: 100%;
  display: block;
  margin-top: 8px;
  padding: 12px 13px;
  border: 1px solid rgba(214, 166, 45, 0.4);
  background: #ffffff;
  color: #111111;
  font: inherit;
}
.footer-modal-form input::placeholder,
.footer-modal-form textarea::placeholder {
  color: #666666;
}
.footer-modal-form textarea {
  min-height: 110px;
  resize: vertical;
}
.footer-modal-form .btn {
  width: 100%;
  border: 0;
}
@media (max-width: 900px) {
  nav {
    gap: 14px;
  }
  .cards,
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .cards article:nth-child(2) {
    border-right: 0;
  }
  .split,
  .contact {
    grid-template-columns: 1fr;
  }
  .split-image {
    min-height: 450px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer-left,
  .footer-links-column--right {
    align-items: flex-start;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
  }
  .footer-links-column--meta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .footer-links-column a {
    white-space: normal;
  }
  .footer-utility {
    align-items: flex-start;
    text-align: left;
  }
  .whatsapp-help {
    right: 20px;
    bottom: 75px;
    margin-top: 0;
  }
}
@media (max-width: 680px) {
  header {
    height: 70px;
  }
  .brand img {
    width: 115px;
  }
  .menu {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0a1005f7;
    padding: 16px 7vw;
    flex-direction: column;
    align-items: stretch;
  }
  .open {
    display: flex !important;
  }
  nav a {
    padding: 8px 0;
  }
  .cta {
    text-align: center;
  }
  .hero {
    padding: 110px 7vw 70px;
  }
  .hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.1rem);
  }
  .section,
  .statement,
  .contact {
    padding: 80px 7vw;
  }
  .cards,
  .process {
    grid-template-columns: 1fr;
  }
  .cards article {
    border-right: 0;
    border-bottom: 1px solid #d6a62d44;
  }
  .cards article:last-child {
    border-bottom: 0;
  }
  .split-image {
    min-height: 340px;
  }
  .copy {
    padding: 75px 7vw;
  }
  .contact {
    gap: 45px;
  }
  footer {
    padding: 35px 7vw 0;
    display: block;
  }
  .footer-brand {
    width: 150px;
    height: 150px;
  }
  .footer-left {
    align-items: center;
  }
  .footer-copy {
    text-align: center;
  }
  .footer-social-wrap {
    align-items: center;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-links-column {
    gap: 10px;
  }
  .footer-links-column--meta {
    flex-direction: column;
  }
  .footer-utility {
    align-items: flex-start;
    text-align: left;
  }
  .footer-links-column a {
    white-space: normal;
  }
  .footer-links-column--right {
    padding-top: 0;
  }
  .footer-utility {
    margin-top: 12px;
  }
  .whatsapp-help {
    right: 16px;
    bottom: 65px;
    padding: 8px 14px 8px 10px;
  }
  .wa-bubble {
    width: 34px;
    height: 34px;
  }
}
