/*
Theme Name: Custom Clean Theme
Author: Gemini
Redesign: warm & approachable direction — blackthorn blossom/sloe palette
*/

/* ===== DESIGN TOKENS ===== */
ol, ul {
	box-sizing: border-box;
	margin: 0px 0px 0px 36px;
}

/* Contact Form 7 Styling */
.wpcf7-form {
  max-width: 500px;
}

.wpcf7-form p {
  margin-bottom: 1.25rem;
}

.wpcf7-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1e293b;
}

.wpcf7-form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

textarea.wpcf7-form-control {
  min-height: 140px;
  resize: vertical;
}

.wpcf7-submit {
  background-color: #0f172a;
  color: #f8fafc;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.wpcf7-submit:hover {
  background-color: #1e293b;
}

.wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Validation error styling */
.wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-color: #dc2626;
}

/* Success/error response messages */
.wpcf7-response-output {
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.hero-section {
	position: relative;
	width: 100%;
	height: 60vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}


.hero-background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* filter: blur(8px); */
	z-index: -1;
}


.breadcrumbs {
	font-family: Arial;
	color: gray;
	margin: 20px 0px 34px 16px;
	font-size: 12px;
}
.breadcrumb_parent {
	text-decoration: none;
	color: #6F6F7E;
}
.breadcrumb_child {
	text-decoration: none;
	color: #6F6F7E;
}

.category-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #177575;
	background: rgba(23, 117, 117, 0.1);
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 0.5rem;
}


.category-badge a {
	text-decoration: none;
	color: inherit;
}


:root {
    --color-paper: #FBF4EC;      /* warm off-white background */
    --color-paper-deep: #F3E9DC; /* slightly deeper paper, for card contrast */
    --color-sloe: #3E2B33;       /* deep plum-black, headings/dark text */
    --color-ink: #33302B;        /* body text */
    --color-sage: #7C8B70;       /* muted green, replaces the flat emerald banner */
    --color-sage-deep: #5F6E54;  /* darker sage for hover/emphasis */
    --color-blossom: #C98B82;    /* dusty rose accent — used sparingly */
    --color-blossom-deep: #B06F65;
    --color-line: rgba(62, 43, 51, 0.14); /* hairline/divider color */
 
    --font-display: 'Fraunces', 'Playfair Display', serif;
    --font-body: 'Karla', 'Lato', sans-serif;
}
 
/* ===== BASE ===== */
 
body {
    margin: 0;
    font-family: var(--font-body);
    background: radial-gradient(circle at top right, #f0fdf4, transparent), radial-gradient(circle at bottom left, #f8fafc, transparent);
    color: var(--color-ink);
}

.wp-block-separator {
	border: none;
	border-top: 1px solid gray;
	margin: 27px 0px 27px 0px;
}

p {
	padding: 12px 0px 12px 0px;
}

.content {
	max-width: 980px;
	margin: 0px auto;
	background: #fff;
	padding: 40px 18px 30px 18px;
	margin-top: 7px;
	color: var(--color-ink);
	font-size: 16px;
	line-height: 1.7;
    font-family: var(--font-body);
	border: 1px solid #e1e1e1;	
}
 
.category-archive {
    padding: 60px 20px;
}
 
.container {
    max-width: 1100px;
    margin: 0 auto;
}
 
.archive-header {
    text-align: center;
    margin-bottom: 40px;
}
 
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
 
.post-card {
    border: 1px solid var(--color-line);
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
    background: #fff;
}
 
.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(62,43,51,0.10);
}
 
.post-card h2 {
    font-size: 20px;
    margin: 15px 0;
    font-family: var(--font-display);
    color: var(--color-sloe);
}
 
.post-card a {
    text-decoration: none;
    color: inherit;
}
 
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-sloe);
}
 
h1 {
	font-size: 2.35rem;
	line-height: 2;
	font-weight: 600;
}


h2 {
	line-height: 2;
	font-weight: 600;
	padding: 15px 0px 8px 0px;
}

h3 {
	line-height: 2;
	font-weight: 600;
	padding: 15px 0px 8px 0px;
}
.page-lead-subtitle_DIV {
	text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.footer-contact p {
padding: 0px 0px 0px 0px;
}


.page-lead-subtitle {
    position: relative;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #475569; /* Elegant slate grey */
    font-style: italic;
    font-weight: 500;
    display: inline-block;
    padding: 0 2rem; /* Leaves room for the big quote marks */
}

/* Large Opening Quote */
.page-lead-subtitle::before {
    content: "“";
    position: absolute;
    left: -0.25rem;
    top: -0.75rem;
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: #0d9488; /* Accent color matching your quote green/teal */
    opacity: 0.35; /* Soft background tint */
    pointer-events: none;
}

.subtle-banner-wrapper {
    width: 100%;
    max-height: 280px; /* Keeps it compact */
    overflow: hidden;
    border-radius: 12px;
    margin: 1.5rem 0 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.subtle-banner-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Large Closing Quote */
.page-lead-subtitle::after {
    content: "”";
    position: absolute;
    right: -0.25rem;
    bottom: -1.75rem;
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: #0d9488;
    opacity: 0.35;
    pointer-events: none;
}

/* ===== SIGNATURE ELEMENT: thorn-branch divider =====
   A hairline rule with small tick marks, standing in for plain
   dividers/section breaks — a quiet nod to "Blackthorn" without
   being a literal icon. Use by adding <div class="thorn-divider"></div>
   between sections. */
 
.thorn-divider {
    position: relative;
    height: 1px;
    background: var(--color-line);
    margin: 48px 0;
    overflow: visible;
}
 
.thorn-divider::before,
.thorn-divider::after {
    content: "";
    position: absolute;
    top: -3px;
    width: 7px;
    height: 7px;
    border-left: 1px solid var(--color-blossom-deep);
    border-bottom: 1px solid var(--color-blossom-deep);
    transform: rotate(45deg);
}
 
.thorn-divider::before { left: 38%; }
.thorn-divider::after { left: 60%; }
 
/* ===== HEADER ===== */
 
.hero-header {
    background: linear-gradient(91deg, #fff, #54cca5);
    color: var(--color-sloe);
	padding: 0px 0px 1px 0px;
}
 
.compact-header {
    background: linear-gradient(135deg, var(--color-paper-deep) 0%, #E4E9DD 100%);
    color: var(--color-sloe);
    border-bottom: 1px solid var(--color-line);
}
 
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 16px;
}
 
/* ===== BRAND ===== */
 
.brand {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;              
    gap: 12px;
    white-space: nowrap;
}
 
.brand-logo {
    flex-shrink: 0;
}
 
.brand-logo a {
    display: flex;
    align-items: center;
}
 
.brand-logo img {
    display: block;
    max-height: 120px;
    width: auto;
}
 
.brand-name {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-display);
    color: var(--color-sloe);
}
 
.brand-tagline {
    font-size: 0.95rem;
    color: var(--color-sage-deep);
    font-style: italic;
}
 
/* ===== PAGE HEADER BANNER =====
   Replaces the flat, saturated color block with a soft paper-to-sage
   gradient, left-aligned type, and a thorn-divider beneath the title
   instead of a hard color edge. */
 
.topHeaders {
    background: linear-gradient(135deg, var(--color-paper-deep) 0%, #E4E9DD 100%);
    padding: 56px 48px 48px 48px;
    margin: 0px 0px 0px 0px;
    border-bottom: 1px solid var(--color-line);
}
 
.topHeaders_heading {
    color: var(--color-sloe);
    font-size: 2.75rem;
    line-height: 1.1;
    font-family: var(--font-display);
    font-weight: 600;
    max-width: 700px;
}
 
/* ===== RATE / SERVICE CARDS =====
   Use in place of plain <ul><li> lists on pages like Sessions & Rates.
   Markup pattern (paste as a Custom HTML block in Gutenberg):
 
   <div class="option-grid">
     <div class="option-card">
       <h3>Online</h3>
       <p>Join a session from anywhere via Zoom or Google Meet.</p>
     </div>
     <div class="option-card">
       <h3>In-Person</h3>
       <p>We meet at your home, office, or a neutral location...</p>
     </div>
   </div>
*/
 
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 32px 0;
}
 
.option-card {
    background: var(--color-paper);
    border: 1px solid var(--color-line);
    border-radius: 12px;
    padding: 28px;
}
 
.option-card h3 {
    font-family: var(--font-display);
    color: var(--color-sloe);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3rem;
}
 
.option-card p {
    margin: 0;
    color: var(--color-ink);
    line-height: 1.6;
}
 
.rate-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
 
.rate-table th {
    text-align: left;
    font-family: var(--font-display);
    color: var(--color-sloe);
    padding: 14px 16px;
    border-bottom: 2px solid var(--color-sloe);
}
 
.rate-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-line);
}
 
.rate-table tr:last-child td {
    border-bottom: none;
}
 
/* ===== MOBILE ===== */
 
@media (max-width: 640px) {
 
    .brand-logo img {
        max-height: 60px;
    }
 
    .brand-name {
        font-size: 1.95rem;
    }
 
    .brand-tagline {
        font-size: 0.95rem;
    }
}
 
 
@media (max-width: 480px) {
 
    .brand-logo img {
        max-height: 60px;
    }
 
    .brand-name {
        font-size: 1.2rem;
    }
 
    .brand-tagline {
        font-size: 0.95rem;
        display: none;
    }
 
    .topHeaders {
        padding: 28px 20px 24px 20px;
    }
 
    .topHeaders_heading {
        color: var(--color-sloe);
        font-size: 1.6rem;
        line-height: 1.15;
    }
}
 
 
@media (max-width: 380px) {
 
    .brand-logo img {
        max-height: 60px;
    }
 
    .brand-name {
        font-size: 1.2rem;
    }
 
    .brand-tagline {
        font-size: 0.95rem;
        display: none;
    }
}
 
 
@media (max-width: 339px) {
 
    .brand-logo img {
        max-height: 60px;
    }
 
    .brand-name {
        font-size: 1.2rem;
    }
 
    .brand-tagline {
        font-size: 0.95rem;
        display: none;
    }
}
 
 
.wp-block-quote {
    position: relative;
    padding: 20px 30px;
    margin: 20px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-sloe);
    background: var(--color-paper);
    border-left: 6px solid var(--color-blossom);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(62,43,51,0.06);
    line-height: 1.6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-display);
}
 
.wp-block-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62,43,51,0.10);
}
 
.wp-block-quote::before {
    content: "“";
    font-size: 3rem;
    color: var(--color-blossom);
    position: absolute;
    left: 10px;
    top: -10px;
    font-family: serif;
}
 
.wp-block-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-sage-deep);
}



/* ==========================================================================
   Footer Sitemap & Cookie Consent Styles
   ========================================================================== */

/* Sitemap Footer Container */
.sitemap-footer-wrapper {
  margin-top: 3rem;
  padding: 2.5rem 1.5rem;
  background-color: #0f172a;
  color: #f8fafc;
  border-top: 1px solid #1e293b;
}

.sitemap-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-main-heading {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 2rem;
  border-bottom: 1px solid #334155;
  padding-bottom: 0.75rem;
}

/* Category Columns Layout */
.sitemap-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
}

.sitemap-column {
  flex: 1 1 220px;
  min-width: 0;
}

.sitemap-category-title {
  font-size: 1rem;
  font-weight: 600;
  color: #38bdf8;
  margin: 0 0 1rem 0;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #1e293b;
  text-transform: capitalize;
}

.sitemap-category-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap-category-title a:hover {
  color: #7dd3fc;
}

/* Post Links List */
.sitemap-post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-post-item {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.sitemap-post-link {
  color: #cbd5e1;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.sitemap-post-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Cookie Consent Bar */
#cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #0f172a;
  color: #f8fafc;
  padding: 0.9rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid #1e293b;
  font-size: 0.85rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
}

#cookie-consent-bar.visible {
  display: flex;
}

#cookie-consent-bar p {
  margin: 0;
  color: #cbd5e1;
  max-width: 700px;
}

#cookie-consent-bar a {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-consent-buttons button {
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

#cookie-accept-btn {
  background-color: #38bdf8;
  color: #0f172a;
}

#cookie-decline-btn {
  background-color: transparent;
  color: #cbd5e1;
  border: 1px solid #334155;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .sitemap-footer-wrapper {
    padding: 2rem 1rem;
  }
  
  .sitemap-grid {
    flex-direction: column;
    gap: 1.75rem;
  }

  .sitemap-column {
    width: 100%;
    flex: 0 1 auto;
  }

  #cookie-consent-bar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cookie-consent-buttons {
    width: 100%;
  }
  .cookie-consent-buttons button {
    flex: 1;
  }
}



	/*
Navigation styles — extracted from style.css
Covers: .main-nav (desktop + submenus), .mobile-toggle, and the
795px mobile nav breakpoint (including .nav-cta / .bookConsult hiding).
*/

/* ===== NAV ===== */

.main-nav {
    margin: 0px 0px 30px 37px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav ul {
    display: flex;                  
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
    position: relative; /* needed for submenus */
}

.main-nav a {
    text-decoration: none;
    color: var(--color-sloe);
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--color-sage-deep);
}

/* CTA button — book a consultation. Add this as the last nav item via
   a WordPress "Custom Link" menu item with class "nav-cta", or as a
   standalone element after wp_nav_menu() in header.php. */
.main-nav .nav-cta > a,
.main-nav a.nav-cta {
    background: var(--color-blossom);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.main-nav .nav-cta > a:hover,
.main-nav a.nav-cta:hover {
    background: var(--color-blossom-deep);
    color: #fff !important;
}

/* ===== DESKTOP SUBMENUS =====
   Switched from a display:none/block toggle to opacity+transform so
   opening/closing actually animates instead of popping instantly —
   this is most of what read as "sluggish": nothing was slow, it just
   had no transition to signal what was happening. */

.main-nav .sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(62,43,51,0.15);
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
}

/* Top-level items: opened via JS hover-intent (.hover-open) so a short
   close delay applies — plain :hover has no memory of "still trying to
   reach the dropdown" and closes instantly, which is what was causing
   the "closing too fast" issue. :hover/:focus-within kept as a fallback
   in case JS fails to load. */
.main-nav > ul > li.hover-open > .sub-menu,
.main-nav > ul > li:focus-within > .sub-menu,
.main-nav li.open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-nav .sub-menu li a {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
}

/* NESTED submenus (a sub-menu item that itself has children) fly out
   to the RIGHT instead of stacking below — this is what stops a
   second-level dropdown from overlapping/hiding its siblings in the
   first-level list. */
.main-nav .sub-menu .menu-item-has-children {
    position: relative;
}

.main-nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 4px; /* small gap so it doesn't touch the parent list */
}

.main-nav .sub-menu .menu-item-has-children:hover > .sub-menu,
.main-nav .sub-menu .menu-item-has-children.hover-open > .sub-menu,
.main-nav .sub-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* small visual cue that a sub-menu item has its own children */
.main-nav .sub-menu .menu-item-has-children > a::after {
    content: "▸";
    float: right;
    margin-left: 12px;
    font-size: 0.7em;
}

.main-nav .menu-item-has-children.open > a::after {
    transform: rotate(90deg);
}

/* ===== MOBILE TOGGLE ===== */

.mobile-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-sloe);

    position: absolute;
    top: 1px;
    right: 17px;
    font-size: 28px;
}

/* Prevent the page behind the open mobile menu from scrolling too */
body.nav-open {
    overflow: hidden;
}

/* ===== MOBILE NAV ===== */

@media (max-width: 795px) {
 .bookConsult {
	 display: none!important;
 }

.nav-cta {
	 display: none!important;

}
	
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-sloe);
        color: #fff;
        transition: right 0.3s ease;
        z-index: 2000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;

        /* the base rule's align-items:center was clipping the top of
           the menu once it grew taller than the screen — overflow-y:auto
           still "worked" but part of the content sat above the
           scrollable area and was unreachable. stretch fixes that. */
        align-items: stretch;
    }

    .main-nav.active {
        right: 0;
        background: #fff;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 0px 20px 20px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        color: var(--color-sloe);
        padding: 12px 0;
        display: block;
    }

    .sub-menu {
        background: #fff;
    }

    /* Accordion: expand in place, indented, instead of the desktop
       flyout. max-height + overflow:hidden is the standard trick for
       animating something that doesn't have a fixed height. */
    .main-nav .sub-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        margin-left: 8px;
        border-left: 2px solid rgba(255,255,255,0.18);

        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease, padding .3s ease;
    }

    .main-nav li.open > .sub-menu {
        max-height: 1000px;
        padding-left: 16px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    /* each nesting level indents a bit further */
    .main-nav .sub-menu .sub-menu {
        top: auto;
        left: auto;
        margin-left: 8px;
    }

    .main-nav .sub-menu li a {
        white-space: normal;
        padding: 10px 0;
    }

    /* expand/collapse arrow for top-level items with children */
    .main-nav > ul > li.menu-item-has-children > a {
        position: relative;
        padding-right: 28px;
    }

    .main-nav > ul > li.menu-item-has-children > a::after {
        content: "▸";
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform .25s ease;
        font-size: 0.75em;
        float: none;
        margin-left: 0;
    }

    .main-nav > ul > li.menu-item-has-children.open > a::after {
        transform: translateY(-50%) rotate(90deg);
    }

    .mobile-toggle {
        display: block;
        flex-shrink: 0;
    }

    .main-nav .nav-cta > a,
    .main-nav a.nav-cta {
        display: inline-block;
        margin-top: 12px;
    }

}


     /* ===== Base ===== */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f8fafc; /* bg-slate-50 */
            color: #1e293b;            /* text-slate-800 */
        }
        a { text-decoration: none; }

        /* ===== Custom (unchanged from before) ===== */
        .hero-gradient {
            background: radial-gradient(circle at top right, #f0fdf4, transparent),
                        radial-gradient(circle at bottom left, #f8fafc, transparent);
        }
        .service-card:hover { transform: translateY(-5px); transition: all 0.3s ease; }

        /* ===== Layout / spacing ===== */
        .max-w-5xl { max-width: 64rem; }
        .max-w-2xl { max-width: 42rem; }
        .max-w-7xl { max-width: 80rem; }
        .max-w-4xl { max-width: 56rem; }
        .max-w-6xl { max-width: 72rem; }
        .max-w-3xl { max-width: 48rem; }
        .mx-auto { margin-left: auto; margin-right: auto; }

        .pt-24 { padding-top: 6rem; }
        .pb-16 { padding-bottom: 4rem; }
        .px-6  { padding-left: 1.5rem; padding-right: 1.5rem; }
        .px-4  { padding-left: 1rem; padding-right: 1rem; }
        .py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
        .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
        .p-8   { padding: 2rem; }
        .px-8  { padding-left: 2rem; padding-right: 2rem; }
        .py-4  { padding-top: 1rem; padding-bottom: 1rem; }
        .px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

        .mb-6  { margin-bottom: 1.5rem; }
        .mb-8  { margin-bottom: 2rem; }
        .mb-10 { margin-bottom: 2.5rem; }
        .mb-14 { margin-bottom: 3.5rem; }
        .mb-16 { margin-bottom: 4rem; }
        .mb-4  { margin-bottom: 1rem; }
        .mb-3  { margin-bottom: 0.75rem; }
        .mb-2  { margin-bottom: 0.5rem; }
        .mt-4  { margin-top: 1rem; }
        .mt-6  { margin-top: 1.5rem; }
        .mt-14 { margin-top: 3.5rem; }

        .gap-4  { gap: 1rem; }
        .gap-8  { gap: 2rem; }
        .gap-10 { gap: 2.5rem; }
        .gap-1  { gap: 0.25rem; }

        .inline-block { display: inline-block; }
        .inline-flex  { display: inline-flex; }
        .flex   { display: flex; }
        .grid   { display: grid; }
        .flex-col     { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .shrink-0 { flex-shrink: 0; }
        .text-center { text-align: center; }

        .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

        .w-5  { width: 1.25rem; }
        .h-5  { height: 1.25rem; }
        .w-4  { width: 1rem; }
        .h-4  { height: 1rem; }
        .w-12 { width: 3rem; }
        .h-12 { height: 3rem; }
        .w-20 { width: 5rem; }
        .h-20 { height: 5rem; }
        .h-1  { height: 0.25rem; }

        /* ===== Typography ===== */
        .text-xs   { font-size: 0.75rem; }
        .text-sm   { font-size: 0.875rem; }
        .text-base { font-size: 1rem; }
        .text-lg   { font-size: 1.125rem; }
        .text-xl   { font-size: 1.25rem; }
        .text-2xl  { font-size: 1.5rem; }
        .text-3xl  { font-size: 1.875rem; }
        .text-4xl  { font-size: 2.25rem; }
        .text-5xl  { font-size: 3rem; }
        .text-7xl  { font-size: 4.5rem; }

        .font-semibold { font-weight: 600; }
        .font-bold     { font-weight: 700; }
        .italic        { font-style: italic; }
        .uppercase     { text-transform: uppercase; }
        .tracking-widest { letter-spacing: 0.1em; }
        .tracking-tight  { letter-spacing: -0.025em; }
        .leading-relaxed { line-height: 1.625; }

        /* ===== Colors ===== */
        .bg-white       { background-color: #ffffff; }
        .bg-slate-50    { background-color: #f8fafc; }
        .bg-emerald-50  { background-color: #ecfdf5; }
        .bg-emerald-100 { background-color: #d1fae5; }
        .bg-emerald-500 { background-color: #10b981; }
        .bg-emerald-600 { background-color: #059669; }
        .bg-blue-50     { background-color: #eff6ff; }
        .bg-amber-50    { background-color: #fffbeb; }
        .bg-purple-50   { background-color: #faf5ff; }

        .text-white       { color: #ffffff; }
        .text-slate-400   { color: #94a3b8; }
        .text-slate-500   { color: #64748b; }
        .text-slate-600   { color: #475569; }
        .text-slate-800   { color: #1e293b; }
        .text-slate-900   { color: #0f172a; }
        .text-emerald-600 { color: #059669; }
        .text-emerald-700 { color: #047857; }
        .text-blue-600    { color: #2563eb; }
        .text-amber-600   { color: #d97706; }
        .text-purple-600  { color: #9333ea; }

        .hover\:bg-emerald-700:hover { background-color: #047857; }
        .hover\:text-emerald-700:hover { color: #047857; }

        /* ===== Borders / radius / shadow ===== */
        .border    { border: 1px solid #f1f5f9; }
        .border-b  { border-bottom: 1px solid #f1f5f9; }
        .border-y  { border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
        .border-slate-100 { border-color: #f1f5f9; }

        .rounded-xl   { border-radius: 0.75rem; }
        .rounded-2xl  { border-radius: 1rem; }
        .rounded-3xl  { border-radius: 1.5rem; }
        .rounded-full { border-radius: 9999px; }

        .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
        .shadow-lg.shadow-emerald-200\/50 {
            box-shadow: 0 10px 15px -3px rgba(167,243,208,0.5), 0 4px 6px -4px rgba(167,243,208,0.5);
        }

        .transition-all    { transition: all 0.15s ease-in-out; }
        .transition-colors { transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out; }

        /* ===== Responsive: sm (640px) ===== */
        @media (min-width: 640px) {
            .sm\:flex-row { flex-direction: row; }
        }

        /* ===== Responsive: md (768px) ===== */
        @media (min-width: 768px) {
            .md\:text-7xl   { font-size: 4.5rem; }
            .md\:text-xl    { font-size: 1.25rem; }
            .md\:text-lg    { font-size: 1.125rem; }
            .md\:flex-row   { flex-direction: row; }
            .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .md\:p-12       { padding: 3rem; }
        }

        /* ===== Responsive: lg (1024px) ===== */
        @media (min-width: 1024px) {
            .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }


.testi-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 1rem 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.testi-card {
  background: #ffffff;
  border: 1px solid #e5e2d9;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  min-height: 260px;
}

.testi-mark {
  font-size: 32px;
  line-height: 1;
  color: #c9c5b8;
  font-family: Georgia, serif;
}

.testi-slide {
  display: none;
}

.testi-slide.active {
  display: block;
}

.testi-quote {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	line-height: 1.7;
	color: #2c2c2a;
	margin: 12px 0 20px;
	font-style: italic;
}

.testi-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef2fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  color: #2f5fa0;
}

.testi-name {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  color: #2c2c2a;
}

.testi-location {
  font-size: 13px;
  color: #7a7970;
  margin: 0;
}

.testi-stars {
  color: #d9a441;
  font-size: 14px;
  letter-spacing: 2px;
	display: none;
}

.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd9cc;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #5f5e5a;
  padding: 0;
}

.testi-nav:hover {
  background: #f5f4ee;
}

.testi-prev { left: 8px; }
.testi-next { right: 8px; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd9cc;
  cursor: pointer;
}

.testi-dot.active {
  background: #b5533c;
}



