/* Rooted & Aligned — Where Wellness Meets Wealth
   Palette from the event carousel (Selah teal/blue on cream) */

:root{
  --navy: #1F3A5F;         /* primary brand navy from carousel */
  --navy-2: #2A4C7B;
  --teal: #2C7A7B;         /* Selah teal */
  --teal-2: #388A8B;
  --sand: #F5EFE6;         /* warm cream */
  --sand-2: #EAE0CE;
  --ink: #1B2A3C;
  --muted: #55647A;
  --line: #D9CEB9;
  --white: #FFFFFF;
  --brand-gradient: linear-gradient(135deg, #A9D3D5 0%, #6FA5AA 50%, #2C7A7B 100%);
  --shadow-sm: 0 2px 10px rgba(31,58,95,.08);
  --shadow-md: 0 12px 40px rgba(31,58,95,.14);
  --radius: 14px;
  --maxw: 1160px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:var(--navy); text-decoration:none; }
a:hover{ text-decoration:underline; }

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

/* HEADER */
.site-header{
  position: sticky; top:0; z-index: 40;
  background: rgba(245,239,230,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,58,95,.08);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding: 14px 24px; gap:20px; }
.brand{ display:flex; align-items:center; }
.brand img{ height: 48px; width:auto; }
.site-nav{ display:flex; align-items:center; gap: 28px; }
.site-nav a{ color: var(--navy); font-weight:500; font-size:15px; }
.site-nav a:hover{ color: var(--teal); text-decoration:none; }
.site-nav .btn{ margin-left: 4px; color: #fff !important; }
.site-nav .btn:hover{ color: #fff !important; text-decoration:none; }
@media (max-width: 780px){
  .site-nav a:not(.btn){ display:none; }
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding: 14px 28px; border-radius: 999px;
  font-weight:600; font-size: 16px; letter-spacing:.01em;
  border: 2px solid transparent; cursor:pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); text-decoration:none; }
.btn-primary{
  background: var(--navy); color: var(--white); border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--teal); border-color: var(--teal); color:#fff; }
.btn-ghost{ background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover{ background: var(--navy); color:#fff; }
.btn-sm{ padding: 10px 18px; font-size: 14px; }
.btn-lg{ padding: 18px 36px; font-size: 17px; }

/* HERO */
.hero{
  position: relative;
  isolation: isolate;
  min-height: 88vh;
  display: flex; align-items:center;
  color: var(--white);
  padding: 120px 0 100px;
  overflow: hidden;
  background: #1F3A5F;
}
.hero-media{
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(90deg, rgba(31,58,95,.75) 0%, rgba(31,58,95,.45) 45%, rgba(44,122,123,.35) 80%, rgba(44,122,123,.25) 100%),
    url('/assets/hero-bg.jpg') center/cover no-repeat;
}
.hero-overlay{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(18,35,58,.15) 0%, transparent 40%, transparent 65%, rgba(18,35,58,.45) 100%);
}
/* Decorative botanical shape */
.hero::before{
  content:"";
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(199,228,229,.14) 0%, transparent 65%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.hero::after{
  content:"";
  position: absolute; left: -150px; bottom: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(44,122,123,.3) 0%, transparent 65%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.hero-inner{ text-align:left; }
.eyebrow{
  font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .22em;
  font-weight:600; font-size: 12px; color: var(--teal);
  margin: 0 0 18px;
}
.hero .eyebrow{ color: #EAF6F6; }
.eyebrow.light{ color: rgba(255,255,255,.85); }
.eyebrow.center{ text-align:center; }
.hero h1{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 10vw, 128px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color:#fff;
}
.hero h1 .amp{ font-style: italic; color: #C7E4E5; font-weight:400; }
.tagline{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: #EAF6F6;
  margin: 0 0 34px;
}
.hero-facts{
  list-style:none; padding:0; margin: 0 0 32px;
  display: grid; gap: 12px;
  font-size: 17px;
}
.hero-facts li{ display:flex; align-items:center; gap: 12px; }
.hero-facts svg{ width:22px; height:22px; color:#C7E4E5; flex:0 0 22px; }
.hero-cta{ display:flex; gap: 14px; flex-wrap:wrap; }
.hero-cta .btn-primary{ background: #fff; color: var(--navy); border-color:#fff; }
.hero-cta .btn-primary:hover{ background: var(--teal); border-color: var(--teal); color:#fff; }
.hero-cta .btn-ghost{ color:#fff; border-color: rgba(255,255,255,.7); }
.hero-cta .btn-ghost:hover{ background: rgba(255,255,255,.14); color:#fff; }
.hero-note{
  margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.8);
  letter-spacing: .04em;
}

/* SECTIONS */
.section{ padding: 96px 0; }
.section-cream{ background: var(--sand-2); }
.section-brand{ background: var(--navy); color: #fff; }
.section-title{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.15;
  color: var(--navy);
  margin: 8px 0 20px;
  letter-spacing: -0.005em;
}
.section-title.center{ text-align:center; }
.section-title.light{ color: #fff; }
.section-sub{
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-sub.center{ text-align:center; }
.section-sub.light{ color: rgba(255,255,255,.82); }

.lede{ font-size: 19px; line-height: 1.65; color: var(--ink); margin: 10px 0 26px; }
.fine{ font-size: 14px; color: var(--muted); }

.feature-list{
  list-style:none; padding:0; margin: 24px 0;
  display:grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
  font-size: 17px;
}
.feature-list .dot{
  display:inline-block; width:8px; height:8px; border-radius:50%;
  background: var(--teal); margin-right:10px; vertical-align:middle;
}
@media (max-width:640px){
  .feature-list{ grid-template-columns: 1fr; }
}

/* QUOTE */
.quote-section{
  background: var(--brand-gradient);
  padding: 72px 0;
  color: #fff;
  text-align:center;
}
.quote-section blockquote{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.35;
  margin: 0; color: #fff;
  text-shadow: 0 1px 2px rgba(31,58,95,.15);
}

/* AGENDA */
.agenda-grid{
  list-style: none; padding: 0; margin: 40px 0 0;
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  counter-reset: step;
}
.agenda-grid li{
  background: #fff; border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal);
  position: relative;
}
.agenda-grid li::before{
  counter-increment: step;
  content: counter(step,decimal-leading-zero);
  position:absolute; top: 18px; right: 22px;
  font-family: var(--serif);
  font-size: 32px; color: var(--sand-2); font-weight:500;
}
.agenda-time{
  display:inline-block; font-size: 12px; font-weight:600;
  color: var(--teal); letter-spacing:.15em; text-transform:uppercase;
  background: rgba(44,122,123,.08); padding: 6px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.agenda-grid h3{
  font-family: var(--serif); font-weight: 600;
  font-size: 22px; color: var(--navy); margin: 6px 0 8px;
}
.agenda-grid p{ margin:0; color: var(--muted); font-size: 15px; }
.agenda-community{ border-top-color: var(--navy) !important; }
.agenda-community h3{ color: var(--navy); }
@media (max-width: 900px){ .agenda-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .agenda-grid{ grid-template-columns: 1fr; } }

/* HOSTS */
.hosts-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px;
}
.host-card{
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; text-align:center;
  box-shadow: var(--shadow-sm);
}
.host-photo{
  width: 148px; height: 148px; margin: 0 auto 18px;
  border-radius: 50%; overflow:hidden;
  border: 4px solid #fff;
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  background: var(--sand);
}
.host-photo img{ width:100%; height:100%; object-fit: cover; object-position: top; }
.host-photo-initials{
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500;
  font-size: 54px; letter-spacing: 0.02em;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
}
.host-card h3{
  font-family: var(--serif); font-weight: 600; font-size: 26px;
  color: var(--navy); margin: 0 0 4px;
}
.host-role{
  font-size: 13px; font-weight: 600; color: var(--teal);
  letter-spacing: .08em; text-transform: uppercase; margin: 0 0 2px;
}
.host-business{
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 15px; color: var(--navy);
  margin: 0 0 14px;
}
.host-card p:last-child{ color: var(--muted); font-size: 15px; margin:0; }
@media (max-width: 1100px){ .hosts-grid{ grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left:auto; margin-right:auto; } }
@media (max-width: 620px){ .hosts-grid{ grid-template-columns: 1fr; max-width: 380px; } }

.partners-row{
  margin: 56px auto 0;
  display:flex; align-items:center; justify-content:center; gap: 34px;
  flex-wrap: wrap;
}
.partner-logo{ height: 62px; width:auto; opacity: 1; }
.partner-selah{ height: 92px; }
.partner-stack{
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
}
.partner-nm{ height: 44px; }
.partner-riverrock{ height: 62px; }
.partners-x{
  font-family: var(--serif); font-size: 30px; color: var(--muted);
  align-self: center;
}
@media (max-width: 560px){
  .partner-selah{ height: 74px; }
  .partner-nm{ height: 36px; }
  .partner-riverrock{ height: 52px; }
}

/* LOCATION */
.location-grid{
  display:grid; grid-template-columns: 1fr 1.1fr; gap: 44px;
  align-items:center;
}
address{ font-style: normal; font-size: 20px; line-height: 1.5; color: var(--ink); margin: 12px 0 18px; }
.location-cta{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 20px; }
.map-wrap{
  aspect-ratio: 4/3;
  border-radius: var(--radius); overflow:hidden;
  box-shadow: var(--shadow-md);
  background: var(--sand-2);
}
.map-wrap iframe{ width:100%; height:100%; border:0; display:block; }
@media (max-width: 900px){ .location-grid{ grid-template-columns: 1fr; } }

/* REGISTER FORM */
.register-form{
  background: #fff; color: var(--ink);
  border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}
.field{ margin-bottom: 20px; }
.field-row{
  display:grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 640px){ .field-row{ grid-template-columns: 1fr; } }
.field label{
  display:block; font-weight:600; font-size: 14px;
  color: var(--navy); margin-bottom: 8px; letter-spacing: .01em;
}
.field .req{ color: #B84C4C; margin-left: 3px; }
.field .opt{ color: var(--muted); font-weight: 400; font-size: 13px; margin-left: 4px; }
.field-hint{ margin: -4px 0 8px; font-size: 13px; color: var(--muted); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field textarea{
  width:100%; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 16px; color: var(--ink);
  background: #FBF8F2; transition: border .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus{
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44,122,123,.18);
  background: #fff;
}
.field textarea{ resize: vertical; min-height: 88px; }

.field-consent{ margin-top: 4px; }
.check{
  display:flex; align-items:flex-start; gap: 12px;
  font-size: 14px; color: var(--muted); font-weight: 400;
  cursor:pointer;
}
.check input{
  margin-top: 3px; width:18px; height:18px; accent-color: var(--teal);
}
.hp{ position:absolute; left:-9999px; height:0; overflow:hidden; }

.register-form .btn{ width: 100%; }
.form-fine{ text-align:center; margin: 16px 0 0; font-size: 13px; color: var(--muted); }

/* FOOTER */
.site-footer{
  background: #12233A; color: #EAF0F7;
  padding: 56px 0 40px;
}
.footer-inner{
  display:grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 40px;
  align-items:start;
}
.footer-brand img{ height: 64px; width:auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p{ margin:0; font-size: 14px; color: rgba(255,255,255,.7); }
.footer-partners .eyebrow{ color: rgba(255,255,255,.6); margin-bottom: 12px; }
.footer-partners img{ height: 40px; width:auto; filter: brightness(0) invert(1); opacity: .9; }
.footer-legal p{ margin: 0 0 8px; font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.55; }
.footer-legal p:first-child{ font-size: 14px; color: rgba(255,255,255,.85); }
@media (max-width: 780px){
  .footer-inner{ grid-template-columns: 1fr; }
}
