@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@500;600&display=swap');

:root {
    --teal: #07545a;
    --gold: #bd9142;
    --ink: #405b65;
    --paper: #fbfaf8;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    background: #eee8df;
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
}

.page {
    position: relative;
    width: min(100%, 1222px);
    min-height: 1287px;
    margin: 0 auto;
    overflow: hidden;
    background: var(--paper);
}

/* Exact uploaded image, kept as a separate HTML image rather than baked into the page. */
.photo-panel {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 58.35%;
    height: 100%;
    overflow: hidden;
}

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

/* A very subtle blend where the photograph meets the text area. */
.photo-panel::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 20%;
    background: linear-gradient(
        90deg,
        rgba(251,250,248,.98) 0%,
        rgba(251,250,248,.52) 32%,
        rgba(251,250,248,0) 100%
    );
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    width: 54%;
    min-height: 1287px;
    padding: 137px 30px 70px 58px;
}

.logo {
    display: block;
    width: 440px;
    max-width: 100%;
    height: auto;
    margin: 0 0 88px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--teal);
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: .31em;
    font-weight: 500;
}

h1 {
    margin: 0;
    color: var(--teal);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 54px;
    line-height: 1.02;
    font-weight: 600;
    white-space: nowrap;
}

.divider {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 500px;
    max-width: 100%;
    margin: 34px 0 31px;
}

.divider > span:first-child,
.divider > span:last-child {
    height: 1px;
    flex: 1;
    background: rgba(189,145,66,.9);
}

.outline-heart {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 38px;
    line-height: 1;
    font-weight: 300;
}

.lead {
    max-width: 535px;
    margin: 0;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.48;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 520px;
    margin-top: 54px;
}

.benefit {
    min-height: 88px;
    padding: 0 12px;
    text-align: center;
    border-right: 1px solid rgba(189,145,66,.72);
}

.benefit:first-child { padding-left: 0; }
.benefit:last-child {
    padding-right: 0;
    border-right: 0;
}

.benefit-icon {
    height: 39px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.benefit-icon svg {
    width: 39px;
    height: 39px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.heart-icon {
    font-family: Arial, sans-serif;
    font-size: 48px;
    line-height: .7;
    font-weight: 300;
}

.benefit p {
    margin: 0;
    color: #40545e;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: .05em;
    font-weight: 500;
}

.contact {
    display: flex;
    align-items: center;
    gap: 17px;
    width: 100%;
    max-width: 520px;
    min-height: 95px;
    margin-top: 51px;
    padding: 16px 35px;
    border-radius: 60px;
    background: rgba(247,239,226,.95);
    text-decoration: none;
}

.mail-icon {
    flex: 0 0 38px;
    width: 38px;
    color: var(--gold);
}

.mail-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linejoin: round;
}

.contact-text {
    color: #52656d;
    font-size: 15px;
    line-height: 1.4;
}

.contact-text strong {
    display: block;
    color: var(--teal);
    font-size: 17px;
    font-weight: 600;
}

.footer {
    position: absolute;
    left: 58px;
    bottom: 70px;
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--teal);
}

.social {
    color: var(--teal);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: 700;
    line-height: 1;
}

.instagram {
    font-size: 29px;
    transform: scaleX(.88);
}

.facebook {
    font-size: 27px;
}

.footer-divider {
    width: 1px;
    height: 30px;
    background: rgba(189,145,66,.85);
}

.thanks {
    font-size: 13px;
    letter-spacing: .21em;
    color: #52656d;
    white-space: nowrap;
}

.footer-heart {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 33px;
    line-height: 1;
}

/* Tablet and mobile: retain the same design language, but stack the image below the content. */
@media (max-width: 900px) {
    .page {
        width: 100%;
        min-height: auto;
        overflow: visible;
    }

    .photo-panel {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 713 / 1287;
    }

    .photo-panel img {
        object-fit: cover;
    }

    .photo-panel::after {
        display: none;
    }

    .content {
        width: 100%;
        min-height: 0;
        padding: 54px 28px 55px;
        background: var(--paper);
    }

    .logo {
        width: min(440px, 100%);
        margin-bottom: 60px;
    }

    h1 {
        font-size: clamp(38px, 8vw, 54px);
        white-space: normal;
    }

    .lead {
        max-width: 620px;
    }

    .desktop-break { display: none; }

    .benefits {
        max-width: 620px;
    }

    .contact {
        max-width: 620px;
    }

    .footer {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 55px;
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .content {
        padding: 42px 20px 42px;
    }

    .logo {
        margin-bottom: 48px;
    }

    .eyebrow {
        font-size: 14px;
        letter-spacing: .22em;
    }

    .lead {
        font-size: 17px;
    }

    .benefits {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }

    .benefit:nth-child(2) {
        border-right: 0;
    }

    .benefit:nth-child(3),
    .benefit:nth-child(4) {
        padding-top: 4px;
    }

    .contact {
        padding: 15px 20px;
    }

    .thanks {
        font-size: 11px;
        letter-spacing: .13em;
    }
}
