/* Shana Rider Consulting – main.css v1.0.0 */

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

:root {
  --gold:      #b8922e;
  --gold-pale: #f5ede0;
  --dark:      #1a1a1a;
  --mid:       #4a4a4a;
  --muted:     #888;
  --border:    #e0d8cc;
  --white:     #ffffff;
  --off-white: #faf8f5;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', Arial, sans-serif;
  --ease:      0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── GOLD TOP BAR ── */
.gold-bar { height: 5px; background: var(--gold); width: 100%; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 8px 12px;
  position: relative;
  white-space: nowrap;
  transition: color var(--ease);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--ease);
}

.site-nav a:hover,
.site-nav a.active { color: var(--gold); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

/* CTA button */
.nav-cta {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 11px 20px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--ease);
}

.nav-cta:hover { background: var(--dark); color: var(--white); }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ── HERO ── */
.hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 100px 2rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero p {
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all var(--ease);
  cursor: pointer;
  border: none;
}

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--gold); color: var(--white); }

/* ── SECTIONS ── */
.section { padding: 90px 2rem; }
.section-alt { background: var(--off-white); }

.container { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }

.label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 70px 2rem 60px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 1rem; color: var(--mid); max-width: 540px; margin: 0 auto; line-height: 1.8; }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 14px; margin: 2rem 0; }
.divider-line { flex: 1; height: 1px; background: var(--border); }
.divider-dot { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: box-shadow var(--ease), transform var(--ease);
}

.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.card-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; margin-bottom: 0.8rem; }
.card p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }

/* ── PLAN CARDS ── */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 820px; margin: 3rem auto 0; }

.plan-card { border: 1px solid var(--border); background: var(--white); padding: 2.5rem; text-align: center; transition: all var(--ease); }
.plan-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(184,146,46,0.1); }
.plan-card.featured { border-color: var(--gold); background: var(--gold-pale); }

.plan-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 3px 10px;
  margin-bottom: 1rem;
}

.plan-price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  margin: 0.8rem 0;
}

.plan-period {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--mid);
  text-align: left;
}

.check-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

/* ── TOPIC GRID ── */
.topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.topic-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.topic-item span:first-child { font-size: 1.3rem; flex-shrink: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--dark);
  padding: 70px 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner h2 em { font-style: italic; color: var(--gold); }

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ── CONTACT ITEMS ── */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

/* ── FAQ ── */
details {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
}

details summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

details summary::-webkit-details-marker { display: none; }
details summary .faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
details[open] summary .faq-icon { transform: rotate(45deg); }
details p { margin-top: 0.8rem; color: var(--mid); line-height: 1.8; font-size: 0.95rem; }
.faq-end { border-top: 1px solid var(--border); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 2rem 30px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
}

.footer-logo-wrap {
  background: var(--white);
  display: inline-block;
  padding: 10px 16px;
  margin-bottom: 1rem;
}

.footer-logo-wrap img { height: 52px; width: auto; display: block; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-lic { color: rgba(255,255,255,0.35); font-size: 0.72rem; }

/* ── GRAVITY FORMS ── */
.gform_wrapper, .gform_wrapper * { font-family: var(--sans) !important; }

.gform_wrapper .gfield_label,
.gform_wrapper label {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: var(--dark) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper select,
.gform_wrapper textarea {
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 13px 16px !important;
  font-size: 0.95rem !important;
  font-weight: 300 !important;
  color: var(--dark) !important;
  background: var(--off-white) !important;
  width: 100% !important;
  box-shadow: none !important;
  transition: border-color 0.25s, background 0.25s !important;
}

.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(184,146,46,0.08) !important;
}

.gform_wrapper input[type="submit"],
.gform_wrapper .gform_button {
  background: var(--gold) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 15px 40px !important;
  font-family: var(--sans) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.3s !important;
  box-shadow: none !important;
  width: auto !important;
}

.gform_wrapper input[type="submit"]:hover,
.gform_wrapper .gform_button:hover { background: var(--dark) !important; }
.gform_wrapper .gfield_required { color: var(--gold) !important; }
.gform_wrapper .validation_message { color: #c0392b !important; font-size: 0.78rem !important; }
.gform_wrapper .gform_confirmation_message { color: var(--gold) !important; font-size: 1.1rem !important; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .plan-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }

  .site-nav { display: none; }
  .nav-cta { display: none; }

  .hamburger { display: flex; }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 93px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    padding: 1rem 2rem 1.5rem;
    flex-direction: column;
  }

  .mobile-nav.open { display: flex; }

  .mobile-nav a {
    display: block;
    padding: 14px 0;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    transition: color var(--ease);
  }

  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a:hover,
  .mobile-nav a.active { color: var(--gold); }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 600px) {
  .hero { padding: 70px 1.5rem; }
  .section { padding: 60px 1.5rem; }
  .header-inner { padding: 0 1.5rem; }
}
