:root {
  color-scheme: light;
  --ink: #14110f;
  --accent: #b68b5a;
  --accent-dark: #8e6235;
  --fog: #f7f1ea;
  --mist: #efe6dc;
  --line: rgba(20, 17, 15, 0.15);
  --glass: rgba(20, 17, 15, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--mist);
}

.page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(20, 17, 15, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  color: #fffaf2;
}

.brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 10px;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  gap: 2px;
}

.cta {
  text-decoration: none;
  color: #fffaf2;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cta:hover {
  border-color: var(--accent);
  color: #fff;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url("loyolavista.jpg") center/cover no-repeat;
  color: #fffaf2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 17, 15, 0.72), rgba(20, 17, 15, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

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

h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 250, 242, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--accent);
  color: #1a120b;
  box-shadow: 0 16px 30px rgba(20, 17, 15, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fffaf2;
}

.hero-note {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  font-size: 0.95rem;
  color: rgba(255, 250, 242, 0.75);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.7);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 46px;
  background: rgba(255, 250, 242, 0.6);
  animation: drift 1.8s ease-in-out infinite;
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--fog);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: start;
}

.investor-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.investor-stack {
  display: grid;
  gap: 28px;
}

.investor-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

.address-card {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.address-card p {
  margin-top: 8px;
  color: #3a3532;
}

.address-card a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact {
  display: grid;
  gap: 16px;
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(20, 17, 15, 0.08);
}

.contact label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: #2f2a27;
}

.contact .fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact input,
.contact textarea {
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact .btn {
  width: fit-content;
  box-shadow: none;
  border: none;
  margin-bottom: 6px;
}

.form-note {
  font-size: 0.8rem;
  color: #615b57;
}

.compliance {
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.6);
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  background: #f2e7db;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: #5a524d;
}

@keyframes drift {
  0% {
    opacity: 0.4;
    transform: translateY(-4px);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
  100% {
    opacity: 0.4;
    transform: translateY(-4px);
  }
}

@media (max-width: 900px) {
  .hero-content {
    padding-top: 110px;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .scroll-hint {
    letter-spacing: 0.2em;
  }

  .contact .fields {
    grid-template-columns: 1fr;
  }
}
