:root {
  --ink: #141820;
  --navy: #1b2433;
  --paper: #f4f1ea;
  --cream: #faf7f1;
  --gold: #c4a46a;
  --gold-deep: #a88545;
  --muted: #5c6573;
  --line: rgba(196, 164, 106, 0.35);
  --card: #fffcf7;
  --shadow: 0 18px 40px rgba(20, 24, 32, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}

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

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: #efe8d8;
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.topbar__phone {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.topbar__social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #efe8d8;
  border: 1px solid var(--gold);
  text-decoration: none;
}

.topbar__social:hover {
  color: var(--gold);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  height: 1.5px;
  background: var(--gold);
}

.mobile-nav {
  display: none;
  background: #0b0b0b;
  padding: 12px 20px 24px;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: #efe8d8;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 164, 106, 0.16), transparent 28%),
    linear-gradient(180deg, #0c0d10 0%, #171b24 55%, #101318 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent 0 18px,
    rgba(255, 255, 255, 0.015) 18px 19px
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  padding: 88px 0 96px;
  max-width: 760px;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  margin: 0 0 18px;
  color: #f7f1e4;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.hero__lead {
  color: #d7d0c3;
  font-size: 1.15rem;
  max-width: 58ch;
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
  display: grid;
  gap: 10px;
}

.hero__points li {
  color: #f3ead8;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding-left: 18px;
  position: relative;
}

.hero__points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  position: absolute;
  left: 0;
  top: 0.45em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  transition: 0.2s ease;
}

.btn--lg {
  min-height: 56px;
  padding: 16px 28px;
}

.btn--gold {
  background: var(--gold);
  color: #16120b;
}

.btn--gold:hover {
  background: #d4b57a;
}

.btn--navy {
  background: var(--navy);
  color: #f7f1e4;
}

.btn--navy:hover {
  background: #243044;
}

.areas,
.faq {
  padding: 88px 0;
  background: #ece8e1;
}

.areas h2,
.how h2,
.faq h2,
.about h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 42px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.area-card {
  background: var(--card);
  border: 1px solid #d8d2c7;
  border-radius: 14px;
  min-height: 148px;
  padding: 22px 16px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.area-card i {
  font-size: 2.35rem;
  color: #6d7a8d;
  line-height: 1;
}

.area-card p {
  margin: 0;
  color: #4b5565;
  font-weight: 600;
  max-width: 16ch;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.how {
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 32, 0.88), rgba(20, 24, 32, 0.92)),
    radial-gradient(circle at top, #2a3344, #101318);
  color: #efe8d8;
}

.how h2 {
  color: #f7f1e4;
}

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

.how-card {
  background: rgba(255, 252, 247, 0.05);
  border: 1px solid var(--line);
  padding: 28px 24px 20px;
  min-height: 100%;
}

.how-card__num {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.how-card h3 {
  margin: 8px 0 16px;
  font-size: 1.7rem;
}

.how-card p {
  color: #d5cec0;
}

.faq__inner {
  max-width: 820px;
}

.faq__list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--card);
  border: 1px solid #d8d2c7;
  padding: 4px 18px 4px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0 0 16px;
  color: var(--muted);
}

.about {
  padding: 88px 0;
  background: #0b0b0b;
  color: #efe8d8;
}

.about h2 {
  text-align: left;
  color: #f7f1e4;
  text-transform: none;
  margin-bottom: 16px;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about__logo-wrap {
  background: #000;
  border: 1px solid var(--line);
  padding: 28px;
}

.about p {
  color: #d5cec0;
}

.footer {
  background: #080808;
  color: #d5cec0;
  padding-top: 56px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer__name {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  color: #f7f1e4;
}

.footer__facebook {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.footer h3 {
  color: var(--gold);
  margin-top: 0;
}

.footer a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
}

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

.footer__copy {
  border-top: 1px solid #222;
  padding: 18px 0 28px;
  font-size: 0.9rem;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 50;
  text-decoration: none;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus,
.whatsapp-fab:visited {
  color: #fff;
  text-decoration: none;
}

.whatsapp-fab i {
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav,
  .topbar__phone {
    display: none;
  }

  .menu-btn {
    display: flex;
    justify-self: end;
  }

  .topbar__inner {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .areas__grid,
  .how__grid,
  .about__grid,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .areas__grid,
  .how__grid,
  .about__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .brand img {
    height: 46px;
  }
}
