/* ========================================
   Surf & Yoga Retreat — Enhanced Stylesheet
   Insight Resort Ahangama
   v2.0 — Premium Design System
   ======================================== */

/* ── Design Tokens (CSS Custom Properties) ── */
:root {
    /* Primary Colors — Warm Hospitality */
    --color-primary: #f5a623;
    --color-primary-dark: #e07b00;
    --color-primary-light: #f9b84d;

    /* Accent Colors — Ocean / Serenity */
    --color-accent: #0f7a7a;
    --color-accent-light: #1a9a9a;
    --color-accent-lighter: #e8f5f5;

    /* Neutral Colors */
    --color-dark: #2a1a00;
    --color-text: #5a3a10;
    --color-light-text: #7a5a30;
    --color-light-bg: #fef8f0;
    --color-cream: #fde5c9;

    /* Shadow System — Warm-toned */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 24px 56px rgba(155, 80, 0, 0.15);
    --shadow-xl: 0 32px 72px rgba(155, 80, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-base: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    --transition-slow: 0.5s cubic-bezier(0.33, 0.66, 0.66, 1);
}


/* ── Animations ──────────────────────── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes softPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.35); }
    50%      { box-shadow: 0 0 0 12px rgba(245, 166, 35, 0); }
}

@keyframes floatWave {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 0px rgba(245, 166, 35, 0)); }
    50%      { filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.3)); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Accessibility: reduced motion ───── */
@media (prefers-reduced-motion: reduce) {
    .ay-img-side { animation: none; }
    .yp-panel    { animation: none; }
    .wwd-card    { animation: none; }
    .ya-item     { animation: none; }

    .ay-section *,
    .wwd-section *,
    .yp-section *,
    .fi-section *,
    .yj-section *,
    .ya-section *,
    .ay-section *::before,
    .wwd-section *::before,
    .yp-section *::before,
    .fi-section *::before,
    .yj-section *::before,
    .ya-section *::before,
    .ay-section *::after,
    .wwd-section *::after,
    .yp-section *::after,
    .fi-section *::after,
    .yj-section *::after,
    .ya-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ========================================
   Art of Yoga Section (ay)
   ======================================== */

.ay-section {
    background: linear-gradient(170deg, var(--color-light-bg) 0%, #fef2e0 30%, var(--color-cream) 70%, #fddbb0 100%);
    padding: 6rem 2rem;
    font-family: 'Jost', sans-serif;
    position: relative;
    overflow: hidden;
}

.ay-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.ay-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 122, 122, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.ay-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ay-img-side {
    position: relative;
    width: 100%;
    max-width: 480px;
    animation: floatWave 6s ease-in-out infinite;
}

.ay-img-frame {
    position: relative;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(155, 80, 0, 0.1);
}

.ay-img-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 3px solid rgba(245, 166, 35, 0.25);
    z-index: 0;
    transition: all var(--transition-base);
}

.ay-img-frame:hover::before {
    top: 14px;
    left: 14px;
    border-color: rgba(245, 166, 35, 0.6);
    box-shadow: inset 0 0 20px rgba(245, 166, 35, 0.15);
}

.ay-img-frame img {
    width: 100%;
    border-radius: 24px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
}

.ay-img-frame:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05);
}

.ay-content {
    padding-right: 1rem;
}

/* Eyebrow — Premium Badge Style */
.ay-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.1), transparent);
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
    padding: 8px 12px;
    border-radius: 6px;
}

.ay-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 2px;
}

/* Heading — Gradient Text Emphasis */
.ay-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 3.2vw, 2.9rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.12;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}

.ay-heading em {
    font-style: italic;
    color: var(--color-primary-dark);
    position: relative;
    background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ay-heading em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.ay-heading em:hover::after {
    bottom: -6px;
    filter: drop-shadow(0 2px 6px rgba(245, 166, 35, 0.3));
}

.ay-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text);
    margin: 0 0 1.25rem;
}

/* CTA Button — Shine Effect */
.ay-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: 0.75rem;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.ay-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.ay-cta:hover::before {
    left: 100%;
}

.ay-cta:hover,
.ay-cta:focus-visible {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 166, 35, 0.4);
}

.ay-cta:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}

@media (max-width: 992px) {
    .ay-section { padding: 4.5rem 2rem; }
    .ay-wrapper { gap: 3rem; }
    .ay-img-side { max-width: 420px; }
}

@media (max-width: 768px) {
    .ay-section { padding: 3.5rem 1.5rem; }
    .ay-section::before { width: 250px; height: 250px; top: -60px; right: -40px; }
    .ay-section::after  { width: 160px; height: 160px; bottom: -40px; left: -20px; }

    .ay-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .ay-img-side { max-width: 340px; margin: 0 auto; }
    .ay-img-frame::before { top: 12px; left: 12px; border-width: 2px; }
    .ay-content { padding-right: 0; text-align: center; }

    .ay-eyebrow { justify-content: center; }
    .ay-heading em::after { left: 50%; transform: translateX(-50%); }
    .ay-heading em:hover::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .ay-section { padding: 2.8rem 1rem; }
    .ay-img-side { max-width: 280px; }
    .ay-img-frame::before { top: 8px; left: 8px; border-radius: 18px; }
    .ay-img-frame img { border-radius: 18px; }
    .ay-heading { font-size: 1.75rem; }
    .ay-body { font-size: 15px; }
    .ay-cta { width: 100%; justify-content: center; padding: 14px 24px; }
}


/* ========================================
   What We Do Section (wwd)
   ======================================== */

.wwd-section {
    background: #fff;
    padding: 0;
    font-family: 'Jost', sans-serif;
    position: relative;
}

.wwd-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary) 20%, var(--color-primary-dark) 50%, var(--color-primary) 80%, transparent);
}

.wwd-wrapper {
    display: flex;
    min-height: 560px;
}

.wwd-img-col {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

.wwd-img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 40%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.wwd-content-col {
    flex: 0 0 50%;
    padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
}

.wwd-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 3.2vw, 2.9rem);
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 1.25rem;
    line-height: 1.12;
    position: relative;
    padding-bottom: 1.25rem;
}

.wwd-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 3px;
}

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

/* Card — Gradient Background + Staggered Entrance */
.wwd-card {
    padding: 1.75rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, rgba(15, 122, 122, 0.03) 100%);
    border: 1px solid rgba(245, 166, 35, 0.1);
    transition: all var(--transition-base);
    animation: staggerFadeIn 0.6s ease forwards;
    opacity: 0;
}

.wwd-card:nth-child(1) { animation-delay: 0.1s; }
.wwd-card:nth-child(2) { animation-delay: 0.2s; }
.wwd-card:nth-child(3) { animation-delay: 0.3s; }
.wwd-card:nth-child(4) { animation-delay: 0.4s; }

.wwd-card:hover {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(15, 122, 122, 0.08) 100%);
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(245, 166, 35, 0.15);
}

.wwd-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.wwd-card__icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(224, 123, 0, 0.25);
    transition: all var(--transition-base);
}

.wwd-card:hover .wwd-card__icon img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 28px rgba(224, 123, 0, 0.38);
}

.wwd-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 0.5rem;
    letter-spacing: 0.01em;
}

.wwd-card__body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

@media (max-width: 992px) {
    .wwd-content-col { padding: 3rem 2rem; }
    .wwd-grid { gap: 1.5rem 2rem; }
}

@media (max-width: 768px) {
    .wwd-wrapper { flex-direction: column; min-height: auto; }
    .wwd-img-col { flex: 0 0 auto; height: 320px; }
    .wwd-content-col { flex: 1 1 auto; padding: 2.5rem 1.5rem; }
    .wwd-heading { text-align: center; }
    .wwd-heading::after { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .wwd-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .wwd-card { text-align: center; }
    .wwd-card__icon { justify-content: center; margin-left: auto; margin-right: auto; }
    .wwd-img-col { height: 250px; }
    .wwd-content-col { padding: 2rem 1rem; }
}


/* ========================================
   Our Yoga Packages Section (yp)
   ======================================== */

.yp-section {
    background: #fafaf8;
    padding: 6rem 2rem;
    font-family: 'Jost', sans-serif;
    position: relative;
}

.yp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(245, 166, 35, 0.04) 0%, transparent 100%);
    pointer-events: none;
}

.yp-inner {
    max-width: 1150px;
    margin: 0 auto;
}

.yp-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    margin: 0 auto 2.5rem;
    position: relative;
    display: table;
}

.yp-heading::after {
    content: '';
    display: block;
    margin: 1rem auto 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 3px;
}

/* Tabs — Smooth Color Fill */
.yp-tabs {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.yp-tab {
    padding: 10px 28px;
    border-radius: 999px;
    border: 2px solid rgba(245, 166, 35, 0.2);
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-light-text);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.yp-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 999px;
}

.yp-tab:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.18);
}

.yp-tab--active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-color: var(--color-primary-dark);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

.yp-tab--active:hover {
    background: linear-gradient(135deg, #e89616 0%, #cc6e00 100%);
    border-color: #cc6e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(224, 123, 0, 0.4);
}

/* Package Panel — Scale-In Entrance */
.yp-panel {
    display: none;
    animation: scaleIn 0.5s ease forwards;
    opacity: 0;
}

.yp-panel--active {
    display: block;
    opacity: 1;
}

.yp-panel__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    transition: box-shadow var(--transition-base);
    border: 1px solid rgba(224, 123, 0, 0.1);
}

.yp-panel__layout:hover {
    box-shadow: 0 12px 40px rgba(180,100,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
}

.yp-panel__img-wrap {
    height: 100%;
    min-height: 360px;
    position: relative;
}

.yp-panel__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
}

.yp-panel__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 360px;
    background: linear-gradient(160deg, var(--color-cream) 0%, #fddbb0 100%);
    transition: transform var(--transition-slow);
}

.yp-panel__layout:hover .yp-panel__img-wrap img {
    transform: scale(1.03);
}

.yp-panel__details {
    padding: 2.5rem 2.5rem 2.5rem 0;
}

.yp-panel__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 1.1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.yp-panel__subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b36b00;
    margin: 0 0 0.6rem;
}

.yp-panel__includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.yp-panel__includes li {
    font-size: 14px;
    color: var(--color-text);
    padding: 4px 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}

.yp-panel__includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(-45deg);
}

/* Pricing Table */
.yp-table-wrap {
    overflow-x: auto;
    margin-bottom: 1.25rem;
    border-radius: 10px;
    border: 1px solid #f0e0c8;
    box-shadow: 0 2px 10px rgba(180,100,0,0.04);
}

.yp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.yp-table thead tr {
    background: linear-gradient(135deg, #2c3e4e 0%, #3d5468 100%);
    color: #fff;
}

.yp-table thead th {
    padding: 12px 14px;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
    font-size: 12.5px;
}

.yp-table thead th:first-child { border-radius: 10px 0 0 0; }
.yp-table thead th:last-child  { border-radius: 0 10px 0 0; }

.yp-table tbody tr { transition: background 0.2s ease; }
.yp-table tbody tr:hover { background: #fef9f3; }
.yp-table tbody tr:nth-child(even) { background: #fef9f3; }
.yp-table tbody tr:nth-child(even):hover { background: #fef2e4; }

.yp-table tbody td {
    padding: 10px 14px;
    color: #3a2a10;
    border-bottom: 1px solid #f2e4d0;
    vertical-align: middle;
}

.yp-table tbody tr:last-child td { border-bottom: none; }

.yp-panel__note {
    font-size: 12px;
    color: #9a7040;
    margin: 0.25rem 0 1.5rem;
    font-style: italic;
}

/* CTA Buttons */
.yp-panel__ctas,
.yp-addons-ctas {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.yp-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Jost', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    padding: 11px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.yp-cta:hover { transform: translateY(-2px); }
.yp-cta:active { transform: translateY(0); }

.yp-cta--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.yp-cta--primary:hover {
    box-shadow: 0 6px 24px rgba(245, 166, 35, 0.4);
    background: linear-gradient(135deg, #e89616 0%, #cc6e00 100%);
}

.yp-cta--whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.yp-cta--whatsapp:hover {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #1ec45a 0%, #179642 100%);
}

.yp-cta--whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Addons / Session Info */
.yp-addons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 5rem;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid #ecdcca;
    margin-top: 0.5rem;
}

.yp-addons__col {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(224, 123, 0, 0.08);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.yp-addons__col:hover {
    box-shadow: 0 6px 24px rgba(180,100,0,0.1);
    transform: translateY(-2px);
}

.yp-addons__heading {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin: 1.5rem 0 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.yp-addons__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.yp-addons__heading:first-child { margin-top: 0; }

.yp-addons__list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
}

.yp-addons__list li {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
    padding-left: 1.25rem;
    position: relative;
}

.yp-addons__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 50%;
}

.yp-addons-ctas {
    padding-top: 2.5rem;
    border-top: 1px solid #ecdcca;
    margin-top: 1rem;
    justify-content: center;
}

@media (max-width: 992px) {
    .yp-panel__details { padding: 2rem; }
}

@media (max-width: 768px) {
    .yp-section { padding: 4rem 1.5rem; }

    .yp-panel__layout { grid-template-columns: 1fr; gap: 0; }
    .yp-panel__img-wrap { min-height: 260px; }
    .yp-panel__img-wrap img { min-height: 260px; }
    .yp-panel__details { padding: 1.75rem; }

    .yp-addons { grid-template-columns: 1fr; gap: 1.25rem; }
    .yp-addons__col { padding: 1.5rem; }

    .yp-tabs { gap: 0.4rem; }
    .yp-tab { padding: 8px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
    .yp-section { padding: 3rem 1rem; }
    .yp-panel__img-wrap { min-height: 210px; }
    .yp-panel__img-wrap img { min-height: 210px; }
    .yp-panel__details { padding: 1.25rem; }
    .yp-panel__title { font-size: 1.3rem; }

    .yp-table { font-size: 11.5px; }
    .yp-table thead th { padding: 8px 10px; font-size: 11px; }
    .yp-table tbody td { padding: 7px 10px; }

    .yp-panel__ctas,
    .yp-addons-ctas { flex-direction: column; }

    .yp-cta { justify-content: center; width: 100%; text-align: center; }
    .yp-tab { padding: 7px 14px; font-size: 12px; }
    .yp-addons { padding: 2rem 0 1rem; }
    .yp-addons__col { padding: 1.25rem; }
    .yp-addons__heading { font-size: 12px; }
    .yp-addons__list li { font-size: 13px; }
}


/* ========================================
   Featured In Section (fi)
   ======================================== */

.fi-section {
    background: linear-gradient(180deg, #fff 0%, #fef9f3 50%, #fff 100%);
    padding: 5rem 2rem;
    border-top: 1px solid #f2e4d0;
    border-bottom: 1px solid #f2e4d0;
    font-family: 'Jost', sans-serif;
    position: relative;
    overflow: hidden;
}

.fi-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(15, 122, 122, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.fi-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.fi-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.18;
    flex-shrink: 0;
    margin: 0;
    max-width: 165px;
}

.fi-heading em {
    display: block;
    font-style: italic;
    color: #a86000;
}

.fi-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.fi-logo-link {
    display: flex;
    align-items: center;
    opacity: 0.7;
    filter: grayscale(30%);
    transition: all var(--transition-base);
}

.fi-logo-link:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px);
}

.fi-logo-link img {
    height: 42px;
    width: auto;
    object-fit: contain;
    background: linear-gradient(135deg, #fef6ec 0%, var(--color-cream) 100%);
    border-radius: 10px;
    min-width: 130px;
    padding: 10px 18px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.fi-logo-link:hover img {
    box-shadow: 0 6px 20px rgba(180,100,0,0.12);
}

@media (max-width: 768px) {
    .fi-wrapper { flex-direction: column; align-items: center; gap: 2.5rem; text-align: center; }
    .fi-heading { max-width: 100%; }
    .fi-logos { justify-content: center; gap: 2rem; }
}

@media (max-width: 500px) {
    .fi-section { padding: 3.5rem 1rem; }
    .fi-wrapper { gap: 2rem; }
    .fi-logos { flex-direction: column; gap: 1rem; }
    .fi-logo-link img { height: 36px; min-width: 110px; padding: 8px 14px; }
}


/* ========================================
   How to Start Your Yoga Journey (yj)
   ======================================== */

.yj-section {
    background: linear-gradient(170deg, var(--color-light-bg) 0%, #fef2e0 40%, #fde8d0 100%);
    padding: 6rem 2rem;
    font-family: 'Jost', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.yj-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.yj-section::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 122, 122, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.yj-wrapper {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.yj-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 3.8vw, 3.2rem);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.16;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}

.yj-heading em {
    font-style: italic;
    color: var(--color-primary-dark);
    position: relative;
    background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yj-heading em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.yj-heading em:hover::after {
    bottom: -6px;
    filter: drop-shadow(0 2px 6px rgba(245, 166, 35, 0.3));
}

.yj-body {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text);
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.yj-body::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 3px;
    margin: 0 auto 1.5rem;
}

@media (max-width: 768px) {
    .yj-section { padding: 4rem 1.5rem; }
    .yj-section::before { width: 200px; height: 200px; bottom: -50px; right: -50px; }
    .yj-section::after  { width: 140px; height: 140px; top: -30px; left: -30px; }
    .yj-body { max-width: 100%; font-size: 16px; }
}

@media (max-width: 480px) {
    .yj-section { padding: 3rem 1rem; }
    .yj-heading { font-size: 1.75rem; }
    .yj-body { font-size: 15px; }
}


/* ========================================
   Yoga Accessories Section (ya)
   ======================================== */

.ya-section {
    background: #fff;
    padding: 6rem 2rem;
    font-family: 'Jost', sans-serif;
    position: relative;
}

.ya-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 5rem;
    align-items: start;
}

.ya-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.ya-img-frame:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.ya-img-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: -18px;
    bottom: -18px;
    border-radius: 20px;
    border: 3px solid rgba(245, 166, 35, 0.3);
    z-index: 0;
    pointer-events: none;
    transition: border-color var(--transition-base), top var(--transition-base), left var(--transition-base);
}

.ya-img-frame:hover::before {
    border-color: rgba(245, 166, 35, 0.5);
    top: 12px;
    left: 12px;
}

.ya-img-frame img {
    width: 100%;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    min-height: 500px;
    object-fit: cover;
    background: linear-gradient(160deg, var(--color-cream) 0%, #fddbb0 100%);
    transition: transform var(--transition-slow);
}

.ya-img-frame:hover img {
    transform: scale(1.025);
}

.ya-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.ya-intro {
    font-size: 15px;
    font-weight: 300;
    color: var(--color-light-text);
    margin: 0 0 2rem;
    line-height: 1.8;
}

/* List Items — Growing Indicator Bar + Stagger Entrance */
.ya-item {
    padding: 1.5rem 1rem 1.5rem 0;
    border-bottom: 1px dashed rgba(234, 216, 192, 0.7);
    position: relative;
    transition: all var(--transition-base);
    border-radius: 8px;
    animation: staggerFadeIn 0.6s ease forwards;
    opacity: 0;
}

.ya-item:nth-child(1) { animation-delay: 0.1s; }
.ya-item:nth-child(2) { animation-delay: 0.2s; }
.ya-item:nth-child(3) { animation-delay: 0.3s; }
.ya-item:nth-child(4) { animation-delay: 0.4s; }
.ya-item:nth-child(5) { animation-delay: 0.5s; }
.ya-item:nth-child(6) { animation-delay: 0.6s; }

.ya-item:hover {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, rgba(15, 122, 122, 0.03) 100%);
    padding-left: 1rem;
    border-bottom-color: var(--color-primary);
    border-bottom-style: solid;
}

.ya-item:last-child { border-bottom: none; }

.ya-item__title {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 0.4rem;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 0;
    transition: padding-left var(--transition-base), color var(--transition-base);
}

/* Growing Indicator Bar */
.ya-item__title::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.ya-item:hover .ya-item__title::before {
    width: 24px;
}

.ya-item:hover .ya-item__title {
    color: #b36b00;
}

.ya-item__body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

@media (max-width: 992px) {
    .ya-wrapper { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .ya-section { padding: 4rem 1.5rem; }
    .ya-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .ya-img-frame img { min-height: 300px; }
    .ya-img-frame::before { top: 12px; left: 12px; right: -12px; bottom: -12px; border-width: 2px; border-radius: 16px; }
}

@media (max-width: 480px) {
    .ya-section { padding: 3rem 1rem; }
    .ya-img-frame img { min-height: 250px; }
    .ya-img-frame::before { display: none; }
    .ya-img-frame,
    .ya-img-frame img { border-radius: 14px; }
    .ya-heading { font-size: 1.7rem; }
    .ya-item { padding: 1rem 0.5rem; }
    .ya-item:hover { padding-left: 0.5rem; }
}
