:root {
  --navy: #0d2438;
  --navy-deep: #081826;
  --gold: #c9a24b;
  --gold-light: #e4c979;
  --sage: #4f7a6b;
  --cream: #f6f1e6;
  --ink: #12222f;
  --muted: #8fa3b3;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--cream);
  background: radial-gradient(circle at 20% 20%, #123145 0%, var(--navy) 45%, var(--navy-deep) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.page-wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Ambient glows */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.bg-glow-1 {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -150px; right: -100px;
}
.bg-glow-2 {
  width: 450px; height: 450px;
  background: var(--sage);
  bottom: -150px; left: -120px;
  opacity: 0.2;
}

.cross-motif {
  position: fixed;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e4c979'%3E%3Cpath d='M11 2H13V10H21V13H13V22H11V13H3V10H11V2Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

@media (max-width: 767px) {
  .cross-motif { display: none; }
}

/* Header */
.site-header {
  padding: 2rem 0 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(228, 201, 121, 0.4);
  color: var(--gold-light);
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--cream);
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
}

.hero-inner {
  max-width: 680px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 1.8rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(228, 201, 121, 0.08);
  border: 1px solid rgba(228, 201, 121, 0.3);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 2.2rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(228, 201, 121, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(228, 201, 121, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(228, 201, 121, 0); }
  100% { box-shadow: 0 0 0 0 rgba(228, 201, 121, 0); }
}

/* Notify form */
.notify-form {
  display: flex;
  gap: 0.6rem;
  max-width: 460px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.notify-input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
}

.notify-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.notify-input:focus {
  background: rgba(255,255,255,0.09);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.2);
}

.notify-btn {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.notify-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--navy-deep);
}

.notify-alert {
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  max-width: 460px;
}

.notify-success {
  background: rgba(79, 122, 107, 0.25);
  border: 1px solid rgba(79, 122, 107, 0.6);
  color: #c6e2d5;
}

.notify-error {
  background: rgba(180, 70, 70, 0.18);
  border: 1px solid rgba(180, 70, 70, 0.5);
  color: #f0c4c4;
}

/* Contact strip */
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

a.contact-item:hover {
  color: var(--gold-light);
}

.contact-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-verse {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0;
}
