*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #FFFFFF;
    --bg-alt: #FDF8F4;
    --text: #1C1410;
    --muted: #7A6B5D;
    --amber: #C8901A;
    --amber-lt: #FFF0D4;
    --peach: #F0A96A;
    --border: #EDE8E3;
    --glass-bg: rgba(255, 255, 255, 0.72);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── Floating Notes ─────────────────────────────────── */
#notes-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.note {
    position: absolute;
    background: linear-gradient(135deg, #640000, var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    filter: blur(0.6px);
    animation: floatUp var(--dur, 18s) var(--delay, 0s) linear infinite;
    user-select: none;
}

@keyframes floatUp {
    0% {
        transform: translateY(105vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 0.13;
    }
    90% {
        opacity: 0.13;
    }
    100% {
        transform: translateY(-15vh) translateX(var(--drift, 18px)) rotate(var(--rot, 200deg));
        opacity: 0;
    }
}

/* ── Utility ─────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.label {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #640000;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #640000, var(--peach));
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3.5s infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(200, 144, 26, 0.35);
}

@keyframes shimmer {
    100% {
        left: 180%;
    }
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #640000;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 100px;
    border: 1.5px solid #640000;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-outline:hover {
    background: rgba(200, 144, 26, 0.08);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 144, 26, 0.14);
    box-shadow: var(--shadow);
}

/* ── Reveal animation ───────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.22s;
}

.reveal-delay-3 {
    transition-delay: 0.34s;
}

/* ── DIVIDER ─────────────────────────────────────────── */
.divider {
    display: flex;
    justify-content: center;
    padding: 48px 0;
    position: relative;
    z-index: 2;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(200, 144, 26, 0.12);
}

.nav-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #640000;
    letter-spacing: 0.12em;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #640000;
}

/* ── HERO ─────────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

#hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(253, 248, 244, 0.45) 0%, rgba(253, 248, 244, 0.1) 40%, rgba(255, 255, 255, 0.72) 100%),
    radial-gradient(ellipse at 50% 60%, rgba(200, 144, 26, 0.08) 0%, transparent 70%);
}

#hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 24px;
    padding-top: 80px;
}

#hero-content h1 {
    font-size: clamp(52px, 8vw, 88px);
    line-height: 1.05;
    color: var(--text);
    margin: 18px 0 22px;
}

#hero-content h1 em {
    font-style: italic;
    color: #640000;
}

#hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-event-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero-event-pill .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #640000;
}

.hero-scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, #640000, transparent);
    z-index: 2;
}

/* ── CONTRAST SECTION ───────────────────────────────── */
#contrast {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.contrast-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contrast-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contrast-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contrast-copy h2 {
    font-size: clamp(30px, 3.5vw, 42px);
    line-height: 1.2;
    margin: 14px 0 20px;
}

.contrast-copy p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 28px;
}

.check-list {
    list-style: none;
    margin-bottom: 36px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--amber-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    color: #640000;
    margin-top: 1px;
}

/* ── BENTO GRID ─────────────────────────────────────── */
#pillars {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 14px 0 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.bento-card {
    border-radius: 24px;
    overflow: hidden;
    background: #FFC793;
    border: 1px solid var(--border);
}

.bento-main {
    grid-row: span 2;
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.bento-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 20, 16, 0.72) 0%, transparent 55%);
}

.bento-main-body {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: #fff;
}

.bento-badge {
    display: inline-block;
    background: #640000;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.bento-main-body h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.bento-main-body p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 340px;
}

.bento-sm {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-sm.accent {
    background: var(--amber-lt);
    border-color: rgba(200, 144, 26, 0.2);
}

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(200, 144, 26, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.bento-sm h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.bento-sm p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── TIMELINE ───────────────────────────────────────── */
#timeline {
    padding: 100px 0;
    background: var(--bg-alt);
    position: relative;
    z-index: 2;
}

#timeline h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 44px);
    font-style: italic;
    margin-bottom: 64px;
}

.tl-wrap {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    padding-left: 48px;
}

.tl-wrap::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    background: linear-gradient(to bottom, #640000, rgba(200, 144, 26, 0.1));
}

.tl-item {
    position: relative;
    margin-bottom: 56px;
}

.tl-item:last-child {
    margin-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -44px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #640000;
    border: 3px solid var(--bg-alt);
    box-shadow: 0 0 0 2px #640000;
}

.tl-time {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #640000;
    margin-bottom: 6px;
}

.tl-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.tl-item p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── TESTIMONIALS ───────────────────────────────────── */
#voices {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
    z-index: 2;
}

.voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.quote-card {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.quote-mark {
    font-family: 'Manrope', sans-serif;
    font-size: 100px;
    line-height: 1;
    color: #640000;
    opacity: 0.12;
    position: absolute;
    top: 8px;
    left: 24px;
    font-weight: 700;
}

.quote-card blockquote {
    font-size: 16px;
    font-style: italic;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    z-index: 1;
}

/* ── REGISTRATION ───────────────────────────────────── */
#reserve {
    padding: 100px 0;
    background: var(--bg-alt);
    position: relative;
    z-index: 2;
}

.reserve-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.reserve-left h2 {
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.1;
    margin: 14px 0 20px;
}

.reserve-left h2 em {
    font-style: italic;
    color: #640000
}

.reserve-left p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.event-detail-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(200, 144, 26, 0.07);
    border: 1px solid rgba(200, 144, 26, 0.2);
}

.event-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--amber-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.event-detail-card .ev-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #640000;
    margin-bottom: 4px;
}

.event-detail-card .ev-date {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    color: var(--text);
}

.event-detail-card .ev-place {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}

.form-card {
    background: var(--bg);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border);
}

.form-card h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 36px;
}

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.form-field input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border);
    padding: 10px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.form-field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border);
    padding: 10px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.form-field input::placeholder {
    color: rgba(122, 107, 93, 0.4);
}

.form-field input:focus {
    border-color: #640000;
}

.btn-full {
    width: 100%;
    margin-top: 12px;
    padding: 16px;
    font-size: 12px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
    opacity: 0.7;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    color: #640000;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 13px;
    color: var(--muted);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #640000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: #640000;
}

/* ── RADIAL GLOW ────────────────────────────────────── */
.glow-center {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(200, 144, 26, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .contrast-inner,
    .bento {
        grid-template-columns: 1fr;
    }

    .bento-main {
        min-height: 360px;
    }

    .bento-card {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .voices-grid,
    .reserve-inner,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 32px;
    font-size: 16px;
    color: #640000;
    font-family: 'Manrope', sans-serif;
    font-style: italic;
}

/* ── MUSIC + MEDITATION SECTION ───────────────────────── */

#music-meditation{
    padding:100px 0;
    background:#fff;
    position:relative;
    z-index:2;
}

#music-meditation h2{
    font-size:clamp(34px,4vw,56px);
    color:#005b7f;
    font-style:italic;
}

.journey-card{
    max-width:700px;
    margin:40px auto 60px;
    padding:20px 30px;
    text-align:center;
    border-radius:16px;
    background:#f8fbfd;
    border:1px solid rgba(0,91,127,0.1);
}

.journey-card p{
    font-family: 'Manrope', sans-serif;
    font-style:italic;
    color:#005b7f;
    font-size:20px;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-bottom:60px;
}

.benefit-card{
    background:#fff;
    border:1px solid #edf0f2;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:all .3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.benefit-icon{
    font-size:34px;
    margin-bottom:15px;
}

.benefit-card h3{
    font-size:20px;
    color:#2d6e7f;
    margin-bottom:10px;
}

.benefit-card p{
    font-size:14px;
    color:var(--muted);
    line-height:1.6;
}

.music-copy{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.music-copy p{
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
    margin-bottom:18px;
}

.music-copy strong{
    color:#005b7f;
}

@media(max-width:992px){
    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .benefits-grid{
        grid-template-columns:1fr;
    }

    .journey-card p{
        font-size:18px;
    }
}

/* ===== SAHAJA YOGA INTRO ===== */

#sahaja-intro{
    padding:120px 0;
    background:#f8f8f8;
}

#sahaja-intro .section-header{
    text-align:center;
    margin-bottom:80px;
}

#sahaja-intro .section-header h2{
    font-family: 'Manrope', sans-serif;
    font-size:48px;
    font-weight:600;
    color:#640000;
    text-align:center;
    line-height:1.2;
    margin-bottom:50px;
}

.intro-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
}

.intro-card{
    text-align:center;
}

.intro-icon{
    font-size:48px;
    margin-bottom:25px;
    opacity:.6;
}

.intro-card h3{
    /*font-family:'Manrope',sans-serif;*/
    font-size:2.2rem;
    font-weight:300;
    line-height:1.3;
    color:#640000;
    margin-bottom:30px;
}

.intro-card p{
    font-size:1.15rem;
    line-height:2;
    color:#640000;
    text-align:left;
}

.intro-card span{
    color:#640000;
    font-weight:500;
}

/* Mobile */
@media (max-width:991px){

    #sahaja-intro{
        padding:80px 0;
    }

    #sahaja-intro .section-header h2{
        font-size:2rem;
    }

    .intro-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .intro-card h3{
        font-size:1.8rem;
    }

    .intro-card p{
        text-align:center;
        font-size:1rem;
        line-height:1.8;
    }
}

        /* =========================
   ORIGIN OF SAHAJA YOGA
========================= */

#origin-sahaja {
    background: #f4f4f4;
    padding: 110px 0;
}

.origin-title {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 80px;
}

.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.origin-content p {
    font-size: 1.35rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.origin-content .highlight {
    color: #6a8c3d;
}

.origin-btn {
    display: inline-block;
    margin-top: 25px;
    background: #597843;
    color: #fff;
    padding: 18px 42px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}

.origin-btn:hover {
    background: #4c6638;
}

.origin-image-wrap {
    position: relative;
    min-height: 500px;
}

.origin-bg-card {
    position: absolute;
    top: 0;
    left: 40px;
    width: 78%;
    height: 68%;
    background: linear-gradient(
        135deg,
        #f6d51c,
        #d7bf1c,
        #7d8f26
    );
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.origin-image {
    position: absolute;
    right: 0;
    top: 40px;
    width: 88%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.origin-leaf {
    position: absolute;
    right: 15px;
    bottom: -15px;
    width: 80px;
    height: 80px;
}

@media (max-width: 992px) {
    .origin-grid {
        grid-template-columns: 1fr;
    }

    .origin-title {
        font-size: 2.2rem;
    }

    .origin-image-wrap {
        min-height: 420px;
    }
}
