/* =====================================
   HEARTSYNC GLOBAL THEME (Standalone)
   ===================================== */
body::before{
  content:"HeartSync Global CSS Loaded";
  display:none;
}
/* Theme tokens */
:root{
  --bg-dark:#050506;
  --bg-panel:#111111;
  --accent:#ffb84d;
  --accent-soft:#ffc76a;
  --text-main:#f4e8d2;
  --text-muted:#b8ac92;
  --border-soft:rgba(255,184,77,.25);
  --error:#ff5c5c;
  --success:#6ad785;
}

/* =====================================
   RESET / BASE
   ===================================== */

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

html, body{
  height:100%;
}

body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:radial-gradient(circle at top,#1a1208 0,var(--bg-dark) 40%,#000 100%);
  color:var(--text-main);
  line-height:1.7;
}

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

header, main, footer{ width:100%; }

/* =====================================
   LAYOUT
   ===================================== */

.container,
.container-fluid{
  max-width:1100px;
  margin:0 auto;
  padding:0 1.5rem;
  width:100%;
}

.page-wrapper{
  min-height:calc(100vh - 60px);
  display:flex;
  justify-content:center;
  padding:2.25rem 1rem;
}

/* =====================================
   NAV (single source of truth)
   ===================================== */

/* Adjustable Nav Banner Settings (keep ONE copy only) */
:root{
  --nav-height: 72px; /* change to 60px / 72px / 90px anytime */
  --nav-bg-image: url("images/heartsync_menu_bg_1920x220_soft.png");
}

.nav{
  position: sticky;
  top: 0;
  z-index: 100;

  height: var(--nav-height);
  min-height: var(--nav-height);

  /* Banner background */
  background-image: var(--nav-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Your original sticky/blur look */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,184,77,0.15);
}

/* Optional dark overlay for readability */
.nav::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.35);
  z-index: 0;
}

.nav-inner{
  /* Center menu between logo (left) and nav-right (right) */
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;

  padding: 0;              /* prevents padding from breaking nav height */
  position: relative;
  z-index: 1;              /* above overlay */
}

.nav-logo{
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
}

.nav-logo img{
  width: 50px;
  height: 50px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.nav-logo-text{
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.nav-menu{
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  font-size: .92rem;
  color: var(--text-muted);
}

.nav-menu a:hover{
  color: var(--accent-soft);
}

.nav-right{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.nav-toggle{
  display: none;
}

/* Mobile nav */
@media (max-width: 850px){

  .nav-inner{
    grid-template-columns: 1fr auto;
  }

  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,184,77,0.7);
    color: var(--accent-soft);
    border-radius: 999px;
    padding: .25rem .7rem;
    font-size: 1.1rem;
    cursor: pointer;
    justify-self: end;
  }

  .nav-menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    padding: .75rem 1.5rem 1rem;
    background: rgba(5,5,6,0.98);
    border-bottom: 1px solid rgba(255,184,77,0.2);

    flex-direction: column;
    gap: .6rem;
    font-size: .95rem;
    text-align: left;
  }

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

/* =====================================
   NAV (Optional – only applies if your HTML includes these classes)
   ===================================== */
:root {
  /* ===== Adjustable Nav Banner Settings ===== */
  --nav-height: 72px;              /* change to 60px / 72px / 90px anytime */
  --nav-bg-image: url("images/heartsync_menu_bg_1920x220_soft.png");
}

/* =====================================
   FORMS
   ===================================== */

.field{ margin-bottom:1rem; }

label{
  display:block;
  margin-bottom:.25rem;
  font-size:.85rem;
  color:var(--text-muted);
}

input[type="text"],
input[type="email"],
select,
textarea{
  width:100%;
  padding:.65rem .75rem;
  border-radius:8px;
  border:1px solid rgba(255,184,77,.2);
  background:rgba(8,8,8,.9);
  color:var(--text-main);
  font-size:.95rem;
  outline:none;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(255,184,77,.5);
  background:#141414;
}

/* =====================================
   GRIDS
   ===================================== */

.grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:2rem;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.7rem;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.7rem;
}

@media (max-width:1024px){
  .grid-4{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:768px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns:1fr; }
}

/* =====================================
   PACKAGES GRID (Choose-a-package page)
   ===================================== */
.pkg{
  display:flex;
  flex-direction:column;
  min-width:0;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,184,77,.28);
  border-radius:18px;
  padding:1.35rem 1.2rem;
  box-shadow:0 12px 28px rgba(0,0,0,.65);
  position:relative;
  overflow:hidden;
}

.pkg:hover{ border-color:rgba(255,184,77,.55); }

.pkg-header{ display:flex; flex-direction:column; gap:.65rem; }
.pkg-desc{ line-height:1.55; color:var(--text-muted); }

.pkg-features{
  list-style:none;
  padding-left:0;
  margin:.4rem 0 0;
}

.pkg-features li{
  display:flex;
  gap:.65rem;
  align-items:flex-start;
  padding:.45rem 0;
  border-top:1px solid rgba(255,255,255,.06);
}

.pkg-features li:first-child{ border-top:0; }

.pkg-features input[type="checkbox"]{
  margin-top:.2rem;
  accent-color:var(--accent);
}

@media (max-width:1024px){
  .packages-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width:640px){
  .packages-grid{ grid-template-columns:1fr; }
}

/* Choose-a-package: put start fee to the right of Series name */
.pkg-topline{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.pkg-title{
  font-weight: 700;
  line-height: 1.2;
}

.pkg-estimate{
  margin-left: auto;     /* pushes it to the far right */
  font-weight: 800;
  white-space: nowrap;
}
@media (max-width: 640px){
  .pkg-topline{ flex-wrap: wrap; }
  .pkg-estimate{
    margin-left: 0;
    width: 100%;
    text-align: left;
  }
}

/* Narrow Choose-a-Package page while keeping it centered */
.heartsync-choose-a-package{
  max-width: 1400px;   /* adjust: 900–1100px works well */
  margin: 0 auto; 
}

/* Confirm page width */
.page-wrapper.confirm-page > .card{
  max-width: 1200px !important;  /* lower it if you want: 680px */
  width: 100% !important;
  margin: 0 auto !important;
}

.confirm-page .btn-primary{
  margin: 1.75rem 0 0.75rem;
}

/* ================================
   CONFIRM PAGE – PAYMENT BUTTON SIZE
   ================================ */

.confirm-page .btn-primary{
  width: 100%;              /* full-width button */
  max-width: 250px;         /* control final width */
  height: 56px;             /* button height */

  font-size: 1.15rem;       /* text size */
  padding: 0;               /* remove inherited padding */
  line-height: 56px;        /* vertically center text */

  margin-top: 2rem;         /* spacing from content above */
}

/* =========================================
   Woo Checkout: Hide item quantity badge (shows "1")
   HeartSync uses its own Selected Services count
   ========================================= */
body.woocommerce-checkout 
.wc-block-components-order-summary-item__quantity {
  display: none !important;
}

       @charset "utf-8";
/* CSS Document */

:root {
    --bg-dark: #050506;
    --bg-panel: #111111;
    --accent: #ffb84d;
    --accent-soft: #ffc76a;
    --text-main: #f4e8d2;
    --text-muted: #b6a894;
    --error: #ff5c5c;
    --success: #6ad785;
}

/* ---------------------------------
   GLOBAL RESET / BASE
   --------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1a1208 0, var(--bg-dark) 40%, #000000 100%);
    color: var(--text-main);
}

/* ---------------------------------
   TOP BAR (shared by all pages)
   --------------------------------- */
.top-bar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 6, 0.95),
        rgba(5, 5, 6, 0.85)
    );
    border-bottom: 1px solid rgba(255,184,77,0.15);
}

.top-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.7rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-left img {
    width: 260px;      /* mobile-friendly default */
    height: auto;
    object-fit: contain;
}

.back-home-link {
    font-size: 0.9rem;
    color: var(--accent-soft);
    text-decoration: none;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,184,77,0.5);
    background: rgba(0,0,0,0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.back-home-link:hover {
    background: rgba(255,184,77,0.08);
}

/* ---------------------------------
   PAGE WRAPPER + CARD
   --------------------------------- */
.page-wrapper {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.25rem 1rem;
}

/* =========================
   CARD (single source of truth)
   ========================= */
.card{
  width:100%;
  max-width:1450px; /* default wide for package pages */
  margin:0 auto;
  background:linear-gradient(145deg,#151515 0%,#050506 80%);
  border-radius:18px;
  padding:2.25rem 2rem;
  border:1px solid rgba(255,184,77,.15);
  box-shadow:0 18px 40px rgba(0,0,0,.7);
}

/* =========================
   CONTACT / FORM CARD (narrow)
   Apply by adding class="card contact-card"
   ========================= */
.card.contact-card{
  max-width:980px;
}

.card.heartsync-choose-a-package{
  max-width:1600px; /* optional */
}

/* ---------------------------------
   TYPOGRAPHY HELPERS
   --------------------------------- */
h1 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.8rem;
    margin: 0 0 0.25rem;
    letter-spacing: 0.03em;
}

.tagline {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ---------------------------------
   BUTTON ROW CONTAINER
   --------------------------------- */
.btn-row {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ---------------------------------
   FORMS
   --------------------------------- */
.field {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 184, 77, 0.2);
    background: rgba(8, 8, 8, 0.9);
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(255, 184, 77, 0.5);
    background: #141414;
}

/* ---------------------------------
   RESPONSIVE BREAKPOINTS
   --------------------------------- */
       
@media (max-width: 1024px) {
    .card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 720px) {
    .top-inner {
        flex-direction: row;
        align-items: center;
    }

    .top-left img {
        width: 200px;
    }

    .card {
        padding: 1.75rem 1.25rem;
    }

    h1 {
        font-size: 1.4rem;
    }

    .btn-row {
        flex-direction: column;
        align-items: stretch;
    }
}

 :root{
      --bg-dark:#050506;
      --bg-panel:#111111;
      --accent:#ffb84d;
      --accent-soft:#ffc76a;
      --text-main:#f4e8d2;
      --text-muted:#b6a894;
      --error:#ff5c5c;
      --success:#6ad785;
    }

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

    body{
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:radial-gradient(circle at top,#1a1208 0,var(--bg-dark) 40%,#000 100%);
      color:var(--text-main);
    }

    .top-bar{
      width:100%;
      position:sticky;
      top:0;
      z-index:10;
      backdrop-filter:blur(12px);
      background:linear-gradient(to bottom,rgba(5,5,6,.95),rgba(5,5,6,.85));
      border-bottom:1px solid rgba(255,184,77,.15);
    }

    .top-inner{
      max-width:1200px;
      margin:0 auto;
      padding:.7rem 1.25rem;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      flex-wrap:wrap;
    }

    .top-left{ display:flex; align-items:center; gap:.6rem; min-width:0; }
    .top-left img{ max-width:260px; width:100%; height:auto; object-fit:contain; }

    .top-right{
      display:flex;
      align-items:center;
      gap:.75rem;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .back-home-link{
      font-size:.9rem;
      color:var(--accent-soft);
      text-decoration:none;
      padding:.35rem .85rem;
      border-radius:999px;
      border:1px solid rgba(255,184,77,.5);
      background:rgba(0,0,0,.35);
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      white-space:nowrap;
    }
    .back-home-link:hover{ background:rgba(255,184,77,.08); }

    .card{
      width:100%;
      max-width:1400px;
      background:linear-gradient(145deg,#151515 0%,#050506 80%);
      border-radius:18px;
      padding:2.25rem 2rem;
      border:1px solid rgba(255,184,77,.15);
      box-shadow:0 18px 40px rgba(0,0,0,.7);
    }

    h1{
      font-family:"Georgia","Times New Roman",serif;
      font-size:1.8rem;
      margin:0 0 .25rem;
      letter-spacing:.03em;
    }

    .tagline{
      margin:0 0 1.5rem;
      font-size:.95rem;
      color:var(--text-muted);
    }

    .btn-primary,.btn-secondary,button[type="submit"]{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:1rem 2.5rem;
      border-radius:999px;
      font-weight:600;
      font-size:1rem;
      text-decoration:none;
      cursor:pointer;
    }

    .btn-primary,button[type="submit"]{
      border:none;
      background:linear-gradient(135deg,var(--accent) 0%,var(--accent-soft) 100%);
      color:#20160a;
      box-shadow:0 10px 25px rgba(0,0,0,.6);
    }
    .btn-primary:hover,button[type="submit"]:hover{
      box-shadow:0 14px 32px rgba(0,0,0,.75);
      filter:brightness(1.03);
    }

    .btn-secondary{
      border:1px solid rgba(255,184,77,.5);
      background:transparent;
      color:var(--accent-soft);
    }
    .btn-secondary:hover{ background:rgba(255,184,77,.08); }

    /* ====== 4 COLUMN GRID ====== */
    .packages-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:1.5rem;
      align-items:stretch;
    }

    @media (max-width:1024px){
      .packages-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
      .card{ padding:2rem 1.5rem; }
      .top-left img{ max-width:220px; }
    }

    @media (max-width:720px){
      .packages-grid{ grid-template-columns:1fr; }
      .top-inner{ padding:.6rem .75rem; gap:.5rem; }
      .top-left img{ max-width:200px; }
      .card{ padding:1.75rem 1.25rem; }
      h1{ font-size:1.4rem; }
    }

    @media (max-width:480px){
      .page-wrapper{ padding:1.75rem .75rem; }
      .btn-primary,.btn-secondary,button[type="submit"]{ padding:.65rem 1.4rem; font-size:.85rem; }
    }

    /* ====== SERIES BRACKETS ====== */
    .pkg{
      background:rgba(0,0,0,.55);
      border:1px solid rgba(255,184,77,.28);
      border-radius:16px;
      padding:1.25rem 1.1rem;
      box-shadow:0 12px 28px rgba(0,0,0,.65);
      display:flex;
      flex-direction:column;
      gap:.9rem;
      position:relative;
      overflow:hidden;
      min-width:0;
    }
    .pkg::before{
      content:"";
      position:absolute;
      left:14px; right:14px; top:10px;
      height:2px;
      background:linear-gradient(90deg,transparent,rgba(255,184,77,.7),transparent);
      opacity:.6;
    }
    .pkg > input[type="radio"]{ accent-color:var(--accent); transform:scale(1.05); margin:0; }

    .pkg-header{ display:flex; flex-direction:column; gap:.55rem; }

    .pkg-features{ list-style:none; padding-left:0; margin:.4rem 0 0; }
    .pkg-features li{
      display:flex;
      gap:.55rem;
      align-items:flex-start;
      padding:.35rem 0;
      border-top:1px solid rgba(255,255,255,.06);
    }
    .pkg-features li:first-child{ border-top:0; }
    .pkg-features input[type="checkbox"]{ margin-top:.2rem; accent-color:var(--accent); }

    /* Selected highlight - uses :has(); if unsupported, it just won't highlight */
    .pkg:has(input[type="radio"]:checked){
      border-color:rgba(255,184,77,.75);
      box-shadow:0 18px 44px rgba(0,0,0,.75);
      transform:translateY(-2px);
    }
    .pkg:hover{ border-color:rgba(255,184,77,.55); }

    /* Optional: action row */
    .actions{
      margin-top:1.25rem;
      display:flex;
      flex-wrap:wrap;
      gap:1rem;
      align-items:center;
    }
    .note{ color:var(--text-muted); font-size:.9rem; }

 /* NAVBAR */

  :root {
    --bg-dark: #050506;
    --bg-section: #111111;
    --accent: #ffb84d;
    --accent-soft: #ffc76a;
    --text-main: #f4e8d2;
    --text-muted: #b8ac92;
    --border-soft: rgba(255, 184, 77, 0.25);
  }

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

  body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
    text-align: center;
  }

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

  header, main, footer { width: 100%; }

  .container,
  .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
  }

  /* HERO */
  .hero {
    padding: 4rem 0 3rem;
    background: radial-gradient(circle at top, rgba(255, 184, 77, 0.25), transparent 55%), var(--bg-dark);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.05rem, 3vw, 2.8rem);
    margin-bottom: 0.75rem;
  }

  .hero .tagline {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent-soft);
    margin-bottom: 1.2rem;
  }

  .hero p.lead {
    max-width: 620px;
    color: var(--text-muted);
    margin: 0 auto 1.8rem;
    font-size: 0.98rem;
  }

  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
  }

  .hero-note {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Centered HERO VIDEO */
  .hero-video-container {
    margin: 2rem auto 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-video {
    max-width: 1200px;
    width: 100%;
    border-radius: 1.2rem;
    overflow: hidden;
    background: #000;
  }

  .hero-video-el {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  /* Hero Notice */
  .hero-notice {
    width: fit-content;
    max-width: 90%;
    margin: 20px auto 40px auto;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    padding: 15px 25px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 8px;
  }

  .hero-notice a {
    color: #ffd27f;
    font-weight: 600;
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .hero-notice {
      font-size: 1rem;
      padding: 12px 15px;
    }
  }

  /* Buttons */
  .btn {
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid var(--accent);
    cursor: pointer;
    display: inline-block;
    font-size: 0.95rem;
    text-align: center;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #2b1b06;
    box-shadow: 0 0 18px rgba(255, 184, 77, 0.55);
  }

  .btn-secondary {
    background: transparent;
    color: var(--accent-soft);
  }

  /* Continue button */
  #continueBtn { display: none; }

  .heart-pulse-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #2b1b06;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    font-size: 1.05rem;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    margin: 24px auto 40px auto;
    display: block; /* centers via margin auto */
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 0 0 0 rgba(255, 184, 77, 0.35);
    animation: heartPulse 1.6s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  }

  .heart-pulse-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
    box-shadow: 0 0 0 10px rgba(255, 184, 77, 0.18);
  }

  @keyframes heartPulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255, 184, 77, 0.35); }
    50%  { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(255, 184, 77, 0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255, 184, 77, 0); }
  }

  /* SECTIONS */
  section { padding: 3rem 0; }
  section.alt { background: var(--bg-section); }

  h2.section-title {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .section-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.97rem;
  }

  .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.7rem; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.7rem; }

  @media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 900px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  }

  .card {
    padding: 1.6rem 1.5rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-soft);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
    text-align: left;
  }

  .card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
  }

  .card small {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--accent-soft);
    font-size: 0.85rem;
  }

  .card p { font-size: 0.94rem; color: var(--text-muted); }
  .card ul { margin-top: 0.5rem; padding-left: 1.1rem; color: var(--text-muted); font-size: 0.9rem; }
  .pillars li { margin-bottom: 0.65rem; }
  .pillars strong { color: var(--accent-soft); }

  /* Featured video frame */
  .video-frame {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6);
    background: #000;
    aspect-ratio: 16 / 9;
  }

  .video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

  /* CTA + Footer */
  .cta-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 2.2rem 1.8rem;
    border-radius: 1.3rem;
    background: radial-gradient(circle at top, rgba(255, 184, 77, 0.2), rgba(17, 17, 17, 1));
    border: 1px solid var(--border-soft);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  }

  .cta-box p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 1.5rem; }

  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
  }

  footer {
    padding: 1.8rem 0 2.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
  }

  footer a { color: var(--accent-soft); }

  @media (max-width: 480px) {
    #musicToggle {
      bottom: 12px;
      right: 12px;
      padding: 0.4rem 0.8rem;
      font-size: 0.8rem;
    }
  }

  .heartsync-purpose {
    margin-top: 2rem;
    gap: 2.5rem;
    align-items: center;
  }

  .purpose-heading {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-soft);
  }

  .purpose-list ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  .purpose-list li {
    margin-bottom: 0.6rem;
  }

  .purpose-copy p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.85rem;
  }

  .purpose-copy strong {
    color: var(--accent-soft);
  }

  /* =====================================
     GRIDS (these were overriding your responsive grids)
     Keep them but DO NOT break responsiveness.
     ===================================== */

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
  }

  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.7rem;
  }

  /* ================================
     MOBILE RESPONSIVE OVERRIDES ONLY
     ================================ */

  @media (max-width: 900px) {
    .container, .container-fluid {
      padding: 0 1rem;
    }

    section {
      padding: 2.25rem 0;
    }

    .card {
      padding: 1.3rem 1.1rem;
    }

    .grid-2, .grid-3, .grid-4 {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .nav-logo-text {
      font-size: 1rem;
    }

    .hero {
      padding: 2.25rem 0 2rem;
    }

    .hero h1 {
      font-size: clamp(1.55rem, 6vw, 2.1rem);
      line-height: 1.2;
    }

    .hero .tagline {
      font-size: 0.98rem;
    }

    .hero p.lead {
      font-size: 0.95rem;
      padding: 0 0.25rem;
    }

    .hero-video-container {
      margin: 1.25rem auto 1.5rem;
      padding: 0 0.75rem;
    }

    .hero-video {
      border-radius: 0.95rem;
    }

    .btn {
      width: 100%;
      max-width: 420px;
      padding: 0.85rem 1.15rem;
      font-size: 0.95rem;
    }

    .cta-box {
      padding: 1.6rem 1.1rem;
      border-radius: 1.1rem;
    }

    h2.section-title {
      font-size: 1.45rem;
      line-height: 1.2;
    }

    .section-intro {
      font-size: 0.95rem;
      padding: 0 0.25rem;
    }

    .card h3 {
      font-size: 1.12rem;
    }
  }

    .heart-pulse-btn {
      width: calc(100% - 2rem);
      max-width: 420px;
      font-size: 0.95rem;
      padding: 12px 18px;
    }

    footer {
      font-size: 0.8rem;
      padding: 1.4rem 0 2rem;
    }
  }

    :root{
      --bg-dark:#050506;
      --bg-panel:#111111;
      --accent:#ffb84d;
      --accent-soft:#ffc76a;
      --text-main:#f4e8d2;
      --text-muted:#b6a894;
      --error:#ff5c5c;
      --success:#6ad785;
    }

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

    body{
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:radial-gradient(circle at top,#1a1208 0,var(--bg-dark) 40%,#000 100%);
      color:var(--text-main);
    }

    .top-bar{
      width:100%;
      position:sticky;
      top:0;
      z-index:10;
      backdrop-filter:blur(12px);
      background:linear-gradient(to bottom,rgba(5,5,6,.95),rgba(5,5,6,.85));
      border-bottom:1px solid rgba(255,184,77,.15);
    }

    .top-inner{
      max-width:1200px;
      margin:0 auto;
      padding:.7rem 1.25rem;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
      flex-wrap:wrap;
    }

    .top-left{ display:flex; align-items:center; gap:.6rem; min-width:0; }
    .top-left img{ max-width:260px; width:100%; height:auto; object-fit:contain; }

    .top-right{
      display:flex;
      align-items:center;
      gap:.75rem;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .back-home-link{
      font-size:.9rem;
      color:var(--accent-soft);
      text-decoration:none;
      padding:.35rem .85rem;
      border-radius:999px;
      border:1px solid rgba(255,184,77,.5);
      background:rgba(0,0,0,.35);
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      white-space:nowrap;
    }
    .back-home-link:hover{ background:rgba(255,184,77,.08); }

    .card{
      width:100%;
      max-width:1450px;/* Package Series width*/
      background:linear-gradient(145deg,#151515 0%,#050506 80%);
      border-radius:18px;
      padding:2.25rem 2rem;
      border:1px solid rgba(255,184,77,.15);
      box-shadow:0 18px 40px rgba(0,0,0,.7);
    }

    h1{
      font-family:"Georgia","Times New Roman",serif;
      font-size:1.8rem;
      margin:0 0 .25rem;
      letter-spacing:.03em;
    }

    .tagline{
      margin:0 0 1.5rem;
      font-size:.95rem;
      color:var(--text-muted);
    }

    @media (max-width:1024px){
      .packages-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
      .card{ padding:2rem 1.5rem; }
      .top-left img{ max-width:220px; }
    }

    @media (max-width:720px){
      .packages-grid{ grid-template-columns:1fr; }
      .top-inner{ padding:.6rem .75rem; gap:.5rem; }
      .top-left img{ max-width:200px; }
      .card{ padding:1.75rem 1.25rem; }
      h1{ font-size:1.4rem; }
    }

    /* ====== SERIES BRACKETS ====== */
    .pkg{
      background:rgba(0,0,0,.55);
      border:1px solid rgba(255,184,77,.28);
      border-radius:16px;
      padding:1.25rem 1.1rem;
      box-shadow:0 12px 28px rgba(0,0,0,.65);
      display:flex;
      flex-direction:column;
      gap:.9rem;
      position:relative;
      overflow:hidden;
      min-width:0;
    }
    .pkg::before{
      content:"";
      position:absolute;
      left:14px; right:14px; top:10px;
      height:2px;
      background:linear-gradient(90deg,transparent,rgba(255,184,77,.7),transparent);
      opacity:.6;
    }
    .pkg > input[type="radio"]{ accent-color:var(--accent); transform:scale(1.05); margin:0; }

    .pkg-header{ display:flex; flex-direction:column; gap:.55rem; }

    .pkg-features{ list-style:none; padding-left:0; margin:.4rem 0 0; }
    .pkg-features li{
      display:flex;
      gap:.55rem;
      align-items:flex-start;
      padding:.35rem 0;
      border-top:1px solid rgba(255,255,255,.06);
    }
    .pkg-features li:first-child{ border-top:0; }
    .pkg-features input[type="checkbox"]{ margin-top:.2rem; accent-color:var(--accent); }

    /* Selected highlight - uses :has(); if unsupported, it just won't highlight */
    .pkg:has(input[type="radio"]:checked){
      border-color:rgba(255,184,77,.75);
      box-shadow:0 18px 44px rgba(0,0,0,.75);
      transform:translateY(-2px);
    }
    .pkg:hover{ border-color:rgba(255,184,77,.55); }

    /* Optional: action row */
    .actions{
      margin-top:1.25rem;
      display:flex;
      flex-wrap:wrap;
      gap:1rem;
      align-items:center;
    }
    .note{ color:var(--text-muted); font-size:.9rem; }

.has-centered-nav .nav-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:1rem;
}
.has-centered-nav .nav-logo{ justify-self:start; }
.has-centered-nav .nav-menu{ justify-self:center; }
.has-centered-nav .nav-right{
  justify-self:end;
  display:inline-flex;
  align-items:center;
  gap:0.75rem;
}

/* Section How It Works Start a video*/
.hs-cta-center{
  text-align: center;
  margin-top: 2.0rem; /* adjust any time */
}

/* Optional: keep button nicely sized/aligned in this block */
.hs-cta-center .btn{
  display: inline-flex; /* ensures perfect centering and consistent height */
  align-items: center;
  justify-content: center;
  height:55px;
  width: auto;
}

/* =====================================
   FIXED RIGHT CTA BUTTON (Start Project)
   ===================================== */
.hs-fixed-cta{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.75rem 1.4rem;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: #20160a;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);

  text-decoration: none;
  cursor: pointer;

  transition: transform 0.2s ease,
              box-shadow 0.2s ease,
              filter 0.2s ease;
}

.hs-fixed-cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.75);
}

/* Mobile adjustments */
@media (max-width: 600px){
  .hs-fixed-cta{
    bottom: 14px;
    right: 14px;
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
  }
}

/* =====================================
   GLOBAL BUTTON SYSTEM (UNIFORM)
   Use: .btn .btn-primary .btn-secondary
   ===================================== */

:root{
  --btn-height: 56px;     /* change once to resize ALL buttons */
  --btn-pad-x: 28px;      /* horizontal padding */
  --btn-font: 1.05rem;    /* button text size */
}

/* Base */
.btn,
button.btn,
a.btn,
input.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: var(--btn-height);
  padding: 0 var(--btn-pad-x);

  border-radius: 999px;
  font-weight: 700;
  font-size: var(--btn-font);
  letter-spacing: 0.02em;

  text-decoration: none;
  cursor: pointer;

  border: none;
  outline: none;

  transition: transform .2s ease,
              filter .2s ease,
              box-shadow .2s ease,
              background .2s ease;
}

/* Primary */
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #20160a;
  box-shadow: 0 10px 25px rgba(0,0,0,.6);
}

.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 32px rgba(0,0,0,.75);
}

/* Secondary */
.btn-secondary{
  background: transparent;
  border: 2px solid rgba(255,184,77,.55);
  color: var(--accent-soft);
}

.btn-secondary:hover{
  background: rgba(255,184,77,.10);
}

/* Full-width option (use when needed) */
.btn-block{
  width: 100%;
  max-width: 520px;
}

/* Mobile scaling */
@media (max-width: 600px){
  :root{
    --btn-height: 52px;
    --btn-pad-x: 22px;
    --btn-font: 0.98rem;
  }

  .btn-block{
    max-width: 100%;
  }
}
/* ================================
   FIXED RIGHT BOTTOM ACTION BUTTON
   (inherits global button sizing)
   ================================ */
.btn-fixed-right{
  position: fixed;
  bottom: 20px;
  right: 80px;
  z-index: 9999;

  /* DO NOT set padding, font-size, height, or width */
}

/* =========================================================
   HEARTSYNC NAV CART BLOCK (Choose + Confirm)
   - One block (icon + centered count + label)
   - Move the whole block by adjusting ONLY --hs-cart-x/y
   ========================================================= */

:root{
  /* Move the entire cart block (both pages) */
  --hs-cart-x: 8px;   /* + moves right, - moves left */
  --hs-cart-y: 0px;   /* + moves down,  - moves up  */

  /* Icon size and count styling */
  --hs-cart-icon: 44px;
  --hs-cart-count-size: 14px;
}

/* FORCE SOCIAL ICONS TO HORIZONTAL ROW */
.hs-social-container{
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 12px;	 

}

/* Override block behavior from theme / template */
.hs-social-container a,
.hs-social-container img{
  display: inline-flex !important;
}
 
 
 /* OUTER: Only purpose is to move the whole cart block */
.cart-mover{
  --cart-x: -0px;
  --cart-y: -4px;
  transform: translate(var(--cart-x), var(--cart-y));
}
 
/* ===== Move CART BLOCK up down right left(inside summary-box) ===== */
.cart-wrapper{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;

  /* Move the entire block wherever you want */
  transform: translate(var(--cart-x, 0px), var(--cart-y, 0px));
}

/* Icon wrapper anchors the count */
.cart-icon-wrap{
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}


/* Count badge: consistent desktop + mobile */
.cart-count{
  position: absolute;
  top: 8px;
  right: 9px;

  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  pointer-events: none; 
}

.cart-count[data-count="0"]{
  display: none !important;
}

/* Mobile: keep same position; only scale badge slightly if needed */
@media (max-width: 600px){
  .cart-icon-wrap{ width: 40px; height: 40px; }
  .cart-count{
    width: 18px;
    height: 18px;
    font-size: 12px;
    top: 8px;
    right: 8px;
  }
}

    .page-wrapper{min-height:calc(100vh - 60px);display:flex;align-items:center;justify-content:center;padding:2.25rem 1rem;}
    .card{width:100%;max-width:980px;}
    .form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin-top:1rem;}
    .form-grid .full{grid-column:1 / -1;}
    label{display:block;margin-bottom:.35rem;font-size:.9rem;opacity:.9;}
    input[type="text"],input[type="email"],input[type="tel"],textarea{width:100%;padding:.75rem .85rem;border-radius:10px;}
    textarea{min-height:200px;resize:vertical;}
    .interest-box{margin-top:1.2rem;padding:1rem;border-radius:14px;}
    .interest-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem 1rem;margin-top:.6rem;}
    .interest-grid label{display:flex;gap:.55rem;align-items:flex-start;margin:0;font-size:.95rem;}
    .interest-grid input{margin-top:.2rem;}
    .actions{margin-top:1.5rem;display:flex;flex-wrap:wrap;gap:.9rem;align-items:center;}
    .flash{margin-top:1rem;padding:.9rem 1rem;border-radius:12px;}
    .flash.error{border:1px solid rgba(255,92,92,.45);}
    .flash.success{border:1px solid rgba(106,215,133,.45);}
    @media (max-width:820px){.form-grid{grid-template-columns:1fr;}.interest-grid{grid-template-columns:1fr;}}


/* Narrow card only when you explicitly mark it */
.card.contact-card{
  width:100%;
  max-width:980px;
}

/* =====================================
   START A PROJECT CTA
   Desktop: right-aligned floating CTA (keep)
   Mobile: centered bottom CTA (recommended)
   ===================================== */

/* Desktop / default */
.btn-fixed-right{
  position: fixed;
  right: 80px;
  bottom: 20px;
  z-index: 9999;
}

/* Mobile: center it */
@media (max-width: 600px){
  .btn-fixed-right{
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 14px;

    /* never overflow the screen */
    max-width: calc(100vw - 28px);
    width: auto;
  }
}

@media (max-width: 600px){
  .btn-fixed-right{
    animation: hsCtaPulse 1.8s ease-in-out infinite;
  }
}

@keyframes hsCtaPulse{
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%      { transform: translateX(-50%) scale(1.03); }
}

@media (max-width: 600px){
  body:has(input:focus, textarea:focus, select:focus) .btn-fixed-right{
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: opacity .18s ease, transform .18s ease;
  }
}

/* ==============================
   HEARTSYNC CHECKOUT HEADER
   ============================== */

.heartsync-checkout-header{
  max-width: 1200px;
  margin: 1.25rem auto 1.5rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}

.heartsync-checkout-logo{
  max-width: 200px;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 600px){
  .heartsync-checkout-header{
    justify-content: center;
  }

  .heartsync-checkout-logo{
    max-width: 160px;
  }
}
