@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Caveat:wght@400;700&family=Bricolage+Grotesque:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal: #2a2018;
    --cream: #F5F0E8;
    --heavy-ceam: #fbf1d6;
    --dark-coral: #D1523A;
    --green: #3f7530;
    --orange: #e85a3c;
    --dark-brown: #562601;
    --light-text: #5A5A5A;
    --white: #FFFFFF;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 20px;
    background-color: #fef7e2;
    color: var(--light-text);
    line-height: 1.5;
    overflow-x: hidden;
}

/* DECORATIVE FLOATING BLOBS */
#blob-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

header, section, footer {
    position: relative;
    z-index: 1;
}

.deco-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: blobFloat 8s ease-in-out infinite;
}

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

/* HEADINGS */
h3, h5, h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
}

h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--charcoal);
    font-size: 80px;
    font-weight: 1000;
    line-height: 1.1;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--charcoal);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--charcoal);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

h4 {
    font-family: 'Caveat', cursive;
    color: var(--orange);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
}

h6 {
    font-family: 'Caveat', cursive;
    color: var(--orange);
    font-size: 114px;
    font-weight: 600;
    line-height: 0.7;
    display: inline;
    margin: 0;
}

@media (max-width: 480px) {
    h1 {
        font-size: 58px;
    }
}

/* ─────────────────────────────────────────────────────────
   HEADER / NAVIGATION
───────────────────────────────────────────────────────── */
header {
    background-color: var(--white);
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: bold;
    font-size: 24px;
    color: var(--green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-brown);
    border-radius: 2px;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--light-text);
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--orange);
}

.cta-btn {
    background-color: var(--orange);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: var(--dark-coral);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 0.5rem 0;
        border-bottom: 1px solid #E0D5CC;
    }
}

/* ─────────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* WAVY UNDERLINE */
.wavy-underline-orange {
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20'%3E%3Cpath d='M0,10 C25,0 75,20 100,10 C125,0 175,20 200,10' stroke='%23e85a3c' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 14px;
    padding-bottom: 10px;
}

.wavy-underline {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20'%3E%3Cpath d='M0,10 C17,0 50,20 67,10 C84,0 117,20 134,10 C150,0 150,30 310,10' stroke='%233f7530' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 80% 20px;
    padding-bottom: 10px;
    color: var(--green);
}

.wildly {
    font-family: 'Caveat', cursive;
    font-size: 110px;
    font-weight: 700;
    line-height: 1;
}

.hero-p {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--charcoal);
    color: white;
}

.hero-image {
    width: 100%;
    max-width: 560px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
    padding: 100px 70px 20px 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* POLAROID */
.polaroid-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 480px;
}

.polaroid {
    background: #fff;
    padding: 12px 12px 30px 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18), 0 2px 10px rgba(0,0,0,0.08);
    transform: rotate(5deg);
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
}

.polaroid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
}

.polaroid-caption {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 30px;
    color: #5a4a3a;
    padding-top: 10px;
    line-height: 1.5;
}

.rotating-badge {
    position: absolute;
    top: -35px;
    right: -70px;
    width: 150px;
    height: 150px;
    animation: rotateBadge 12s linear infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        justify-self: end;
        padding: 16px 80px 20px 30px;
    }

    .polaroid-wrapper {
        max-width: 380px;
    }

    .rotating-badge {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 80px;
        line-height: 1;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        justify-self: end;
        width: 100%;
        max-width: 100%;
        padding: 12px 70px 30px 16px;
    }

    .polaroid-wrapper {
        max-width: 600px;
        width: 100%;
        margin: 0 0 0 auto;
    }

    .rotating-badge {
        width: 135px;
        height: 135px;
        top: -15px;
        right: -65px;
    }

    .polaroid-caption {
        font-size: 22px;
    }
}

/* ─────────────────────────────────────────────────────────
   FEATURES SECTION
───────────────────────────────────────────────────────── */
.features {
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto 16px;
}

.features-bar {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    background-color: var(--heavy-ceam);
    border-radius: 20px;
    padding: 24px 30px;
    gap: 14px;
}

.feature-stat {
    display: flex;
    gap: 14px;
    flex: 1 1 0;
    min-width: 25%;
    padding-left: 32px;
}

.feature-stat:first-child {
    padding-left: 0;
}

.feature-stat + .feature-stat {
    border-left: 1px solid rgba(0,0,0,0.08);
}

.feature-emoji {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    align-self: stretch;
    margin-top: 0;
    margin: 0;
    flex: 1;
}

@media (max-width: 1024px) {
    .features-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 60px;
        gap: 20px;
        margin-left: 100px;
        margin-right: 100px;
    }

    .feature-stat {
        width: 100%;
        min-width: 100%;
    }

    .feature-stat + .feature-stat {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.08);
        padding-left: 0;
        padding-top: 20px;
    }

    .feature-emoji {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .features-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 50px;
        gap: 20px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .feature-stat {
        min-width: 100%;
    }

    .feature-stat + .feature-stat {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.08);
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }
}

/* ─────────────────────────────────────────────────────────
   QUICK NOTE SECTION
───────────────────────────────────────────────────────── */
.quick-note {
    padding: 3rem 1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quick-note h2 .green-bold {
    color: var(--green);
    font-family: 'Bricolage Grotesque', sans-serif;
}

h1 .green-bold {
    color: var(--green);
    font-family: 'Bricolage Grotesque', sans-serif;
}

h1 .orange-bold {
    color: var(--orange);
    font-family: 'Bricolage Grotesque', sans-serif;
}

.quick-note h2 .highlight {
    color: var(--orange);
    font-family: 'Caveat', cursive;
    font-size: 69px;
    line-height: 0.6;
}


@media (max-width: 1024px) {
    .quick-note h2 {
        font-size: 42px;
    }

    .quick-note h2 .highlight {
        font-size: 62px;
        line-height: 0.6;
    }
}

@media (max-width: 768px) {
    .quick-note h2 {
        font-size: 42px;
    }

    .quick-note h2 .highlight {
        font-size: 60px;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .quick-note h2 .highlight {
        font-size: 56px;
        line-height: 1;
    }
}

/* ─────────────────────────────────────────────────────────
   FOUR IDEAS SECTION
───────────────────────────────────────────────────────── */
.ideas {
    padding: 80px 16px;
    text-align: center;
    background-color: var(--heavy-ceam);
}

.ideas-inner {
    max-width: 1200px;
    margin: 0 auto;
}


.ideas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.idea-card {
    background-color: white;
    padding: 28px;
    border-radius: 16px;
    text-align: left;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.idea-card:nth-child(odd) {
    transform: rotate(-1.5deg);
}

.idea-card:nth-child(even) {
    transform: rotate(1.5deg);
}

.idea-card:hover {
    transform: rotate(0deg);
    border-color: var(--card-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.idea-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.idea-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.idea-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .ideas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .idea-card:nth-child(odd),
    .idea-card:nth-child(even) {
        transform: rotate(0deg);
    }
}

@media (max-width: 480px) {
    .ideas-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────
   ROOMS SECTION
───────────────────────────────────────────────────────── */
.rooms {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 800px;
    margin: 40px auto 0;
}

.room-card {
    background-color: white;
    padding: 16px 16px 40px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    text-align: left;
    border-radius: 12px;
}

.room-card:nth-child(odd) {
    transform: rotate(-2deg);
}

.room-card:nth-child(even) {
    transform: rotate(2deg);
}

.room-card:hover {
    transform: rotate(0deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-image {
    width: 100%;
    height: 280px;
    background-color: #D3C4B8;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.room-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

.room-info {
    padding: 24px 8px 0;
}

.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag-orange {
    background-color: #e8f4e2;
    color: var(--light-text);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 12px;
}

.tag-green {
    background-color: #faded8;
    color: var(--light-text);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 12px;
}

@media (max-width: 1024px) {
    .rooms-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .room-card:nth-child(odd),
    .room-card:nth-child(even) {
        transform: rotate(0deg);
    }

    .room-image {
        height: 200px;
    }
}

/* ─────────────────────────────────────────────────────────
   TIMELINE SECTION
───────────────────────────────────────────────────────── */
.timeline-section {
    padding: 80px 16px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.timeline-section h4 {
    margin-bottom: 0;
}


.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 35px;
    bottom: 35px;
    transform: translateX(-50%);
    width: 0;
    border-left: 3px dashed rgba(232, 90, 60, 0.25);
    z-index: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 24px;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.tl-icon-wrap {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.tl-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.tl-left .tl-card {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    transform: rotate(-2deg);
}

.tl-right .tl-card {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    transform: rotate(2deg);
}

.tl-card {
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.tl-time {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.tl-card h3 {
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 6px;
}

.tl-card p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 28px;
        transform: none;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 16px;
    }

    .tl-icon-wrap {
        grid-column: 1;
        grid-row: 1;
    }

    .tl-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .tl-left .tl-card,
    .tl-right .tl-card {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }
}

/* ─────────────────────────────────────────────────────────
   STAFF SECTION
───────────────────────────────────────────────────────── */
.staff {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.staff h4 {
    text-align: center;
}

.staff h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.staff-card {
    text-align: center;
}

.staff-image {
    width: 100%;
    height: 200px;
    background-color: #D3C4B8;
    border-radius: 10px;
    margin-bottom: 1rem;
}


@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ─────────────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────────────── */
.cta-section {
    padding: 80px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
    align-items: stretch;
}

.cta-left {
    padding: 48px;
}

.cta-left h4 {
    margin-bottom: 0;
}

.cta-left h1 {
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cta-form input,
.cta-email-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #E8DDD5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark-brown);
    background: white;
    outline: none;
    box-sizing: border-box;
}

.cta-form input:focus,
.cta-email-input:focus {
    border-color: var(--orange);
}

.cta-submit {
    width: 100%;
    padding: 16px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
}

.cta-right {
    background: var(--orange);
    border-radius: 20px;
    margin: 16px;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
}

.cta-right h4 {
    color: white;
    margin-bottom: 8px;
}

.cta-year {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-dates {
    flex: 1;
}

.cta-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1.5px dashed rgba(255, 255, 255, 0.3);
    font-size: 15px;
}

.cta-date-row:first-child {
    border-top: 1.5px dashed rgba(255, 255, 255, 0.3);
}

.cta-date-row span {
    color: rgba(255, 255, 255, 0.85);
}

.cta-date-row strong {
    color: white;
    font-weight: 700;
}

.cta-aid {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 24px;
}

.cta-aid-title {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
}

.cta-aid p:last-child {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-left {
        padding: 32px 24px;
    }

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

    .cta-right {
        margin: 0 16px 16px;
    }
}

/* ─────────────────────────────────────────────────────────
   LETTER SECTION
───────────────────────────────────────────────────────── */
.letter-section {
    background-color: var(--heavy-ceam);
    padding: 80px 16px;
}

.letter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.letter-text h4 {
    margin-bottom: 0;
}

.letter-text h1 {
    margin-bottom: 32px;
}

.letter-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

.letter-sig {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: var(--dark-brown);
    margin-top: 12px;
    margin-bottom: 0;
}

.letter-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.letter-photo {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

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

@media (max-width: 768px) {
    .letter-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .letter-image {
        order: -1;
    }

    .letter-photo {
        max-width: 100%;
        transform: rotate(1deg);
    }

    .letter-photo img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .letter-photo img {
        height: 220px;
    }
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
footer {
    background-color: var(--dark-brown);
    color: white;
    padding: 80px 16px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    text-align: left;
    align-items: start;
}

.footer-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--green);
    margin-bottom: 8px;
}


.footer-section h3 {
    color: white;
    margin-bottom: 16px;
}

.footer-section p a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section p a:hover {
    color: white;
}

.footer-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 6px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
