:root {
  --bg: #0d0a0b;
  --bg-2: #151011;
  --card: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5eee8;
  --muted: #c5bbb1;
  --gold: #b8873a;
  --gold-light: #e0c084;
  --wine: #7a1f3d;
  --wine-light: #a12a51;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 135, 58, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(122, 31, 61, 0.14), transparent 26%),
    linear-gradient(180deg, #120d10 0%, #0d0a0b 45%, #0a0809 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* =========================
   TOPBAR / NAV
========================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 8, 9, 0.76);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
}

.nav {
  height: 78px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  height: 78px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-logo {
  height: 400px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.menu a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--wine-light));
  box-shadow: 0 14px 28px rgba(122, 31, 61, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.09);
}

/* =========================
   HERO
========================= */

.hero {
  padding: 84px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero .accent {
  background: linear-gradient(135deg, var(--gold-light), #f0d4a4 35%, var(--wine-light) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 22px 0 28px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card,
.card,
.cta-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 32px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,135,58,0.22), transparent 66%);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,31,61,0.22), transparent 66%);
}

.pill-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

.logo-stage {
  display: grid;
  place-items: center;
  min-height: 250px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.logo-core {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.05), transparent 46%),
    radial-gradient(circle at 50% 55%, rgba(0,0,0,0.5), transparent 72%);
}

.hero-symbol {
  width: 210px;
  height: auto;
  max-height: 210px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.45));
}

.feature-list {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.feature-icon,
.card-icon {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: 0 0 40px;
  background: linear-gradient(135deg, rgba(184,135,58,0.36), rgba(122,31,61,0.46));
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
}

.feature-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 36px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  padding: 24px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(184,135,58,0.34), rgba(122,31,61,0.42));
  border: 1px solid rgba(255,255,255,0.08);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.card li {
  margin-bottom: 8px;
}

.division {
  position: relative;
  overflow: hidden;
}

.division.manna {
  background:
    linear-gradient(135deg, rgba(184,135,58,0.14), rgba(184,135,58,0.04)),
    rgba(255,255,255,0.04);
}

.division.tenerife {
  background:
    linear-gradient(135deg, rgba(122,31,61,0.14), rgba(122,31,61,0.04)),
    rgba(255,255,255,0.04);
}

.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.mail-box a {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-light);
  word-break: break-word;
}

/* =========================
   CTA BAND
========================= */

.cta-band {
  border-radius: 30px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  background:
    radial-gradient(circle at left top, rgba(184,135,58,0.16), transparent 24%),
    radial-gradient(circle at right bottom, rgba(122,31,61,0.16), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 28px 0 56px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer h4 {
  color: var(--text);
  margin: 0 0 12px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 0 0 10px;
}

.footer a:last-child {
  margin-bottom: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 8px;
}

.footer-logo {
  height: 82px;
  width: auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .hero-grid,
  .cards.three,
  .cards.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    height: auto;
    min-height: 78px;
    padding: 12px 0;
  }

  .menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    order: 3;
  }

  .brand {
    height: auto;
  }

  .brand-logo {
    height: 54px;
    max-width: 260px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 24px;
  }

  .hero-symbol {
    width: 170px;
    max-height: 170px;
  }

  .logo-core {
    width: 220px;
    height: 220px;
  }

  .footer-logo {
    height: 64px;
  }
}/* =========================
   FIX FOOTER + LEGAL BOXES
========================= */

.footer-grid {
  align-items: start;
}

.footer-col-brand .footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 6px;
}

.footer-col-brand .footer-logo {
  height: 110px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.footer-col-brand p {
  max-width: 520px;
  margin-top: 6px;
}

.footer a {
  line-height: 1.25;
}

.legal-card {
  max-width: 860px;
  padding: 22px 24px;
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .footer-col-brand .footer-logo {
    height: 78px;
  }

  .legal-card {
    max-width: 100%;
    padding: 20px;
  }
}