/* egypt-muse.xyz — Egypt Muse Editorial Ltd
   Twilight indigo + wheat · centered hero · pill CTA · prefix emuz- */

:root {
  --emuz-indigo: #3d2e6b;
  --emuz-indigo-lt: #524580;
  --emuz-wheat: #dbc9a8;
  --emuz-copper: #b56a3a;
  --emuz-copper-dk: #8f5230;
  --emuz-bg: #f3ede4;
  --emuz-paper: #fffdf9;
  --emuz-ink: #252018;
  --emuz-muted: #6a5f52;
  --emuz-line: #cfc3b0;
  --emuz-r: 12px;
  --emuz-r-pill: 999px;
  --emuz-max: 1160px;
  --emuz-serif: Baskerville, "Hoefler Text", Garamond, Georgia, serif;
  --emuz-sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--emuz-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--emuz-ink);
  background: var(--emuz-bg);
}

h1, h2, h3, h4 {
  font-family: var(--emuz-serif);
  color: var(--emuz-indigo);
  line-height: 1.2;
  margin: 0 0 0.9rem;
}

p { margin: 0 0 1.15rem; }

a { color: var(--emuz-copper); }

a:hover {
  color: var(--emuz-indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

:focus-visible {
  outline: 2px solid var(--emuz-copper);
  outline-offset: 3px;
}

.emuz-frame {
  max-width: var(--emuz-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header — logo left, nav center, pill CTA detached right */
.emuz-bar {
  background: var(--emuz-paper);
  border-bottom: 1px solid var(--emuz-line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.emuz-bar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
}

.emuz-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--emuz-indigo);
  font-weight: 800;
  font-family: var(--emuz-serif);
}

.emuz-logo__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emuz-copper);
}

.emuz-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.emuz-links a {
  text-decoration: none;
  color: var(--emuz-ink);
  padding: 8px 12px;
  font-size: 0.94rem;
  border-radius: var(--emuz-r);
}

.emuz-links a:hover,
.emuz-links a.is-on {
  background: rgba(61, 46, 107, 0.08);
  color: var(--emuz-indigo);
  text-decoration: none;
}

.emuz-pill-cta {
  display: inline-block;
  padding: 11px 22px;
  background: var(--emuz-copper);
  color: #fff !important;
  border-radius: var(--emuz-r-pill);
  font-weight: 700;
  text-decoration: none !important;
  font-size: 0.92rem;
  white-space: nowrap;
}

.emuz-pill-cta:hover {
  background: var(--emuz-copper-dk);
  color: #fff !important;
}

.emuz-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.emuz-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emuz-indigo);
  margin: 5px 0;
}

/* Centered hero + stats row */
.emuz-splash {
  text-align: center;
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--emuz-wheat) 0%, var(--emuz-bg) 55%);
}

.emuz-splash__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emuz-copper);
  font-weight: 700;
  margin-bottom: 14px;
}

.emuz-splash h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.emuz-splash__intro {
  max-width: 58ch;
  margin: 0 auto 28px;
  color: var(--emuz-muted);
  font-size: 1.05rem;
}

.emuz-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}

.emuz-stats li { text-align: center; }

.emuz-stats strong {
  display: block;
  font-family: var(--emuz-serif);
  font-size: 2.1rem;
  color: var(--emuz-copper);
}

.emuz-stats span {
  font-size: 0.85rem;
  color: var(--emuz-muted);
}

/* Buttons — pill + ghost underline */
.emuz-act {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--emuz-r-pill);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
}

.emuz-act--fill {
  background: var(--emuz-indigo);
  color: #fff;
}

.emuz-act--fill:hover {
  background: var(--emuz-indigo-lt);
  color: #fff;
  text-decoration: none;
}

.emuz-act--ghost {
  background: transparent;
  color: var(--emuz-indigo);
  border: 2px solid var(--emuz-indigo);
}

.emuz-act--ghost:hover {
  text-decoration: underline;
}

.emuz-btnrow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

/* Sections */
.emuz-zone { padding: 52px 0; }

.emuz-zone--cream { background: var(--emuz-paper); }

.emuz-zone__lead { max-width: 64ch; margin-bottom: 28px; }

.emuz-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.emuz-card {
  background: var(--emuz-paper);
  border-radius: var(--emuz-r);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(37, 32, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.emuz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(37, 32, 24, 0.12);
}

.emuz-card__media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.emuz-card__body { padding: 18px 20px 22px; }

.emuz-lane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.emuz-lane--flip .emuz-lane__text { order: 2; }

.emuz-lane--flip .emuz-lane__media { order: 1; }

.emuz-faq details {
  background: var(--emuz-paper);
  border-radius: var(--emuz-r);
  padding: 14px 18px;
  margin-bottom: 10px;
  border: 1px solid var(--emuz-line);
}

.emuz-faq summary { cursor: pointer; font-weight: 700; }

.emuz-table {
  width: 100%;
  border-collapse: collapse;
}

.emuz-table th,
.emuz-table td {
  border: 1px solid var(--emuz-line);
  padding: 11px 14px;
  text-align: left;
}

.emuz-table th {
  background: var(--emuz-indigo);
  color: #fff;
}

.emuz-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.emuz-field input,
.emuz-field select,
.emuz-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--emuz-line);
  border-radius: var(--emuz-r);
  margin-bottom: 14px;
  font: inherit;
  background: var(--emuz-paper);
}

.emuz-field textarea { min-height: 130px; resize: vertical; }

.emuz-field__msg { font-weight: 700; color: var(--emuz-indigo); }

.emuz-strip {
  background: var(--emuz-indigo);
  color: #fff;
  text-align: center;
  padding: 44px 24px;
}

.emuz-strip a { color: var(--emuz-wheat); }

.emuz-head { padding: 44px 0 20px; }

.emuz-head h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); }

.emuz-prose { max-width: 70ch; }

.emuz-prose--full { max-width: none; }

.emuz-crew {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.emuz-crew figure {
  margin: 0;
  text-align: center;
  background: var(--emuz-paper);
  border-radius: var(--emuz-r);
  padding: 16px;
  box-shadow: 0 4px 14px rgba(37, 32, 24, 0.06);
}

.emuz-crew img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
}

.emuz-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.emuz-tier {
  background: var(--emuz-paper);
  border-radius: var(--emuz-r);
  padding: 28px 22px;
  border: 2px solid var(--emuz-line);
}

.emuz-tier--hot {
  border-color: var(--emuz-copper);
  box-shadow: 0 8px 24px rgba(181, 106, 58, 0.15);
}

.emuz-tier__cost {
  font-family: var(--emuz-serif);
  font-size: 2.15rem;
  color: var(--emuz-copper);
}

/* 3-column footer */
.emuz-base {
  background: var(--emuz-indigo);
  color: #d8d2e8;
  margin-top: 48px;
}

.emuz-base a { color: var(--emuz-wheat); }

.emuz-base__cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 44px 0 32px;
}

.emuz-base__title {
  color: #fff;
  font-family: var(--emuz-serif);
  margin-bottom: 12px;
}

.emuz-base ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.emuz-base li { margin-bottom: 8px; }

.emuz-base address {
  font-style: normal;
  line-height: 1.65;
  font-size: 0.9rem;
}

.emuz-base__line {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .emuz-cards, .emuz-tiers, .emuz-crew { grid-template-columns: 1fr 1fr; }
  .emuz-lane { grid-template-columns: 1fr; }
  .emuz-lane--flip .emuz-lane__text,
  .emuz-lane--flip .emuz-lane__media { order: unset; }
  .emuz-base__cols { grid-template-columns: 1fr; }
  .emuz-bar__inner { grid-template-columns: 1fr auto; }
  .emuz-links { display: none; }
  .emuz-toggle { display: block; }
  .emuz-links.is-open {
    display: flex;
    flex-direction: column;
    grid-column: 1 / -1;
    background: var(--emuz-paper);
    padding: 12px 0;
    border-top: 1px solid var(--emuz-line);
  }
}

@media (max-width: 600px) {
  .emuz-cards, .emuz-tiers, .emuz-crew { grid-template-columns: 1fr; }
  .emuz-pill-cta { display: none; }
  .emuz-splash { padding: 48px 0 36px; }
}

@media (max-width: 420px) {
  .emuz-stats { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .emuz-card { transition: none; }
}
