:root {
  --charcoal: #14041f;
  --ink: #21102d;
  --panel: #281333;
  --ivory: #fff8fb;
  --muted: #d7c5d8;
  --gold: #b76e79;
  --gold-light: #f2b8bd;
  --emerald: #6f2f63;
  --line: rgba(255, 248, 251, 0.16);
  --shadow: 0 24px 70px rgba(20, 4, 31, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--charcoal);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 18px 5vw;
  transition:
    background 200ms ease,
    border-color 200ms ease;
}

.site-header.scrolled {
  background: rgba(20, 4, 31, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 3px;
  border: 1px solid rgba(242, 184, 189, 0.42);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(242, 184, 189, 0.2),
    rgba(20, 4, 31, 0.66)
  );
  box-shadow: 0 10px 32px rgba(20, 4, 31, 0.38);
  overflow: hidden;
}

.brand-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 248, 251, 0.78);
  font-size: 0.92rem;
}

.site-menu a:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ivory);
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 5vw 88px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(20, 4, 31, 0.94),
      rgba(20, 4, 31, 0.58) 54%,
      rgba(20, 4, 31, 0.34)
    ),
    linear-gradient(180deg, rgba(62, 17, 74, 0.1), rgba(20, 4, 31, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 500;
  line-height: 0.94;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 500;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 248, 251, 0.82);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button,
.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(242, 184, 189, 0.5);
  border-radius: 999px;
  font-weight: 700;
}

.whatsapp-button {
  border-color: rgba(61, 220, 132, 0.42);
  color: #eafff3;
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.26),
    rgba(18, 139, 66, 0.4)
  );
}

.whatsapp-button:hover {
  color: #0d2416;
  background: linear-gradient(135deg, #57f28a, #25d366);
}

.primary-button {
  color: #1c071f;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.secondary-button,
.contact-actions a {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.05);
}

.intro-band,
.business-section,
.contact-section {
  padding: 105px 5vw;
}

.section-grid,
.vision-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-copy {
  color: rgba(255, 248, 251, 0.74);
  font-size: clamp(1.22rem, 1.45vw, 1.48rem);
  line-height: 1.75;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.business-section {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(183, 110, 121, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(111, 47, 99, 0.28),
      transparent 28%
    ),
    linear-gradient(180deg, #14041f, #21102d);
}

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

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 46px auto 0;
}

.business-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 251, 0.1),
      rgba(255, 248, 251, 0.03)
    ),
    var(--panel);
  box-shadow: var(--shadow);
}

.business-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 184, 189, 0.42);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.logo-frame {
  display: grid;
  width: 100%;
  height: 126px;
  place-items: center;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 251, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 251, 0.97),
      rgba(255, 255, 255, 0.88)
    ),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.logo-frame-dark {
  border-color: rgba(242, 184, 189, 0.22);
  background:
    linear-gradient(145deg, rgba(20, 4, 31, 0.94), rgba(64, 24, 78, 0.88)),
    var(--ink);
}

.logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1) translateY(-6px);
  transform-origin: center;
}

.card-icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(242, 184, 189, 0.14);
}

.business-card p {
  margin: 0;
  color: rgba(255, 248, 251, 0.72);
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(242, 184, 189, 0.4);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 700;
}

.card-link:hover {
  color: #1c071f;
  background: var(--gold-light);
}

.muted-link {
  border-color: rgba(255, 248, 251, 0.16);
  color: rgba(255, 248, 251, 0.42);
}

.muted-link:hover {
  color: rgba(255, 248, 251, 0.42);
  background: transparent;
}

.vision-section {
  padding: 105px 5vw;
  align-items: end;
}

.vision-content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 248, 251, 0.74);
  font-size: 1.08rem;
}

.vision-list {
  display: grid;
  gap: 14px;
}

.vision-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  min-height: 84px;
  border-top: 1px solid var(--line);
}

.vision-list span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.contact-section {
  background:
    linear-gradient(rgba(20, 4, 31, 0.8), rgba(20, 4, 31, 0.9)),
    url("assets/luxury-portfolio-hero.png") center/cover fixed;
}

.contact-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(242, 184, 189, 0.28);
  border-radius: 8px;
  background: rgba(33, 16, 45, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.contact-panel p:not(.eyebrow) {
  color: rgba(255, 248, 251, 0.75);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-details div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 251, 0.14);
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details p {
  max-width: 720px;
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #100218;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 76px;
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(20, 4, 31, 0.97);
  }

  .site-menu.open {
    display: flex;
  }

  .site-menu a {
    padding: 10px 0;
  }

  .section-grid,
  .vision-section,
  .business-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-text {
    display: none;
  }

  .hero-section {
    min-height: 88vh;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.75rem, 17vw, 4.5rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button,
  .contact-actions a {
    width: 100%;
  }

  .intro-band,
  .business-section,
  .contact-section {
    padding: 76px 5vw;
  }

  .business-card,
  .contact-panel {
    padding: 24px;
  }

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