:root {
  --black: #0b0b0d;
  --black-2: #111216;
  --gray: #23252b;
  --gray-2: #6d7280;
  --line: #e7e2d7;
  --white: #ffffff;
  --soft: #f6f4ef;
  --gold: #c9a24a;
  --gold-2: #f1d890;
  --shadow: 0 22px 60px rgba(11, 11, 13, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

img,
iframe {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 11, 13, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header {
  top: 32px;
}

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

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--white);
}

.logo span {
  color: var(--gold-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 96px 0;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 11, 13, 0.96), rgba(18, 19, 23, 0.94)),
    radial-gradient(circle at 82% 22%, rgba(201, 162, 74, 0.22), transparent 34%);
}

.section-soft {
  background: var(--soft);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-actions,
.rental-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.btn-secondary,
.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  color: var(--black);
  border-color: var(--line);
  background: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.office-frame {
  position: relative;
  height: 500px;
  border: 1px solid rgba(241, 216, 144, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 36%),
    linear-gradient(180deg, #25262b 0%, #15161a 54%, #0d0d10 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

.office-window {
  position: absolute;
  inset: 38px 38px auto;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(90deg, transparent 32%, rgba(255, 255, 255, 0.08) 32%, rgba(255, 255, 255, 0.08) 34%, transparent 34%),
    linear-gradient(180deg, rgba(201, 162, 74, 0.18), rgba(255, 255, 255, 0.03));
}

.office-table {
  position: absolute;
  left: 50%;
  bottom: 86px;
  width: 74%;
  height: 72px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3b3324, #171717);
  transform: translateX(-50%) skewX(-8deg);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.office-chair {
  position: absolute;
  bottom: 70px;
  width: 78px;
  height: 120px;
  border-radius: 26px 26px 8px 8px;
  background: linear-gradient(180deg, #34363d, #111216);
}

.chair-left {
  left: 72px;
}

.chair-right {
  right: 72px;
}

.gold-line {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 4px;
  background: var(--gold);
}

.hero-stat {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(260px, 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--white);
  background: rgba(11, 11, 13, 0.76);
  backdrop-filter: blur(12px);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  color: var(--gold-2);
  font-size: 1.5rem;
}

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

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

.section-heading p:not(.eyebrow) {
  color: var(--gray-2);
}

.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.price-card {
  border: 1px solid rgba(17, 18, 22, 0.09);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(11, 11, 13, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 74, 0.48);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold-2);
  font-weight: 800;
}

.service-card p,
.price-card p,
.meeting-content p {
  color: var(--gray-2);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

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

.feature-item {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  font-weight: 700;
}

.feature-item span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 162, 74, 0.14);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(180deg, #17181d, #0b0b0d);
  transform: translateY(-14px);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--black);
  background: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: var(--gray-2);
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.price-card .btn {
  margin-top: auto;
}

.meeting-grid,
.form-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.meeting-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.meeting-image {
  position: relative;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(241, 216, 144, 0.16), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, #24262c 0 2px, #191a1f 2px 22px);
}

.meeting-image.large {
  grid-column: span 2;
  min-height: 300px;
  background:
    linear-gradient(120deg, rgba(201, 162, 74, 0.2), transparent 46%),
    linear-gradient(180deg, #2d2f36, #111216);
}

.meeting-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--gold-2);
  font-weight: 800;
}

.meeting-content p {
  color: rgba(255, 255, 255, 0.75);
}

.rental-options {
  margin: 28px 0;
}

.rental-options span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.lead-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  font-size: 0.88rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #dcd7cd;
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--black);
  background: #fbfaf7;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.16);
}

.lead-form textarea {
  resize: vertical;
}

.form-success {
  min-height: 24px;
  margin: 4px 0 0;
  color: #1d7a3a;
  font-weight: 800;
}

address {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  font-style: normal;
}

address a,
address span {
  color: var(--gray);
  font-weight: 700;
}

.whatsapp {
  color: var(--white);
  background: #1f8f4d;
}

.map-placeholder {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(17, 18, 22, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.16), rgba(255, 255, 255, 0.42)),
    repeating-linear-gradient(45deg, #ece8de 0 12px, #f8f6f1 12px 24px);
}

.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
}

.map-placeholder span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gray);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.footer-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .meeting-grid,
  .form-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 86px 0;
  }

  .card-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .navbar {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 14px 22px;
    background: rgba(11, 11, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    transition: transform 0.24s ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-visual,
  .office-frame {
    min-height: 360px;
    height: 360px;
  }

  .office-window {
    inset: 26px 24px auto;
    height: 140px;
  }

  .office-chair {
    width: 58px;
    height: 92px;
  }

  .chair-left {
    left: 40px;
  }

  .chair-right {
    right: 40px;
  }

  .office-table {
    bottom: 72px;
  }

  .card-grid,
  .pricing-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .meeting-image.large {
    min-height: 230px;
  }

  .lead-form {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .hero-actions .btn,
  .lead-form .btn {
    width: 100%;
  }

  .meeting-gallery {
    grid-template-columns: 1fr;
  }

  .meeting-image.large {
    grid-column: auto;
  }
}
