:root {
  --charcoal: #202226;
  --charcoal-2: #2a2d32;
  --charcoal-3: #35383e;
  --gold: #d7b45c;
  --gold-light: #f1d88d;
  --gold-deep: #9d7930;
  --ivory: #f7f3e9;
  --white: #ffffff;
  --text: #292b2f;
  --muted: #707279;
  --line: rgba(215, 180, 92, 0.25);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3,
.brand-text strong,
.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
}

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

.section {
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--charcoal);
  background: var(--gold-light);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  background: rgba(32, 34, 38, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(32, 34, 38, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.brand-text small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 0.92rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav .nav-cta {
  margin-left: 8px;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 700;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: var(--charcoal);
  background: linear-gradient(135deg, #ffe7a7, var(--gold-light));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
}

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

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

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

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 140px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 30%, rgba(215, 180, 92, 0.13), transparent 32%),
    linear-gradient(135deg, #17191c 0%, #2c2f34 52%, #1e2024 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(215, 180, 92, 0.12);
  border-radius: 50%;
}

.hero::before {
  top: -220px;
  left: -150px;
}

.hero::after {
  right: -190px;
  bottom: -250px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent 5%, #000 45%, #000 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--gold-deep);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

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

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-primary {
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px rgba(215, 180, 92, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 38px rgba(215, 180, 92, 0.32);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(215, 180, 92, 0.08);
}

.button-dark {
  color: var(--gold-light);
  background: var(--charcoal);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.hero-meta div {
  display: grid;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-meta strong {
  color: var(--gold-light);
  font-size: 1.12rem;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.logo-frame {
  position: relative;
  z-index: 2;
  width: min(75vw, 390px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  border: 1px solid rgba(241, 216, 141, 0.32);
  border-radius: 50%;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32), inset 0 0 60px rgba(215, 180, 92, 0.05);
  backdrop-filter: blur(10px);
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(215, 180, 92, 0.18);
  border-radius: inherit;
}

.logo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

.gold-orbit {
  position: absolute;
  border: 1px solid rgba(215, 180, 92, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 470px;
  height: 470px;
  animation: orbit 18s linear infinite;
}

.orbit-two {
  width: 540px;
  height: 540px;
  border-style: dashed;
  animation: orbit 25s linear infinite reverse;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 164px;
  padding: 14px 18px;
  background: rgba(31, 33, 37, 0.88);
  border: 1px solid rgba(215, 180, 92, 0.22);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.card-top {
  top: 75px;
  right: 0;
}

.card-bottom {
  left: 0;
  bottom: 95px;
}

.mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.floating-card div {
  display: grid;
  line-height: 1.2;
}

.floating-card small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.floating-card strong {
  color: var(--white);
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 50%;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scroll 1.8s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 14px); }
}

.intro {
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.section-heading h2 {
  margin-bottom: 20px;
  color: var(--charcoal);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
}

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

.section-heading.centered {
  max-width: 700px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.lead {
  font-size: 1.18rem;
}

.intro-panel {
  position: relative;
  padding: 40px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-line {
  position: absolute;
  top: 0;
  left: 40px;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.intro-panel > p {
  max-width: 660px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

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

.facts-grid article {
  min-height: 180px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.fact-number,
.card-number {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.facts-grid h3 {
  margin: 34px 0 6px;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.facts-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.areas {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(215, 180, 92, 0.09), transparent 28%),
    var(--charcoal);
}

.areas .section-heading h2 {
  color: var(--white);
}

.areas .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.56);
}

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

.area-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.area-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(215, 180, 92, 0.12);
  border-radius: 50%;
}

.area-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 180, 92, 0.38);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.area-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 45px 0 28px;
  color: var(--gold-light);
  background: rgba(215, 180, 92, 0.08);
  border: 1px solid rgba(215, 180, 92, 0.22);
  border-radius: 50%;
}

.area-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-card h3 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 1.7rem;
}

.area-card p {
  color: rgba(255, 255, 255, 0.58);
}

.area-card a {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.area-card a span {
  color: var(--gold);
  margin-left: 6px;
  transition: margin-left 0.2s ease;
}

.area-card a:hover span {
  margin-left: 12px;
}

.cta-band {
  padding: 66px 0;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.cta-inner p:last-child {
  margin-bottom: 0;
  color: rgba(32, 34, 38, 0.72);
}

.location {
  background: #f6f1e6;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.location-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(28deg, transparent 46%, rgba(215,180,92,.22) 47%, rgba(215,180,92,.22) 48%, transparent 49%),
    linear-gradient(117deg, transparent 48%, rgba(255,255,255,.08) 49%, rgba(255,255,255,.08) 50%, transparent 51%),
    repeating-linear-gradient(0deg, transparent 0 52px, rgba(255,255,255,.04) 53px 54px),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(255,255,255,.04) 53px 54px);
}

.location-pin {
  position: relative;
  z-index: 1;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50% 50% 50% 10%;
  transform: rotate(-45deg);
  box-shadow: 0 20px 50px rgba(215, 180, 92, 0.22);
}

.location-pin svg {
  width: 60px;
  fill: currentColor;
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 34px;
  right: 34px;
  padding: 14px 18px;
  color: var(--gold-light);
  background: rgba(20, 21, 24, 0.82);
  border: 1px solid rgba(215, 180, 92, 0.2);
  border-radius: 14px;
  text-align: center;
  font-size: 0.86rem;
}

.location-data {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(157, 121, 48, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(35, 35, 35, 0.06);
}

.location-data > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  background: var(--gold-light);
  border-radius: 50%;
  font-weight: 800;
}

.location-data div {
  display: grid;
}

.location-data small {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.location-data strong {
  color: var(--charcoal);
}

.social {
  color: var(--white);
  background: var(--charcoal-2);
}

.social .section-heading h2 {
  color: var(--white);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.social-link {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(215, 180, 92, 0.38);
}

.social-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.social-card small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.social-card h3 {
  margin: 4px 0;
  color: var(--gold-light);
  font-size: 1.35rem;
}

.social-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 80%, rgba(215,180,92,.1), transparent 30%),
    #17191c;
}

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

.contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.56);
}

.phone-link {
  display: grid;
  width: max-content;
  margin: 35px 0 28px;
}

.phone-link small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.phone-link strong {
  color: var(--gold-light);
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 500;
}

.contact-card {
  position: relative;
  padding: 40px;
  color: var(--text);
  background: var(--ivory);
  border-radius: var(--radius);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
}

.contact-card img {
  width: 120px;
  margin-bottom: 22px;
  border-radius: 14px;
}

.contact-card h3 {
  margin-bottom: 2px;
  color: var(--charcoal);
  font-size: 2rem;
}

.contact-card > p {
  color: var(--gold-deep);
  font-weight: 700;
}

.contact-card dl {
  margin: 30px 0 0;
}

.contact-card dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(32, 34, 38, 0.1);
}

.contact-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.contact-card dd {
  margin: 0;
  color: var(--charcoal);
  font-weight: 650;
}

.site-footer {
  padding: 70px 0 25px;
  color: rgba(255, 255, 255, 0.6);
  background: #111214;
  border-top: 1px solid rgba(215, 180, 92, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 45px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 72px;
  border-radius: 10px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.footer-brand span {
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-info a:hover,
.footer-info a:focus-visible {
  color: var(--gold-light);
}

.footer-info {
  text-align: right;
}

.footer-info p {
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

.back-to-top {
  width: 42px;
  height: 42px;
  color: var(--charcoal);
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  color: #fff;
  background: #1fa855;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-size: 0.86rem;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

/* El contenido permanece visible aun si JavaScript no carga.
   Esto evita una pantalla en blanco en despliegues estáticos. */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

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

  .main-nav {
    position: fixed;
    top: 84px;
    right: 0;
    width: min(86vw, 360px);
    height: calc(100svh - 84px);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(25, 27, 30, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(105%);
    transition: transform 0.28s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 15px 16px;
  }

  .main-nav .nav-cta {
    margin: 10px 0 0;
    text-align: center;
  }

  .hero-grid,
  .intro-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

  .intro-grid,
  .location-grid,
  .contact-grid {
    gap: 50px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .area-card {
    min-height: 340px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid article {
    min-height: auto;
  }

  .facts-grid h3 {
    margin-top: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-info {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 0.84rem;
  }

  .brand-text small {
    font-size: 0.65rem;
  }

  .main-nav {
    top: 74px;
    height: calc(100svh - 74px);
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    gap: 18px;
  }

  .hero-meta div {
    padding-left: 12px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .logo-frame {
    width: min(78vw, 300px);
    padding: 24px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 370px;
    height: 370px;
  }

  .floating-card {
    min-width: 140px;
    padding: 11px 13px;
  }

  .card-top {
    top: 50px;
    right: -3px;
  }

  .card-bottom {
    left: -3px;
    bottom: 65px;
  }

  .mini-icon {
    width: 32px;
    height: 32px;
  }

  .intro-panel,
  .area-card,
  .contact-card {
    padding: 28px;
  }

  .area-card {
    min-height: 360px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .location-visual {
    min-height: 360px;
  }

  .location-pin {
    width: 100px;
    height: 100px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    align-items: flex-start;
    padding: 24px;
  }

  .contact-card dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-info {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 20px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
