@font-face {
    font-family: "Poppins";
    src: url("../assets/fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Poppins";
    src: url("../assets/fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Poppins";
    src: url("../assets/fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
}

:root {
    --violet: #6d3f72;
    --violet-deep: #3d2342;
    --violet-dark: #2c192f;
    --violet-soft: #8f6993;
    --lilac: #cbb1cf;
    --lilac-light: #e8dcea;
    --rose: #c995a8;
    --rose-light: #ead3dc;
    --cream: #f5eee7;
    --cream-light: #fbf7f2;
    --white: #fffdfb;
    --ink: #281f29;
    --muted: #756b72;
    --line: rgba(61, 35, 66, .18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 238, 231, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(61, 35, 66, .12);
    transition: .3s ease;
}

.header.scrolled {
    background: rgba(245, 238, 231, .97);
    box-shadow: 0 10px 35px rgba(61, 35, 66, .08);
}

.navbar {
    width: min(1280px, 90%);
    height: 92px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    width: 100px;
    display: block;
}

.brand img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: var(--violet-deep);
    font-size: 9px;
    letter-spacing: .7px;
    transition: .3s ease;
}

.nav-links a:hover {
    color: var(--violet-soft);
}

.nav-contact {
    border: 1px solid var(--violet);
    color: var(--violet);
    padding: 11px 20px;
    font-size: 9px;
    letter-spacing: .4px;
    transition: .3s ease;
}

.nav-contact:hover {
    background: var(--violet);
    color: var(--white);
}

.menu-button {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-button span {
    width: 28px;
    height: 1px;
    display: block;
    margin: 6px 0;
    background: var(--violet);
}

.mobile-menu {
    display: none;
}

.hero {
    min-height: 100vh;
    padding: 130px 8% 45px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 7%;
    align-items: end;
    background:
        radial-gradient(circle at 78% 45%, rgba(203, 177, 207, .25), transparent 28%),
        var(--cream);
}

.hero-copy {
    max-width: 690px;
    padding-bottom: 50px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 30px;
}

.hero-label span {
    color: var(--violet);
    font-size: 7px;
    letter-spacing: 2.8px;
}

.hero-label span:not(:last-child)::after {
    content: "·";
    margin-left: 17px;
    color: var(--rose);
}

.hero h1 {
    max-width: 690px;
    font-size: clamp(48px, 5.3vw, 76px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -3px;
    color: var(--ink);
}

.hero h1 em {
    display: block;
    color: var(--violet);
    font-style: normal;
}

.hero-text {
    max-width: 490px;
    margin-top: 27px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.9;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-button {
    padding: 14px 25px;
    background: var(--violet);
    color: var(--white);
    font-size: 9px;
    letter-spacing: .4px;
    transition: .3s ease;
}

.primary-button:hover {
    background: var(--violet-deep);
}

.secondary-button {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--violet);
    font-size: 9px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--violet);
}

.secondary-button span {
    font-size: 14px;
}

.hero-signature {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 9px;
    letter-spacing: .8px;
    color: var(--muted);
}

.hero-signature strong {
    color: var(--violet);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    align-self: end;
}

.hero-flower {
    width: 100%;
    height: 490px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-flower img {
    width: 90%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    position: relative;
    z-index: 2;
}

.hero-ground {
    position: absolute;
    z-index: 1;
    bottom: 7px;
    left: 10%;
    width: 80%;
    height: 18px;
    background: rgba(61, 35, 66, .18);
    filter: blur(13px);
    border-radius: 50%;
}

.hero-visual-caption {
    position: relative;
    z-index: 3;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 7px;
    letter-spacing: 2px;
}

.hero-visual-caption div {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.intro-section {
    min-height: 380px;
    padding: 95px 11%;
    background: var(--violet-deep);
    color: var(--white);
    display: grid;
    grid-template-columns: 40px minmax(0, 650px) 1fr;
    gap: 55px;
    align-items: center;
}

.intro-number {
    color: var(--rose);
    font-size: 10px;
    letter-spacing: 2px;
}

.eyebrow {
    display: block;
    color: var(--violet);
    font-size: 8px;
    letter-spacing: 2.7px;
    text-transform: uppercase;
}

.eyebrow.light {
    color: var(--rose-light);
}

.intro-text h2 {
    margin-top: 18px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.intro-text p {
    max-width: 600px;
    margin-top: 22px;
    color: #d8cadb;
    font-size: 12px;
    line-height: 1.9;
}

.intro-side {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    color: var(--lilac);
    font-size: 7px;
    letter-spacing: 2px;
}

.catalog-section {
    padding: 135px 9%;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 12%;
    align-items: center;
    background: var(--cream-light);
}

.catalog-image-wrap {
    position: relative;
}

.catalog-image {
    width: 100%;
    padding: 18px;
    background: var(--violet-deep);
}

.catalog-image-frame {
    width: 100%;
    overflow: hidden;
    background: var(--violet);
}

.catalog-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.catalog-note {
    display: flex;
    justify-content: space-between;
    margin-top: 13px;
    color: var(--muted);
    font-size: 7px;
    letter-spacing: 2px;
}

.catalog-copy {
    max-width: 620px;
}

.catalog-copy h2,
.details-header h2,
.forever-copy h2,
.events-grid h2,
.preserve-copy h2,
.moments-title h2,
.about-title h2,
.contact-inner h2,
.availability-content h2,
.location-copy h2 {
    margin-top: 20px;
    font-size: clamp(39px, 4.5vw, 64px);
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -2px;
}

.catalog-copy h2 em,
.details-header h2 em,
.forever-copy h2 em,
.events-grid h2 em,
.preserve-copy h2 em,
.moments-title h2 em,
.about-title h2 em,
.contact-inner h2 em,
.availability-content h2 em,
.location-copy h2 em {
    display: block;
    color: var(--violet);
    font-style: normal;
}

.catalog-copy p,
.details-header > p,
.forever-copy p,
.events-grid p,
.preserve-copy p,
.moments-content > p,
.about-text p,
.contact-inner > p,
.availability-content > p,
.location-copy p {
    margin-top: 25px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.9;
}

.moment-words {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.moment-words span {
    padding: 7px 11px;
    border: 1px solid rgba(109, 63, 114, .3);
    color: var(--violet);
    font-size: 7px;
    letter-spacing: 1.4px;
}

.line-button {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--violet);
    font-size: 9px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--violet);
}

.line-button span {
    font-size: 14px;
}

.experience-section {
    min-height: 590px;
    padding: 120px 9%;
    position: relative;
    overflow: hidden;
    background: var(--violet);
    color: var(--white);
    display: flex;
    align-items: center;
}

.experience-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -150px;
    top: -150px;
    border-radius: 50%;
    background: rgba(203, 177, 207, .12);
    filter: blur(5px);
}

.experience-copy {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.experience-copy h2 {
    margin-top: 20px;
    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -2px;
}

.experience-copy h2 em {
    display: block;
    color: var(--rose-light);
    font-style: normal;
}

.experience-copy p {
    max-width: 510px;
    margin-top: 25px;
    color: #eadfeb;
    font-size: 12px;
    line-height: 1.9;
}

.light-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    padding: 14px 25px;
    background: var(--cream-light);
    color: var(--violet-deep);
    font-size: 9px;
}

.experience-decoration {
    position: absolute;
    right: 3%;
    bottom: -180px;
    color: rgba(255, 255, 255, .045);
    font-size: 500px;
    font-weight: 700;
    line-height: 1;
}

.experience-phrase {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: rgba(255, 255, 255, .5);
    font-size: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.details-section {
    padding: 140px 8%;
    background: var(--cream);
}

.details-header {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 10%;
    align-items: end;
}

.details-header > p {
    margin-top: 0;
}

.details-gallery {
    max-width: 1180px;
    margin: 75px auto 0;
    display: grid;
    grid-template-columns: 1.15fr .85fr .9fr 1fr;
    gap: 20px;
    align-items: start;
}

.detail-item {
    position: relative;
}

.detail-two {
    margin-top: 55px;
}

.detail-three {
    margin-top: 115px;
}

.detail-photo {
    overflow: hidden;
    background: var(--lilac-light);
    border-radius: 1px;
}

.detail-one .detail-photo {
    aspect-ratio: .82;
}

.detail-two .detail-photo {
    aspect-ratio: .76;
}

.detail-three .detail-photo {
    aspect-ratio: .8;
}

.detail-four .detail-photo {
    aspect-ratio: .75;
}

.detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.detail-item:hover .detail-photo img {
    transform: scale(1.04);
}

.detail-info {
    margin-top: 12px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.detail-info span {
    color: var(--violet);
    font-size: 7px;
    letter-spacing: 2px;
}

.detail-info h3 {
    font-size: 13px;
    font-weight: 400;
}

.forever-section {
    padding: 140px 9%;
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 13%;
    align-items: center;
    background: var(--cream-light);
}

.forever-photo-frame {
    background: var(--lilac-light);
    padding: 12px;
}

.forever-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.photo-caption {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: var(--muted);
    font-size: 7px;
    letter-spacing: 2px;
}

.forever-copy {
    max-width: 680px;
}

.forever-list {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.forever-list span {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--violet);
    font-size: 9px;
}

.events-section {
    padding: 135px 9%;
    background: var(--lilac-light);
}

.events-inner {
    max-width: 1180px;
    margin: auto;
}

.events-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr .55fr;
    gap: 13%;
    align-items: end;
}

.events-bottom {
    margin-top: 90px;
    padding-top: 20px;
    border-top: 1px solid rgba(109, 63, 114, .25);
    display: flex;
    justify-content: space-between;
    color: var(--violet);
    font-size: 7px;
    letter-spacing: 2px;
}

.preserve-section {
    padding: 140px 9%;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 14%;
    align-items: center;
    background: var(--cream-light);
}

.preserve-photo-frame {
    width: 100%;
    padding: 10px;
    background: var(--violet-deep);
}

.preserve-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.preserve-photo > span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 7px;
    letter-spacing: 1.8px;
}

.preserve-copy {
    max-width: 720px;
}

.moments-section {
    min-height: 700px;
    padding: 140px 8%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(203, 177, 207, .34), transparent 48%),
        var(--violet-deep);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.moments-content {
    max-width: 950px;
    position: relative;
    z-index: 2;
}

.moments-content .eyebrow {
    color: var(--rose-light);
}

.moments-title {
    margin-top: 20px;
}

.small-word {
    color: var(--lilac);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.moments-title h2 em {
    color: var(--rose-light);
}

.moments-content > p {
    max-width: 570px;
    margin-left: auto;
    margin-right: auto;
    color: #d8cadb;
}

.coming-soon {
    max-width: 850px;
    margin: 55px auto 0;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.coming-line {
    flex: 1;
    height: 1px;
    background: rgba(234, 211, 220, .25);
}

.coming-center {
    min-width: 300px;
    padding: 28px 35px;
    border: 1px solid rgba(234, 211, 220, .3);
    background: rgba(255, 255, 255, .035);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.coming-center small {
    color: var(--rose-light);
    font-size: 7px;
    letter-spacing: 3px;
}

.coming-center strong {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
}

.coming-center span {
    color: #cbb9ce;
    font-size: 8px;
}

.coming-flower {
    color: var(--rose-light);
    font-size: 17px;
}

.future-words {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--lilac);
    font-size: 7px;
    letter-spacing: 2px;
}

.moments-decoration {
    position: absolute;
    border: 1px solid rgba(203, 177, 207, .13);
    border-radius: 50%;
}

.moments-decoration-one {
    width: 560px;
    height: 560px;
    right: -230px;
    top: -160px;
}

.moments-decoration-two {
    width: 390px;
    height: 390px;
    left: -190px;
    bottom: -150px;
}

.about-section {
    padding: 140px 9%;
    background: var(--cream);
}

.about-top {
    max-width: 1180px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.about-number {
    color: var(--rose);
    font-size: 9px;
    letter-spacing: 2px;
}

.about-content {
    max-width: 1180px;
    margin: 75px auto 0;
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 13%;
}

.about-intro {
    display: block;
    margin-bottom: 17px;
    color: var(--rose);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-title h2 {
    margin-top: 0;
}

.about-text p {
    margin-top: 0;
    margin-bottom: 24px;
}

.about-words {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: var(--violet);
    font-size: 12px;
    font-style: italic;
}

.about-signature {
    max-width: 1180px;
    margin: 100px auto 0;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 9px;
}

.about-signature strong {
    color: var(--violet);
    font-weight: 500;
}

.availability-section {
    padding: 120px 9%;
    background: var(--cream-light);
}

.availability-inner {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 55px;
    align-items: start;
}

.availability-number {
    color: var(--rose);
    font-size: 10px;
    letter-spacing: 2px;
    padding-top: 7px;
}

.availability-content {
    max-width: 850px;
}

.availability-details {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.availability-details div {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.availability-details strong {
    color: var(--violet-deep);
    font-size: 10px;
    font-weight: 500;
}

.availability-details span {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.7;
}

.contact-section {
    padding: 140px 9%;
    background: var(--violet);
    color: var(--white);
    text-align: center;
}

.contact-inner {
    max-width: 900px;
    margin: auto;
}

.contact-inner h2 em {
    color: var(--rose-light);
}

.contact-inner > p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    color: #e3d7e5;
}

.contact-options {
    max-width: 750px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.contact-options a {
    padding: 17px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: #eadfeb;
    font-size: 9px;
    transition: .3s ease;
}

.contact-options a:hover {
    color: var(--rose-light);
}

.contact-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 25px;
    background: var(--cream-light);
    color: var(--violet-deep);
    font-size: 9px;
}

.contact-button span {
    margin-left: 10px;
}

.location-section {
    padding: 120px 9%;
    background: var(--cream);
}

.location-inner {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 13%;
    align-items: center;
}

.location-copy {
    max-width: 650px;
}

.location-copy strong {
    color: var(--violet-deep);
    font-weight: 500;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.location-item span {
    color: var(--rose);
    font-size: 7px;
    letter-spacing: 2px;
}

.location-item strong,
.location-item a {
    color: var(--violet-deep);
    font-size: 12px;
    font-weight: 400;
}

.location-item a:hover {
    color: var(--violet);
}

.inspiration-section {
    padding: 55px 9%;
    background: var(--cream-light);
    border-top: 1px solid var(--line);
}

.inspiration-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.inspiration-inner p {
    margin-top: 17px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.8;
}

.footer {
    padding: 40px 8% 25px;
    background: var(--violet-dark);
    color: #c9b8cb;
}

.footer-main {
    max-width: 1180px;
    margin: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 55px;
}

.footer-brand span {
    color: var(--rose-light);
    font-size: 8px;
    letter-spacing: 3px;
}

.footer-main > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    font-size: 7px;
    letter-spacing: 1px;
}

.footer-bottom {
    max-width: 1180px;
    margin: 35px auto 0;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .4);
    font-size: 7px;
}

@media (max-width: 1100px) {

    .nav-links {
        display: none;
    }

    .nav-contact {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        top: 92px;
        left: 0;
        width: 100%;
        padding: 28px 8%;
        background: var(--cream-light);
        border-bottom: 1px solid var(--line);
        display: flex;
        flex-direction: column;
        gap: 20px;
        transform: translateY(-130%);
        transition: .4s ease;
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-menu.active {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu a {
        font-size: 10px;
        color: var(--violet);
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) 330px;
    }

    .details-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .detail-three,
    .detail-two {
        margin-top: 0;
    }

    .availability-details {
        grid-template-columns: 1fr;
    }

    .experience-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        min-height: 0;
    }
    .experience-phrase {
        position: relative;
        inset: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        z-index: 2;
    }
}

@media (max-width: 800px) {

    .navbar {
        height: 78px;
    }
    .mobile-menu { top: 78px; max-height: calc(100dvh - 78px); overflow-y: auto; }
    section[id] { scroll-margin-top: 88px; }

    .brand {
        width: 88px;
    }

    .hero {
        min-height: auto;
        padding: 110px 7% 48px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-copy {
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: clamp(45px, 8vw, 62px);
    }

    .hero-visual {
        width: min(76%, 300px);
        margin: 0 auto;
        align-self: start;
    }

    .hero-flower {
        height: auto;
    }
    .hero-flower img { width: 100%; height: auto; object-position: center; }
    .hero-signature { margin-top: 24px; }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 75px 8%;
    }

    .intro-side {
        align-items: flex-start;
    }

    .catalog-section,
    .forever-section,
    .preserve-section {
        grid-template-columns: 1fr;
        padding: 64px 7%;
        gap: 32px;
    }

    .catalog-image-wrap,
    .forever-photo,
    .preserve-photo {
        width: min(100%, 380px);
        margin: 0 auto;
        order: 2;
    }
    .catalog-copy, .forever-copy, .preserve-copy { order: 1; }

    .details-header,
    .events-grid,
    .about-content,
    .location-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .details-section,
    .experience-section,
    .events-section,
    .moments-section,
    .about-section,
    .contact-section,
    .availability-section,
    .location-section {
        padding: 64px 7%;
    }

    .events-bottom {
        flex-wrap: wrap;
        gap: 15px;
    }

    .about-signature {
        flex-direction: column;
        gap: 8px;
    }

    .availability-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .availability-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    .brand {
        width: 82px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-label {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-label span:not(:last-child)::after {
        margin-left: 8px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-visual {
        width: min(82%, 280px);
    }

    .hero-flower {
        height: auto;
    }

    .catalog-image-wrap,
    .forever-photo,
    .preserve-photo {
        width: 100%;
    }

    .details-gallery {
        grid-template-columns: 1fr;
    }

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

    .coming-soon {
        gap: 10px;
    }

    .coming-center {
        min-width: 0;
        width: 100%;
        padding: 25px 15px;
    }

    .coming-center strong {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .coming-line {
        display: none;
    }

    .future-words {
        gap: 12px;
    }

    .footer-main,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-main > div:last-child {
        align-items: flex-start;
    }
} 
.shipping-info {
    margin-top: 35px;
    padding: 28px 30px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.65);
    position: relative;
    max-width: 520px;
}

.shipping-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--lilac);
}

.shipping-eyebrow {
    display: block;
    color: var(--lilac);
    font-size: 8px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.shipping-info h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 400;
}

.shipping-info h3 em {
    color: var(--lilac);
    font-style: italic;
}

.shipping-info p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.8;
}

.shipping-info small {
    display: block;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 7px;
    letter-spacing: 0.5px;
}
