/* =========================================================
   STORYHOUSE™ — SAFE GLOBAL CSS BASE
   For Kadence + WooCommerce + Storyhouse pages
   ========================================================= */

/* -----------------------------
   1) GLOBAL BRAND VARIABLES
------------------------------ */
:root{
  --sh-ink: #2b2b2b;
  --sh-ink-soft: #5f544c;
  --sh-cream: #faf8f4;
  --sh-ivory: #fdfbf8;
  --sh-sand: #f3eee7;
  --sh-gold: #c9a86a;
  --sh-border: rgba(0,0,0,0.08);
  --sh-shadow: 0 12px 30px rgba(0,0,0,0.06);
  --sh-shadow-soft: 0 8px 22px rgba(0,0,0,0.05);
  --sh-radius: 24px;
}

/* -----------------------------
   2) SAFE SITE DEFAULTS
------------------------------ */
body {
  background: #ffffff;
  color: var(--sh-ink);
  font-family: var(--global-body-font, sans-serif);
}

p,
li,
label,
input,
textarea,
select {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.entry-content,
.wp-block-post-content {
  overflow-wrap: break-word;
}

.home .entry-header,
.home .page-header {
  display: none;
}

/* -----------------------------
   3) LIGHT KADENCE HEADER REFINEMENTS
------------------------------ */
header.site-header,
#masthead {
  border-bottom: 1px solid #e9e2d8;
  background: rgba(255,255,255,0.96);
}

.site-branding .site-title a,
.site-branding .brand a {
  font-family: var(--global-heading-font, serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--sh-ink) !important;
  text-decoration: none;
  letter-spacing: 0.02em;
}

header .primary-menu-container a,
header .menu a,
#kad-mobile-menu a {
  color: var(--sh-ink) !important;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

header .primary-menu-container a:hover,
header .menu a:hover,
#kad-mobile-menu a:hover {
  color: var(--sh-gold) !important;
  opacity: 1;
}

#kad-mobile-menu {
  background: #fff !important;
}

/* -----------------------------
   4) SAFE GENERIC STORYHOUSE UTILITIES
------------------------------ */
.sh-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.sh-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  box-shadow: var(--sh-shadow-soft);
}

.sh-section-title {
  font-family: var(--global-heading-font, serif);
  color: var(--sh-ink);
}

.sh-text-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* -----------------------------
   5) BUTTONS
------------------------------ */
.sh-btn,
.storyhouse-btn,
.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.sh-btn.primary,
.storyhouse-btn.primary,
.dl-btn-primary {
  background: var(--sh-gold);
  color: #1f1a12;
  border: 1px solid var(--sh-gold);
}

.sh-btn.primary:hover,
.storyhouse-btn.primary:hover,
.dl-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(201,168,106,0.25);
}

.sh-btn.ghost,
.storyhouse-btn.outline,
.dl-btn-outline {
  background: transparent;
  color: var(--sh-ink);
  border: 1px solid rgba(0,0,0,0.14);
}

.sh-btn.ghost:hover,
.storyhouse-btn.outline:hover,
.dl-btn-outline:hover {
  background: rgba(0,0,0,0.03);
}

/* -----------------------------
   6) SAFE SEAL SYSTEM
------------------------------ */
.sh-seal-wrap {
  position: relative;
  overflow: hidden;
}

.sh-seal {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.12;
  z-index: 0;
  max-width: none;
}

.sh-seal-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
}

.sh-seal-right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
}

.sh-seal-corner {
  right: -25px;
  bottom: -25px;
  width: 220px;
}

.sh-seal-wrap > *:not(.sh-seal) {
  position: relative;
  z-index: 1;
}

/* -----------------------------
   7) HOMEPAGE SUPPORT
------------------------------ */
.home .sh-home {
  font-family: var(--global-body-font, sans-serif);
  color: var(--sh-ink);
  line-height: 1.65;
}

.home .sh-home .sh-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 22px 88px;
}

.home .sh-home .sh-hero,
.home .sh-home .sh-founder,
.home .sh-home .sh-quiet {
  border-radius: 26px;
  border: 1px solid var(--sh-border);
  box-shadow: var(--sh-shadow);
  overflow: hidden;
}

.home .sh-home .sh-hero {
  padding: 48px 44px;
  background:
    radial-gradient(1200px 520px at 18% 10%, rgba(206,179,132,0.20), transparent 60%),
    radial-gradient(900px 420px at 82% 0%, rgba(219,193,180,0.20), transparent 55%),
    linear-gradient(180deg, rgba(250,248,244,0.96), rgba(255,255,255,0.98));
}

.home .sh-home .sh-hero-grid,
.home .sh-home .sh-founder-grid,
.home .sh-home .sh-quiet-grid {
  display: grid;
  gap: 24px;
}

.home .sh-home .sh-hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.home .sh-home .sh-founder-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.home .sh-home .sh-quiet-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.home .sh-home .sh-grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.home .sh-home .sh-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.home .sh-home .sh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

.home .sh-home .sh-title,
.home .sh-home .sh-section-title {
  font-family: var(--global-heading-font, serif);
  color: var(--sh-ink);
}

.home .sh-home .sh-title {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
}

.home .sh-home .sh-section-title {
  font-size: 1.7rem;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.home .sh-home .sh-subtitle {
  max-width: 58ch;
  font-size: clamp(1.08rem, 1.9vw, 1.26rem);
  line-height: 1.65;
  margin-bottom: 12px;
  color: var(--sh-ink);
  opacity: 0.92;
}

.home .sh-home .sh-section-lead,
.home .sh-home .sh-lead,
.home .sh-home .sh-note {
  color: var(--sh-ink);
  opacity: 0.92;
}

.home .sh-home .sh-lead {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.72;
  opacity: 0.88;
}

.home .sh-home .sh-hero-trust {
  margin-top: 16px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--sh-ink-soft);
  font-weight: 600;
}

.home .sh-home .sh-hero-actions-card {
  max-width: 390px;
  padding: 26px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

.home .sh-home .sh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home .sh-home .sh-actions .sh-btn {
  width: 100%;
}

.home .sh-home .sh-hero-mini-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--sh-ink-soft);
}

.home .sh-home .sh-list {
  padding-left: 18px;
}

.home .sh-home .sh-list li {
  margin: 8px 0;
}

.home .sh-home .sh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.home .sh-home .sh-tags li {
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.72);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.home .sh-home .sh-callout {
  border-left: 4px solid rgba(201,168,106,0.85);
  padding: 14px 16px;
  background: rgba(250,248,244,0.92);
  border-radius: 14px;
  margin-top: 14px;
}

.home .sh-home .sh-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 26px 0;
}

.home .sh-home .sh-founder {
  padding: 44px 38px;
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(219,193,180,0.22), transparent 55%),
    linear-gradient(180deg, rgba(250,248,244,0.96), rgba(255,255,255,0.98));
}

.home .sh-home .sh-founder-photo img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.home .sh-home .sh-founder-quote {
  margin: 14px 0 18px;
  padding-left: 16px;
  border-left: 4px solid rgba(201,168,106,0.85);
  font-style: italic;
  opacity: 0.92;
}

.home .sh-home .sh-founder-signature {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.home .sh-home .sh-founder-signature img {
  max-width: 140px;
}

.home .sh-home .sh-quiet {
  padding: 40px 34px;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(206,179,132,0.18), transparent 60%),
    linear-gradient(180deg, rgba(250,248,244,0.96), rgba(255,255,255,0.98));
}

/* Card refinement */
.home .sh-home .sh-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(4px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home .sh-home .sh-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.home .sh-home .sh-card h3 {
  font-size: 1.10rem;
  line-height: 1.35;
}

.home .sh-home .sh-card p {
  font-size: 0.90rem;
  line-height: 1.55;
}

.home .sh-home .sh-card a {
  font-size: 0.90rem;
}

/* Services grid perfection */
.home .sh-home .sh-services-grid .sh-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 240px;
}

.home .sh-home .sh-services-grid .sh-card h3 {
  margin-bottom: 8px;
}

.home .sh-home .sh-services-grid .sh-card p {
  flex-grow: 1;
  margin-bottom: 16px;
  max-width: 32ch;
}

.home .sh-home .sh-services-grid .sh-card a {
  margin-top: auto;
}

.home .sh-home .sh-section {
  margin-top: 64px;
}

/* ========================================= */
/* STORYHOUSE™ ELEVATED RESPONSIVE HEADER    */
/* ========================================= */

.sh-global-header {
  position: relative;
  z-index: 1000;
  padding: 18px 22px 0;
  background: transparent;
}

.sh-header-shell {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
}

.sh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 84px;
  padding: 0 24px;
}

.sh-header-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.sh-header-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
}

.sh-header-logo-wrap img,
.sh-header-logo-img {
  display: block;
  width: 74px;
  max-width: 74px;
  min-width: 74px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}

/* Desktop nav */
.sh-header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex: 1 1 auto;
  white-space: nowrap;
}

.sh-header-nav a {
  position: relative;
  text-decoration: none;
  color: #2b2b2b;
  font-family: var(--global-heading-font, Georgia, serif);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.sh-header-nav a:hover {
  color: #8f6b2e;
}

.sh-header-nav a:not(.sh-nav-inquiry)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(143,107,46,0.35);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.sh-header-nav a:not(.sh-nav-inquiry):hover::after {
  transform: scaleX(1);
}

/* Primary CTA */
.sh-nav-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #c9a86a;
  color: #1f1a12 !important;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(201,168,106,0.24);
}

.sh-nav-inquiry:hover {
  background: #d3b377;
  color: #1f1a12 !important;
  transform: translateY(-1px);
}

.sh-nav-inquiry::after {
  display: none !important;
}

/* Mobile toggle */
.sh-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
}

.sh-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #2b2b2b;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sh-mobile-toggle.sh-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sh-mobile-toggle.sh-open span:nth-child(2) {
  opacity: 0;
}

.sh-mobile-toggle.sh-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.sh-mobile-menu {
  display: none;
  max-width: 1180px;
  margin: 10px auto 0;
}

.sh-mobile-menu.sh-open {
  display: block;
}

.sh-mobile-menu-inner {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.06);
  padding: 14px 18px;
  backdrop-filter: blur(10px);
}

.sh-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sh-mobile-nav a {
  display: block;
  text-decoration: none;
  color: #2b2b2b;
  font-family: var(--global-heading-font, Georgia, serif);
  font-size: 1.05rem;
  line-height: 1.35;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sh-mobile-nav a:last-child {
  border-bottom: 0;
}

.sh-mobile-nav .sh-nav-inquiry {
  margin-top: 6px;
  text-align: center;
  justify-content: center;
  padding: 14px 18px;
}

/* Responsive */
@media (max-width: 980px) {
  .sh-global-header {
    padding: 14px 16px 0;
  }

  .sh-header-shell {
    border-radius: 24px;
  }

  .sh-header-inner {
    min-height: 76px;
    padding: 0 18px;
  }

  .sh-header-logo-wrap img,
  .sh-header-logo-img {
    width: 64px;
    max-width: 64px;
    min-width: 64px;
  }

  .sh-header-nav {
    display: none;
  }

  .sh-mobile-toggle {
    display: inline-block;
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .sh-header-inner {
    min-height: 72px;
    padding: 0 16px;
  }

  .sh-header-logo-wrap img,
  .sh-header-logo-img {
    width: 58px;
    max-width: 58px;
    min-width: 58px;
  }

  .sh-mobile-menu-inner {
    border-radius: 20px;
    padding: 12px 14px;
  }

  .sh-mobile-nav a {
    font-size: 1rem;
  }
	/* =========================================
   STORYHOUSE™ HEADER — POLISH / TIGHTENING
   ========================================= */

/* Slightly reduce outer breathing room */
.sh-global-header {
  padding: 14px 20px 0;
}

/* Tighten shell width + soften overall proportions */
.sh-header-shell {
  max-width: 1040px;
  border-radius: 999px;
}

/* Reduce row height and horizontal padding */
.sh-header-inner {
  min-height: 76px;
  padding: 0 20px;
  gap: 18px;
}

/* Slightly reduce seal/logo size */
.sh-header-logo-wrap img,
.sh-header-logo-img {
  width: 64px;
  max-width: 64px;
  min-width: 64px;
}

/* Tighten desktop nav spacing */
.sh-header-nav {
  gap: 18px;
}

/* Slightly refine nav type */
.sh-header-nav a {
  font-size: 0.98rem;
  line-height: 1.15;
}

/* Bring underline closer */
.sh-header-nav a:not(.sh-nav-inquiry)::after {
  bottom: -6px;
}

/* Tighten CTA button in header */
.sh-nav-inquiry {
  padding: 11px 16px;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Keep the whole header visually centered and balanced */
.sh-header-brand {
  margin-right: 4px;
}

/* Optional: make header feel a touch more elegant */
.sh-header-shell {
  box-shadow: 0 10px 24px rgba(0,0,0,0.045);
}

/* =========================================
   RESPONSIVE HEADER POLISH
   ========================================= */

@media (max-width: 1024px) {
  .sh-global-header {
    padding: 12px 16px 0;
  }

  .sh-header-inner {
    min-height: 72px;
    padding: 0 16px;
  }

  .sh-header-logo-wrap img,
  .sh-header-logo-img {
    width: 58px;
    max-width: 58px;
    min-width: 58px;
  }
}

@media (max-width: 768px) {
  .sh-header-shell {
    max-width: 100%;
    border-radius: 24px;
  }

  .sh-header-inner {
    min-height: 70px;
  }
}
}
.sh-header-shell {
  max-width: 1040px;
}

.sh-header-inner {
  min-height: 76px;
  padding: 0 20px;
}

.sh-header-nav {
  gap: 18px;
}
/* -----------------------------
   9) ELEVATED FOOTER
------------------------------ */
.sh-footer {
  margin-top: 90px;
  padding: 60px 24px 28px;
  background:
    radial-gradient(900px 280px at 8% 0%, rgba(201,168,106,0.08), transparent 45%),
    linear-gradient(180deg, #f5efe7 0%, #f7f2eb 100%);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.sh-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}

.sh-footer-brand h4,
.sh-footer h4 {
  font-family: var(--global-heading-font, serif);
  font-size: 2rem;
  line-height: 1.1;
  color: #241d18 !important;
  margin: 0 0 14px;
  opacity: 1 !important;
}

.sh-footer-col h5 {
  font-family: var(--global-heading-font, serif);
  font-size: 1.02rem;
  line-height: 1.2;
  color: #241d18 !important;
  margin: 0 0 14px;
  font-weight: 600;
  opacity: 1 !important;
  letter-spacing: 0.01em;
}

.sh-footer-description,
.sh-footer p,
.sh-footer li,
.sh-footer span {
  color: #5f544c !important;
  opacity: 1 !important;
}

.sh-footer-description {
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 34ch;
  margin: 0;
}

.sh-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sh-footer-col li {
  margin: 0 0 10px;
}

.sh-footer-col a,
.sh-footer a {
  text-decoration: none;
  color: #5f544c !important;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 1 !important;
  transition: color 0.2s ease;
}

.sh-footer-col a:hover,
.sh-footer a:hover {
  color: #b8860b !important;
}

.sh-footer-note {
  max-width: 1120px;
  margin: 34px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.sh-footer-note p,
.sh-footer-note span {
  margin: 0;
  font-size: 0.9rem;
  color: #6c6158 !important;
  opacity: 1 !important;
}

.sh-footer-divider {
  display: inline-block;
  margin: 0 8px;
  opacity: 0.55 !important;
}

/* -----------------------------
   10) RESPONSIVE
------------------------------ */
@media (max-width: 980px) {
  .home .sh-home .sh-hero-grid,
  .home .sh-home .sh-founder-grid,
  .home .sh-home .sh-quiet-grid,
  .home .sh-home .sh-grid-2,
  .home .sh-home .sh-services-grid {
    grid-template-columns: 1fr;
  }

  .home .sh-home .sh-hero,
  .home .sh-home .sh-founder,
  .home .sh-home .sh-quiet {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home .sh-home .sh-hero-actions-card {
    max-width: 100%;
  }

  .sh-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .sh-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .sh-global-header {
    padding: 12px 18px;
  }

  .sh-header-inner {
    gap: 16px;
  }

  .sh-header-logo-wrap img,
  .sh-header-logo-img {
    width: 54px;
    max-width: 54px;
    min-width: 54px;
  }

  .sh-header-nav {
    display: none;
  }

  .sh-mobile-toggle {
    display: inline-block;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .sh-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-branding .site-title a,
  .site-branding .brand a {
    font-size: 1.22rem;
  }

  .home .sh-home .sh-hero {
    padding: 34px 22px;
  }

  .home .sh-home .sh-title {
    max-width: none;
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  .sh-seal-center {
    width: 320px;
  }

  .sh-seal-right {
    width: 220px;
    right: -40px;
  }

  .sh-seal-corner {
    width: 150px;
  }
}

@media (max-width: 600px) {
  .sh-footer {
    padding: 44px 18px 24px;
  }

  .sh-footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sh-footer-brand {
    grid-column: auto;
  }

  .sh-footer-brand h4,
  .sh-footer h4 {
    font-size: 1.75rem;
  }

  .sh-footer-note {
    margin-top: 28px;
  }

  .sh-footer-note p {
    line-height: 1.6;
  }
}
/* ========================================= */
/* STORYHOUSE™ KADENCE MOBILE HEADER         */
/* ========================================= */

@media (max-width: 1024px) {
  .mobile-header-wrap,
  .tablet-header-wrap,
  .site-header-row-container-inner {
    background: transparent !important;
  }

  .mobile-main-header-inner-wrap,
  .tablet-main-header-inner-wrap,
  .site-header-row-container-inner {
    min-height: 74px;
  }

  .site-mobile-logo img,
  .custom-logo {
    max-height: 58px !important;
    width: auto !important;
  }

  .menu-toggle-open,
  .mobile-toggle-open-container .menu-toggle-open,
  .drawer-toggle,
  .navbar-toggle {
    background: rgba(255,255,255,0.92) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 999px !important;
    padding: 20px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05) !important;
  }

  .menu-toggle-open .kadence-svg-iconset,
  .menu-toggle-open svg {
    color: #2b2b2b !important;
  }

  #mobile-drawer,
  .mobile-drawer,
  .drawer-content {
    background: rgba(255,255,255,0.98) !important;
  }

  .mobile-drawer .drawer-inner,
  #mobile-drawer .drawer-inner {
    padding: 24px 20px !important;
  }

  .mobile-drawer .menu a,
  #mobile-drawer .menu a {
    font-family: var(--global-heading-font, Georgia, serif) !important;
    color: #2b2b2b !important;
    font-size: 1.08rem !important;
    line-height: 1.4 !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  }

  .mobile-drawer .menu a:hover,
  #mobile-drawer .menu a:hover {
    color: #b8860b !important;
  }
}
/* ========================================= */
/* STORYHOUSE™ MOBILE HEADER TIGHTEN         */
/* ========================================= */

@media (max-width: 1024px) {

  /* Center the entire header row */
  .mobile-main-header-inner-wrap,
  .tablet-main-header-inner-wrap,
  .site-header-row-container-inner {
    display: flex !important;
    justify-content: center !important;
  }

  /* Shrink the container so items sit closer */
  .mobile-main-header-inner-wrap > .site-header-row-container-inner,
  .tablet-main-header-inner-wrap > .site-header-row-container-inner {
    max-width: 320px;
    width: 100%;
    justify-content: space-between !important;
  }

  /* Reduce logo size slightly */
  .site-mobile-logo img,
  .custom-logo {
    max-height: 84px !important;
  }

  /* Bring trigger closer */
  .menu-toggle-open,
  .mobile-toggle-open-container {
    margin-left: 25px !important;
  }
	
}
/* =========================================================
   STORYHOUSE™ HOMEPAGE — HIGH-TICKET ENHANCEMENTS
   (Add below existing CSS — do not replace)
   ========================================================= */

/* -----------------------------
   1) CENTERED CARD VARIANT
------------------------------ */
.home .sh-home .sh-card-center {
  text-align: center;
  padding: 34px 28px;
}

/* Narrow reading width for premium feel */
.home .sh-home .sh-narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------
   2) 3-COLUMN GRID (DIFFERENCE)
------------------------------ */
.home .sh-home .sh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 18px;
}

/* -----------------------------
   3) PROCESS SECTION (HIGH-TICKET CORE)
------------------------------ */
.home .sh-home .sh-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.home .sh-home .sh-process-step {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--sh-border);
  border-radius: 18px;
  padding: 18px 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home .sh-home .sh-process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.home .sh-home .sh-process-step h3 {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--sh-ink-soft);
}

.home .sh-home .sh-process-step p {
  font-size: 0.90rem;
  line-height: 1.55;
  margin: 0;
}

/* -----------------------------
   4) MINI HEADING (REFINEMENT)
------------------------------ */
.home .sh-home .sh-mini-heading {
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 10px;
}

/* -----------------------------
   5) FINAL CTA (CLOSING ENERGY)
------------------------------ */
.home .sh-home .sh-final-cta .sh-card {
  padding: 44px 32px;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(201,168,106,0.18), transparent 60%),
    linear-gradient(180deg, rgba(250,248,244,0.96), rgba(255,255,255,0.98));
}

.home .sh-home .sh-final-cta .sh-section-title {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------
   6) TYPOGRAPHY POLISH (LUXURY FEEL)
------------------------------ */
.home .sh-home .sh-section-lead {
  max-width: 64ch;
  line-height: 1.7;
}

.home .sh-home .sh-section p {
  max-width: 60ch;
}

/* -----------------------------
   7) BUTTON POLISH (SUBTLE ELEVATION)
------------------------------ */
.home .sh-home .sh-btn.primary {
  letter-spacing: 0.02em;
}

/* -----------------------------
   8) SPACING REFINEMENT
------------------------------ */
.home .sh-home .sh-section {
  margin-top: 72px;
}

/* -----------------------------
   9) RESPONSIVE ADJUSTMENTS
------------------------------ */
@media (max-width: 980px) {

  .home .sh-home .sh-grid-3,
  .home .sh-home .sh-process {
    grid-template-columns: 1fr;
  }

  .home .sh-home .sh-card-center {
    padding: 26px 20px;
  }

  .home .sh-home .sh-final-cta .sh-card {
    padding: 32px 22px;
  }

}


/* =========================================================
   STORYHOUSE™ GENERAL INQUIRY PAGE
   ========================================================= */

:root{
  --sh-ink: #2b2b2b;
  --sh-ink-soft: #5f544c;
  --sh-cream: #faf8f4;
  --sh-ivory: #fdfbf8;
  --sh-sand: #f3eee7;
  --sh-gold: #c9a86a;
  --sh-border: rgba(0,0,0,0.08);
  --sh-shadow: 0 12px 30px rgba(0,0,0,0.06);
  --sh-shadow-soft: 0 8px 22px rgba(0,0,0,0.05);
}

/* PAGE WRAP */
.sh-intake-page{
  color: var(--sh-ink);
  line-height: 1.65;
}

.sh-intake-page section{
  margin-top: 64px;
}

.sh-intake-hero,
.sh-intake-positioning-inner,
.sh-intake-paths-inner,
.sh-intake-fit-inner,
.sh-intake-next-inner,
.sh-intake-form-inner,
.sh-intake-closing-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

/* EYEBROW */
.sh-intake-page .sh-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  color: var(--sh-ink);
}

/* HERO */
.sh-intake-hero{
  margin-top: 24px;
}

.sh-intake-hero-inner{
  border-radius: 26px;
  border: 1px solid var(--sh-border);
  box-shadow: var(--sh-shadow);
  padding: 52px 44px;
  background:
    radial-gradient(1200px 520px at 18% 10%, rgba(206,179,132,0.20), transparent 60%),
    radial-gradient(900px 420px at 82% 0%, rgba(219,193,180,0.20), transparent 55%),
    linear-gradient(180deg, rgba(250,248,244,0.96), rgba(255,255,255,0.98));
}

.sh-intake-hero h1{
  font-family: var(--global-heading-font, serif);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 16px;
  color: var(--sh-ink);
  max-width: 18ch;
}

.sh-intake-hero-lead{
  max-width: 75ch;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.72;
  color: var(--sh-ink);
  opacity: 0.92;
  margin: 0 0 22px;
}

/* NOTICE */
.sh-intake-notice{
  max-width: 760px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 30px rgba(0,0,0,0.05);
  backdrop-filter: blur(8px);
}

.sh-intake-notice p{
  margin: 0 0 10px;
}

.sh-intake-notice p:last-child{
  margin-bottom: 0;
}

.sh-intake-notice a{
  color: var(--sh-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sh-intake-notice a:hover{
  color: var(--sh-gold);
}

/* GENERIC CARD */
.sh-intake-card{
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--sh-border);
  border-radius: 22px;
  box-shadow: var(--sh-shadow-soft);
  padding: 26px 24px;
  backdrop-filter: blur(4px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sh-intake-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.sh-intake-card-center{
  text-align: center;
}

.sh-intake-card h2,
.sh-intake-card h3,
.sh-intake-section-title,
.sh-intake-form h2,
.sh-intake-closing h2{
  font-family: var(--global-heading-font, serif);
  color: var(--sh-ink);
}

.sh-intake-card h2,
.sh-intake-section-title,
.sh-intake-form h2,
.sh-intake-closing h2{
  font-size: 1.7rem;
  margin: 10px 0 12px;
  letter-spacing: -0.01em;
}

.sh-intake-card h3{
  font-size: 1.08rem;
  line-height: 1.35;
  margin: 0 0 10px;
}

.sh-intake-card p,
.sh-intake-form-lead{
  max-width: 64ch;
  color: var(--sh-ink);
  opacity: 0.92;
}

/* PATHS */
.sh-intake-paths-grid,
.sh-intake-fit-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.sh-intake-path ul,
.sh-intake-list{
  padding-left: 18px;
  margin: 14px 0 0;
}

.sh-intake-path li,
.sh-intake-list li{
  margin: 8px 0;
}

/* FORM SECTION */
.sh-intake-form-inner{
  border-radius: 26px;
  border: 1px solid var(--sh-border);
  box-shadow: var(--sh-shadow);
  padding: 42px 34px;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(206,179,132,0.18), transparent 60%),
    linear-gradient(180deg, rgba(250,248,244,0.96), rgba(255,255,255,0.98));
}

.sh-intake-form-shell{
  margin-top: 22px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

/* WPFORMS POLISH */
.sh-intake-form-shell .wpforms-container{
  margin: 0 !important;
}

.sh-intake-form-shell .wpforms-field-label{
  font-size: 0.92rem !important;
  color: var(--sh-ink) !important;
  margin-bottom: 6px !important;
}

.sh-intake-form-shell input[type="text"],
.sh-intake-form-shell input[type="email"],
.sh-intake-form-shell input[type="tel"],
.sh-intake-form-shell input[type="url"],
.sh-intake-form-shell input[type="number"],
.sh-intake-form-shell textarea,
.sh-intake-form-shell select{
  border-radius: 12px !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  background: rgba(255,255,255,0.98) !important;
  padding: 12px 14px !important;
  font-size: 0.95rem !important;
  color: var(--sh-ink) !important;
  transition: border 0.2s ease, box-shadow 0.2s ease !important;
}

.sh-intake-form-shell input:focus,
.sh-intake-form-shell textarea:focus,
.sh-intake-form-shell select:focus{
  outline: none !important;
  border-color: var(--sh-gold) !important;
  box-shadow: 0 0 0 2px rgba(201,168,106,0.20) !important;
}

.sh-intake-form-shell .wpforms-submit,
.sh-intake-form-shell button[type="submit"]{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  background: var(--sh-gold) !important;
  color: #1f1a12 !important;
  border: 1px solid var(--sh-gold) !important;
  transition: all 0.2s ease !important;
  cursor: pointer;
}

.sh-intake-form-shell .wpforms-submit:hover,
.sh-intake-form-shell button[type="submit"]:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(201,168,106,0.25) !important;
}

/* CLOSING */
.sh-intake-closing .sh-intake-card{
  padding: 36px 26px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .sh-intake-paths-grid,
  .sh-intake-fit-grid{
    grid-template-columns: 1fr;
  }

  .sh-intake-hero-inner,
  .sh-intake-form-inner{
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 768px){
  .sh-intake-hero h1{
    max-width: none;
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  .sh-intake-page section{
    margin-top: 52px;
  }

  .sh-intake-form-shell{
    padding: 18px;
  }
}

@media (max-width: 600px){
  .sh-intake-hero,
  .sh-intake-positioning-inner,
  .sh-intake-paths-inner,
  .sh-intake-fit-inner,
  .sh-intake-next-inner,
  .sh-intake-form-inner,
  .sh-intake-closing-inner{
    padding-left: 18px;
    padding-right: 18px;
  }

  .sh-intake-hero-inner,
  .sh-intake-form-inner{
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .sh-intake-card{
    padding: 22px 18px;
  }
}
.sh-storyhouse-inquiry-form .sh-form-section{
  margin-bottom: 30px;
  padding-bottom: 8px;
}

.sh-storyhouse-inquiry-form .sh-form-section-title{
  font-family: var(--global-heading-font, serif);
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--sh-ink);
  margin: 0 0 14px;
}

.sh-storyhouse-inquiry-form .sh-field{
  margin-bottom: 16px;
}

.sh-storyhouse-inquiry-form label,
.sh-storyhouse-inquiry-form legend{
  color: var(--sh-ink);
}

.sh-storyhouse-inquiry-form input[type="text"],
.sh-storyhouse-inquiry-form input[type="email"],
.sh-storyhouse-inquiry-form input[type="tel"],
.sh-storyhouse-inquiry-form input[type="url"],
.sh-storyhouse-inquiry-form select,
.sh-storyhouse-inquiry-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
  font-size: 0.95rem;
  color: var(--sh-ink);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.sh-storyhouse-inquiry-form input:focus,
.sh-storyhouse-inquiry-form select:focus,
.sh-storyhouse-inquiry-form textarea:focus{
  outline: none;
  border-color: var(--sh-gold);
  box-shadow: 0 0 0 2px rgba(201,168,106,0.20);
}

.sh-storyhouse-inquiry-form .sh-field-inline{
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}

.sh-storyhouse-inquiry-form .sh-field-inline legend{
  font-size: 0.92rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.sh-storyhouse-inquiry-form .sh-field-inline label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  line-height: 1.5;
}

.sh-storyhouse-inquiry-form .sh-field-inline input[type="radio"],
.sh-storyhouse-inquiry-form .sh-field-inline input[type="checkbox"]{
  margin-top: 3px;
  flex: 0 0 auto;
}

.sh-storyhouse-inquiry-form .sh-field-confirmation{
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.sh-storyhouse-inquiry-form .sh-form-submit{
  margin-top: 8px;
}

/* Calendly shell for better spacing */
.sh-calendly-shell{
  margin-top: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

/* Footer note under calendar */
.sh-booking-footer-note{
  text-align: center;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--sh-ink-soft);
}