/* Experience Page - Hero Section (New Design) */
.experience-hero-new {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.experience-hero-bg {
    position: absolute;
    inset: 0;
}

.experience-hero-overlay-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 10;
}

.experience-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-hero-content-new {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.experience-hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(245, 245, 220, 0.95);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.experience-hero-title-new {
    font-family: var(--font-display-vn);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: rgb(212, 175, 55);
}

@media (min-width: 1024px) {
    .experience-hero-title-new {
        font-size: 4.5rem;
    }
}

.experience-hero-subtitle-new {
    font-family: var(--font-display-vn);
    font-size: 1.5rem;
    line-height: 1.2;
    color: rgba(245, 245, 220, 0.95);
    font-weight: 400;
}

@media (min-width: 1024px) {
    .experience-hero-subtitle-new {
        font-size: 1.875rem;
    }
}

.experience-hero-description-new {
    max-width: 52rem;
    margin: 1.4rem auto 0;
    color: rgba(245, 245, 220, 0.9);
    line-height: 1.85;
    font-size: 1.05rem;
}

.experience-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 820px;
    margin: 2rem auto 0;
}

.experience-hero-stat {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.experience-hero-stat strong {
    display: block;
    margin-bottom: 0.4rem;
    color: #d4af37;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.experience-hero-stat span {
    display: block;
    color: rgba(245, 245, 220, 0.86);
    line-height: 1.55;
    font-size: 0.94rem;
}

/* Experience Page - Tea Essence Section (New Design) */
.experience-tea-essence {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f5f5dc;
    overflow: hidden;
}

.experience-tea-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

@media (min-width: 1024px) {
    .experience-tea-container {
        padding: 5rem 2rem;
    }
}

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

@media (min-width: 1024px) {
    .experience-tea-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.experience-tea-content {
    display: flex;
    flex-direction: column;
}

.experience-tea-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e2b;
}

@media (min-width: 1024px) {
    .experience-tea-title {
        font-size: 3rem;
    }
}

.experience-tea-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: #d4af37;
    margin-bottom: 1.5rem;
}

.experience-tea-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.625;
    color: rgba(44, 62, 43, 0.8);
    margin-bottom: 1.5rem;
}

.experience-tea-quote {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.experience-tea-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.experience-tea-point {
    padding: 1.15rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(44, 62, 43, 0.08);
    box-shadow: 0 10px 28px rgba(44, 62, 43, 0.06);
}

.experience-tea-point strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #2c3e2b;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.experience-tea-point span {
    display: block;
    color: rgba(44, 62, 43, 0.72);
    line-height: 1.65;
}

.experience-tea-quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #6b7c5b;
    text-align: center;
    margin: 0;
}

.experience-tea-image-wrapper {
    position: relative;
}

.experience-tea-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.experience-tea-image-aspect {
    aspect-ratio: 1 / 1;
}

.experience-tea-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-tea-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.4) 0%, 
        transparent 100%);
}

.experience-tea-decorative-circle {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

/* Experience Page - Brewing Art Section (New Design) */
.experience-brewing {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: white;
    overflow: hidden;
}

.experience-brewing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

@media (min-width: 1024px) {
    .experience-brewing-container {
        padding: 5rem 2rem;
    }
}

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

@media (min-width: 1024px) {
    .experience-brewing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.experience-brewing-image-wrapper {
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .experience-brewing-image-wrapper {
        order: 1;
    }
}

.experience-brewing-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.experience-brewing-image-aspect {
    aspect-ratio: 4 / 5;
}

.experience-brewing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-brewing-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.5) 0%, 
        transparent 100%);
}

.experience-brewing-decorative-circle {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(107, 124, 91, 0.2);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.experience-brewing-content {
    order: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .experience-brewing-content {
        order: 2;
    }
}

.experience-brewing-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e2b;
}

@media (min-width: 1024px) {
    .experience-brewing-title {
        font-size: 3rem;
    }
}

.experience-brewing-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: #d4af37;
    margin-bottom: 1.5rem;
}

.experience-brewing-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.625;
    color: rgba(44, 62, 43, 0.8);
    margin-bottom: 1.5rem;
}

.experience-brewing-text-last {
    margin-bottom: 2rem;
}

.experience-brewing-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.experience-brewing-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #f5f5dc;
    padding: 1rem;
    border-radius: 0.5rem;
}

.experience-brewing-step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #d4af37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

.experience-brewing-step-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    color: #2c3e2b;
    margin: 0;
}

.experience-brewing-note {
    margin-top: 1.5rem;
    padding: 1.35rem 1.4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(107, 124, 91, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.18);
}

.experience-brewing-note strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e2b;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.experience-brewing-note p {
    margin: 0;
    color: rgba(44, 62, 43, 0.78);
    line-height: 1.7;
}

.experience-ritual-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fbf7ef 0%, #ffffff 100%);
}

.experience-ritual-header {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}

.experience-ritual-header .experience-divider {
    margin-left: auto;
    margin-right: auto;
}

.experience-ritual-header .experience-text {
    margin-bottom: 0;
}

.experience-ritual-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
}

.experience-ritual-card {
    padding: 1.8rem 1.5rem;
    border-radius: 1.25rem;
    background: white;
    border: 1px solid rgba(74, 124, 62, 0.08);
    box-shadow: 0 20px 36px rgba(59, 47, 47, 0.08);
}

.experience-ritual-index {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: #d4af37;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.experience-ritual-title {
    margin: 0 0 0.9rem;
    color: #3B2F2F;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.3;
}

.experience-ritual-text {
    margin: 0;
    color: rgba(59, 47, 47, 0.74);
    line-height: 1.75;
}

/* Experience Page - Connection Section (New Design) */
.experience-connection {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #f5f5dc 0%, #e8dcc0 100%);
    overflow: hidden;
}

.experience-connection-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

@media (min-width: 1024px) {
    .experience-connection-container {
        padding: 5rem 2rem;
    }
}

.experience-connection-wrapper {
    max-width: 80rem;
    margin: 0 auto;
}

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

.experience-connection-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e2b;
}

@media (min-width: 1024px) {
    .experience-connection-title {
        font-size: 3rem;
    }
}

.experience-connection-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: #d4af37;
    margin: 0 auto 2rem;
}

.experience-connection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .experience-connection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.experience-connection-card {
    position: relative;
}

.experience-connection-card-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.experience-connection-card-aspect {
    aspect-ratio: 1 / 1;
}

.experience-connection-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-connection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.6) 0%, 
        transparent 100%);
}

.experience-connection-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}

.experience-connection-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.experience-connection-card-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.experience-connection-box {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .experience-connection-box {
        padding: 3rem;
    }
}

.experience-connection-box-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.25rem;
    text-align: center;
    color: rgba(44, 62, 43, 0.8);
    line-height: 1.625;
    margin-bottom: 2rem;
}

.experience-connection-box-badge {
    display: block;
    background-color: #d4af37;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
}

.experience-moments-section {
    padding: 6rem 0;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f7f0e1 100%);
}

.experience-moments-header {
    max-width: 780px;
    margin: 0 auto 3rem;
    text-align: center;
}

.experience-moments-header .experience-divider {
    margin-left: auto;
    margin-right: auto;
}

.experience-moments-header .experience-text {
    margin-bottom: 0;
}

.experience-moments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.experience-moment-card {
    padding: 1.8rem;
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 18px 38px rgba(59, 47, 47, 0.08);
}

.experience-moment-time {
    margin: 0 0 0.8rem;
    color: #8f6b1d;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.experience-moment-title {
    margin: 0 0 0.85rem;
    color: #3B2F2F;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.3;
}

.experience-moment-text {
    margin: 0;
    color: rgba(59, 47, 47, 0.74);
    line-height: 1.78;
}

.experience-moments-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.experience-moments-feature-copy,
.experience-moments-feature-list {
    padding: 2rem;
    border-radius: 1.45rem;
}

.experience-moments-feature-copy {
    background: linear-gradient(135deg, #2c3e2b 0%, #3B2F2F 100%);
    color: rgba(245, 245, 220, 0.9);
    box-shadow: 0 22px 50px rgba(44, 62, 43, 0.16);
}

.experience-moments-feature-label {
    margin: 0 0 0.8rem;
    color: #d4af37;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.experience-moments-feature-copy h3 {
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.25;
    color: #f5f5dc;
}

.experience-moments-feature-copy p:last-child {
    margin: 0;
    line-height: 1.8;
}

.experience-moments-feature-list {
    display: grid;
    gap: 1rem;
    background: white;
    border: 1px solid rgba(74, 124, 62, 0.08);
    box-shadow: 0 18px 40px rgba(59, 47, 47, 0.08);
}

.experience-moments-feature-list div {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(74, 124, 62, 0.08);
}

.experience-moments-feature-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.experience-moments-feature-list strong {
    display: block;
    margin-bottom: 0.4rem;
    color: #3B2F2F;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
}

.experience-moments-feature-list span {
    color: rgba(59, 47, 47, 0.72);
    line-height: 1.7;
}

/* Experience Page - Section */
.experience-section {
    padding: 6rem 0;
    background-color: white;
}

.experience-section-alt {
    background: linear-gradient(to bottom, rgba(74, 124, 62, 0.05) 0%, white 100%);
}

@media (min-width: 1024px) {
    .experience-section {
        padding: 8rem 0;
    }
}

.experience-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .experience-container {
        padding: 0 2rem;
    }
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .experience-grid-reverse {
        direction: rtl;
    }
    
    .experience-grid-reverse > * {
        direction: ltr;
    }
}

.experience-image-wrapper {
    width: 100%;
}

.experience-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.experience-image:hover .experience-img {
    transform: scale(1.05);
}

.experience-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(59, 47, 47, 0.6) 0%, 
        transparent 100%);
}

.experience-content {
    display: flex;
    flex-direction: column;
}

.experience-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3B2F2F;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .experience-title {
        font-size: 3rem;
    }
}

.experience-divider {
    width: 8rem;
    height: 0.25rem;
    background: linear-gradient(to right, #4A7C3E, #E8C469);
    margin-bottom: 2rem;
}

.experience-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.125rem;
    color: rgba(59, 47, 47, 0.8);
    line-height: 1.625;
    margin-bottom: 2rem;
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.experience-list li {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    color: rgba(59, 47, 47, 0.7);
    padding-left: 1.5rem;
    position: relative;
}

.experience-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A7C3E;
    font-weight: bold;
}

/* Experience Page - Quotes Section (New Design) */
.experience-quotes {
    position: relative;
    padding: 5rem 0;
    background-color: #2c3e2b;
    color: white;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .experience-quotes {
        padding: 8rem 0;
    }
}

.experience-quotes-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.experience-quotes-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-quotes-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .experience-quotes-container {
        padding: 0 2rem;
    }
}

.experience-quotes-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-quotes-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-quotes-mark {
    font-size: 3.75rem;
    line-height: 1;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.experience-quotes-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.875rem;
    line-height: 1.625;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 1024px) {
    .experience-quotes-text {
        font-size: 2.25rem;
    }
}

.experience-quotes-divider {
    width: 4rem;
    height: 0.25rem;
    background-color: #d4af37;
    margin: 0 auto;
}

.experience-quotes-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 1rem;
}

@media (min-width: 1024px) {
    .experience-quotes-box {
        padding: 3rem;
    }
}

.experience-quotes-box-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.25rem;
    line-height: 1.625;
    color: #f5f5dc;
}

@media (min-width: 1024px) {
    .experience-quotes-box-text {
        font-size: 1.5rem;
    }
}

.experience-cta-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.experience-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.experience-cta-button.primary {
    background: #d4af37;
    color: #2c3e2b;
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.18);
}

.experience-cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5dc;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.experience-cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1023px) {
    .experience-hero-new {
        min-height: 450px;
        height: 80vh;
    }
}

@media (max-width: 767px) {
    .experience-hero-new {
        min-height: 400px;
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .experience-hero-new {
        min-height: 350px;
        height: 80vh;
    }
    
    .experience-hero-title-new {
        font-size: 2.5rem;
    }
    
    .experience-hero-subtitle-new {
        font-size: 1.25rem;
    }

    .experience-hero-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .experience-hero-description-new {
        font-size: 0.98rem;
        margin-top: 1.1rem;
    }

    .experience-hero-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .experience-tea-essence {
        min-height: auto;
    }
    
    .experience-tea-container {
        padding: 3rem 1rem;
    }
    
    .experience-tea-title {
        font-size: 1.875rem;
    }
    
    .experience-tea-text {
        font-size: 1rem;
    }

    .experience-tea-points {
        grid-template-columns: 1fr;
    }
    
    .experience-tea-quote-text {
        font-size: 1.125rem;
    }
    
    .experience-tea-decorative-circle {
        width: 6rem;
        height: 6rem;
        top: -1rem;
        right: -1rem;
    }
    
    .experience-brewing {
        min-height: auto;
    }
    
    .experience-brewing-container {
        padding: 3rem 1rem;
    }
    
    .experience-brewing-title {
        font-size: 1.875rem;
    }
    
    .experience-brewing-text {
        font-size: 1rem;
    }
    
    .experience-brewing-step-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.875rem;
    }
    
    .experience-brewing-step-text {
        font-size: 0.9375rem;
    }

    .experience-brewing-note {
        padding: 1.1rem 1rem;
    }
    
    .experience-brewing-decorative-circle {
        width: 6rem;
        height: 6rem;
        bottom: -1rem;
        left: -1rem;
    }
    
    .experience-connection {
        min-height: auto;
    }
    
    .experience-connection-container {
        padding: 3rem 1rem;
    }
    
    .experience-connection-header {
        margin-bottom: 2rem;
    }
    
    .experience-connection-title {
        font-size: 1.875rem;
    }
    
    .experience-connection-box {
        padding: 1.5rem;
    }
    
    .experience-connection-box-text {
        font-size: 1.125rem;
    }
    
    .experience-connection-box-badge {
        font-size: 0.9375rem;
        padding: 0.625rem 1.5rem;
    }

    .experience-ritual-section,
    .experience-moments-section {
        padding: 4rem 0;
    }

    .experience-ritual-grid,
    .experience-moments-grid,
    .experience-moments-feature {
        grid-template-columns: 1fr;
    }

    .experience-ritual-card,
    .experience-moment-card,
    .experience-moments-feature-copy,
    .experience-moments-feature-list {
        padding: 1.5rem;
    }

    .experience-ritual-title,
    .experience-moment-title {
        font-size: 1.3rem;
    }

    .experience-moments-feature-copy h3 {
        font-size: 1.7rem;
    }
    
    .experience-quotes {
        padding: 3rem 0;
    }
    
    .experience-quotes-content {
        gap: 1.5rem;
    }
    
    .experience-quotes-mark {
        font-size: 3rem;
    }
    
    .experience-quotes-text {
        font-size: 1.5rem;
    }
    
    .experience-quotes-box {
        padding: 1.5rem;
    }
    
    .experience-quotes-box-text {
        font-size: 1.125rem;
    }

    .experience-cta-inline {
        flex-direction: column;
    }

    .experience-cta-button {
        width: 100%;
        min-width: 0;
    }
    
    .experience-section {
        padding: 4rem 0;
    }
    
    .experience-grid {
        gap: 2rem;
    }
    
    .experience-title {
        font-size: 2rem;
    }
    
    .experience-text {
        font-size: 1rem;
    }
}

@media (max-width: 390px) {
    .experience-hero-title-new {
        font-size: 2rem;
    }
    
    .experience-hero-subtitle-new {
        font-size: 1.25rem;
    }
}

@media (max-width: 350px) {
    .experience-hero-title-new {
        font-size: 1.75rem;
    }
    
    .experience-hero-subtitle-new {
        font-size: 1.15rem;
    }
}

@media (max-width: 300px) {
    .experience-hero-title-new {
        font-size: 1.5rem;
    }
    
    .experience-hero-subtitle-new {
        font-size: 1rem;
    }
}

@media (max-width: 290px) {
    .experience-hero-title-new {
        font-size: 1.35rem;
    }
    
    .experience-hero-subtitle-new {
        font-size: 0.95rem;
    }
}
