:root {
    --jade-green: #5F7F6E;
    --rice-white: #F6F3EE;
    --ink-charcoal: #2B2B2B;
    --stone-gray: #C9CEC9;
    --brass-accent: #B7A26B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--ink-charcoal);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

h1 { font-size: 3.25rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

span {
    font-size: 0.875rem;
}

.card-tag {
    font-size: 0.875rem;
}

.commitment-text p,
.who-card p,
.core-card-body p,
.membership-card p,
.find-us-item p {
    font-size: 1rem;
}

/* ─── Navigation ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink-charcoal);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.logo a:hover { color: var(--jade-green); }

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem;
    gap: 2rem;
    list-style: none;
    align-items: flex-start;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.nav-menu.active { right: 0; }

.nav-menu a {
    text-decoration: none;
    color: var(--ink-charcoal);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover { color: var(--jade-green); }

.nav-menu li { position: relative; }

.dropdown > a {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--ink-charcoal);
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    border-top-color: var(--jade-green);
}

.dropdown-menu {
    position: static;
    background: var(--rice-white);
    min-width: auto;
    box-shadow: none;
    border-radius: 0;
    padding: 0.5rem 0 0.5rem 1rem;
    opacity: 1; visibility: visible;
    transform: none;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown-menu li { list-style: none; }

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--ink-charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--rice-white);
    color: var(--jade-green);
    padding-left: 2rem;
}

.nav-cta {
    background: var(--jade-green);
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #4d6958;
    color: white !important;
    transform: translateY(-2px);
}

.nav-phone {
    color: var(--ink-charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-phone:hover { color: var(--jade-green); }

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-toggle span {
    width: 28px; height: 2px;
    background: var(--ink-charcoal);
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* ─── Hero ─── */
.services-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 1rem;
    padding-top: 80px;
    overflow: hidden;
    background: #1a1a1a;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
    color: var(--brass-accent);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.services-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.services-hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--jade-green);
    color: white;
    padding: 1.1rem 2.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #4d6958;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(95, 127, 110, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1.1rem 2.8rem;
    border: 2px solid white;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--ink-charcoal);
}

/* ─── Shared Layout Utilities ─── */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--jade-green);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--ink-charcoal);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.8;
}

.service-learn-btn,
.service-book-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-learn-btn {
    background: transparent;
    color: var(--jade-green);
    border: 2px solid var(--jade-green);
}

.service-learn-btn:hover {
    background: var(--jade-green);
    color: white;
}

.service-book-btn {
    background: var(--jade-green);
    color: white;
    border: 2px solid var(--jade-green);
}

.service-book-btn:hover {
    background: #4d6958;
    border-color: #4d6958;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(95, 127, 110, 0.3);
}

/* ─── Commitment Section ─── */
.services-intro {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.commitment-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.commitment-inner h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    letter-spacing: -0.5px;
    margin-bottom: 0;
    text-align: center;
}

.commitment-body {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
}

.commitment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    flex-shrink: 0;
}

.commitment-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
}

.commitment-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.commitment-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--jade-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.commitment-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 0.3rem;
}

.commitment-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-charcoal);
    opacity: 0.75;
}

@media (min-width: 768px) {
    .commitment-body {
        flex-direction: row;
        align-items: stretch;
        gap: 3.5rem;
    }

    .commitment-image {
        width: 45%;
        align-self: stretch;
    }

    .commitment-pillars {
        width: 55%;
        justify-content: center;
    }
}        /* ─── Who We Serve ─── */
.who-we-serve {
    background: var(--rice-white);
    padding: 5rem 1.5rem;
}

.who-we-serve .section-header p {
    max-width: 700px;
    margin: 0 auto;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
}

.who-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.who-card-icon {
    width: 46px;
    height: 46px;
    background: var(--jade-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.who-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.who-card-text { display: flex; flex-direction: column; gap: 0.35rem; }

.who-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    line-height: 1.3;
}

.who-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-charcoal);
    opacity: 0.75;
}

.who-section-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.who-learn,
.who-book {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.who-learn {
    background: transparent;
    color: var(--jade-green);
    border: 1.5px solid var(--jade-green);
}

.who-learn:hover {
    background: var(--jade-green);
    color: white;
}

.who-book {
    background: var(--jade-green);
    color: white;
    border: 1.5px solid var(--jade-green);
}

.who-book:hover {
    background: #4d6958;
    border-color: #4d6958;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(95,127,110,0.3);
}

@media (min-width: 640px) {
    .who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .who-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Core Services Grid ─── */
.core-services {
    background: var(--rice-white);
    padding: 5rem 1.5rem;
}

.core-services .specialty-card-body {
    background: #ffffff;
}

.core-services .specialty-card {
    height: auto;
}

.specialty-section .specialty-card-body {
    background: #ffffff;
}

.specialty-section .specialty-card {
    height: auto;
}

.card-pricing-row--popular {
    background: #ffffff;
    border-left: 3px solid var(--jade-green);
}

.most-popular-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background: var(--jade-green);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
    vertical-align: middle;
    margin-left: 0.4rem;
    white-space: nowrap;
    -webkit-text-fill-color: #ffffff;
}

.addon-price {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 0.15rem 0.75rem;
    margin-bottom: 0.65rem;
}

.card-pricing-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(95, 127, 110, 0.15);
    border-radius: 8px;
    overflow: hidden;
}


.card-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(95, 127, 110, 0.1);
}

.card-pricing-row:last-child {
    border-bottom: none;
}


.card-pricing-row span:first-child {
    color: var(--ink-charcoal);
    opacity: 0.75;
    font-weight: 500;
}

.card-pricing-row span:last-child {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--jade-green);
}

.card-meta {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    padding: 0.9rem 1rem;
    background: rgba(95, 127, 110, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--jade-green);
}

.card-meta li {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.card-meta-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--jade-green);
    min-width: 70px;
    flex-shrink: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-meta-value {
    color: var(--ink-charcoal);
    opacity: 0.82;
}

.core-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.core-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.core-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.11);
}

.core-card-image {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-color: var(--stone-gray);
}

.core-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.core-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43,43,43,0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.core-card-image .card-tag,
.specialty-card-image .card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--jade-green);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.core-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    display: inline-block;
    background: rgba(95,127,110,0.1);
    color: var(--jade-green);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.85rem;
    align-self: flex-start;
}

.core-card-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.core-card-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-charcoal);
    opacity: 0.78;
    margin-bottom: 1.5rem;
    flex: 1;
}

.core-card-footer {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.card-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.card-pricing .card-pricing-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.15rem 0;
}

.card-pricing-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jade-green);
    background: rgba(95, 127, 110, 0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

.card-pricing-item.original {
    text-decoration: line-through;
    opacity: 0.45;
    background: rgba(0, 0, 0, 0.05);
    color: var(--ink-charcoal);
}

.card-pricing-item.founder {
    background: rgba(183, 162, 107, 0.15);
    color: var(--brass-accent);
    border: 1px solid rgba(183, 162, 107, 0.35);
}

.card-view-details {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--jade-green);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: gap 0.2s ease;
}

.card-view-details::after {
    content: '→';
    font-weight: 400;
}

.card-view-details:hover {
    gap: 0.5rem;
}

/* Image classes removed — images are now <img> elements in HTML */

/* ─── Specialty Experiences ─── */
.specialty-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.specialty-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.specialty-card {
    background: var(--rice-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
}

.specialty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.11);
}

.specialty-card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: var(--stone-gray);
}

@media (min-width: 768px) {
    .specialty-card-image {
        height: 100%;
        min-height: 260px;
        align-self: stretch;
    }
}

.specialty-card-body {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specialty-card-body .card-tag {
    margin-bottom: 1rem;
}

.specialty-card-body h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.specialty-card-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-charcoal);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.specialty-card-body .service-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── Enhancements / Add-Ons ─── */
.enhancements-section {
    background: var(--jade-green);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.enhancements-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: rgba(255, 255, 255, 0.03);
    transform: skewX(-10deg);
    transform-origin: top;
}

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

.enhancements-section .section-title,
.enhancements-section .section-subtitle,
.enhancements-section .section-label {
    color: white;
}

.enhancements-section .section-label,
.services-cta .section-label {
    color: rgba(255,255,255,0.65);
}

.enhancements-section .section-subtitle {
    opacity: 0.88;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.addon-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.75rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
    text-align: center;
}

.addon-item:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
}

.addon-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.addon-icon svg {
    width: 26px; height: 26px;
    stroke: white;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.addon-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.addon-price {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 0.15rem 0.75rem;
    margin-bottom: 0.65rem;
}

.addon-item p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
}

.enhancements-cta {
    text-align: center;
    margin-top: 3.5rem;
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--jade-green);
    padding: 1.1rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--rice-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ─── Memberships & Gift Certificates ─── */
.memberships-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

@media (min-width: 768px) {
    .memberships-grid { grid-template-columns: repeat(2, 1fr); }
}

.membership-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.membership-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
}

.membership-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.membership-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    flex: 1;
}

.membership-btn {
    margin-top: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

/* ─── Why Choose Uniq ─── */
/* ─── Massage Near You ─── */
.massage-near-you {
    background: var(--rice-white);
    padding: 5rem 1.5rem;
}

.why-uniq {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
}

.why-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--jade-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 0.4rem;
}

.why-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-charcoal);
    opacity: 0.78;
}

/* ─── How to Choose ─── */
.choose-section {
    background: var(--rice-white);
    padding: 4rem 1.5rem;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.choose-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.4rem 1.25rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(95, 127, 110, 0.12);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.choose-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--jade-green);
}

.choose-card-category {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jade-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.choose-card-need {
    font-size: 1rem;
    color: var(--ink-charcoal);
    line-height: 1.5;
    opacity: 0.75;
    flex: 1;
}

.choose-card-service {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--jade-green);
    margin-top: 0.25rem;
}


.more-services-accordion {
    margin-top: 2rem;
}

.more-services-toggle {
    width: 100%;
    background: #ffffff;
    border: 2px solid var(--jade-green);
    border-radius: 10px;
    padding: 1.1rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jade-green);
    transition: all 0.3s ease;
}

.more-services-toggle:hover {
    background: var(--jade-green);
    color: white;
}

.more-services-toggle:hover .more-services-chevron {
    stroke: white;
}

.more-services-toggle-meta {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.more-services-chevron {
    width: 20px;
    height: 20px;
    stroke: var(--jade-green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.more-services-accordion.open .more-services-chevron {
    transform: rotate(180deg);
}

.more-services-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.more-services-accordion.open .more-services-body {
    max-height: 3000px;
}

.more-services-body .specialty-grid {
    padding-top: 1.5rem;
}


.find-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .find-us-grid {
        grid-template-columns: 1fr 1.4fr;
        align-items: stretch;
    }
}

.find-us-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.find-us-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.find-us-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: var(--jade-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.find-us-icon svg {
    width: 22px; height: 22px;
    stroke: white;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.find-us-item h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--jade-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
}

.find-us-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-charcoal);
    opacity: 0.85;
}

.get-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--jade-green);
    color: white;
    padding: 0.95rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.get-directions-btn:hover {
    background: #4d6958;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(95, 127, 110, 0.3);
}

.find-us-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-height: 380px;
}

.find-us-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

/* ─── FAQ Section ─── */
.who-for-section {
    background: var(--rice-white);
    padding: 5rem 1.5rem;
}

.who-for-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.who-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    border-radius: 50px;
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-charcoal);
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.who-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.who-chip-dot {
    width: 8px;
    height: 8px;
    background: var(--jade-green);
    border-radius: 50%;
    flex-shrink: 0;
}

.who-for-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1rem;
    color: var(--ink-charcoal);
    opacity: 0.72;
    line-height: 1.7;
}

.faq-list {
    max-width: 860px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    transition: color 0.2s ease;
}

.faq-question:hover { color: var(--jade-green); }

.faq-chevron {
    flex-shrink: 0;
    width: 20px; height: 20px;
    stroke: var(--jade-green);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.75rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.75rem 1.4rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink-charcoal);
    opacity: 0.78;
}

.faq-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.faq-more-btn {
    display: inline-block;
    background: transparent;
    color: var(--jade-green);
    border: 2px solid var(--jade-green);
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-more-btn:hover {
    background: var(--jade-green);
    color: white;
}

/* ─── Strong CTA ─── */
.services-cta {
    background: linear-gradient(135deg, var(--jade-green) 0%, #4d6958 100%);
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.services-cta::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.services-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.services-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.services-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-block;
    background: white;
    color: var(--jade-green);
    padding: 1.2rem 3.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--rice-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1.2rem 3.25rem;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--jade-green);
    border-color: white;
}

.cta-phone {
    margin-top: 1.75rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
}

.cta-phone a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

/* ─── Footer ─── */
footer {
    background: #2F2C28;
    color: white;
    padding: 3rem 1rem 1.5rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-license {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-top: 0.75rem;
}

.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: white; }

.footer-links li {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

/* ─── Responsive ─── */
@media (min-width: 640px) {
    .core-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .services-hero h1 { font-size: 3.25rem; }

    .specialty-card {
        grid-template-columns: 1fr 1fr;
        height: 373.58px;
    }

}

@media (min-width: 1024px) {
    .nav-container { padding: 1.5rem 3rem; }

    .services-hero { padding: 0 3rem; padding-top: 80px; }

    .core-grid { grid-template-columns: repeat(3, 1fr); }

    .addons-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }

    .section-title { font-size: 2.5rem; }

    .services-intro h2, .section-title { font-size: 2.25rem; }

    .services-cta h2 { font-size: 2.75rem; }

    .core-services,
    .specialty-section,
    .enhancements-section,
    .why-uniq,
    .who-for-section,
    .services-intro { padding: 8rem 3rem; }

    .services-cta { padding: 9rem 3rem; }
}

@media (min-width: 1280px) {
    .nav-container { padding: 1.5rem 4rem; }

    .core-services,
    .specialty-section,
    .enhancements-section,
    .why-uniq,
    .who-for-section,
    .services-intro { padding: 10rem 4rem; }

    .services-cta { padding: 11rem 4rem; }
}

@media (min-width: 1440px) {
    .mobile-toggle { display: none; }

    .nav-container { padding: 1.5rem 4rem; }

    .logo a { font-size: 1.75rem; }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        height: auto;
        width: auto;
        max-width: none;
        background: transparent;
        padding: 0;
        gap: 3rem;
        box-shadow: none;
        align-items: center;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%; left: 0;
        background: white;
        min-width: 270px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 4px;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 1rem;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .footer-content { grid-template-columns: 2fr 1fr 1.5fr 1fr 0.75fr; gap: 3rem; margin-bottom: 3rem; }

    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; gap: 0; padding-top: 2rem; }
}

/* ─── Service Page (Swedish Massage) ─── */
/* ─── Centered Section Headers ─── */
.what-content,
.who-content,
.benefits-section > .section-container > .section-label,
.benefits-section > .section-container > .section-title,
.benefits-section > .section-container > .section-body,
.expect-section > .section-container > .section-label,
.expect-section > .section-container > .section-title,
.expect-section > .section-container > .section-body,
.sessions-section > .section-container,
.why-section > .section-container {
    text-align: center;
}

.what-content .section-body,
.who-content .section-body,
.benefits-section > .section-container > .section-body,
.expect-section > .section-container > .section-body,
.sessions-section .section-body,
.why-section .section-body {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card,
.expect-item {
    text-align: left;
}

/* ─── Page Hero ─── */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 1.5rem;
    padding-top: 80px;
    overflow: hidden;
    background: #2B2B2B;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-image, url('../images/swedish-massage.jpg')) center/cover no-repeat;
    opacity: 0.38;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.page-hero-content .hero-label {
    display: block;
    color: var(--brass-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.page-hero-content .hero-sub {
    font-size: 1.25rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.25rem;
}

/* ─── Shared Page Utilities ─── */
.section-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink-charcoal);
    opacity: 0.82;
}

.section-body + .section-body { margin-top: 1.25rem; }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1.1rem 2.8rem;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: white;
    color: var(--jade-green);
    border-color: white;
}

/* ─── What Is Swedish Massage ─── */
.what-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.what-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.what-image {
    width: 100%;
    height: 320px;
    background: url('../images/swedish-massage.jpg') center/cover no-repeat var(--stone-gray);
    border-radius: 12px;
}

.what-content .section-title { margin-top: 0.5rem; }

@media (min-width: 768px) {
    .what-content {
        text-align: left;
    }
    .what-content .section-body {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ─── Benefits ─── */
.benefits-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: var(--jade-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 22px; height: 22px;
    stroke: white;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 0.35rem;
}

.benefit-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-charcoal);
    opacity: 0.76;
}

/* ─── Who It's Best For ─── */
.who-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.who-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
    align-items: center;
}

.who-image {
    width: 100%;
    height: 320px;
    background: url('../images/massage-room.jpg') center/cover no-repeat var(--stone-gray);
    border-radius: 12px;
    order: -1;
}

.who-list {
    list-style: none;
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.who-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1rem;
    color: var(--ink-charcoal);
    line-height: 1.5;
}

.who-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px; height: 8px;
    background: var(--jade-green);
    border-radius: 50%;
}

/* ─── What to Expect ─── */
.expect-section {
    background: var(--rice-white);
    padding: 5rem 1.5rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.expect-item {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.expect-num {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: rgba(95,127,110,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--jade-green);
}

.expect-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 0.35rem;
}

.expect-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-charcoal);
    opacity: 0.76;
}

/* ─── Session Options ─── */
.sessions-section {
    background: var(--rice-white);
    padding: 5rem 1.5rem;
}

.sessions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.session-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    border-left: 4px solid var(--jade-green);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 280px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.session-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.session-card--popular {
    border-left-color: var(--brass-accent);
    background: #fffdf9;
    position: relative;
}

.session-card--popular .session-duration { color: var(--brass-accent); }
.session-card--popular .session-book { background: var(--brass-accent); }
.session-card--popular .session-book:hover { background: #9e8a58; }

.session-popular-badge {
    display: inline-block;
    background: var(--brass-accent);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    align-self: center;
}

.session-duration {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--jade-green);
    line-height: 1;
}

.session-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jade-green);
    opacity: 0.85;
}

.session-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-charcoal);
}

.session-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-charcoal);
    opacity: 0.74;
    flex: 1;
}

.session-book {
    display: inline-block;
    margin-top: 0.75rem;
    align-self: center;
    background: var(--jade-green);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.session-book:hover {
    background: #4d6958;
    transform: translateY(-2px);
}

/* ─── Why Choose Uniq ─── */
.why-section {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.why-list {
    list-style: none;
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.why-list li {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-charcoal);
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.why-list li:hover { transform: translateY(-2px); }

.why-check {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--jade-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-check svg {
    width: 14px; height: 14px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ─── Final CTA ─── */
.final-cta {
    background: linear-gradient(135deg, var(--jade-green) 0%, #4d6958 100%);
    padding: 7rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.final-cta .cta-label {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.final-cta .cta-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone {
    margin-top: 1.75rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
}

.cta-phone a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

/* ─── Responsive ─── */
@media (min-width: 768px) {
    .what-inner { grid-template-columns: 1fr 1fr; }
    .who-inner { grid-template-columns: 1fr 1fr; }
    .who-image { order: 0; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .expect-grid { grid-template-columns: repeat(2, 1fr); }
    .sessions-grid { grid-template-columns: repeat(2, 1fr); }
    .why-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .page-hero-content h1 { font-size: 3.5rem; }
    .what-section, .benefits-section, .who-section,
    .expect-section, .sessions-section, .why-section { padding: 8rem 3rem; }
    .final-cta { padding: 9rem 3rem; }
    .final-cta h2 { font-size: 2.75rem; }
    .sessions-grid { grid-template-columns: repeat(5, 1fr); }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
    .what-section, .benefits-section, .who-section,
    .expect-section, .sessions-section, .why-section { padding: 10rem 4rem; }
    .final-cta { padding: 11rem 4rem; }
}
/* ─── Techniques Strip (Custom Therapeutic Massage) ─── */
.techniques-section {
    background: var(--ink-charcoal);
    padding: 3rem 1.5rem;
    overflow: hidden;
}

.techniques-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.techniques-label {
    display: block;
    color: var(--brass-accent);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
}

.techniques-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.technique-pill {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.82);
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.technique-pill:hover {
    background: rgba(95,127,110,0.3);
    border-color: var(--jade-green);
    color: white;
}
/* ─── Enhancements Page: Jump Nav Strip ─── */
.addons-nav {
    background: var(--ink-charcoal);
    padding: 2.25rem 1.5rem;
    overflow: hidden;
}

.addons-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.addons-nav-label {
    display: block;
    color: var(--brass-accent);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-align: center;
}

.addons-nav-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.addon-nav-pill {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.82);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
}

.addon-nav-pill:hover {
    background: rgba(95,127,110,0.35);
    border-color: var(--jade-green);
    color: white;
}

/* ─── Enhancements Page: 2-column card grid ─── */
.enhancements-page .core-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
    .enhancements-page .core-grid {
        grid-template-columns: 1fr;
    }
}
/* ─── Contact Page ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    background: var(--jade-green); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-text h3 { font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--jade-green); margin-bottom: 0.4rem; }
.contact-item-text p, .contact-item-text a { font-size: 1rem; line-height: 1.7; color: var(--ink-charcoal); text-decoration: none; }
.contact-item-text a:hover { color: var(--jade-green); }
.contact-directions-link, .contact-book-link {
    display: inline-block; color: var(--jade-green); font-weight: 600;
    font-size: 0.9rem; text-decoration: none; margin-top: 0.4rem; transition: opacity 0.2s;
}
.contact-directions-link:hover, .contact-book-link:hover { opacity: 0.75; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); height: 400px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.6fr; align-items: start; } }

/* ─── About Page: Explore Cards ─── */
.explore-grid { display: flex; flex-direction: column; gap: 2rem; }
.explore-card {
    display: flex; flex-direction: column;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07); background: #ffffff;
}
.explore-card-img { width: 100%; height: 240px; object-fit: cover; object-position: center; display: block; flex-shrink: 0; }
.explore-card-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.85rem; }
.explore-card-body h3 { font-size: 1.5rem; font-weight: 600; color: var(--ink-charcoal); margin: 0; }
.explore-card-body p { font-size: 1rem; line-height: 1.75; color: var(--ink-charcoal); opacity: 0.8; margin: 0; }
@media (min-width: 640px) {
    .explore-card { flex-direction: row; }
    .explore-card-img { width: 50%; height: auto; min-height: 240px; }
    .explore-card-body { width: 50%; padding: 2.5rem; }
}

/* ─── Our Team: Therapist Cards ─── */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; }
.team-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.team-card-img { width: 100%; height: 260px; object-fit: cover; object-position: top; display: block; }
.team-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.team-card-body h3 { font-size: 1.2rem; font-weight: 600; color: var(--ink-charcoal); margin: 0.25rem 0; }
.team-card-body p { font-size: 0.95rem; line-height: 1.7; color: var(--ink-charcoal); opacity: 0.75; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── img.what-image / img.who-image ─── */
img.what-image, img.who-image {
    width: 100%; height: 320px; object-fit: cover; object-position: center;
    border-radius: 12px; display: block; background-color: var(--stone-gray);
}
img.who-image { order: -1; }
@media (min-width: 768px) { img.who-image { order: 0; } }

/* ─── Utility: Section body width constraints ─── */
.section-body-narrow { max-width: 680px; margin-left: auto; margin-right: auto; }
.section-body-wide { max-width: 780px; margin: 0 auto; text-align: center; }

/* ─── Utility: Centered CTA block ─── */
.section-cta-center { text-align: center; margin-top: 2rem; }

/* ─── Utility: Section background overrides ─── */
.bg-white { background: #ffffff; }
.bg-rice-white { background: var(--rice-white); }

/* ─── FAQ: Category jump pills (jade-green on white bg) ─── */
.faq-cat-pill {
    display: inline-block;
    background: var(--jade-green);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid var(--jade-green);
}
.faq-cat-pill:hover { background: #4d6958; border-color: #4d6958; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(95,127,110,0.3); }

/* ─── Enhancements Page: 2-column card grid ─── */
.enhancements-page .core-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .enhancements-page .core-grid { grid-template-columns: 1fr; } }

/* ─── Techniques Strip (Custom Therapeutic) ─── */
.techniques-section { background: var(--ink-charcoal); padding: 3rem 1.5rem; overflow: hidden; }
.techniques-inner { max-width: 1400px; margin: 0 auto; }
.techniques-label { display: block; color: var(--brass-accent); font-size: 0.78rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; text-align: center; }
.techniques-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.technique-pill { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.82); padding: 0.55rem 1.25rem; border-radius: 50px; font-size: 0.88rem; font-family: 'Poppins', sans-serif; font-weight: 400; white-space: nowrap; transition: all 0.25s ease; }
.technique-pill:hover { background: rgba(95,127,110,0.3); border-color: var(--jade-green); color: white; }

/* ─── Jump Nav Strip (Enhancements page) ─── */
.addons-nav { background: var(--ink-charcoal); padding: 2.25rem 1.5rem; overflow: hidden; }
.addons-nav-inner { max-width: 1400px; margin: 0 auto; }
.addons-nav-label { display: block; color: var(--brass-accent); font-size: 1rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.25rem; text-align: center; }
.addons-nav-row { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }
.addon-nav-pill { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.82); padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.88rem; font-family: 'Poppins', sans-serif; font-weight: 400; white-space: nowrap; text-decoration: none; transition: all 0.25s ease; }
.addon-nav-pill:hover { background: rgba(95,127,110,0.35); border-color: var(--jade-green); color: white; }

/* ─── Mobile / Responsive additions ─── */
@media (max-width: 480px) {
    .page-hero-content h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
    .page-hero-content .hero-sub { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; text-align: center; }
    .sessions-grid { grid-template-columns: 1fr; }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
    .core-grid { grid-template-columns: 1fr; }
    .choose-grid { grid-template-columns: 1fr; }
    .why-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    h1 { font-size: 2.25rem; }
    .section-title { font-size: 1.65rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .who-inner { gap: 3rem; }
}

/* ═══════════════════════════════════════════════
   INDEX PAGE — Coming Soon / Launch page styles
   ═══════════════════════════════════════════════ */

/* ─── Hero Countdown ─── */
.hero-countdown {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.hcd-unit {
    text-align: center;
    min-width: 72px;
}

.hcd-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    display: block;
}

.hcd-lbl {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 6px;
}

.hcd-sep {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--brass-accent);
    line-height: 1.1;
    margin: 0 2px;
    opacity: 0.7;
}

/* Countdown open state message */
.countdown-open-msg {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brass-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero countdown subtext label */
.hero-countdown-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* ─── Opening Badge Pill (nav) ─── */
.opening-soon-pill {
    display: inline-block;
    background: rgba(183, 162, 107, 0.12);
    color: var(--brass-accent);
    border: 1px solid rgba(183, 162, 107, 0.35);
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
}

/* ─── Early Access Sign-up Form ─── */
.early-access-form-wrap {
    background: var(--rice-white);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 535px;
    flex-shrink: 0;
}

/* Cover the Vagaro logo at the bottom of the embedded iframe */
.early-access-form-wrap > div {
    position: relative;
}

.early-access-form-wrap > div::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--rice-white);
    z-index: 10;
    pointer-events: none;
}

.early-access-form-wrap h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 0.5rem;
}

.early-access-form-wrap p {
    font-size: 0.95rem;
    color: var(--ink-charcoal);
    opacity: 0.7;
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-charcoal);
    opacity: 0.6;
    margin-bottom: 0.45rem;
}

.form-input {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid rgba(43, 43, 43, 0.15);
    border-radius: 6px;
    padding: 0.9rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--ink-charcoal);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
    color: rgba(43, 43, 43, 0.35);
}

.form-input:focus {
    border-color: var(--jade-green);
    box-shadow: 0 0 0 3px rgba(95, 127, 110, 0.12);
}

.form-submit {
    width: 100%;
    background: var(--jade-green);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #4d6958;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(95, 127, 110, 0.3);
}

.form-fine {
    font-size: 0.78rem;
    color: var(--ink-charcoal);
    opacity: 0.5;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.55;
}

/* ─── Form Success State ─── */
.success-state {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(95, 127, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
}

.success-state h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 0.75rem;
}

.success-state p {
    font-size: 0.97rem;
    color: var(--ink-charcoal);
    opacity: 0.72;
    line-height: 1.7;
}

/* ─── Scroll offset for fixed nav ─── */
.core-card,
.specialty-card {
    scroll-margin-top: 90px;
}

/* ─── Get Directions icon ─── */
.directions-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ─── Embedded map iframe ─── */
.map-iframe {
    border: 0;
}

/* ─── Responsive — index page form ─── */
@media (max-width: 640px) {
    .form-row-2 { grid-template-columns: 1fr; }
    .early-access-form-wrap { padding: 1.75rem 1.5rem; }
    .hcd-num { font-size: 2.2rem; }
    .hcd-unit { min-width: 55px; }
}

/* ─── Why Uniq Massage ─── */
.why-uniq-cards {
    background: #ffffff;
    padding: 5rem 1.5rem;
}

.why-uniq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.why-uniq-card {
    background: var(--rice-white);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-uniq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-uniq-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-uniq-icon {
    width: 48px;
    height: 48px;
    background: var(--jade-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-uniq-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.why-uniq-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    line-height: 1.3;
}

.why-uniq-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ink-charcoal);
    opacity: 0.75;
}

@media (max-width: 1023px) {
    .why-uniq-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .why-uniq-grid { grid-template-columns: 1fr; }
}

/* ─── Policy Pages (Privacy Policy & Terms of Service) ─── */

.policy-body {
    font-family: 'Poppins', sans-serif;
    max-width: 780px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    color: var(--ink-charcoal);
    text-align: left;
}

.policy-updated {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brass-accent);
    background: rgba(183, 162, 107, 0.08);
    border: 1px solid rgba(183, 162, 107, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
}

.policy-section {
    margin-bottom: 0.5rem;
}

.policy-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--jade-green);
    margin-bottom: 0.85rem;
}

.policy-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ink-charcoal);
    margin-bottom: 0.85rem;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    padding-left: 1.25rem;
    margin-bottom: 0.85rem;
}

.policy-section ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--ink-charcoal);
    margin-bottom: 0.4rem;
}

.policy-section ul li strong {
    font-weight: 500;
    color: var(--ink-charcoal);
}

.policy-section a {
    color: var(--jade-green);
    text-decoration: none;
    border-bottom: 1px solid rgba(95, 127, 110, 0.3);
    transition: border-color 0.2s ease;
}

.policy-section a:hover {
    border-color: var(--jade-green);
}

.policy-divider {
    border: none;
    border-top: 1px solid rgba(95, 127, 110, 0.15);
    margin: 2rem 0;
}

@media (max-width: 600px) {
    .policy-body {
        padding: 2.5rem 1.25rem 4rem;
    }
    .policy-section h2 {
        font-size: 0.95rem;
    }
    .policy-section p,
    .policy-section ul li {
        font-size: 0.9rem;
    }
}
/* ── Phone link (number injected via JS) ── */
.phone-link {
  color: inherit;
  text-decoration: none;
}
.phone-link:hover {
  text-decoration: underline;
}