:root {
    --dark-green: rgb(24, 49, 29);
    --light-green: rgb(205, 218, 208);
    --delicate-green-bg: rgb(244, 247, 244);
    --fluid-box: 1220px;
    --fluid-box-wider: 1376px;
}

html {
    scroll-behavior: smooth;
}

button, a, [role="button"] {
    cursor: pointer;
}

@font-face {
    font-family: "Jost";
    src: url("./fonts/Jost/Jost-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Jost";
    src: url("./fonts/Jost/Jost-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Jost";
    src: url("./fonts/Jost/Jost-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Jost";
    src: url("./fonts/Jost/Jost-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Jost";
    src: url("./fonts/Jost/Jost-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--dark-green);
}

/* NAVBAR */
.navbar {
    font-family: "Cormorant Garamond", sans-serif;
    background-color: white;
    border-bottom: 1px solid var(--light-green);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
}

.navbar-mobile {
    height: 64px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .navbar-mobile {
        padding: 0 32px;
    }
}

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

.navbar-mobile-logo {
    font-size: 22px;
    color: var(--dark-green);
    text-decoration: none;
}

.navbar-mobile-burger-btn {
    background-color: var(--light-green);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    padding: 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    border: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.navbar-mobile-burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--dark-green);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-mobile-burger-btn span:nth-child(2) {
    transition: opacity 0.3s ease;
}

.navbar-mobile-burger-btn span:last-child {
    width: 10px;
    transition: width 0.3s ease, transform 0.3s ease;
}

.navbar-mobile-burger-btn.active span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.navbar-mobile-burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.navbar-mobile-burger-btn.active span:last-child {
    width: 20px;
    transform: translateY(-6px) rotate(-45deg);
}

.menu-mobile {
    position: fixed;
    background: white;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 40;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.menu-mobile.active {
    transform: translateX(0);
}

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

.menu-mobile-list {
    margin: 0;
    padding: 64px 0 0;
    list-style-type: none;
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 18px;
}

.menu-mobile-list li {
    padding: 16px 24px;
    border-bottom: 1px solid var(--light-green);
}

.menu-mobile-list div {
    padding: 20px;
    border-bottom: 1px solid var(--light-green);
}

.menu-mobile-list div button {
    color: white;
    background: var(--dark-green);
    padding: 12px 28px;
    width: 100%;
    text-align: center;
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 18px;
    border: none;
}

.menu-mobile.active {
    transform: translateY(0);
}

.navbar-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .navbar-desktop {
        display: block;
        width: 100%;
        height: 88px;
        padding: 0 32px;
    }

    .navbar-desktop-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: var(--fluid-box);
        margin: 0 auto;
    }
}

.navbar-desktop-logo {
    font-size: 24px;
    color: var(--dark-green);
    text-decoration: none;
}

.navbar-desktop-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-desktop-list button {
    color: white;
    background: var(--dark-green);
    padding: 14px 28px;
    text-align: center;
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 18px;
    border: none;
}

/* HEADER */
.header {
    background: var(--delicate-green-bg);
    padding: 96px 24px 32px;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.header-max-size {
    max-width: var(--fluid-box);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

@media (min-width: 768px) {
    .header {
        padding: 112px 32px 48px;
    }

    .header-max-size {
        flex-direction: row;
        align-items: center;
    }
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

@media (min-width: 768px) {
    .header-content {
        width: 50%;
    }
}

.header-content h1 {
    font-size: 45px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

.header-content p {
    font-size: 20px;
    font-family: "Jost", sans-serif;
}

.header-date {
    margin-top: 8px;
}

.header-date-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-green);
    letter-spacing: 0.02em;
}

.header-countdown {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.header-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.header-countdown-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--dark-green);
    line-height: 1;
}

.header-countdown-label {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark-green);
    opacity: 0.7;
}

.header-content-action {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-content-action button {
    min-width: 144px;
    width: fit-content;
    color: white;
    background: var(--dark-green);
    padding: 14px 28px;
    text-align: center;
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 18px;
    border: none;
}

.header-content-action p {
    font-size: 18px;
    font-family: "Jost", sans-serif;
}

.header-image-container {
    width: 100%;
    border-radius: 512px;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 80vw;
    margin: 0 auto;
}

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

@media (min-width: 480px) {
    .header-image-container {
        width: 74vw;
    }
}

@media (min-width: 768px) {
    .header-image-container {
        width: 50%;
    }

    .header-content h1 {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .header-content h1 {
        font-size: 72px;
    }
}

/* RSVP */
.rsvp {
    padding: 64px 24px;
}

.rsvp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: var(--fluid-box);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .rsvp {
        padding: 96px 32px;
    }

    .rsvp-container {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .rsvp-container {
        gap: 96px;
    }
}

.rsvp-content {
    padding: 24px;
    background-color: var(--delicate-green-bg);
    border: 1px solid var(--dark-green);
    width: 100%;
}

@media (min-width: 768px) {
    .rsvp-content {
        order: 2;
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .rsvp-content {
        padding: 64px;
    }
}

.rsvp-content-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 4px 0;
}

.rsvp-content-header h2 {
    font-size: 32px;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 500;
}

@media (min-width: 768px) {
    .rsvp-content-header h2 {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .rsvp-content-header h2 {
        font-size: 52px;
    }
}

.rsvp-content-header p {
    font-size: 20px;
    font-family: "Jost", sans-serif;
}

.rsvp-content-line {
    width: 100%;
    height: 1px;
    background: var(--dark-green);
    margin: 24px 0;
}

.rsvp-content-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rsvp-content-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0;
}

.rsvp-content-item h3 {
    font-size: 24px;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 400;
}

@media (min-width: 768px) {
    .rsvp-content-header h3 {
        font-size: 28px;
    }
}

.rsvp-content-item p {
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.rsvp-content-item p span {
    display: block;
}

.rsvp-content-body p {
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.rsvp-content-body button {
    min-width: 144px;
    width: fit-content;
    color: white;
    background: var(--dark-green);
    padding: 14px 28px;
    text-align: center;
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 18px;
    border: none;
}

.rsvp-image-container {
    width: 100%;
    border-radius: 544px;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 66vw;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .rsvp-image-container {
        order: 1;
        width: 50%;
    }
}

.rsvp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
}

.localization {
    padding: 64px 24px;
}

@media (min-width: 768px) {
    .localization {
        padding: 96px 32px;
    }
}

@media (min-width: 1024px) {
    .localization {
        padding: 128px 32px;
    }
}

.localization-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: var(--fluid-box);
    margin: 0 auto;
}

.localization-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.localization-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    max-width: 608px;
    margin: 0 auto;
}

.localization-header h2 {
    font-size: 44px;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 500;
}

@media (min-width: 768px) {
    .localization-header h2 {
        font-size: 52px;
    }
}

@media (min-width: 1024px) {
    .localization-header h2 {
        font-size: 64px;
    }
}

.localization-header p {
    font-size: clamp(18px, 2.2vw, 24px);
    font-family: "Cormorant Garamond", sans-serif;
}

.localization-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

.localization-content-grid-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--delicate-green-bg);
    padding: 32px 48px;
    border-radius: 20px;
}

.localization-main-icon {
    color: var(--color-primary, currentColor);
}

.localization-main-icon svg {
    width: 36px;
    height: 36px;
}

.localization-title {
    font-size: 28px;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 400;
}

.localization-time {
    font-size: 14px;
    font-family: "Jost", sans-serif;
    display: flex;
    align-items: center;
}

.localization-place {
    font-size: 14px;
    font-family: "Jost", sans-serif;
    display: flex;
    align-items: center;
}

.localization-icons {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.localization-link {
    padding-top: 20px;
    cursor: pointer;
}

.information {
    padding: 64px 24px;
}

@media (min-width: 768px) {
    .information {
        padding: 96px 32px;
    }
}

@media (min-width: 1024px) {
    .information {
        padding: 128px 32px;
    }
}

.information-container {
    max-width: var(--fluid-box);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.information-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    max-width: 608px;
    margin: 0 auto;
}

.information-header h2 {
    font-size: 44px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

@media (min-width: 768px) {
    .information-header h2 {
        font-size: 52px;
    }
}

@media (min-width: 1024px) {
    .information-header h2 {
        font-size: 64px;
    }
}

.information-header p {
    font-size: clamp(18px, 2.2vw, 24px);
    font-family: "Cormorant Garamond", serif;
}

.information-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.information-card {
    background: var(--delicate-green-bg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
}

.information-item-icon {
    color: var(--color-primary, currentColor);
}

.information-item-icon svg {
    width: 32px;
    height: 32px;
}

.information-item-title {
    font-size: 28px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
}

.information-item-text {
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.schedule {
    padding: 64px 24px;
}

@media (min-width: 768px) {
    .schedule {
        padding: 96px 32px;
    }
}

@media (min-width: 1024px) {
    .schedule {
        padding: 128px 32px;
    }
}

.schedule-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: var(--fluid-box);
    margin: 0 auto;
}

.schedule-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    max-width: 608px;
    margin: 0 auto;
}

.schedule-header h2 {
    font-size: 44px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

.schedule-header p {
    font-size: clamp(18px, 2.2vw, 24px);
    font-family: "Cormorant Garamond", serif;
}

@media (min-width: 768px) {
    .schedule-header h2 {
        font-size: 52px;
    }
}

@media (min-width: 1024px) {
    .schedule-header h2 {
        font-size: 64px;
    }
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.schedule-card {
    background: var(--delicate-green-bg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 20px;
}

.schedule-card-icon {
    color: var(--color-primary, currentColor);
}

.schedule-card-icon svg {
    width: 32px;
    height: 32px;
}

.schedule-day-header {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.schedule-day-header:first-child {
    margin-top: 0;
}

.schedule-day-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--dark-green);
}

.schedule-day-date {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: var(--dark-green);
    opacity: 0.5;
    letter-spacing: 0.05em;
}

.schedule-card-time {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--dark-green);
    line-height: 1;
}

.schedule-card-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-green);
    margin: 0;
}

.schedule-card-desc {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: var(--dark-green);
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
}

.parallax-section {
    min-height: 400px;
    background-image: url("assets/weselewsieci-theme-photo-00013.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-content {
    text-align: center;
    color: white;
}

.parallax-overlay {
    background: rgba(44, 44, 44, 0.6);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.parallax-subtitle {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
    color: white;
}

.parallax-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
}

.story {
    padding: 64px 24px;
}

@media (min-width: 768px) {
    .story {
        padding: 96px 32px;
    }
}

@media (min-width: 1024px) {
    .story {
        padding: 128px 32px;
    }
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: var(--fluid-box-wider);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .story-container {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .story-container {
        gap: 48px;
    }
}

.story-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.story-header h2 {
    font-size: 40px;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 500;
}

@media (min-width: 768px) {
    .story-header h2 {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .story-header {
        min-width: 364px;
    }

    .story-header h2 {
        font-size: 60px;
    }
}

.story-header button {
    min-width: 144px;
    width: fit-content;
    color: white;
    background: var(--dark-green);
    padding: 14px 28px;
    text-align: center;
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.story-header button:hover {
    opacity: 0.85;
}

.story-gallery {
    display: grid;
    max-width: 800px;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 26px;
}

@media (min-width: 480px) {
    .story-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .story-gallery {
        gap: 24px;
    }
}

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

.story-gallery-image-container {
    width: 100%;
    aspect-ratio: 3.35/4;
    background: white;
    padding: 6px 6px 30px 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px #24160721,
    0 3px 12px #47380224;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease,
    transform 0.6s ease;
}

.story-gallery-image-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 480px) {
    .story-gallery-image-container {
        margin: 0;
    }
}

.story-gallery-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Story Modal */
.story-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.story-modal-hidden {
    opacity: 0;
    pointer-events: none;
}

.story-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.story-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px 40px;
}

@media (max-width: 640px) {
    .story-modal-content {
        padding: 32px 24px;
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        align-self: flex-end;
    }
}

.story-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--light-green);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.story-modal-close:hover {
    color: var(--dark-green);
}

.story-modal-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--dark-green);
    margin-bottom: 40px;
    text-align: center;
}

.story-modal-milestones {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-milestone {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

@media (max-width: 640px) {
    .story-milestone {
        flex-direction: column;
        gap: 16px;
    }
}

.story-milestone-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 640px) {
    .story-milestone-image {
        width: 100%;
        height: 200px;
    }
}

.story-milestone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-milestone-body {
    flex: 1;
}

.story-milestone-date {
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--dark-green);
    opacity: 0.5;
    display: block;
    margin-bottom: 6px;
}

.story-milestone-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.story-milestone-desc {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-green);
    opacity: 0.7;
}

.faq {
    padding: 64px 24px;
}

.faq h2 {
    font-size: 44px;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 500;
}

@media (min-width: 480px) {
    .faq h2 {
        font-size: 48px;
    }
}

@media (min-width: 768px) {
    .faq {
        padding: 96px 32px;
    }

    .faq h2 {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .faq {
        padding: 128px 32px;
    }

    .faq h2 {
        font-size: 64px;
        width: 40%;
    }
}

.faq-container {
    max-width: var(--fluid-box);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 1024px) {
    .faq-container {
        flex-direction: row;
    }
}

.faq-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 1024px) {
    .faq-accordion {
        width: 60%;
    }
}

.accordion-item {
    max-width: 100%;
    background: var(--delicate-green-bg);
    border-radius: 16px;
    border: 1px solid var(--light-green);
}

.accordion-header {
    text-align: left;
    font-family: "Cormorant Garamond", sans-serif;
    cursor: pointer;
    border: none;
    font-size: 22px;
    width: 100%;
    background: transparent;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .accordion-header {
        padding: 32px;
    }
}

.accordion-icon {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.icon-circle,
.icon-plus {
    position: absolute;
    top: 0;
    left: 0;
}

.icon-vertical {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.accordion-item.active .icon-vertical {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content div {
    padding: 20px;
    font-size: 18px;
    font-family: "Jost", sans-serif;
}

@media (min-width: 1024px) {
    .accordion-content div {
        padding: 32px;
    }
}

.quote {
    padding: 64px 24px;
    font-size: 44px;
    font-style: italic;
    max-width: var(--fluid-box);
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
}

.quote-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 100px;
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 20px;
}

.quote-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-style: italic;
    color: var(--dark-green);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer {
    background: var(--delicate-green-bg);
    padding: 64px 24px 48px;
}

@media (min-width: 768px) {
    .footer {
        padding: 92px 32px 32px;
    }
}

.footer-container {
    max-width: var(--fluid-box);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-top-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 369px;
}

.footer-top-content h4 {
    font-size: 22px;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 400;
}

.footer-top-content p {
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.footer-top-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 19px;
    font-family: "Cormorant Garamond", sans-serif;
}

@media (min-width: 768px) {
    .footer-top-links {
        text-align: right;
    }
}

.footer-top-links a {
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.footer-bottom-links a {
    text-decoration: none;
}

.footer-bottom-copyrights {
    font-size: 16px;
    font-family: "Jost", sans-serif;
}

.footer-bottom-copyrights span a {
    text-decoration: none;
}

/* TRAVEL */
.travel {
    padding: 64px 24px;
}

@media (min-width: 768px) {
    .travel {
        padding: 96px 32px;
    }
}

@media (min-width: 1024px) {
    .travel {
        padding: 128px 32px;
    }
}

.travel-container {
    max-width: var(--fluid-box);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.travel-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    max-width: 608px;
    margin: 0 auto;
}

.travel-header h2 {
    font-size: 44px;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 500;
}

@media (min-width: 768px) {
    .travel-header h2 {
        font-size: 52px;
    }
}

@media (min-width: 1024px) {
    .travel-header h2 {
        font-size: 64px;
    }
}

.travel-header p {
    font-size: clamp(18px, 2.2vw, 24px);
    font-family: "Cormorant Garamond", sans-serif;
}

.travel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.travel-card {
    background: var(--delicate-green-bg);
    border: 1px solid var(--light-green);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(24, 49, 29, 0.1);
}

.travel-icon {
    color: var(--dark-green);
}

.travel-icon svg {
    width: 36px;
    height: 36px;
}

.travel-card-title {
    font-size: 24px;
    font-family: "Cormorant Garamond", sans-serif;
    font-weight: 400;
}

.travel-card-text {
    font-size: 16px;
    font-family: "Jost", sans-serif;
    line-height: 1.6;
}

.footer-brand {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
}

.footer-brand a {
    color: rgba(0, 0, 0, 0.35);
}
