/* RAHtify, LLC — site styles (brand: Transform • Educate • Empower) */
:root {
  --purple: #5C3D99;       /* primary brand purple */
  --purple-deep: #43296f;  /* darker purple for gradients/headers */
  --purple-darker: #33205a;
  --violet: #8B3DBF;       /* violet accent */
  --blue: #4A7FD4;         /* secondary blue */
  --lilac: #EDE7F6;        /* light purple background */
  --skyblue: #E3EEFF;      /* light blue background */
  --ink: #23202b;
  --muted: #5c5766;
  --paper: #ffffff;
  --mist: #f6f4fb;
  --line: #e6e1f0;
  --max: 1120px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(67, 41, 111, 0.12);
  --font: "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; color: var(--purple-deep); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--purple); }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand:hover { text-decoration: none; }
.brand img { height: 52px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand .brand-name { font-weight: 800; color: var(--purple-deep); font-size: 1.15rem; }
.brand .brand-tag { font-size: .64rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--violet); font-weight: 600; }

.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 500; text-decoration: none; }
.nav-links a:hover { color: var(--purple); }
.nav-links a.active { color: var(--purple); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--purple-deep); cursor: pointer; }

.btn {
  display: inline-block; padding: 12px 24px; border-radius: 999px;
  font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: .18s ease;
  text-decoration: none;
}
.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { background: #7a2fac; text-decoration: none; transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.65); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.14); text-decoration: none; }
.btn-outline { border-color: var(--purple); color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; text-decoration: none; }

/* Hero */
.hero {
  background: radial-gradient(1100px 480px at 82% -12%, rgba(74,127,212,.45), transparent),
              linear-gradient(150deg, var(--purple-darker), var(--purple) 55%, var(--violet));
  color: #f2eefa; padding: 84px 0 92px;
}
.hero .eyebrow { color: #d9c7f2; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: .78rem; }
.hero h1 { color: #fff; margin-top: 12px; }
.hero p.lead { font-size: 1.2rem; color: #e5ddf3; max-width: 660px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* Sections */
.section { padding: 72px 0; }
.section.mist { background: var(--mist); }
.section-head { max-width: 740px; margin-bottom: 40px; }
.section-head .eyebrow { color: var(--violet); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: .76rem; }
.lead { font-size: 1.12rem; color: var(--muted); }

/* Grid cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow);
}
.card .icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--violet), var(--blue)); color: #fff;
  display: grid; place-items: center; font-size: 1.3rem;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; }
.card ul { margin: .5rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.card ul li { margin-bottom: .35rem; }
.card.tinted-purple { background: var(--lilac); border-color: #ddd0f0; }
.card.tinted-blue { background: var(--skyblue); border-color: #cfe0fb; }
.card.tinted-purple h3 { color: var(--purple); }
.card.tinted-blue h3 { color: var(--blue); }

/* Pills */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; font-weight: 600; color: var(--purple-deep); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 24px 16px; box-shadow: var(--shadow); }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--violet); }
.stat .label { color: var(--muted); font-weight: 600; font-size: .92rem; }

/* Delivery methods band */
.methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.method { text-align: center; color: #fff; border-radius: 12px; padding: 22px 14px; font-weight: 700; }
.method:nth-child(odd) { background: var(--purple); }
.method:nth-child(even) { background: var(--blue); }

/* CTA band */
.cta { background: linear-gradient(120deg, var(--purple), var(--violet)); color: #fff; border-radius: 20px; padding: 48px; text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: #ede6f7; max-width: 600px; margin: 0 auto 22px; }

/* About / split */
.split { display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: center; }
.portrait {
  border-radius: 20px; aspect-ratio: 1/1; box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--lilac), var(--skyblue));
  display: grid; place-items: center; padding: 28px;
}
.portrait img { width: 100%; height: auto; }
.values { list-style: none; padding: 0; margin: 18px 0 0; }
.values li { padding: 10px 0 10px 32px; position: relative; color: var(--muted); }
.values li::before { content: "✦"; position: absolute; left: 0; color: var(--violet); font-weight: 800; }

/* Credentials table */
.cred { width: 100%; border-collapse: collapse; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.cred th, .cred td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.cred th { background: var(--purple); color: #fff; width: 34%; font-weight: 700; }
.cred tr:last-child th, .cred tr:last-child td { border-bottom: 0; }
.cred td { color: var(--ink); background: #fff; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; color: var(--purple-deep); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--violet); border-color: var(--violet); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .9rem; color: var(--muted); }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.info-item .ic { font-size: 1.3rem; color: var(--violet); }

/* Footer */
.site-footer { background: var(--purple-darker); color: #d7cdec; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 34px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 40px; width: 40px; border-radius: 50%; background: #fff; padding: 3px; }
.footer-brand span { color: #fff; font-weight: 800; font-size: 1.1rem; }
.site-footer h4 { color: #fff; margin: 0 0 14px; font-size: 1rem; }
.site-footer a { color: #d7cdec; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px; font-size: .88rem; color: #b3a6cf; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Utility */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.tagline-band { background: var(--lilac); text-align: center; padding: 18px 0; color: var(--purple-deep); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: .82rem; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-2, .grid-4, .stats, .methods, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats, .methods { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .portrait { max-width: 340px; margin: 0 auto; }
  .cred th { width: 40%; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 18px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .cta { padding: 36px 24px; }
}
