:root {
  --bg: #080808;
  --panel: #0d0d0d;
  --gold: #df9f24;
  --gold-soft: #f0b640;
  --white: #ffffff;
  --text: #ececec;
  --muted: #cfcfcf;
  --red: #d61f1f;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  background:
    radial-gradient(circle at 10% 15%, #222 0%, #111 32%, #070707 70%),
    linear-gradient(120deg, #040404 0%, #121212 100%);
}

.site-wrap {
  width: min(1520px, 98vw);
  margin: 18px auto;
  border: 1px solid #2c2c2c;
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid #1f1f1f;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark.small {
  width: 34px;
  height: 34px;
}

.lion-mark {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-copy h1,
.brand-copy h3 {
  margin: 0;
  line-height: 0.94;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-copy h1 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
}

.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 0.06em;
}

.cube-letter {
  width: 1.05em;
  height: 1.05em;
  object-fit: contain;
  transform: translateY(0.01em);
}

.brand-copy p {
  margin: 5px 0 0;
  color: #e21616;
  letter-spacing: 0.12em;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-red {
  color: inherit;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav a {
  text-decoration: none;
  color: #f1f1f1;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  position: relative;
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-quote,
.btn-side-quote,
.btn-main {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #eab332 0%, #cb8f1e 100%);
  color: #131313;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.btn-quote {
  padding: 10px 14px;
  border-radius: 6px;
}

.btn-menu {
  width: 44px;
  height: 44px;
  border: 1px solid #c79a31;
  border-radius: 6px;
  background: transparent;
  color: #f7f7f7;
  cursor: pointer;
  font-size: 20px;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 14px;
}

.hero-card {
  background: #fff;
  color: #121212;
  display: grid;
  grid-template-columns: 34% 66%;
  border-bottom: 6px solid var(--gold);
  min-height: 630px;
}

.hero-copy {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.mini-title {
  margin: 0;
  color: #c68511;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-copy h2 {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.92;
  font-size: clamp(2.8rem, 4.3vw, 5rem);
}

.hero-copy h2 span {
  color: #d09523;
}

.description {
  margin: 0;
  color: #202020;
  font-size: 1.3rem;
  max-width: 30ch;
}

.btn-main {
  margin-top: 4px;
  width: fit-content;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 1.16rem;
}

.hero-mini-brand {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-mini-brand .brand-copy h3 {
  font-size: 1.6rem;
  color: #1b1b1b;
}

.hero-mini-brand .cube-letter {
  width: 1em;
  height: 1em;
}

.hero-mini-brand .brand-copy p {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.hero-panels {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: stretch;
}

.panel {
  flex: 1;
  position: relative;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  border-right: 2px solid #080808;
  background-size: cover;
  background-position: center;
}

.panel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 55%);
}

.panel-1 {
  background-image: linear-gradient(45deg, #27313f, #4f6476);
}

.panel-2 {
  background-image: linear-gradient(45deg, #372f25, #7a5830);
}

.panel-3 {
  background-image: linear-gradient(45deg, #2f2624, #6d4732);
}

.panel-4 {
  background-image: linear-gradient(45deg, #112436, #294f73);
}

.overlay-label {
  position: absolute;
  left: 14px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.service-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, #e6ab2f 0%, #ca8f1f 100%);
  border-top: 3px solid #9f6c11;
}

.service-strip div {
  padding: 18px 10px;
  border-right: 1px solid #8e6114;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #111;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

.service-strip div a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-strip i {
  font-size: 1.2rem;
}

.menu-panel {
  background: #fff;
  color: #1a1a1a;
  border-radius: 14px;
  padding: 18px 16px;
  position: fixed;
  top: 80px;
  right: 18px;
  width: min(360px, 92vw);
  z-index: 20;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.menu-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.close-menu {
  border: 0;
  background: transparent;
  align-self: flex-end;
  font-size: 1.5rem;
  color: #242424;
  cursor: pointer;
}

.menu-panel h3 {
  margin: 4px 0 14px;
  color: #bf7f10;
  font-size: 2rem;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.03em;
}

.menu-main,
.menu-services,
.menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-main li,
.menu-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  padding: 8px 0;
  border-bottom: 1px solid #efefef;
}

.menu-links a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-main i,
.menu-links i {
  color: #bf7f10;
  width: 18px;
}

.menu-subtitle {
  margin: 16px 0 6px;
  color: #bf7f10;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.menu-services li {
  position: relative;
  padding: 4px 0 4px 14px;
  font-size: 1.02rem;
  color: #2f2f2f;
}

.menu-services a {
  color: inherit;
  text-decoration: none;
}

.menu-services li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cc9427;
  position: absolute;
  left: 0;
  top: 13px;
}

.btn-side-quote {
  margin-top: 14px;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 1.05rem;
}

.request-home {
  margin: 14px;
  border: 1px solid #2b2b2b;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(223, 159, 36, 0.16) 0, rgba(223, 159, 36, 0) 42%),
    linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  padding: 22px;
}

.request-home-head {
  margin-bottom: 14px;
}

.request-eyebrow {
  margin: 0;
  color: #f0b640;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  font-weight: 700;
}

.request-home-head h3 {
  margin: 6px 0;
  color: #f1f1f1;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.request-home-head p {
  margin: 0;
  color: #cfcfcf;
  font-size: 1.1rem;
  max-width: 70ch;
}

.request-home-form {
  display: grid;
  gap: 12px;
}

.request-grid {
  display: grid;
  gap: 12px;
}

.request-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.request-home-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #f1f1f1;
  font-size: 1.04rem;
}

.request-home-form input,
.request-home-form select,
.request-home-form textarea {
  width: 100%;
  border: 1px solid #313131;
  background: #141414;
  color: #ededed;
  border-radius: 10px;
  padding: 11px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.03rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.request-home-form input:focus,
.request-home-form select:focus,
.request-home-form textarea:focus {
  border-color: #d89c2b;
  box-shadow: 0 0 0 3px rgba(216, 156, 43, 0.2);
}

.request-terms {
  margin-top: 2px;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  color: #d3d3d3;
}

.request-terms input {
  width: auto;
  margin-top: 3px;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.request-submit,
.request-whatsapp {
  border: 0;
  text-decoration: none;
  border-radius: 9px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
}

.request-submit {
  cursor: pointer;
  color: #171717;
  background: linear-gradient(180deg, #efba48 0%, #c98d1f 100%);
}

.request-whatsapp {
  color: #f0c36a;
  border: 1px solid #b9831f;
  background: transparent;
}

.request-status {
  min-height: 20px;
  margin: 2px 0 0;
  color: #f1cb79;
  font-size: 1rem;
}

.request-status.error {
  color: #ff8a8a;
}

.about-section {
  margin: 14px;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  background:
    radial-gradient(circle at 0 0, rgba(223, 159, 36, 0.12) 0, rgba(223, 159, 36, 0) 40%),
    linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
  padding: 22px;
}

.about-head {
  margin-bottom: 14px;
}

.about-eyebrow {
  margin: 0;
  color: #f0b640;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  font-weight: 700;
}

.about-head h3 {
  margin: 6px 0;
  color: #f1f1f1;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
}

.about-head p {
  margin: 0;
  color: #cccccc;
  font-size: 1.08rem;
  max-width: 72ch;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-card {
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  background: linear-gradient(160deg, #171717 0%, #101010 100%);
  padding: 14px;
}

.about-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #7a5517;
  background: rgba(223, 159, 36, 0.12);
  color: #efba48;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.about-card h4 {
  margin: 10px 0 6px;
  color: #f5f5f5;
  letter-spacing: 0.06em;
  font-size: 1.25rem;
}

.about-card p {
  margin: 0;
  color: #c8c8c8;
  font-size: 1.03rem;
  line-height: 1.35;
}

.benefits,
.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefits {
  background: #0a0a0a;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-right: 1px solid #292929;
}

.benefits i {
  color: var(--gold);
  font-size: 2rem;
}

.benefits h4 {
  margin: 0;
  color: #f4f4f4;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
}

.benefits p {
  margin: 2px 0 0;
  color: #b8b8b8;
  font-size: 1rem;
}

.contact-strip {
  background: #0f0f0f;
  border-top: 2px solid #c38b20;
}

.contact-strip article {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f5f5f5;
  padding: 12px 14px;
  font-size: 1.22rem;
  border-right: 1px solid #2f2f2f;
}

.contact-strip i {
  color: var(--gold-soft);
}

.footer {
  padding: 14px 20px 18px;
  background: #060606;
  border-top: 1px solid #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .brand-copy h3 {
  font-size: 1.5rem;
  color: #f1f1f1;
}

.footer-brand .cube-letter {
  width: 1em;
  height: 1em;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #cb9327;
  color: #d7a139;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
  color: #c7c7c7;
  font-size: 0.96rem;
}

@media (max-width: 1300px) {
  .desktop-nav {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-panels {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }

  .service-strip {
    order: 3;
  }

  .hero-copy {
    padding: 24px 18px;
  }

  .hero-copy h2 {
    font-size: clamp(2.05rem, 8.2vw, 3.2rem);
  }

  .description {
    font-size: 1.08rem;
    max-width: 100%;
  }

  .hero-panels {
    min-height: 350px;
  }

  .panel {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  }

  .service-strip,
  .benefits,
  .contact-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-wrap {
    width: 100%;
    margin: 0;
  }

  .topbar {
    padding: 12px;
    flex-wrap: wrap;
  }

  .desktop-nav {
    display: flex;
    width: 100%;
    order: 3;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #262626;
  }

  .desktop-nav a {
    font-size: 0.84rem;
    letter-spacing: 0.03em;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .brand-copy h1 {
    font-size: 1.16rem;
  }

  .brand-copy p {
    font-size: 0.54rem;
    letter-spacing: 0.07em;
  }

  .hero-copy {
    gap: 10px;
  }

  .hero-copy h2 {
    font-size: clamp(1.78rem, 10.5vw, 2.35rem);
    line-height: 0.95;
  }

  .hero-mini-brand {
    flex-wrap: wrap;
  }

  .hero-mini-brand .brand-copy h3 {
    font-size: 1.25rem;
  }

  .hero-mini-brand .brand-copy p {
    font-size: 0.52rem;
  }

  .request-home-head p,
  .about-head p {
    font-size: 1rem;
  }

  .btn-quote {
    display: none;
  }

  .service-strip,
  .benefits,
  .contact-strip,
  .request-grid.two {
    grid-template-columns: 1fr;
  }

  .request-home {
    margin: 10px;
    padding: 16px;
    border-radius: 10px;
  }

  .about-section {
    margin: 10px;
    padding: 16px;
    border-radius: 10px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .service-strip div,
  .benefits article,
  .contact-strip article {
    border-right: 0;
    border-bottom: 1px solid #2f2f2f;
  }

  .menu-panel {
    top: 72px;
    right: 10px;
  }
}
