/* =========================================================================
   TranquilCore — Main Stylesheet
   Luxury Wellness • Yoga • Holistic Living
   ========================================================================= */

:root {
    --cream: #faf6ef;
    --beige: #f2ecdf;
    --sand: #e9e0d2;
    --white: #ffffff;
    --sage: #8a9b7a;
    --sage-soft: #aab99b;
    --sage-dark: #5c7149;
    --sage-deep: #37452c;
    --ink: #2d2a24;
    --muted: #7a7266;
    --warm-gray: #6e675e;
    --gold: #c6a15b;
    --line: #e6dfd3;
    --glass: rgba(255, 255, 255, 0.62);
    --glass-border: rgba(255, 255, 255, 0.75);

    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Jost", "Segoe UI", sans-serif;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --shadow-sm: 0 2px 10px rgba(45, 42, 36, 0.05);
    --shadow-md: 0 10px 32px rgba(45, 42, 36, 0.09);
    --shadow-lg: 0 24px 60px rgba(45, 42, 36, 0.13);

    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --nav-h: 78px;
}

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--ink);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: 0.01em;
}

p {
    color: var(--warm-gray);
}

a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--sage);
}

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

ul {
    padding-left: 1.1rem;
}

::selection {
    background: var(--sage);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--sage-dark);
    outline-offset: 3px;
    border-radius: 4px;
}

/* -------------------------------------------------------------------------
   Utilities
   ------------------------------------------------------------------------- */
.section {
    padding: 6.5rem 0;
}

.section-tight {
    padding: 4rem 0;
}

.section-alt {
    background: var(--beige);
}

.section-cream {
    background: var(--cream);
}

.section-white {
    background: var(--white);
}

.bg-deep {
    background: var(--sage-deep);
    color: var(--cream);
}

.bg-deep h2,
.bg-deep h3,
.bg-deep p {
    color: var(--cream);
}

.text-serif {
    font-family: var(--font-display);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 1.1rem;
}

.eyebrow::before {
    content: "";
    width: 2.2rem;
    height: 1px;
    background: var(--gold);
}

.eyebrow--center {
    justify-content: center;
}

.eyebrow--light {
    color: var(--sage-soft);
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 600;
    letter-spacing: 0.005em;
}

.section-lead {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 46rem;
}

.section-head {
    margin-bottom: 3.5rem;
}

.section-head--center {
    text-align: center;
}

.section-head--center .section-lead {
    margin-inline: auto;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.78rem 1.8rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-sage {
    background: var(--sage-dark);
    color: #fff;
    border: 1px solid var(--sage-dark);
}

.btn-sage:hover {
    background: var(--sage-deep);
    color: #fff;
    box-shadow: 0 12px 28px rgba(92, 113, 73, 0.35);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: #b58e4c;
    color: #fff;
    box-shadow: 0 12px 28px rgba(198, 161, 91, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-outline:hover {
    border-color: var(--sage-dark);
    color: var(--sage-dark);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--sage-deep);
    border: 1px solid #fff;
}

.btn-light:hover {
    background: var(--cream);
    color: var(--sage-deep);
}

.btn-lg {
    padding: 0.95rem 2.2rem;
    font-size: 1.02rem;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.btn-arrow svg {
    width: 1.05em;
    height: 1.05em;
    transition: transform var(--transition);
}

.btn-arrow:hover svg {
    transform: translateX(4px);
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--sage-dark);
}

.link-more svg {
    width: 1em;
    height: 1em;
    transition: transform var(--transition);
}

.link-more:hover svg {
    transform: translateX(4px);
}

/* -------------------------------------------------------------------------
   Skip link & accessibility
   ------------------------------------------------------------------------- */
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 2000;
    background: var(--sage-deep);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 0 0 12px 0;
    font-weight: 500;
}

.skip-link:focus {
    left: 0;
    color: #fff;
}

/* -------------------------------------------------------------------------
   Header / Navigation
   ------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
    background: var(--glass);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.navbar {
    min-height: var(--nav-h);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.navbar-brand:hover {
    color: var(--ink);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--sage-soft), var(--sage));
    color: #fff;
}

.brand-mark svg {
    width: 1.5rem;
    height: 1.5rem;
}

.brand-text em {
    font-style: normal;
    color: var(--sage-dark);
}

.navbar .nav-link {
    font-size: 0.98rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--ink);
    padding: 0.55rem 1rem !important;
    border-radius: 999px;
}

.navbar .nav-link:hover {
    color: var(--sage-dark);
}

.navbar .nav-item.active > .nav-link {
    color: var(--sage-dark);
    font-weight: 500;
}

.navbar .nav-item.dropdown.active > .nav-link {
    color: var(--sage-dark);
    font-weight: 500;
}

.btn-nav {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
}

.navbar-toggler {
    border: none;
    color: var(--ink);
    padding: 0.35rem;
}

.navbar-toggler svg {
    width: 1.8rem;
    height: 1.8rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.6rem;
    min-width: 14rem;
}

.dropdown-item {
    border-radius: 8px;
    font-weight: 400;
    color: var(--ink);
    padding: 0.55rem 0.9rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--beige);
    color: var(--sage-dark);
}

.dropdown-item.active {
    background: var(--sage);
    color: #fff;
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 3rem) 0 5rem;
    color: #fff;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 24s ease-in-out infinite alternate;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(100deg, rgba(31, 37, 24, 0.82) 0%, rgba(31, 37, 24, 0.55) 45%, rgba(31, 37, 24, 0.18) 100%);
}

.hero-content {
    max-width: 44rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: var(--glass);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.9rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.06;
    letter-spacing: 0.005em;
}

.hero-title em {
    font-style: italic;
    color: var(--sage-soft);
}

.hero-sub {
    font-size: 1.22rem;
    color: rgba(255, 255, 255, 0.86);
    max-width: 36rem;
    margin: 1.6rem 0 2.4rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3.2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-meta span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-meta strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

/* Small hero for interior pages */
.hero-inner {
    position: relative;
    padding: calc(var(--nav-h) + 4.5rem) 0 4.5rem;
    color: #fff;
    overflow: hidden;
    text-align: center;
    background-position: center;
    background-size: cover;
}

.hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(31, 37, 24, 0.74), rgba(31, 37, 24, 0.74));
    z-index: 0;
}

.hero-inner .container {
    position: relative;
    z-index: 1;
}

.hero-inner h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
}

.hero-inner p {
    color: rgba(255, 255, 255, 0.86);
    max-width: 42rem;
    margin: 0 auto 1.6rem;
    font-size: 1.12rem;
}

.hero-inner .breadcrumb-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
}

.hero-inner .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.6);
    justify-content: center;
}

.hero-inner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
}

.hero-inner .breadcrumb-item a:hover {
    color: #fff;
}

.hero-inner .breadcrumb-item.active {
    color: var(--sage-soft);
}

/* -------------------------------------------------------------------------
   Breadcrumbs (interior pages)
   ------------------------------------------------------------------------- */
.breadcrumb-wrap {
    margin-bottom: 2rem;
}

.breadcrumb {
    --bs-breadcrumb-divider: "/";
    --bs-breadcrumb-divider-color: var(--line);
    font-size: 0.92rem;
}

.breadcrumb-item a {
    color: var(--muted);
}

.breadcrumb-item a:hover {
    color: var(--sage-dark);
}

.breadcrumb-item.active {
    color: var(--ink);
    font-weight: 400;
}

/* -------------------------------------------------------------------------
   Blog category filters
   ------------------------------------------------------------------------- */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.blog-filter {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--muted);
    font-size: 0.92rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.blog-filter:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
}

.blog-filter.is-active {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: #fff;
}

/* -------------------------------------------------------------------------
   Feature / value cards
   ------------------------------------------------------------------------- */
.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.4rem 2.1rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--sand);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: var(--beige);
    color: var(--sage-dark);
    margin-bottom: 1.4rem;
}

.feature-icon svg {
    width: 1.6rem;
    height: 1.6rem;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
}

.feature-card p {
    font-size: 0.98rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* -------------------------------------------------------------------------
   Service / program cards
   ------------------------------------------------------------------------- */
.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 14px;
    background: linear-gradient(140deg, var(--beige), var(--sand));
    color: var(--sage-dark);
    margin-bottom: 1.3rem;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.service-card h3 {
    font-size: 1.28rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.96rem;
    color: var(--muted);
    flex: 1;
}

.service-card .link-more {
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* -------------------------------------------------------------------------
   Media cards (classes, retreats, programs, blog)
   ------------------------------------------------------------------------- */
.media-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.media-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.media-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-card:hover .media-card-img img {
    transform: scale(1.06);
}

.media-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--sage-deep);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
}

.media-card-body {
    padding: 1.7rem 1.7rem 1.9rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.media-card-body h3 {
    font-size: 1.32rem;
    line-height: 1.25;
    margin-bottom: 0.7rem;
}

.media-card-body h3 a {
    color: var(--ink);
}

.media-card-body h3 a:hover {
    color: var(--sage-dark);
}

.media-card-body p {
    font-size: 0.96rem;
    color: var(--muted);
    flex: 1;
}

.media-meta {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 0.9rem;
    font-size: 0.84rem;
    color: var(--muted);
}

.media-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* -------------------------------------------------------------------------
   Split / feature media sections
   ------------------------------------------------------------------------- */
.split-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-img--wide {
    aspect-ratio: 16 / 10;
}

.split-floating {
    position: absolute;
    right: -1.2rem;
    bottom: 1.8rem;
    background: var(--glass);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
    box-shadow: var(--shadow-md);
    max-width: 15rem;
}

.split-floating strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--sage-deep);
    margin-bottom: 0.15rem;
}

.split-floating span {
    font-size: 0.85rem;
    color: var(--muted);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 1.8rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.85rem;
    color: var(--warm-gray);
}

.check-list li svg {
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
    color: var(--sage-dark);
    margin-top: 0.25rem;
}

/* -------------------------------------------------------------------------
   Meditation / banner CTA
   ------------------------------------------------------------------------- */
.banner-cta {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 5rem 3rem;
    color: #fff;
    text-align: center;
}

.banner-cta .bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
}

.banner-cta .scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(160deg, rgba(38, 46, 30, 0.86), rgba(55, 69, 44, 0.72));
}

.banner-cta h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    max-width: 40rem;
    margin: 0 auto 1rem;
}

.banner-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 34rem;
    margin: 0 auto 2rem;
}

/* -------------------------------------------------------------------------
   Testimonials slider
   ------------------------------------------------------------------------- */
.testimonial-slider {
    position: relative;
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.t-slide {
    display: none;
    animation: fadeIn 0.8s ease both;
}

.t-slide.is-active {
    display: block;
}

.t-quote {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    font-weight: 500;
    line-height: 1.45;
    color: var(--ink);
    margin-bottom: 1.8rem;
    font-style: italic;
}

.t-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.t-person .avatar {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sage-soft);
    margin-bottom: 0.7rem;
}

.t-person strong {
    font-weight: 500;
    color: var(--ink);
}

.t-person span {
    font-size: 0.9rem;
    color: var(--muted);
}

.t-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 2.2rem;
}

.t-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: var(--sand);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), width var(--transition);
}

.t-dot.is-active {
    background: var(--sage-dark);
    width: 26px;
}

.t-quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.6;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

/* -------------------------------------------------------------------------
   Stats strip
   ------------------------------------------------------------------------- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.stat-item span {
    font-size: 0.95rem;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
   FAQ accordion
   ------------------------------------------------------------------------- */
.faq-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--white);
    padding: 1.3rem 1.5rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--sage-dark);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c7149' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    transition: transform var(--transition);
}

.faq-accordion .accordion-body {
    color: var(--muted);
    padding: 0.2rem 1.5rem 1.4rem;
}

.faq-accordion .accordion-item:focus-within {
    outline: 2px solid var(--sage-soft);
    outline-offset: 2px;
}

/* -------------------------------------------------------------------------
   Newsletter / forms
   ------------------------------------------------------------------------- */
.newsletter-row {
    display: flex;
    gap: 0.6rem;
}

.newsletter-row .form-control {
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 0.8rem 1.3rem;
    background: var(--white);
    font-size: 0.98rem;
    flex: 1;
}

.newsletter-row .btn {
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
}

.newsletter-row .btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.form-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.7rem;
}

.form-note a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--white);
    padding: 0.85rem 1.15rem;
    font-size: 1rem;
    color: var(--ink);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 0.2rem rgba(138, 155, 122, 0.18);
}

.contact-form label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.contact-form textarea.form-control {
    min-height: 11rem;
    resize: vertical;
}

.contact-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2.6rem 2.4rem;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 575.98px) {
    .contact-panel {
        padding: 1.8rem 1.4rem;
    }
}

.alert {
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
}

.alert-success {
    background: rgba(138, 155, 122, 0.14);
    border: 1px solid var(--sage);
    color: var(--sage-deep);
}

.alert-danger {
    background: rgba(185, 98, 90, 0.08);
    border: 1px solid rgba(185, 98, 90, 0.4);
    color: #8c3b35;
}

.form-error {
    font-size: 0.86rem;
    color: #a3453e;
    margin-top: 0.35rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* -------------------------------------------------------------------------
   Cookie consent popup
   ------------------------------------------------------------------------- */
.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(45, 42, 36, 0.42);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.45s ease both;
}

.cookie-overlay[hidden] {
    display: none;
}

.cookie-card {
    position: relative;
    width: 100%;
    max-width: 30rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.4rem 2.1rem 2rem;
    text-align: center;
    animation: fadeUp 0.5s ease both;
}

.cookie-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 2.1rem;
    height: 2.1rem;
    border: none;
    background: transparent;
    color: var(--muted);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cookie-close:hover {
    background: var(--beige);
    color: var(--ink);
}

.cookie-close svg {
    width: 1.1rem;
    height: 1.1rem;
}

.cookie-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--sage-soft), var(--sage));
    color: #fff;
    margin-bottom: 1.1rem;
}

.cookie-icon svg {
    width: 1.9rem;
    height: 1.9rem;
}

.cookie-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.cookie-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.6rem;
}

.cookie-card p a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cookie-actions .btn {
    width: 100%;
}

.cookie-actions .btn-link {
    text-decoration: underline;
    color: var(--sage-dark);
}

/* -------------------------------------------------------------------------
   Blog article
   ------------------------------------------------------------------------- */
.article-header {
    margin-bottom: 2.5rem;
}

.article-category {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

.article-title {
    font-size: clamp(2rem, 4.4vw, 3.1rem);
    line-height: 1.12;
    margin-bottom: 1.1rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.article-hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2.8rem;
    box-shadow: var(--shadow-md);
}

.article-hero-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-body {
    max-width: 46rem;
}

.article-body p {
    margin-bottom: 1.4rem;
    font-size: 1.08rem;
    color: var(--warm-gray);
}

.article-body h2 {
    font-size: 1.7rem;
    margin: 2.6rem 0 1rem;
}

.article-body h3 {
    font-size: 1.35rem;
    margin: 2.2rem 0 0.9rem;
}

.article-body ul {
    margin: 1.2rem 0 1.6rem;
}

.article-body li {
    margin-bottom: 0.6rem;
    color: var(--warm-gray);
}

.article-body blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.4;
    color: var(--sage-deep);
    border-left: 3px solid var(--gold);
    padding: 0.4rem 0 0.4rem 1.4rem;
    margin: 2.2rem 0;
}

.article-body strong {
    font-weight: 500;
    color: var(--ink);
}

/* -------------------------------------------------------------------------
   Legal / prose pages
   ------------------------------------------------------------------------- */
.prose {
    max-width: 52rem;
}

.prose h2 {
    font-size: 1.7rem;
    margin: 2.4rem 0 0.9rem;
}

.prose h3 {
    font-size: 1.3rem;
    margin: 1.9rem 0 0.7rem;
}

.prose p,
.prose li {
    color: var(--warm-gray);
}

.prose p {
    margin-bottom: 1.1rem;
}

.prose ul,
.prose ol {
    margin-bottom: 1.4rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* -------------------------------------------------------------------------
   Contact info card
   ------------------------------------------------------------------------- */
.info-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.9rem 1.7rem;
    height: 100%;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-card .feature-icon {
    margin-inline: auto;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
    background: var(--sage-deep);
    color: rgba(250, 246, 239, 0.82);
    padding-top: 4.5rem;
}

.footer-top {
    padding-bottom: 3rem;
}

.footer-brand .brand-text {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand .brand-text em {
    color: var(--sage-soft);
}

.footer-tagline {
    color: rgba(250, 246, 239, 0.68);
    font-size: 0.98rem;
    max-width: 22rem;
    margin-top: 1.1rem;
}

.social-list {
    display: flex;
    gap: 0.7rem;
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
}

.social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(250, 246, 239, 0.22);
    color: rgba(250, 246, 239, 0.85);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-list a:hover {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
}

.social-list svg {
    width: 1.1rem;
    height: 1.1rem;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(250, 246, 239, 0.72);
    font-size: 0.97rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-note {
    color: rgba(250, 246, 239, 0.66);
    font-size: 0.94rem;
    margin-bottom: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 246, 239, 0.14);
    padding: 1.6rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
}

.footer-bottom-links a {
    color: rgba(250, 246, 239, 0.66);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-copy {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(250, 246, 239, 0.6);
}

.footer-copy a {
    color: rgba(250, 246, 239, 0.75);
}

.footer-copy a:hover {
    color: #fff;
}

/* -------------------------------------------------------------------------
   Back to top
   ------------------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 900;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--sage-dark);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* -------------------------------------------------------------------------
   404
   ------------------------------------------------------------------------- */
.error-wrap {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: var(--nav-h);
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 11rem);
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(140deg, var(--sage), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--sage);
}

/* -------------------------------------------------------------------------
   Cards on dark backgrounds
   ------------------------------------------------------------------------- */
.card-dark {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: background var(--transition), border-color var(--transition);
}

.card-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
}

.card-dark .feature-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--sage-soft);
}

.card-dark h3 {
    color: #fff;
}

.card-dark p {
    color: rgba(250, 246, 239, 0.7);
}

/* =========================================================================
   Print-friendly
   ========================================================================= */
@media print {
    .site-header,
    .site-footer,
    .back-to-top,
    .cookie-overlay {
        display: none !important;
    }
    body {
        background: #fff;
    }
}
