@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Core Health & Wellness — simple, fast, responsive */
:root{
  --bg: #0b0c0f;
  --panel: #10121a;
  --text: #f2f2f2;
  --muted: #c7c7c7;
  --gold: #d7b24a;
  --gold2:#b8902e;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 15% 0%, rgba(215,178,74,0.22), transparent 60%),
              radial-gradient(900px 600px at 90% 20%, rgba(215,178,74,0.12), transparent 55%),
              var(--bg);
  line-height: 1.55;
}

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

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

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left: 16px; top: 16px; width:auto; height:auto; padding:10px 14px;
  background: var(--panel); border:1px solid var(--border); border-radius: 10px;
  z-index: 9999;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(11,12,15,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 240px;
}
.brand-mark{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.brand-name{
  font-weight: 700;
  letter-spacing: 0.4px;
}
.brand-tag{
  color: var(--muted);
  font-size: 0.92rem;
}

.nav{
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.nav a{ color: var(--muted); font-weight: 600; }
.nav a:hover{ color: #fff; text-decoration:none; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(215,178,74,1), rgba(184,144,46,1));
  color: #0b0c0f;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 16px 30px rgba(215,178,74,0.18);
  cursor: pointer;
  text-decoration:none;
}
.btn:hover{ filter: brightness(1.04); text-decoration:none; }
.btn:active{ transform: translateY(1px); }
.btn-sm{ padding: 10px 14px; font-size: 0.95rem; }

.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(215,178,74,0.55);
  box-shadow: none;
}
.btn-ghost:hover{
  background: rgba(215,178,74,0.10);
  text-decoration:none;
}

.hero{
  padding: 52px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.hero-copy h1{
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.12;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 60ch;
}
.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-media{
  display:flex;
  justify-content:center;
}
.hero-logo{
  width: min(420px, );
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

.trust-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 10px 12px;
  min-width: 220px;
}
.trust-title{
  font-weight: 800;
  letter-spacing: 0.3px;
}
.trust-sub{
  color: var(--muted);
  font-size: 0.92rem;
}

.section{
  padding: 54px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
h2{
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
}
p{ margin: 0 0 14px; }
.lead-sm{
  color: var(--muted);
  font-size: 1.05rem;
}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.card h3{
  margin: 0 0 8px;
  letter-spacing: 0.2px;
}
.card p{ color: var(--muted); margin:0; }

.about-grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-media{
  display:flex;
  justify-content:center;
}
.badge{
  width: min(360px, );
  height: auto;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}
.mini-note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(215,178,74,0.35);
  background: rgba(215,178,74,0.08);
  color: var(--text);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.contact-box{
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.contact-line{ margin: 8px 0; color: var(--muted); }
.contact-line strong{ color: var(--text); }

.form{
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px;
}
.form label{
  display:block;
  font-weight: 700;
  margin-bottom: 10px;
}
.form input, .form textarea{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10,12,18,0.7);
  color: var(--text);
  outline: none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(215,178,74,0.7);
  box-shadow: 0 0 0 4px rgba(215,178,74,0.14);
}
.form-note{
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 10px;
}
.hidden{ display:none; }

.fineprint{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--muted);
}
.fineprint strong{ color: var(--text); }

.site-footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  background: rgba(0,0,0,0.20);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand{ font-weight: 800; }
.footer-sub{ color: var(--muted); font-size: 0.95rem; }
.footer-links{ display:flex; gap: 14px; }
.footer-links a{ color: var(--muted); font-weight: 700; }
.footer-links a:hover{ color:#fff; text-decoration:none; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ order: -1; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .about-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .cards{ grid-template-columns: 1fr; }
  .brand-text{ display:none; }
}
.four-e {
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid var(--accent);
  background: rgba(215,178,74,0.05);
  border-radius: 8px;
}

.four-e h3 {
  margin-top: 0;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  body { font-size: 16px; line-height: 1.65; }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 16px; letter-spacing: 1px; }

  .four-e {
    margin: 12px 0;
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .four-e {
    margin: 12px 0;
    padding: 16px;
  }
}
/* ===== ABOUT + headshot (clean + final) ===== */
#about .about-grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr; /* text | photo */
  gap: 48px;
  align-items: center;
}

#about .about-photo{
  display: flex;
  justify-content: center;
}

#about img.headshot{
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Mobile */
@media (max-width: 980px){
  #about .about-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #about .about-photo{
    order: -1;
  }
  #about img.headshot{
    width: 200px;
    height: 200px;
  }
}
/* FINAL HEADSHOT SIZE OVERRIDE */
#about .about-photo img.headshot{
  width: 290px !important;
  height: 290px !important;
  max-width: 290px !important;
  max-height: 290px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}
outline: 3px solid hotpink !important;

/* ---------- MOBILE FRIENDLY OVERRIDES ---------- */
@media (max-width: 768px) {

  /* Global spacing & text */
  body {
    font-size: 16px;
    line-height: 1.7;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }

  /* Stack all grids vertically */
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* Center and resize headshot */
  .about-photo img.Headshot {
    width: 180px;
    height: 180px;
    margin: 24px auto;
  }

  /* Center text blocks */
  .about-copy {
    text-align: left;
  }

  /* Navigation cleanup */
  .nav {
    justify-content: center;
    gap: 12px;
  }

  /* Buttons full-width on mobile */
  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Cards stack cleanly */
  .cards {
    grid-template-columns: 1fr;
  }

  /* Reduce section padding */
  .section {
    padding: 40px 0;
  }
}
/* ---------- MOBILE HEADER FIX ---------- */
@media (max-width: 768px) {

  /* Let the header wrap instead of forcing everything into one row */
  .header-inner{
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  /* Brand takes full width so nav drops below it */
  .brand{
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }

  /* Shrink the logo mark */
  .brand-mark{
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  /* Make the title fit on one line and not push nav off-screen */
  .brand-name{
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70vw;
  }

  /* Optional: hide the small tagline under the name on mobile */
  .brand-tag{
    display: none;
  }

  /* Nav becomes a full-width row and wraps cleanly */
  .nav{
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* Make nav links easier to tap */
  .nav a{
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
  }

  /* Make the gold button visible and not shoved off-screen */
  .nav .btn,
  .btn{
    width: auto;          /* overrides earlier mobile rule if you used full-width buttons */
    padding: 10px 14px;
    font-size: 0.95rem;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .brand-name{
    max-width: 65vw;
  }
}

