:root {
  --bg: #f3e6d7;
  --text: #222222;
  --accent-gold: #c9a351;
  --deep-1: #2b2142;
  --deep-2: #111018;
  --neon-1: #9A4DFF;
  --neon-2: #00D2C3;
  --neon-3: #FFB74D;
  --card: #ffffffcc;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(243, 230, 215, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e0d2c0;
}

.logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; }
.brand-tag { font-size: 0.7rem; color: #5c4a1f; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--accent-gold), #8d6f32);
  color: #111018;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 8px 16px rgba(93, 58, 15, 0.2);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(93, 58, 15, 0.28); }
.btn:active { transform: translateY(0); }
.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid #c9a351aa;
  box-shadow: none;
}
.btn.ghost:hover, .btn.ghost:focus-visible { background: #fff5; }

.section {
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
  background: radial-gradient(circle at 20% 20%, #ffffffcc 0%, #f3e6d7 40%, #f3e6d7 100%);
  border-radius: 28px;
  margin-top: 1.25rem;
}
.hero .eyebrow { color: #5c4a1f; letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; font-weight: 700; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0.4rem 0 1rem;
}
.hero h1 span { position: relative; }
.hero h1 span::after { content: ""; position: absolute; left: 0; bottom: 0; height: 6px; width: 100%; background: linear-gradient(90deg, var(--neon-1), var(--neon-2)); opacity: 0.65; border-radius: 999px; }
.lede { font-size: 1.05rem; max-width: 40ch; }
.actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1rem 0 1.5rem; }
.hero-visual { display: grid; gap: 1rem; justify-items: center; }
.hero-visual .logo-mark { background: linear-gradient(135deg, #ffffff, #f0e4d4); border-radius: 18px; padding: 0.75rem; box-shadow: inset 0 1px 0 #fff, 0 16px 30px rgba(17,16,24,0.12); }
.hero-visual img.hero-illustration { width: min(640px, 100%); border-radius: 22px; box-shadow: 0 20px 40px rgba(17,16,24,0.16); }

.section-heading h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0.3rem 0; }
.section-heading { max-width: 780px; }
.eyebrow { letter-spacing: 2px; text-transform: uppercase; font-size: 0.75rem; font-weight: 700; color: #5c4a1f; margin: 0; }

.footer { max-width: 1200px; margin: 2rem auto 3rem; padding: 1rem 1.25rem 0; border-top: 1px solid #e0d2c0; color: #5c4a1f; display: grid; gap: 0.75rem; }
.footer-brand { display: flex; gap: 0.6rem; align-items: center; }
.footer img { width: 38px; height: 38px; }
.footer-links { display: flex; gap: 1rem; font-weight: 600; }
.footer a { text-decoration: none; }
.footer a:hover, .footer a:focus-visible { color: #111018; }

@media (min-width: 960px) {
  .hero { grid-template-columns: 1.1fr 0.9fr; padding: 3rem; }
  .section { padding: 5rem 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
}
