.story-page {
    background:
        radial-gradient(circle at top left, rgba(255, 210, 120, 0.18), transparent 32rem),
        linear-gradient(180deg, #fff8e8 0%, #f7ead1 42%, #fff8ec 100%);
    color: #2d1b10;
    overflow: hidden;
}

.story-hero {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 90px;
    background:
        linear-gradient(rgba(30, 12, 2, 0.45), rgba(30, 12, 2, 0.65)),
        url("../images/wood-bg.jpg");
    background-size: cover;
    background-position: center;
}

.story-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 210, 130, 0.2), transparent 36rem),
        linear-gradient(180deg, transparent 0%, rgba(64, 20, 4, 0.72) 100%);
    pointer-events: none;
}

.story-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: storyFloatIn 0.9s ease both;
}

.story-kicker {
    margin: 0 0 12px;
    color: #dca73a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
}

.story-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 9vw, 7.5rem);
    color: #fff6de;
    line-height: 0.95;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.story-hero p {
    max-width: 760px;
    margin: 24px auto 0;
    color: #fff3d2;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    line-height: 1.65;
}

.story-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.story-btn.primary {
    background: #9e142b;
    color: #fff;
    box-shadow: 0 14px 30px rgba(158, 20, 43, 0.35);
}

.story-btn.secondary {
    background: rgba(255, 246, 222, 0.92);
    color: #421908;
}

.story-intro {
    max-width: 1180px;
    margin: -70px auto 0;
    padding: 0 20px 70px;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.story-intro-card,
.timeline-card,
.value-card,
.contact-panel,
.map-card,
.newsletter-card {
    background: rgba(255, 252, 243, 0.92);
    border: 1px solid rgba(108, 54, 18, 0.16);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(68, 28, 4, 0.16);
}

.story-intro-card {
    padding: clamp(28px, 5vw, 52px);
}

.story-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #fff1c8;
    font-size: 2rem;
    margin-bottom: 18px;
}

.story-intro-card h2,
.section-heading h2,
.story-message h2,
.visit-info h2,
.newsletter-card h2 {
    margin: 0;
    color: #431b0b;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.05;
}

.story-intro-card p,
.timeline-card p,
.value-card p,
.story-message p,
.contact-panel p,
.newsletter-card p {
    color: #60412d;
    line-height: 1.72;
    font-size: 1.02rem;
}

.story-photo-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.story-photo {
    border: none;
    padding: 0;
    overflow: hidden;
    border-radius: 26px;
    min-height: 190px;
    cursor: pointer;
    box-shadow: 0 20px 42px rgba(61, 24, 3, 0.18);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-photo:first-child {
    grid-row: span 2;
}

.story-photo:hover {
    transform: rotate(-1deg) scale(1.03);
    box-shadow: 0 24px 60px rgba(61, 24, 3, 0.25);
}

.story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Timeline */
.story-timeline-section {
    padding: 70px 20px;
    background:
        linear-gradient(rgba(72, 26, 7, 0.92), rgba(72, 26, 7, 0.94)),
        url("../images/wood-bg.jpg");
    background-size: cover;
    background-attachment: fixed;
}

.section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 46px;
}

.section-heading h2 {
    color: #fff2d2;
}

.story-timeline {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 38px;
    width: 4px;
    background: linear-gradient(#dca73a, #9e142b);
    border-radius: 999px;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-dot {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #dca73a;
    color: #421908;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 1000;
    font-size: 1.4rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.timeline-card {
    padding: 28px;
}

.timeline-card h3 {
    margin: 0 0 10px;
    color: #8b1025;
    font-size: 1.45rem;
}

/* Value cards */
.story-values {
    max-width: 1180px;
    margin: 0 auto;
    padding: 78px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.value-card {
    padding: 32px;
    text-align: center;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card span {
    font-size: 2.6rem;
}

.value-card h3 {
    color: #421908;
    margin: 18px 0 8px;
    font-size: 1.35rem;
}

/* Message */
.story-message {
    max-width: 1080px;
    margin: 0 auto 80px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-message-content {
    border-radius: 34px;
    padding: clamp(34px, 6vw, 70px);
    background:
        radial-gradient(circle at right, rgba(220, 167, 58, 0.26), transparent 25rem),
        linear-gradient(135deg, #fff7df, #f3d59a);
    border: 1px solid rgba(112, 56, 18, 0.14);
    box-shadow: 0 28px 80px rgba(68, 28, 4, 0.16);
}

/* Visit */
.visit-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 26px;
    align-items: stretch;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visit-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-panel {
    padding: 26px;
    margin-top: 22px;
}

.contact-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(80, 39, 12, 0.12);
}

.contact-row span {
    width: 44px;
    height: 44px;
    background: #fff0c8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-row strong,
.hours-box > strong {
    color: #421908;
}

.contact-row p {
    margin: 4px 0 0;
}

.contact-row a {
    color: #9e142b;
    font-weight: 800;
}

.hours-box {
    margin-top: 18px;
    padding: 18px;
    background: #fff6df;
    border-radius: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 0;
    color: #6c503e;
}

.hours-row.open strong {
    color: #2c6c38;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    text-decoration: none;
    background: #421908;
    color: #fff6de;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: #9e142b;
}

.map-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.directions-btn {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    background: #9e142b;
    color: #fff;
    text-decoration: none;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 1000;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

/* Newsletter */
.newsletter-section {
    padding: 30px 20px 100px;
}

.newsletter-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(30px, 5vw, 54px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: center;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background:
        radial-gradient(circle at left, rgba(158, 20, 43, 0.14), transparent 22rem),
        rgba(255, 252, 243, 0.96);
}

.newsletter-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-form {
    display: grid;
    gap: 12px;
}

.newsletter-form input {
    width: 100%;
    border: 1px solid rgba(80, 39, 12, 0.18);
    background: #fff;
    color: #321608;
    border-radius: 16px;
    min-height: 52px;
    padding: 0 16px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: #9e142b;
    box-shadow: 0 0 0 4px rgba(158, 20, 43, 0.12);
}

.newsletter-form button {
    min-height: 52px;
    border: none;
    border-radius: 16px;
    background: #9e142b;
    color: #fff;
    font-weight: 1000;
    cursor: pointer;
    font-size: 1rem;
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: wait;
}

.subscribe-message {
    min-height: 22px;
    margin: 0;
    font-weight: 800;
}

.subscribe-message.success {
    color: #2c6c38;
}

.subscribe-message.error {
    color: #9e142b;
}

/* Photo modal */
.story-photo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(25, 10, 3, 0.86);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.story-photo-modal.active {
    display: flex;
}

.story-photo-modal img {
    max-width: min(100%, 1000px);
    max-height: 82vh;
    border-radius: 26px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
    background: #fff;
}

.story-photo-close {
    position: absolute;
    top: 22px;
    right: 26px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #fff6de;
    color: #421908;
    font-size: 2rem;
    cursor: pointer;
}

/* Animation */
@keyframes storyFloatIn {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 950px) {
    .story-intro,
    .visit-section,
    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .story-values {
        grid-template-columns: 1fr;
    }

    .map-card,
    .map-card iframe {
        min-height: 420px;
    }
}

@media (max-width: 650px) {
    .story-hero {
        min-height: 68vh;
        padding-top: 90px;
    }

    .story-intro {
        margin-top: -38px;
    }

    .story-photo-stack {
        grid-template-columns: 1fr;
    }

    .story-photo:first-child {
        grid-row: auto;
    }

    .story-timeline::before {
        left: 25px;
    }

    .timeline-item {
        grid-template-columns: 54px 1fr;
        gap: 14px;
    }

    .timeline-dot {
        width: 52px;
        height: 52px;
        font-size: 1rem;
    }

    .timeline-card {
        padding: 20px;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }

    .hours-row {
        font-size: 0.95rem;
    }
}