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

:root {
  --ink: #1e2444;
  --ink-deep: #12162e;
  --paper: #f6f1e4;
  --paper-card: #fbf8f0;
  --gold: #b8863a;
  --gold-bright: #d9ac5a;
  --terracotta: #bb6b3c;
  --terracotta-deep: #9c542c;
  --muted: #85795f;
  --line: rgba(184, 134, 58, 0.25);
  --error: #b8503f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 15% -10%, rgba(184, 134, 58, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 5%, rgba(187, 107, 60, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #faf6ec, var(--paper) 45%, #f0e6d3 100%);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(184,134,58,0.35), transparent),
    radial-gradient(1px 1px at 80% 15%, rgba(187,107,60,0.3), transparent),
    radial-gradient(1.5px 1.5px at 60% 60%, rgba(184,134,58,0.3), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(187,107,60,0.28), transparent),
    radial-gradient(1px 1px at 90% 75%, rgba(184,134,58,0.25), transparent),
    radial-gradient(1.5px 1.5px at 45% 35%, rgba(184,134,58,0.3), transparent),
    radial-gradient(1px 1px at 15% 55%, rgba(187,107,60,0.25), transparent);
  background-size: 100% 100%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--ink-deep);
  margin: 0;
}

a { color: var(--terracotta); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Buttons */

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #fffaf0;
  border: none;
  border-radius: 10px;
  padding: 15px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(184, 134, 58, 0.28); }

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-deep);
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--terracotta); color: #fffaf0; }

/* Card */

.card {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 28px rgba(120, 90, 40, 0.06);
}

/* Site header */

.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta-deep);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--terracotta-deep); }

/* Site footer */

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding: 36px 0 44px;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.site-footer p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--terracotta-deep); }

@media (max-width: 640px) {
  .site-header .wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-nav { gap: 16px; }
}
