﻿:root {
  --ink: #031726;
  --ink-soft: #0d2d45;
  --sea: #0e5d89;
  --gold: #d9b877;
  --mist: #eaf4fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(3, 23, 38, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--white);
  background: radial-gradient(circle at 20% 10%, #1d6b96 0%, var(--ink) 45%, #02111c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 900'%3E%3Cg fill='none' stroke='%23d9b877' stroke-width='2'%3E%3Ccircle cx='450' cy='450' r='300'/%3E%3Ccircle cx='450' cy='450' r='170'/%3E%3Cpath d='M450 60v780M60 450h780M169 169l562 562M731 169 169 731'/%3E%3Cpath d='M450 110l26 90h-52zM450 790l26-90h-52zM110 450l90-26v52zM790 450l-90-26v52z' fill='%23d9b877'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover, min(70vmin, 680px);
  background-position: center, center;
  background-repeat: no-repeat;
}

.topbar {
  width: min(1140px, calc(100vw - 3rem));
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

main {
  width: min(1140px, calc(100vw - 3rem));
  margin: 2.5rem auto 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0.5rem 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 58ch;
  color: #d9ecf8;
  line-height: 1.7;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-image {
  margin: 0;
  padding: 1rem;
  border-radius: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(3px);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  border-radius: 0.9rem;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-image figcaption {
  margin-top: 0.8rem;
  color: #bdd6e7;
  font-size: 0.92rem;
}

.features {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.features article {
  padding: 1.4rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.features h2 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  color: #f4fbff;
  font-size: 1.4rem;
}

.features p {
  margin-bottom: 0;
  color: #c8deed;
  line-height: 1.6;
}

.cta {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(217, 184, 119, 0.35);
  background:
    linear-gradient(110deg, rgba(217, 184, 119, 0.13), rgba(11, 69, 104, 0.22)),
    rgba(2, 17, 28, 0.5);
}

.cta h2 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
}

.cta p {
  margin-top: 0;
  color: #d2e6f5;
  max-width: 65ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-solid {
  background: linear-gradient(120deg, var(--gold), #ecd3a1);
  color: #1e2a34;
  box-shadow: 0 8px 24px rgba(217, 184, 119, 0.3);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #edf8ff;
  background: transparent;
}

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

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .topbar,
  main {
    width: min(1140px, calc(100vw - 1.4rem));
  }
}
