:root {
  --navy-deep: #0f1a30;
  --navy: #1a2744;
  --navy-soft: #243456;
  --gold: #c9a961;
  --gold-bright: #e6c884;
  --peach: #f4c19c;
  --orange: #e89d6b;
  --cliff: #6b7a56;
  --ink: #f6efe1;
  --ink-dim: rgba(246, 239, 225, 0.72);
  --ink-faint: rgba(246, 239, 225, 0.5);

  --card-bg: rgba(15, 26, 48, 0.55);
  --card-border: rgba(201, 169, 97, 0.28);
  --card-border-hover: rgba(230, 200, 132, 0.75);

  --radius: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Sunset sky backdrop, echoing the logo palette */
.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 700px at 50% -10%, var(--peach) 0%, transparent 55%),
    radial-gradient(900px 600px at 80% 15%, var(--orange) 0%, transparent 60%),
    radial-gradient(1000px 800px at 20% 30%, rgba(90, 122, 158, 0.55) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 70%, #060b17 100%);
}

.sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(0, 0, 0, 0.55), transparent 60%);
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) clamp(20px, 5vw, 32px) 48px;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 44px);
}

/* Hero */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.logo-ring {
  width: clamp(180px, 48vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold) 45%, #7a6336 100%);
  box-shadow: var(--shadow), 0 0 0 1px rgba(230, 200, 132, 0.25);
}

.logo-ring picture,
.logo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  letter-spacing: 0.01em;
  margin: 4px 0 0;
  line-height: 1.05;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 20px rgba(201, 169, 97, 0.15);
}

.tagline {
  margin: 0;
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  max-width: 34ch;
}

/* Social link cards */
.links {
  display: grid;
  gap: 14px;
}

.link-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--card-border-hover);
  background: rgba(26, 39, 68, 0.72);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  outline: none;
}

.link-card:active {
  transform: translateY(0);
}

.link-card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(230, 200, 132, 0.18);
}

.link-card .icon svg {
  width: 26px;
  height: 26px;
}

.link-card .label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.link-card .platform {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.link-card .handle {
  font-size: 0.85rem;
  color: var(--ink-faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-card .arrow {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 160ms ease, color 160ms ease;
}

.link-card:hover .arrow,
.link-card:focus-visible .arrow {
  transform: translateX(4px);
  color: var(--gold-bright);
}

/* Platform accents on the icon tile */
.youtube .icon { color: #ff3d3d; }
.instagram .icon { color: #f4c19c; background: linear-gradient(135deg, rgba(244, 114, 86, 0.2), rgba(197, 80, 156, 0.2)); }
.tiktok .icon { color: #e6c884; }
.facebook .icon { color: #5a9cff; }

/* Featured reel */
.reel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reel-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
  color: var(--gold-bright);
}

.reel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: #000;
  box-shadow: var(--shadow);
}

.reel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* About + footer */
.about {
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 52ch;
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}

.about p { margin: 0; }

.about .lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-bright);
}

.about .cta {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.foot {
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding-top: 8px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.foot p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
