:root {
    --wine: #40121d;
    --wine-soft: #6f293a;
    --rose: #d7808d;
    --blush: #f1d7d8;
    --paper: #fffaf6;
    --cream: #f7eee7;
    --ink: #261b1d;
    --muted: #745f63;
    --line: rgba(64, 18, 29, .16);
    --radius: 1.25rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.55;
}

body,
button,
input,
select,
textarea {
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-size: 1rem;
}

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(100% - 3rem, 90rem);
    min-height: 6rem;
    color: #fff;
    transform: translateX(-50%);
    border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    width: max-content;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.brand-mark {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 1rem;
}

.main-nav {
    display: flex;
    gap: 2rem;
    font-size: .9rem;
}

.main-nav a,
.header-phone {
    transition: opacity .2s ease;
}

.main-nav a:hover,
.header-phone:hover {
    opacity: .7;
}

.header-phone {
    justify-self: end;
    font-size: .9rem;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: 53% 47%;
    min-height: 50rem;
    color: #fff;
    background: var(--wine);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 49rem;
    padding: 9rem 7vw 5rem max(1.5rem, calc((100vw - 90rem) / 2));
}

.eyebrow {
    margin: 0 0 1.5rem;
    color: var(--rose);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h1 {
    max-width: 48rem;
    margin-bottom: 1.75rem;
    font-size: clamp(3.3rem, 5.8vw, 6.8rem);
    line-height: .96;
    letter-spacing: -.045em;
}

.hero-lead {
    max-width: 37rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, .76);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.button {
    display: inline-flex;
    min-height: 3.7rem;
    align-items: center;
    justify-content: center;
    padding: 0 1.8rem;
    border: 0;
    border-radius: 99rem;
    cursor: pointer;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: var(--rose);
}

.button-primary:hover {
    background: #c76c7c;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding-block: .5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.hero-facts {
    display: flex;
    gap: 3rem;
    margin: 5rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-facts li {
    display: grid;
    gap: .15rem;
}

.hero-facts strong {
    font-size: .96rem;
}

.hero-facts span {
    color: rgba(255, 255, 255, .55);
    font-size: .82rem;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 50rem;
    background: #52202a;
}

.hero-visual::after {
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(transparent, rgba(23, 5, 10, .68));
    content: "";
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-note {
    position: absolute;
    z-index: 2;
    top: 8rem;
    right: 2rem;
    padding: .55rem 1rem;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 99rem;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-price {
    position: absolute;
    z-index: 2;
    right: 2.5rem;
    bottom: 2.5rem;
    left: 2.5rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.hero-price span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
}

.hero-price strong {
    font-size: 1.15rem;
}

.section {
    width: min(100% - 3rem, 90rem);
    margin-inline: auto;
    padding-block: 8rem;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: end;
    gap: 3rem;
    margin-bottom: 3rem;
}

.section-heading h2,
.delivery h2,
.order-copy h2 {
    margin-bottom: 0;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.section-heading > p {
    max-width: 29rem;
    justify-self: end;
    margin-bottom: .4rem;
    color: var(--muted);
}

.bouquet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bouquet-card {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.bouquet-number {
    position: absolute;
    z-index: 2;
    top: 1.9rem;
    left: 1.9rem;
    color: rgba(64, 18, 29, .5);
    font-size: .72rem;
}

.bouquet-art {
    display: flex;
    height: 22rem;
    align-items: end;
    padding: 1.2rem;
    border-radius: calc(var(--radius) - .4rem);
    background: radial-gradient(circle at 65% 30%, rgba(255, 255, 255, .9), transparent 30%), linear-gradient(145deg, #ebbdc3, #c96e7c);
}

.bouquet-card-ivory .bouquet-art {
    background: radial-gradient(circle at 35% 32%, #fff, transparent 28%), linear-gradient(145deg, #e8e0d0, #b5baa4);
}

.bouquet-card-wine .bouquet-art {
    background: radial-gradient(circle at 62% 36%, #eab4b9, transparent 25%), linear-gradient(145deg, #9c4b5e, #42151f);
}

.bouquet-art span {
    color: rgba(64, 18, 29, .56);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-style: italic;
}

.bouquet-card-wine .bouquet-art span {
    color: rgba(255, 255, 255, .66);
}

.bouquet-info {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem .5rem .6rem;
}

.bouquet-info h3 {
    margin-bottom: .25rem;
    font-size: 1.55rem;
}

.bouquet-info p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .85rem;
}

.bouquet-info strong {
    flex: 0 0 auto;
    font-size: .9rem;
}

.bouquet-card > a {
    display: flex;
    justify-content: space-between;
    margin: .8rem .5rem .35rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: .9rem;
    font-weight: 700;
}

.delivery {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8vw;
    border-top: 1px solid var(--line);
}

.delivery-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.delivery-steps li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
    padding: 0 0 2rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2rem;
}

.delivery-steps li > span {
    color: var(--rose);
    font-size: .8rem;
    font-weight: 700;
}

.delivery-steps h3 {
    margin-bottom: .5rem;
    font-size: 1.6rem;
}

.delivery-steps p {
    max-width: 34rem;
    margin-bottom: 0;
    color: var(--muted);
}

.order-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8vw;
    padding: 8rem max(1.5rem, calc((100vw - 90rem) / 2));
    color: #fff;
    background: var(--wine);
}

.order-copy > p:not(.eyebrow):not(.order-hours) {
    max-width: 28rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, .68);
}

.order-hours {
    display: grid;
    gap: .25rem;
    margin-top: 4rem;
    font-size: .85rem;
}

.order-hours span {
    color: rgba(255, 255, 255, .52);
}

.order-panel {
    padding: 2.25rem;
    color: var(--ink);
    border-radius: var(--radius);
    background: var(--paper);
}

.order-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.order-form > div,
.form-row > div {
    margin-bottom: 1.15rem;
}

.order-form label {
    display: block;
    margin-bottom: .4rem;
    font-size: .82rem;
    font-weight: 700;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: .95rem 1rem;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: .65rem;
    outline: none;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(215, 128, 141, .16);
}

.order-form textarea {
    resize: vertical;
}

.order-form ul {
    margin: .4rem 0 0;
    padding: 0;
    color: #a43048;
    font-size: .78rem;
    list-style: none;
}

.form-footer {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: .5rem;
}

.form-footer p {
    max-width: 18rem;
    margin: 0;
    color: var(--muted);
    font-size: .76rem;
}

.success-message {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
    padding: .9rem 1rem;
    color: #28533c;
    border: 1px solid rgba(40, 83, 60, .2);
    border-radius: .65rem;
    background: #edf7f0;
}

.success-message span {
    font-weight: 700;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem max(1.5rem, calc((100vw - 90rem) / 2));
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: #280b13;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
}

.site-footer > div {
    display: flex;
    justify-self: end;
    gap: 1.5rem;
    font-size: .82rem;
}

.site-footer > div span {
    color: rgba(255, 255, 255, .45);
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: 43rem;
    }

    .hero-visual {
        min-height: 42rem;
    }

    .bouquet-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bouquet-card:last-child {
        grid-column: 1 / -1;
    }

    .delivery,
    .order-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .site-footer {
        grid-template-columns: 1fr auto;
    }

    .site-footer > p {
        display: none;
    }
}

@media (max-width: 640px) {
    .site-header {
        width: min(100% - 2rem, 90rem);
        min-height: 5rem;
    }

    .header-phone {
        font-size: .78rem;
    }

    .hero-copy {
        min-height: 42rem;
        padding: 8rem 1rem 4rem;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-facts {
        flex-direction: column;
        gap: 1rem;
        margin-top: 3.5rem;
    }

    .hero-visual {
        min-height: 33rem;
    }

    .hero-note {
        top: 1.5rem;
        right: 1rem;
    }

    .hero-price {
        right: 1rem;
        bottom: 1.5rem;
        left: 1rem;
    }

    .section {
        width: min(100% - 2rem, 90rem);
        padding-block: 5rem;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-heading > p {
        justify-self: start;
    }

    .bouquet-grid {
        grid-template-columns: 1fr;
    }

    .bouquet-card:last-child {
        grid-column: auto;
    }

    .bouquet-art {
        height: 18rem;
    }

    .delivery {
        gap: 3rem;
    }

    .order-section {
        gap: 3rem;
        padding: 5rem 1rem;
    }

    .order-panel {
        padding: 1.25rem;
    }

    .order-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .site-footer > div {
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
    }
}
