@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --sand: #f5ecdc;
  --sand-strong: #e9d3ac;
  --foam: rgba(255, 250, 240, 0.76);
  --lagoon: #0d5f63;
  --lagoon-soft: #1d8e94;
  --forest: #194b37;
  --sunset: #d47d45;
  --text: #183035;
  --text-soft: #5b6c6f;
  --card-line: rgba(15, 73, 72, 0.14);
  --card-shadow: 0 30px 90px rgba(14, 35, 39, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(233, 211, 172, 0.9), transparent 25%),
    radial-gradient(circle at 15% 25%, rgba(23, 111, 99, 0.28), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(212, 125, 69, 0.22), transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(15, 95, 99, 0.22), transparent 22%),
    linear-gradient(140deg, #f7eedf 0%, #e8f3ef 44%, #d9efe8 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}

body::before {
  top: 6vh;
  right: 7vw;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.78), transparent 36%),
    linear-gradient(160deg, rgba(13, 95, 99, 0.36), rgba(29, 142, 148, 0.06));
  opacity: 0.8;
}

body::after {
  left: -8vw;
  bottom: -10vh;
  width: min(45vw, 560px);
  height: min(45vw, 560px);
  border-radius: 55% 45% 60% 40%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.4), transparent 26%),
    linear-gradient(180deg, rgba(212, 125, 69, 0.24), rgba(25, 75, 55, 0.1));
  opacity: 0.9;
}

a {
  color: var(--lagoon);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 4.5rem) 1.5rem 1.5rem;
}

.home-stage {
  display: flex;
  justify-content: center;
  width: min(100%, 1180px);
  padding: 0 0.5rem;
}

.home-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: clamp(2.4rem, 4vw, 3.8rem);
  border: 1px solid rgba(24, 48, 53, 0.12);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.7) inset,
    0 22px 48px rgba(13, 35, 44, 0.08),
    0 42px 110px rgba(14, 35, 39, 0.16);
  backdrop-filter: blur(20px);
}

.home-card-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  margin: 0 auto;
}

.home-card-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
  opacity: 0.5;
}

.home-card-glow-left {
  top: -90px;
  left: -80px;
  background: radial-gradient(circle, rgba(15, 95, 99, 0.22), transparent 68%);
}

.home-card-glow-right {
  right: -100px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(212, 125, 69, 0.22), transparent 68%);
}

.brand-panel,
.quote-panel,
.promotion,
.note {
  position: relative;
  z-index: 2;
}

.brand-panel {
  padding-bottom: 2rem;
}

.eyebrow,
.section-label {
  margin: 0 0 0.85rem;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-lockup {
  max-width: 180px;
}

.brand-logo {
  display: block;
  width: min(100%, 380px);
  height: auto;
}

.brand-summary {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.quote-panel {
  margin-top: 0.2rem;
  padding: 1.35rem 0 1.85rem;
}

.quote-kicker {
  margin: 0 0 0.75rem;
  color: var(--lagoon-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-copy {
  margin: 0;
  max-width: 760px;
  color: var(--lagoon);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 2rem + 3vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.quote-copy span {
  display: block;
  color: var(--sunset);
  font-weight: 700;
}

.quote-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 1.5rem;
  background: rgba(24, 48, 53, 0.22);
}

.promotion {
  padding: 0.15rem 0 0.4rem;
}

.services,
.contact,
.status {
  margin: 0;
}

.services {
  max-width: 860px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
}

.note {
  padding-top: 1.6rem;
}

.status {
  color: var(--forest);
  font-size: 1.15rem;
  font-weight: 800;
}

.contact {
  margin-top: 0.5rem;
  color: var(--text-soft);
}

.affiliate-sites {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.affiliate-sites a {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(13, 95, 99, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--lagoon);
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(15, 46, 48, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.affiliate-sites a:hover {
  border-color: rgba(13, 95, 99, 0.28);
  box-shadow: 0 18px 36px rgba(15, 46, 48, 0.1);
  text-decoration: none;
  transform: translateY(-2px);
}

.site-footer {
  padding: 0 1.25rem 1.5rem;
  color: rgba(24, 48, 53, 0.72);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-main {
    align-items: flex-start;
  }

  .home-card {
    border-radius: 24px;
  }

  .affiliate-sites {
    grid-template-columns: 1fr;
  }
}
