:root {
    --primary: #8fcf69;
    --primary-deep: #5f9f43;
    --primary-soft: #eef8e8;
    --primary-pale: #f7fbf3;
    --forest: #173f2a;
    --forest-2: #0e2d1d;
    --ink: #1c2b23;
    --muted: #647269;
    --cream: #fffdf6;
    --white: #ffffff;
    --gold: #d6aa4f;
    --border: rgba(23, 63, 42, .12);
    --shadow-sm: 0 8px 24px rgba(19, 61, 39, .08);
    --shadow: 0 20px 55px rgba(19, 61, 39, .13);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 34px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    width: 100%;
    min-width: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

main {
    min-height: 55vh;
}

a {
    color: var(--primary-deep);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

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

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--forest);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.18;
}

p {
    color: var(--muted);
}

p[align="justify"] {
    text-align: left;
}

::selection {
    color: var(--white);
    background: var(--primary-deep);
}

.skip-link {
    position: fixed;
    left: 18px;
    top: -60px;
    z-index: 100000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--forest);
    border-radius: 0 0 10px 10px;
}

.skip-link:focus {
    top: 0;
    color: var(--white);
}

:focus-visible {
    outline: 3px solid rgba(143, 207, 105, .7);
    outline-offset: 3px;
}

.text-primary {
    color: var(--primary-deep) !important;
}

.bg-primary,
.btn-primary {
    background-color: var(--forest) !important;
    border-color: var(--forest) !important;
}

.bg-light {
    background-color: var(--primary-soft) !important;
}

.bg-dark {
    background-color: var(--forest-2) !important;
}

.border-primary,
.border-start {
    border-color: var(--primary) !important;
}

.container-xxl {
    max-width: 1440px;
}

.container-xxl.py-5,
.container-fluid.py-5 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
}

.display-3,
.display-5 {
    letter-spacing: -.04em;
}

.display-5 {
    font-size: clamp(2.2rem, 4vw, 3.55rem);
}

.fs-5.fw-bold.text-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .8rem;
    font-size: .78rem !important;
    font-weight: 800 !important;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.fs-5.fw-bold.text-primary::before {
    width: 28px;
    height: 2px;
    content: "";
    background: var(--primary-deep);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: .75rem;
    color: var(--primary-deep);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #dff2cf;
}

/* Loader */
#spinner {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    background: var(--cream);
    transition: opacity .35s ease, visibility .35s ease;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
}

.spinner-leaf {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    color: var(--forest);
    background: var(--primary-soft);
    border: 1px solid var(--border);
    border-radius: 50%;
    animation: leafPulse 1s ease-in-out infinite alternate;
}

@keyframes leafPulse {
    to { transform: scale(1.12) rotate(-8deg); box-shadow: 0 0 0 14px rgba(143, 207, 105, .12); }
}

/* Header */
.top-strip {
    padding: 8px 0;
    color: rgba(255, 255, 255, .76);
    background: var(--forest-2);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.top-strip a,
.top-strip span {
    color: rgba(255, 255, 255, .78);
}

.top-strip a:hover {
    color: var(--primary);
}

.top-contact {
    display: flex;
    gap: 28px;
}

.top-contact i {
    margin-right: 7px;
    color: var(--primary);
}

.navbar {
    z-index: 1025;
    min-height: 86px;
    padding: 0;
    background: rgba(255, 253, 246, .94);
    border-bottom: 1px solid rgba(23, 63, 42, .08);
    backdrop-filter: blur(16px);
    transition: min-height var(--transition), box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
    min-height: 76px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 10px 35px rgba(12, 48, 29, .08);
}

.navbar .container {
    min-height: inherit;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    height: auto;
    margin: 0;
    padding: 8px 0;
    gap: 11px;
}

.brand-mark {
    display: grid;
    width: 54px;
    height: 54px;
    overflow: hidden;
    place-items: center;
    background: var(--white);
    border: 1px solid rgba(23, 63, 42, .1);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.brand-mark img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    color: var(--forest);
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    letter-spacing: -.03em;
}

.brand-copy small {
    margin-top: 6px;
    color: var(--primary-deep);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.navbar .navbar-nav {
    gap: 4px;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    margin: 0;
    padding: 31px 12px;
    color: #405048;
    font-size: .88rem;
    font-weight: 700;
}

.navbar .navbar-nav .nav-link::after {
    position: absolute;
    right: 12px;
    bottom: 22px;
    left: 12px;
    height: 2px;
    content: "";
    background: var(--primary-deep);
    border-radius: 10px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--forest);
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--border) !important;
    border-radius: 14px;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--forest);
    border-radius: 3px;
    transition: transform var(--transition), opacity var(--transition);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    gap: 9px;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .01em;
    border-radius: 999px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

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

.btn-primary {
    color: var(--white) !important;
    box-shadow: 0 10px 24px rgba(23, 63, 42, .2);
}

.btn-primary:hover {
    background: var(--primary-deep) !important;
    border-color: var(--primary-deep) !important;
    box-shadow: 0 14px 30px rgba(95, 159, 67, .25);
}

.btn-light {
    color: var(--forest);
    background: var(--white);
    border-color: var(--white);
}

.member-btn {
    min-height: 46px;
    margin-left: 10px;
    padding: 10px 19px;
}

/* Home hero */
#header-carousel {
    position: relative;
    overflow: hidden;
    background: var(--forest);
}

#header-carousel .carousel-inner,
#header-carousel .carousel-item {
    height: clamp(580px, 74vh, 760px);
}

#header-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.02);
}

#header-carousel::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    content: "";
    background: linear-gradient(90deg, rgba(10, 43, 26, .88) 0%, rgba(10, 43, 26, .58) 47%, rgba(10, 43, 26, .12) 78%);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-content .container,
.hero-content a {
    pointer-events: auto;
}

.hero-copy {
    max-width: 690px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 8px 14px;
    gap: 8px;
    color: #e5f5dc;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-copy h1 {
    max-width: 650px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(3rem, 6.4vw, 5.7rem);
    line-height: .99;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 590px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .8);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
}

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

.hero-actions .btn-primary {
    color: var(--forest) !important;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.hero-actions .btn-primary:hover {
    color: var(--white) !important;
    background: var(--primary-deep) !important;
}

.hero-actions .btn-outline-light:hover {
    color: var(--forest);
    background: var(--white);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 18px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .76);
    font-size: .82rem;
    font-weight: 700;
}

.hero-trust i {
    color: var(--primary);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 4;
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, .13);
    background-size: 42%;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    backdrop-filter: blur(8px);
}

/* Inner hero */
.page-header {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
    background: linear-gradient(100deg, rgba(12, 45, 28, .94), rgba(12, 45, 28, .62)), url(../img/aurveda.jpg) center / cover no-repeat;
}

.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.page-header::before {
    right: -110px;
    top: -140px;
    width: 390px;
    height: 390px;
}

.page-header::after {
    right: 80px;
    bottom: -160px;
    width: 300px;
    height: 300px;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 5.1rem);
}

.breadcrumb {
    display: inline-flex;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, .8) !important;
    font-size: .78rem;
    font-weight: 700;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .45);
}

/* General cards and sections */
.container-xxl:nth-of-type(even) {
    position: relative;
}

.container-xxl .img-fluid.rounded {
    border-radius: var(--radius) !important;
}

.container-xxl .row.align-items-end > div:first-child > img,
.container-xxl .row.align-items-center > div:first-child > img {
    box-shadow: var(--shadow);
}

.border-start.ps-4 {
    padding: 22px !important;
    background: var(--primary-pale);
    border-width: 4px !important;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.border-start.ps-4 h4 {
    margin-bottom: 8px !important;
    font-size: 1.3rem;
}

.border-start.ps-4 span {
    color: var(--muted);
    font-size: .92rem;
}

.team-item {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    background: var(--forest);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
    isolation: isolate;
}

.team-item::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(to top, rgba(10, 43, 26, .93), transparent 70%);
}

.team-item > img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: transform .6s ease;
}

.team-item:hover > img {
    transform: scale(1.05);
}

.team-item .team-text {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: auto;
    padding: 28px;
    color: var(--white);
    background: transparent;
    border-radius: 0;
    opacity: 1;
}

.team-item .team-text h4,
.team-item .team-text p,
.team-item .team-text .text-primary {
    color: var(--white) !important;
}

.team-item .team-text p {
    margin: 0;
    color: rgba(255, 255, 255, .74) !important;
    font-size: .9rem;
}

.text-center.rounded.py-5.px-4 {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform var(--transition), box-shadow var(--transition);
}

.text-center.rounded.py-5.px-4:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow) !important;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-square { width: 40px; height: 40px; }
.btn-sm-square { width: 34px; height: 34px; }
.btn-lg-square { width: 50px; height: 50px; }

/* Service cards */
.service-item {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
    isolation: isolate;
}

.service-item .service-img {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.service-item .service-img::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(12, 45, 28, .96) 0%, rgba(12, 45, 28, .35) 72%);
}

.service-item .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .55s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.08);
}

.service-item .service-text {
    display: flex;
    width: 100%;
    min-height: 400px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px !important;
    color: var(--white);
    background: transparent;
    box-shadow: none;
}

.service-item .service-text h4,
.service-item .service-text p {
    color: var(--white);
}

.service-item .service-text p {
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, .72);
}

.service-item .service-text .btn-square {
    width: 62px;
    height: 62px;
    margin: 0 0 20px !important;
    color: var(--forest);
    background: var(--primary);
    border-radius: 50%;
    font-size: 1.35rem;
}

/* Product category band */
.facts,
.quote {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(90deg, rgba(14, 45, 29, .94), rgba(14, 45, 29, .76)), url(../img/aurveda.jpg) center / cover no-repeat;
}

.facts::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image: radial-gradient(circle at 15% 25%, rgba(143, 207, 105, .16), transparent 26%), radial-gradient(circle at 85% 75%, rgba(214, 170, 79, .14), transparent 24%);
}

.facts .container,
.quote .container {
    position: relative;
    z-index: 1;
}

.facts h1.text-white:not(.display-5) {
    position: relative;
    margin: 0;
    padding: 22px 12px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.24rem);
    font-weight: 700;
    letter-spacing: -.02em;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
}

/* Products and certificates */
.portfolio-inner {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 390px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-inner:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.portfolio-inner > img {
    display: block;
    width: 100%;
    height: 390px;
    padding: 20px;
    object-fit: contain;
    transition: transform .5s ease;
}

.portfolio-inner:hover > img {
    transform: scale(1.04);
}

.portfolio-inner::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(to top, rgba(10, 43, 26, .95), rgba(10, 43, 26, 0) 68%);
    opacity: .82;
    transition: opacity var(--transition);
}

.portfolio-inner::after {
    display: none;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 26px;
    opacity: 1;
}

.portfolio-inner .portfolio-text h4 {
    margin: 0 !important;
    padding-right: 12px;
    color: var(--white);
    font-size: 1.2rem;
}

.portfolio-inner .portfolio-text .btn {
    width: 44px;
    min-height: 44px;
    height: 44px;
    padding: 0;
    color: var(--forest);
    background: var(--primary);
    border: none;
}

.portfolio-inner .portfolio-text .btn:hover {
    color: var(--forest);
    background: var(--white);
}

body:has(.page-header h1:first-child) .portfolio-item.col-lg-3 .portfolio-inner {
    min-height: 345px;
}

.portfolio-item.col-lg-3 .portfolio-inner > img {
    height: 345px;
    padding: 10px;
    object-fit: cover;
    object-position: top;
}

.portfolio-item.col-lg-3 .portfolio-inner .portfolio-text {
    padding: 20px;
}

.portfolio-item.col-lg-3 .portfolio-inner .portfolio-text h4 {
    font-size: 1rem;
}

#portfolio-flters {
    display: inline-flex;
    flex-wrap: wrap;
    padding: 8px;
    gap: 6px;
    background: var(--primary-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
}

#portfolio-flters li {
    padding: 8px 15px;
    color: var(--muted);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: .82rem;
    font-weight: 700;
}

#portfolio-flters li.active,
#portfolio-flters li:hover {
    color: var(--white);
    background: var(--forest);
}

/* Forms */
.form-control,
.form-select {
    min-height: 56px;
    padding: 14px 17px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-deep);
    box-shadow: 0 0 0 4px rgba(143, 207, 105, .15) !important;
}

textarea.form-control {
    min-height: 145px;
}

.quote .form-control {
    background: rgba(255, 255, 255, .95);
}

.quote .bg-white,
.container .bg-light.rounded {
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
    position: relative;
    margin-top: 90px;
    color: rgba(255, 255, 255, .72);
    background: var(--forest-2);
}

.footer-cta {
    position: relative;
    top: -64px;
    margin-bottom: -22px;
}

.footer-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 42px 48px;
    gap: 28px;
    background: linear-gradient(120deg, var(--primary-deep), #79bc56);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 55px rgba(7, 35, 20, .28);
}

.footer-cta-card h2 {
    max-width: 670px;
    margin: 0;
    color: var(--white);
    font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.footer-main {
    padding-top: 50px;
    padding-bottom: 70px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    padding: 3px;
    object-fit: contain;
    background: var(--white);
    border-radius: 50%;
}

.footer-brand span {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
}

.footer-brand small {
    color: rgba(255, 255, 255, .56);
    font-size: .66rem;
    letter-spacing: .07em;
}

.footer-about {
    max-width: 390px;
    margin: 24px 0;
    color: rgba(255, 255, 255, .62);
    font-size: .9rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-badges span {
    padding: 7px 11px;
    color: #d9edce;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
}

.footer-badges i {
    margin-right: 5px;
    color: var(--primary);
}

.site-footer h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

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

.footer-links li + li,
.footer-contact li + li {
    margin-top: 11px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, .63);
    font-size: .86rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, .63);
    font-size: .86rem;
}

.footer-contact i {
    width: 17px;
    padding-top: 5px;
    color: var(--primary);
    text-align: center;
}

.footer-bottom {
    padding: 21px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: .72rem;
}

.wellness-note {
    max-width: 470px;
    text-align: right;
}

.back-to-top,
.whatsapp-float {
    position: fixed;
    z-index: 99;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: var(--white) !important;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(10, 43, 26, .22);
}

.back-to-top {
    right: 24px;
    bottom: 24px;
    visibility: hidden;
    opacity: 0;
    background: var(--forest);
    transform: translateY(12px);
}

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

.whatsapp-float {
    right: 24px;
    bottom: 86px;
    background: #25d366;
    font-size: 1.5rem;
}

.viewer-open {
    overflow: hidden;
}

.image-viewer {
    position: fixed;
    inset: 0;
    z-index: 100000;
    padding: 30px;
    background: rgba(4, 20, 12, .88);
    backdrop-filter: blur(10px);
}

.image-viewer:not([hidden]) {
    display: grid;
    place-items: center;
}

.image-viewer-dialog {
    display: flex;
    width: min(980px, 94vw);
    max-height: 88vh;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.image-viewer-dialog img {
    max-width: 100%;
    max-height: calc(88vh - 85px);
    object-fit: contain;
    border-radius: 14px;
}

.image-viewer-dialog p {
    margin: 10px 8px 0;
    color: var(--forest);
    font-weight: 800;
}

.image-viewer-close {
    position: fixed;
    right: 24px;
    top: 24px;
    display: grid;
    width: 48px;
    height: 48px;
    z-index: 2;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    font-size: 1.15rem;
}

.site-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100001;
    max-width: min(390px, calc(100vw - 32px));
    padding: 14px 18px;
    color: var(--white);
    background: var(--forest);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity var(--transition), transform var(--transition);
    pointer-events: none;
    font-size: .86rem;
    font-weight: 700;
}

.site-toast.show {
    opacity: 1;
    transform: none;
}

.site-toast.warning {
    background: #8a5a13;
}

.is-invalid {
    border-color: #b44b3f !important;
}

.back-to-top:hover,
.whatsapp-float:hover {
    color: var(--white);
    transform: translateY(-3px);
}

/* Reveal animation used by JavaScript */
.reveal-ready {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal-ready.revealed {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .navbar .navbar-nav .nav-link { padding-right: 8px; padding-left: 8px; }
    .member-btn { margin-left: 4px; padding-right: 15px; padding-left: 15px; }
}

@media (max-width: 991.98px) {
    .navbar { min-height: 76px; }
    .navbar .container { padding-right: 18px; padding-left: 18px; }
    .brand-mark { width: 48px; height: 48px; }
    .brand-mark img { width: 43px; height: 43px; }
    .brand-copy strong { font-size: 1.27rem; }
    .brand-copy small { font-size: .58rem; }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 1px);
        right: 14px;
        left: 14px;
        max-height: calc(100vh - 98px);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: rgba(255, 255, 255, .98);
        border: 1px solid var(--border);
        border-radius: 0 0 22px 22px;
        box-shadow: var(--shadow);
    }

    .navbar .navbar-nav {
        align-items: stretch !important;
        padding: 14px;
        gap: 2px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 11px 14px;
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-link::after { display: none; }
    .navbar .navbar-nav .nav-link.active { background: var(--primary-soft); }
    .member-btn { margin: 8px 0 0; }

    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: 650px;
    }

    #header-carousel::after {
        background: linear-gradient(90deg, rgba(10, 43, 26, .9), rgba(10, 43, 26, .46));
    }

    .hero-copy { max-width: 620px; }
    .carousel-control-prev,
    .carousel-control-next { display: none; }
    .container-xxl.py-5,
    .container-fluid.py-5 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
    .footer-cta-card { padding: 36px; }
}

@media (max-width: 767.98px) {
    body { font-size: 15px; }
    input,
    textarea,
    select,
    .form-control,
    .form-select { font-size: 16px !important; }
    .container-xxl.py-5,
    .container-fluid.py-5 { padding-top: 4.25rem !important; padding-bottom: 4.25rem !important; }

    #header-carousel .carousel-inner,
    #header-carousel .carousel-item { height: 640px; min-height: 0; }
    #header-carousel .carousel-item img { object-position: 62% center; }
    #header-carousel::after { background: linear-gradient(0deg, rgba(10, 43, 26, .94), rgba(10, 43, 26, .58)); }
    .hero-content { align-items: flex-end; padding-bottom: 62px; }
    .hero-copy h1 { font-size: clamp(2.75rem, 12vw, 4.2rem); }
    .hero-kicker { margin-bottom: 15px; font-size: .68rem; }
    .hero-copy p { margin-bottom: 24px; }
    .hero-trust { margin-top: 25px; gap: 12px; }

    .page-header { min-height: 315px; }
    .page-header .container { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .page-header h1 { margin-bottom: 18px !important; }

    .team-item,
    .team-item > img { min-height: 380px; height: 380px; }
    .service-item,
    .service-item .service-text { min-height: 360px; }
    .portfolio-inner,
    .portfolio-inner > img { min-height: 350px; height: 350px; }

    .footer-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        border-radius: var(--radius);
    }
    .footer-cta-card .btn { width: 100%; }
    .footer-main { padding-top: 30px; padding-bottom: 55px; }
    .wellness-note { text-align: center; }
}

@media (max-width: 575.98px) {
    .navbar .container { padding-right: 14px; padding-left: 14px; }
    .brand-copy small { letter-spacing: .12em; }
    .hero-content .container {
        padding-right: max(22px, env(safe-area-inset-right, 0px));
        padding-left: max(22px, env(safe-area-inset-left, 0px));
    }
    .hero-actions .btn { width: 100%; }
    .hero-trust span { width: calc(50% - 8px); font-size: .72rem; }
    .page-header::before { display: none; }
    .display-5 { font-size: 2.25rem; }
    .container-xxl.py-5,
    .container-fluid.py-5 { padding-top: 3.75rem !important; padding-bottom: 3.75rem !important; }
    .portfolio-inner .portfolio-text { padding: 20px; }
    .footer-cta { top: -48px; }
    .site-footer { margin-top: 72px; }
    .footer-main { padding-top: 12px; }
    .image-viewer { padding: 62px 12px 18px; }
    .image-viewer-close {
        right: max(14px, env(safe-area-inset-right, 0px));
        top: max(14px, env(safe-area-inset-top, 0px));
    }
    .back-to-top,
    .whatsapp-float { right: 16px; width: 46px; height: 46px; }
    .back-to-top { bottom: 16px; }
    .whatsapp-float { bottom: 72px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
