/*
 Theme Name:   Twenty Twenty Child
 Theme URI:    https://diviextended.com/
 Description:  A child theme of Twenty Twenty WordPress theme.
 Author:       Elicus Technologies
 Author URI:   https://elicus.com
 Template:     twentytwenty
 Version:      1.0.3
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url("../twentytwenty/style.css");

/* ============================================
   CSS Variables
   ============================================ */

:root {
  /* Colors */
  --color-primary: #CE8E68;
  --color-link: #BA7D57;
  --color-secondary: #E8C3AA;
  --color-tertiary: #6F4218;
  --color-quaternary: #EEECE9;
  --color-header-bg: #EFECE9;
  --color-divider: #FCF6E0;
  --color-gray-border: #CECECE;
  --color-bg-light: rgba(210, 233, 251, 1);
  --color-bg-gray: rgba(206, 206, 206, 0.17);
  --color-black: #000000;
  --color-white: #FFFFFF;

  /* Link chevrons */
  --arrow-size: 0.5em;
  --arrow-stroke: 2px;
  --arrow-gap: 8px;
  
  /* Typography — Adobe Typekit brand fonts */
  --font-primary: "wayfinder-cf", serif;
  --font-secondary: "lato", sans-serif;
  --font-body: "lato", sans-serif;
  
  /* Font Sizes */
  --font-size-h1: 40px;
  --font-size-h2: 32px;
  --font-size-h3: 26px;
  --font-size-h4: 20px;
  --font-size-body: 16px;
  --font-size-large: 20px;
  
  /* Spacing */
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 40px;
  --spacing-lg: 60px;
  --spacing-xl: 80px;
  --spacing-xxl: 100px;

  /* Layout Widths */
  --content-width: 60%;
  --content-max-width: 1000px;
  --site-chrome-width: 92%;
  --site-chrome-padding-y: 15px;
  --site-chrome-padding-x: 0;
  --mobile-header-height: 75px;
  
  /* Border Radius */
  --radius-sm: 14px;
  --radius-md: 21px;
  --radius-lg: 31px;
  --radius-xl: 35px;
  --radius-xxl: 41px;
  
  /* Shadows */
  --shadow-default: 0px 3px 6px rgba(0, 0, 0, 0.16);
  --shadow-card: 0px 3px 6px #00000029;
  
  /* Transitions */
  --transition-default: 350ms ease;
  --transition-fast: 200ms ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

/* Override Twenty Twenty's Inter / system-ui stack sitewide */
body,
button,
input,
select,
textarea,
label,
.site-main,
#site-header,
.site-footer,
.menu-modal,
.entry-content,
.page-content {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6, .faux-heading {
  letter-spacing: normal;
}

h1,
.title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: var(--font-size-h1);
  line-height: 1.125;
  color: var(--color-black);
  margin: 0 auto var(--spacing-sm);
  text-align: left;
}

h2,
.entry-header .entry-title a {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--font-size-h2);
  color: var(--color-tertiary);
  text-align: left;
}

h3 {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--font-size-h3);
  margin: var(--spacing-xl) auto 30px;
  text-align: left;
}

.home h3 {
  text-align: center;
}

h4,
summary {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--font-size-h4);
  color: var(--color-black);
  margin: 0 0 var(--spacing-xs);
  text-align: left;
}

p,
ul,
ol,
select {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--font-size-body);
  text-align: left;
  color: var(--color-black);
}

a {
  color: var(--color-link);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-default);
}

a:hover {
  color: var(--color-link);
}

.singular .intro-text,
.intro-text {
  font-size: var(--font-body);
  font-weight: 700;
  letter-spacing: normal;
  line-height: 2;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.primary {
  color: var(--color-primary);
}

.secondary {
  color: var(--color-secondary);
}

.tertiary {
  color: var(--color-tertiary);
}

.white {
  color: var(--color-white);
}

.black {
  color: var(--color-black);
}

.primary-bg{
  background: var(--color-primary);
}

.secondary-bg {
  background: var(--color-secondary);
}

.tertiary-bg {
  background: var(--color-tertiary);
}

.quaternary-bg {
  background: var(--color-quaternary);
}

.underline {
  text-decoration: underline;
}

.flex {
  display: flex;
}

/* Link arrows — content links use --color-link; nav uses black (see header rules) */
.link-with-arrow {
  color: var(--color-link);
}

.link-with-arrow:hover {
  color: var(--color-tertiary);
}

.link-with-arrow::after,
.child-page-item a::after,
.primary-menu > li > a::after,
.sub-menu-parent a::after,
.sub-menu-children a::after,
.mobile-nav-parent::after,
.mobile-nav-children a::after,
.helpful-info-link::after {
  content: '';
  display: inline-block;
  width: var(--arrow-size);
  height: var(--arrow-size);
  margin-left: var(--arrow-gap);
  border-right: var(--arrow-stroke) solid currentColor;
  border-bottom: var(--arrow-stroke) solid currentColor;
  transform: rotate(-45deg) translateY(-0.08em);
  vertical-align: middle;
  box-sizing: border-box;
}

.primary-menu > li:last-child > a::after {
  transform: rotate(45deg) translateY(-0.2em);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  font-weight: 700;
  padding: 6px 32px;
  border-radius: 25px;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition-default), color var(--transition-default);
}

.btn:hover {
  background: var(--color-tertiary);
  color: var(--color-white);
  text-decoration: none;
}

.btn--light,
.cta2 .btn {
  background: var(--color-quaternary);
  color: var(--color-black);
}

.btn--light:hover,
.cta2 .btn:hover {
  background: var(--color-white);
  color: var(--color-tertiary);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.two-column {
  display: flex;
  width: var(--content-width);
  justify-content: space-evenly;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  margin: var(--spacing-lg) auto 0;
  max-width: var(--content-max-width);
}

.content-container,
.entry-content,
.post-content,
.landing-intro-section .intro {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: var(--spacing-xl) auto;
}

/* ============================================
   LANDING PAGE — CHILD PAGES GRID
   ============================================ */

.child-pages-section {
  margin-top: var(--spacing-xl);
}

.child-pages-title {
  color: var(--color-black);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: var(--font-size-h2);
  margin: 0 0 var(--spacing-md);
  text-align: left;
}

.child-pages-grid {
  column-count: 3;
  column-gap: var(--spacing-lg);
}

.child-page-item {
  break-inside: avoid;
  margin-bottom: 28px;
}

.child-page-item a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-link);
  text-decoration: none;
  line-height: 1.2;
}

.child-page-item a:hover {
  color: var(--color-tertiary);
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}


/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

#site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--color-header-bg);
  box-shadow: var(--shadow-default);
  z-index: 999;
}

.header-inner {
  margin: 0 auto;
  padding: var(--site-chrome-padding-y) var(--site-chrome-padding-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: unset;
  width: var(--site-chrome-width);
  position: relative;
}

/* Logo styling */
#site-header .header-titles-wrapper {
  justify-content: flex-start;
  text-align: left;
  padding: 0;
}

#site-header .site-logo {
  text-align: left;
}

#site-header .site-logo-desktop {
  display: block;
}

#site-header .site-logo-mobile {
  display: none !important;
}

#site-header .site-logo-mobile img,
#site-header .site-logo-desktop .custom-logo-link img,
.site-footer .site-logo-mobile img,
.site-footer .site-logo-desktop .custom-logo-link img {
  margin: 0;
}

.site-logo-desktop .custom-logo-link img {
  max-height: unset;
  width: 275px;
  display: block;
}

.site-footer .site-logo-mobile {
  display: none !important;
}

.site-footer .site-logo-desktop {
  display: block;
}

/* ==========================================
   TOP NAVIGATION BAR
   ========================================== */

.header-navigation-wrapper {
  display: flex;
  align-items: center;
  position: static;
}

.primary-menu-wrapper {
  display: flex !important;
  align-items: center;
  gap: 42px;
}

.primary-menu-wrapper .primary-menu,
.primary-menu-wrapper .reset-list-style {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 42px;
  align-items: center;
}

.primary-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.primary-menu > li > a {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  font-weight: 700;
  color: var(--color-black);
  text-decoration: none;
  padding: 10px 0;
  display: block;
  letter-spacing: 0px;
  transition: color var(--transition-default);
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a {
  color: var(--color-link);
  text-decoration: none;
}

.nav-cta-wrapper {
  flex-shrink: 0;
}

/* ==========================================
   UNIFIED SUB MENU
   ========================================== */

/* Bridge area between nav and dropdown */
.sub-menu-wrapper::after {
  content: '';
  position: absolute;
  top: 67%;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 9997;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
}

.sub-menu-wrapper:hover::after {
  visibility: visible;
  pointer-events: auto;
}

.sub-menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto;
  background: var(--color-white);
  box-shadow: var(--shadow-default);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-default), visibility var(--transition-default);
  z-index: 9998;
}

@media (min-width: 1101px) {
  .header-inner {
    position: static;
  }
}

/* Show sub menu on hover over wrapper OR bridge OR submenu itself */
.sub-menu-wrapper:hover .sub-menu-container,
.sub-menu-wrapper:hover::after,
.sub-menu-container:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.sub-menu-inner {
  margin: 0 auto;
  padding: 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
}

.sub-menu-columns {
  display: flex;
  gap: 48px;
  flex: 0 1 auto;
  justify-content: center;
}

.sub-menu-column {
  flex: 0 1 350px;
  max-width: 350px;
  min-width: 0;
}

h3.sub-menu-parent {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-align: left;
}

.sub-menu-parent a {
  display: inline-block;
  max-width: 100%;
  color: var(--color-black);
  text-decoration: none;
  transition: color var(--transition-default);
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.sub-menu-parent a:hover {
  color: var(--color-link);
}

.sub-menu-children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sub-menu-children li {
    margin: 0 0 10px 0;
}

.sub-menu-children a {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-default);
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-wrap: pretty;
}

.sub-menu-children a::after {
  margin-left: 6px;
}

.sub-menu-children a:hover {
  color: var(--color-tertiary);
}

/* ==========================================
   MOBILE NAVIGATION
   ========================================== */

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.mobile-nav-toggle,
.mobile-nav-close {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
  flex-shrink: 0;
  width: auto !important;
  min-width: 0;
  height: auto;
}

/* Override Twenty Twenty's global close-nav-toggle styles in header */
#site-header button.mobile-nav-close.close-nav-toggle {
  display: none !important;
  width: auto !important;
  padding: 8px !important;
  justify-content: center !important;
}

#site-header button.mobile-nav-close.close-nav-toggle svg {
  fill: var(--color-black);
  width: 22px;
  height: 22px;
}

.mobile-nav-toggle-icon {
  display: block;
  width: 26px;
  height: 12px;
  position: relative;
}

.mobile-nav-toggle-icon::before,
.mobile-nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-black);
  border-radius: 2px;
}

.mobile-nav-toggle-icon::before {
  top: 0;
}

.mobile-nav-toggle-icon::after {
  bottom: 0;
}

.mobile-nav-close[hidden] {
  display: none !important;
}

.mobile-nav-toggle[hidden] {
  display: none !important;
}

/* Backdrop — dark overlay, no blur; sits below header */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

body.showing-menu-modal {
  overflow: hidden;
}

body.showing-menu-modal .mobile-nav-backdrop {
  display: block;
}

body.showing-menu-modal .mobile-nav-toggle {
  display: none !important;
}

body.showing-menu-modal #site-header button.mobile-nav-close.close-nav-toggle {
  display: flex !important;
}

body.showing-menu-modal .mobile-nav-close[hidden] {
  display: flex !important;
}

/* Panel slides in from right, flush below header */
.menu-modal.mobile-nav-panel {
  display: none !important;
  position: fixed;
  top: var(--mobile-header-height, 75px);
  right: 0 !important;
  left: auto !important;
  width: min(88%, 420px);
  bottom: 0;
  z-index: 1001;
  background: var(--color-white);
  opacity: 1;
  overflow: hidden;
  transition: none;
  visibility: hidden;
  pointer-events: none;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.08);
}

.menu-modal.mobile-nav-panel.active {
  display: block !important;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-panel-inner {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 20px 24px 40px;
}

.mobile-nav-menu {
  width: 100%;
}

.mobile-nav-section {
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.mobile-nav-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.mobile-nav-parent {
  display: inline-block;
  max-width: 100%;
  padding: 0 0 6px;
  text-decoration: none;
  color: var(--color-black);
  transition: color var(--transition-default);
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.mobile-nav-parent:hover,
.mobile-nav-parent:focus {
  color: var(--color-link);
  text-decoration: none;
}

.mobile-nav-parent-title {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  font-weight: 700;
  line-height: 1.35;
  color: inherit;
}

.mobile-nav-children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-children li {
  margin: 0;
  padding: 5px 0;
}

.mobile-nav-children a {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  font-weight: 600;
  color: var(--color-link);
  text-decoration: none;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-wrap: pretty;
}

.mobile-nav-children a::after {
  margin-left: 6px;
}

.mobile-nav-children a:hover,
.mobile-nav-children a:focus {
  color: var(--color-tertiary);
  text-decoration: none;
}

.admin-bar .menu-modal.mobile-nav-panel {
  top: calc(var(--mobile-header-height, 80px) + 32px);
}

.admin-bar .mobile-nav-backdrop {
  top: 32px;
}

/* ==========================================
   RESPONSIVE BEHAVIOR
   ========================================== */

@media (max-width: 1100px) {
  /* Hide desktop navigation and sub menu */
  .sub-menu-wrapper,
  .primary-menu-wrapper,
  .sub-menu-container {
    display: none !important;
  }

  .header-titles-wrapper {
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
    text-align: left;
  }

  #site-header .site-logo {
    margin-right: auto;
  }

  .header-navigation-wrapper {
    flex-shrink: 0;
  }

  .mobile-header-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }

  /* Twenty Twenty absolutely positions .nav-toggle — reset for our header row */
  #site-header .mobile-nav-toggle.nav-toggle,
  #site-header .mobile-nav-close.nav-toggle,
  #site-header .mobile-nav-close {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    min-width: 0;
    padding: 8px !important;
    margin: 0;
  }

  #site-header .header-inner .toggle {
    padding: 8px !important;
    overflow: visible;
  }

  .mobile-nav-toggle {
    display: flex !important;
  }

  #site-header button.mobile-nav-close.close-nav-toggle {
    display: none !important;
  }

  .mobile-nav-cta .btn,
  .footer-ctas .btn {
    padding: 6px 18px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  :root {
    --site-chrome-width: 100%;
    --site-chrome-padding-y: 6px;
    --site-chrome-padding-x: 20px;
  }

  .header-inner {
    width: var(--site-chrome-width);
    max-width: 100%;
    padding: var(--site-chrome-padding-y) var(--site-chrome-padding-x);
    gap: 12px;
  }

  #site-header {
    z-index: 1002;
    position: sticky;
  }

  .header-inner {
    position: relative;
    z-index: 2;
    background: var(--color-header-bg);
  }
  
  #site-header .site-logo-desktop {
    display: none !important;
  }

  #site-header .site-logo-mobile {
    display: block !important;
    line-height: 0;
  }

  #site-header .site-logo-mobile img,
  .site-footer .site-logo-mobile img {
    max-height: 56px;
    width: auto;
    max-width: min(190px, 42vw);
    display: block;
    margin: 0;
  }

  .site-footer .site-logo-desktop {
    display: none !important;
  }

  .site-footer .site-logo-mobile {
    display: block !important;
    line-height: 0;
  }
}

@media (min-width: 1101px) {
  .menu-modal {
    display: none !important;
  }

  #site-header .site-logo-mobile {
    display: none !important;
  }

  #site-header .site-logo-desktop {
    display: block;
  }

  .site-footer .site-logo-mobile {
    display: none !important;
  }

  .site-footer .site-logo-desktop {
    display: block;
  }
}

/* WordPress Admin Bar */
.admin-bar #site-header {
  top: 32px;
}


@media screen and (max-width: 782px) {
  .admin-bar #site-header {
    top: 46px;
  }
  
  .admin-bar .sub-menu-container {
    top: 146px;
  }

  .admin-bar .menu-modal.mobile-nav-panel {
    top: calc(var(--mobile-header-height, 80px) + 46px);
  }

  .admin-bar .mobile-nav-backdrop {
    top: 46px;
  }
}

/* ============================================
   HOME PAGE
   ============================================ */

.home .hero {
  background-image: url(/wp-content/uploads/2025/10/Family.jpg);
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 86%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.home .hero .links {
  position: absolute;
  left: 120px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-xxl);
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
  width: 35%;
  max-width: 480px;
  line-height: 1.875;
  margin: var(--spacing-md) 0;
  box-sizing: border-box;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cta h2 {
  font-size: 22px;
  margin: 0;
}

.cta .btn {
  margin-left: var(--spacing-sm);
}

/* Learn More Section */
#learn-more {
  display: flex;
  width: 80%;
  margin: var(--spacing-xl) auto;
  justify-content: space-around;
  gap: 60px;
}

.learn-feature {
  width: 45%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
}

.learn-feature h3 {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0;
  font-size: 52px;
}

.learn-feature img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 250px;
  height: auto;
  pointer-events: none;
}

.blurbs {
  width: 50%;
}

.blurbs div {
  padding: 0 0 30px;
  margin: 0 0 30px;
}

.blurbs div:not(:last-child) {
  border-bottom: 2px solid var(--color-divider);
}

.blurbs h4 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.blurbs h4 .blurb-check {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

.home .hero .links h1 {
  font-family: var(--font-primary);
  font-weight: 500;
  margin: 0 0 var(--spacing-sm);
  line-height: 1.2;
}

.home .hero .links a {
  display: inline-block;
  line-height: 1.875;
}


/* CTA Section */
.cta2 {
  background-image: linear-gradient(rgba(111, 66, 24, 0.5), rgba(111, 66, 24, 0.5)), url(/wp-content/uploads/2025/10/Baby-scaled.jpg);  
  background-size: 117%;
  background-repeat: no-repeat;
  background-position: 0% 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 111px var(--spacing-sm);
}

/* Testimonial */
.testimonial {
  min-height: 300px;
  display: flex;
  background: var(--color-bg-gray);
  width: 80%;
  max-width: 1600px;
  margin: var(--spacing-xxl) auto;
  border-radius: var(--radius-lg);
  font-weight: 600;
}

.testimonial h3 {
  margin: 0;
  font-weight: 600;
}

.testimonial p {
  font-weight: 600;
  font-size: 20px;
}

.testimonial div:first-of-type {
  background-image: url(/wp-content/uploads/2025/10/Tanis-Family.jpg);
  background-size: cover;
  border-radius: var(--radius-lg);
  min-height: 300px;
  background-repeat: no-repeat;
  width: 50%;
  background-position: center;
}

.testimonial div:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--spacing-md);
  width: 50%;
}

.testimonial div:last-of-type img {
    width: 40px;
    padding: 0 0 8px;
}

/* Numbers Section */
.numbers {
  width: var(--content-width);
  max-width: var(--content-max-width);
  margin: var(--spacing-md) auto var(--spacing-xl);
}

.numbers .flex {
  justify-content: space-between;
  align-items: center;
}

.numbers .icon {
  text-align: center;
  margin: 0 auto;
  width: 60px;
}

.numbers p {
  text-align: center;
  margin: 0;
}

.numbers h3 {
  margin: 0;
  padding: var(--spacing-md) 0 0;
  color: var(--color-primary);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  margin-top: var(--spacing-xxl);
  background: var(--color-white);
  padding: 0;
  box-shadow: inset 0 4px 2px -2px #00000029;
}

.site-footer .container {
  width: var(--site-chrome-width);
  margin: 0 auto;
  padding: var(--site-chrome-padding-y) var(--site-chrome-padding-x);
  max-width: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-widgets {
  margin: auto;
  width: 90%;
  display: flex;
  align-items: center;
  padding: 0;
}

.site-footer-logo {
  line-height: 0;
  flex-shrink: 1;
  min-width: 0;
}

.footer-ctas {
  flex-shrink: 0;
}

/* ============================================
   STAFF PAGES
   ============================================ */

.staff-container .ccclearfix {
  display: flex;
  width: 85%;
  padding: var(--spacing-md) 0 var(--spacing-xxl);
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.staff-container .simple .ccchildpage {
  width: 18%;
}

.staff-container .cc-child-pages-thumb {
  width: 100%;
  object-fit: cover;
  height: 180px;
  border-radius: 22px;
  object-position: 50% 20%;
  order: -1;
}

/* ============================================
   LOCATION PAGES
   ============================================ */

.location-intro-left,
.location-intro-right {
  width: 50%;
}

.intro-img {
  border-radius: var(--radius-xl);
}

.intro-img img {
  width: 336px;
  height: 359px;
  float: right;
}

.location-info p {
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-xs);
}

.location-info p:first-of-type {
  color: var(--color-primary);
  font-size: 24px;
}

/* ============================================
   STANDARD PAGE LAYOUT
   ============================================ */

/* Intro Section - Two Column Layout */
.page-intro-section {
  display: flex;
  gap: 100px;
  max-width: var(--content-max-width);
  margin: var(--spacing-xl) auto;
  align-items: flex-start;
}

/* Left Column - Title, Excerpt, CTA */
.page-intro-left {
  flex: 1;
  min-width: 0;
  width: 40%;
}

.page-header {
  margin-bottom: var(--spacing-md);
}

.page-header h1 {
  margin-bottom: var(--spacing-sm);
}

.page-intro {
  font-size: var(--font-size-body);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: var(--color-black);
}

.page-intro p {
  font-size: 18px;
  font-weight: 800;
}

.page-cta-button {
  margin: var(--spacing-md) 0;
}

.page-cta-button .btn {
  margin: 0;
}

/* Right Column - Helpful Information Box */
.helpful-info-section {
  width: 40%;
  flex-shrink: 0;
}

.helpful-info-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-card);
  min-width: 350px;
}

.helpful-info-box h3 {
  margin: 0 0 var(--spacing-md);
}

.helpful-info-links {
  display: flex;
  flex-direction: column;
}

.helpful-info-link {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-link);
  text-decoration: none;
  padding-bottom: 13px;
  line-height: 1.3;
}

.helpful-info-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.helpful-info-link:hover {
  color: var(--color-tertiary);
}

/* Main Content Area (Below Intro Section) */
.page-content-container {
  width: 85%;
  max-width: var(--content-max-width);
  margin: var(--spacing-xl) auto;
}

.page-content {
  margin-top: 0;
}

.page-content h2 {
  color: var(--color-black);
  margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.page-content h3 {
  margin: 50px 0 var(--spacing-sm);
}

.page-content h4 {
  margin: 35px 0 var(--spacing-xs);
}

.page-content p {
  margin-bottom: 26px;
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  margin: var(--spacing-sm) 0 var(--spacing-sm) 25px;
  line-height: 1.8;
}

.page-content ul li,
.page-content ol li {
  margin-bottom: 10px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: flex;
  gap: 120px;
  width: 85%;
  max-width: var(--content-max-width);
  margin: var(--spacing-xl) auto var(--spacing-xxl);
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact-form-column {
  flex: 1;
  min-width: 0;
  width: 55%;
}

.contact-header {
  margin-bottom: var(--spacing-md);
}

.contact-header h1 {
  margin-bottom: var(--spacing-sm);
}

.contact-intro {
  font-size: var(--font-size-body);
  line-height: 1.8;
  color: var(--color-black);
  max-width: 560px;
}

.contact-intro p {
  margin: 0 0 var(--spacing-sm);
}

.contact-intro p:last-child {
  margin-bottom: 0;
}

.contact-locations-column {
  width: 32%;
  flex-shrink: 0;
  padding-top: 8px;
}

.contact-locations-column h2 {
  margin: 0 0 var(--spacing-md);
  color: var(--color-black);
}

.contact-locations-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-location-item h3 {
  margin: 0 0 var(--spacing-xs);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-location-item p {
  margin: 0 0 6px;
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--color-black);
}

.contact-location-notice {
  font-weight: 700;
}

.contact-location-note {
  font-style: italic;
  margin-top: var(--spacing-xs) !important;
}

.contact-watermark {
  position: absolute;
  right: -8%;
  top: 62px;
  width: 45%;
  max-width: 520px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.contact-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

/* Gravity Forms — contact page (layout only; colors in GF form settings) */
.contact-page .gform_wrapper {
  margin: 0;
  max-width: none;
}

/* Remove GF default field shadow; design uses border only */
.contact-page #gform_wrapper_1.gform-theme {
  --gf-ctrl-shadow: none;
}

.contact-page #gform_wrapper_1 input[type="text"],
.contact-page #gform_wrapper_1 input[type="email"],
.contact-page #gform_wrapper_1 input[type="tel"],
.contact-page #gform_wrapper_1 textarea {
  border: 2px solid var(--color-quaternary);
  border-radius: 24px;
  box-shadow: none;
}

.contact-page #gform_wrapper_1 input::placeholder,
.contact-page #gform_wrapper_1 textarea::placeholder {
  color: #000000;
  opacity: 0.5;
  font-size: 16px;
  font-weight: 600;
}

.contact-page #gform_wrapper_1 .gfield--type-name .ginput_container_name {
  display: flex;
  gap: var(--spacing-sm);
}

.contact-page #gform_wrapper_1 .gfield--type-name .name_first,
.contact-page #gform_wrapper_1 .gfield--type-name .name_last {
  flex: 1;
  min-width: 0;
}

.contact-page #field_1_6 .gfield_label {
  display: none;
}

/* ============================================
   RESPONSIVE - PAGE LAYOUT
   ============================================ */

@media only screen and (max-width: 1200px) {
  .page-intro-section {
    width: 90%;
    gap: 50px;
  }
  
  .helpful-info-section {
    width: 380px;
  }
  
  .page-content-container {
    width: 90%;
  }

  .contact-layout {
    width: 90%;
    gap: 60px;
  }

  .contact-watermark {
    right: -15%;
    width: 50%;
  }
}

@media only screen and (max-width: 1000px) {
  .page-intro-section {
    flex-direction: column;
    width: 85%;
    gap: 0;
  }
  
  .page-intro-left {
    width: 100%;
    order: 1;
  }
  
  .helpful-info-section {
    width: 100%;
    order: 2;
  }
  
  .page-content-container {
    width: 85%;
    margin-top: var(--spacing-lg);
  }
  
  .page-intro {
    font-size: var(--font-size-body);
  }

  .contact-layout {
    flex-direction: column;
    width: 85%;
    gap: 0;
  }

  .contact-form-column,
  .contact-locations-column {
    width: 100%;
  }

  .contact-locations-column {
    margin-top: var(--spacing-lg);
    padding-top: 0;
  }

  .contact-watermark {
    display: none;
  }
}

@media only screen and (max-width: 650px) {
  .page-intro-section,
  .page-content-container {
    width: 90%;
  }
  
  .page-header h1 {
    font-size: 32px;
  }

  .helpful-info-link {
    font-size: 18px;
  }
  
  .helpful-info-box {
    padding: var(--spacing-lg) var(--spacing-md);
    min-width: unset;
  }

  .contact-layout {
    width: 90%;
    margin-top: var(--spacing-lg);
  }

  .contact-header h1 {
    font-size: 32px;
  }

  .contact-page #gform_wrapper_1 .gfield--type-name .ginput_container_name {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet Large (1600px and below) */
@media only screen and (max-width: 1600px) {
  .intro {
    width: 50%;
  }
}

/* Tablet (1300px and below) */
@media only screen and (max-width: 1300px) {
  .intro {
    width: 55%;
  }
  
  .two-column {
    width: 90%;
  }
}

/* Tablet Small (1100px and below) */
@media only screen and (max-width: 1100px) {
  .intro {
    width: 60%;
  }

  /* Home — mobile hero: fixed crop + bottom-left links card */
  .home .hero {
    min-height: clamp(400px, 45vw, 600px);
    justify-content: flex-start;
    background-position: 72% center;
  }

  .home .hero .links {
    position: relative;
    left: auto;
    width: 75%;
    max-width: 360px;
    margin: 0;
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-md) var(--spacing-xs);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    box-shadow: var(--shadow-card);
  }

  .home .hero .links h1 {
    font-size: var(--font-size-h2);
  }

  .home .hero .links a {
    font-size: 16px;
    line-height: 1.4;
    padding-bottom: 8px;
  }

  .home .hero .links a.link-with-arrow {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-wrap: pretty;
  }

  .home .hero .links a.link-with-arrow::after {
    margin-left: 6px;
  }

  .home .hero .links a:last-of-type {
    padding-bottom: 0px;
  }

  #learn-more {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 50px var(--spacing-sm) var(--spacing-md);
    gap: 50px;
    box-sizing: border-box;
  }

  .learn-feature {
    width: 100%;
    padding: 0;
  }

  .learn-feature img {
    display: none;
  }

  .learn-feature h3 {
    font-size: var(--font-size-h2);
    line-height: 1.2;
    text-align: center;
    margin: 0px;
  }

  .blurbs {
    width: 100%;
  }

  .blurbs div {
    padding: var(--spacing-md) 0;
    margin: 0;
  }

  .blurbs div:not(:last-child) {
    border-bottom: 1px solid var(--color-gray-border);
  }

  .blurbs p {
    margin: 0 0 var(--spacing-xs);
  }
}

/* Mobile Large (1000px and below) */
@media only screen and (max-width: 1000px) {
  :root {
    --font-size-h1: 30px;
  }

  .child-pages-title {
    font-size: var(--font-size-h1);
  }
}

/* Mobile Medium (850px and below) */
@media only screen and (max-width: 850px) {
  .numbers .flex {
    flex-direction: column;
  }
  
  .two-column {
    flex-direction: column;
    padding: 0;
  }
  
  .two-column div {
    width: 100%;
  }
  
  .content-container {
    width: 75%;
    margin: var(--spacing-md) auto;
  }

  .child-pages-grid {
    column-count: 2;
  }
  
  .cta2 {
    width: 100%;
    min-height: unset;
    padding: var(--spacing-lg) var(--spacing-sm);
    aspect-ratio: 5 / 4;
    background-size: cover;
    background-position: center center;
    box-sizing: border-box;
  }

  .cta2 .title {
    font-size: var(--font-size-h2);
    line-height: 1.3;
    margin: 0;
  }

  .testimonial {
    flex-direction: column;
    min-height: unset;
    width: auto;
    margin: var(--spacing-lg) var(--spacing-sm);
  }
  
  .testimonial div:first-of-type {
    display: none;
  }

  .testimonial div:last-of-type {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .testimonial p {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
  }

  .testimonial h3 {
    font-size: 20px;
    text-align: left;
  }
}

/* Mobile (650px and below) */
@media screen and (max-width: 650px) {
  .classes-desktop {
    display: none;
  }
  
  .classes-mobile {
    display: block;
  }
}

/* Mobile Small (500px and below) */
@media only screen and (max-width: 500px) {
  :root {
    --font-size-h1: 28px;
  }

  .content-container {
    width: 90%;
  }

  .child-pages-grid {
    column-count: 1;
  }
  
  .cta {
    flex-direction: column;
    padding: var(--spacing-sm) 0;
  }
  
  .cta .btn {
    margin: var(--spacing-sm) 0 0;
  }
}