* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #050505;
    color: #f7f1ed;
    font-family: "Cormorant Garamond", Georgia, serif;
}

nav {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    max-width: 1250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-logo {
    width: 130px;
    height: auto;
    display: block;
}

nav ul {
    display: flex;
    gap: 55px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: #f7f1ed;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: .35s ease;
}

nav a:hover {
    color: #c9968f;
}

section {
    padding: 130px 8vw;
}

.kicker {
    color: #f7f1ed;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

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

button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    background: transparent;
    border: 1px solid rgba(201,150,143,.55);
    color: #f7f1ed;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: color .45s ease, border-color .45s ease, transform .35s ease, box-shadow .45s ease;
}

button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 15%,
        rgba(201,150,143,.18) 45%,
        rgba(255,220,210,.55) 50%,
        rgba(201,150,143,.18) 55%,
        transparent 85%
    );
    transform: translateX(-170%);
    transition: transform .8s ease;
}

button:hover::before {
    transform: translateX(170%);
}

button:hover {
    transform: translateY(-3px);
    color: white;
    border-color: #c9968f;
    box-shadow:
        0 0 15px rgba(201,150,143,.35),
        0 0 35px rgba(201,150,143,.18),
        inset 0 0 18px rgba(201,150,143,.12);
}

/* HOME */

.home-hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(5,5,5,.58), rgba(5,5,5,.58)),
        url("../images/heroimage0.jpeg");
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 760px;
    margin-left: 10vw;
    padding-top: 90px;
}

.hero-content h1 {
    color: #c9968f;
    font-size: clamp(58px, 8.5vw, 125px);
    font-weight: 400;
    line-height: .92;
    margin: 0 0 28px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.5;
    max-width: 620px;
    margin: 0 0 34px;
    font-weight: 500;
}

.button-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.home-philosophy {
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
}

.home-philosophy h2 {
    color: #c9968f;
    font-size: clamp(42px, 5vw, 78px);
    font-weight: 400;
    line-height: 1.12;
    margin: 25px auto 0;
}

.home-about-preview {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.home-about-preview h2 {
    color: #c9968f;
    font-size: clamp(52px, 6vw, 90px);
    font-weight: 400;
    line-height: 1;
    margin: 0 0 34px;
}

.home-about-preview p {
    font-size: 23px;
    line-height: 1.45;
    max-width: 600px;
    margin: 0 0 38px;
    font-weight: 500;
}

.home-about-image {
    min-height: 540px;
    background:
        linear-gradient(rgba(5,5,5,.18), rgba(5,5,5,.18)),
        url("../images/about.jpeg");
    background-size: cover;
    background-position: center;
}

.home-services {
    text-align: center;
}

.home-services h2,
.home-contact h2 {
    color: #c9968f;
    font-size: clamp(52px, 6vw, 90px);
    font-weight: 400;
    line-height: 1;
    margin: 20px 0 70px;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    max-width: 1350px;
    margin: 0 auto;
}

.home-service-grid div {
    border: 1px solid rgba(201,150,143,.55);
    padding: 42px 24px;
}

.home-service-grid h3 {
    color: #c9968f;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 18px;
}

.home-service-grid p {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

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

.home-contact p {
    font-size: 23px;
    line-height: 1.45;
    max-width: 700px;
    margin: 0 0 32px;
    font-weight: 500;
}

.home-contact strong {
    color: #c9968f;
    letter-spacing: 2px;
}

/* ABOUT */

.about-hero {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 10vw 90px;
}

.about-hero h1 {
    color: #c9968f;
    font-size: clamp(68px, 8vw, 128px);
    font-weight: 400;
    line-height: .95;
    margin: 24px 0 22px;
}

.about-hero-sub {
    font-size: 22px;
    max-width: 520px;
    margin: 0;
    font-weight: 500;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    min-height: 85vh;
}

.about-copy h2 {
    color: #c9968f;
    font-size: clamp(54px, 5.8vw, 92px);
    font-weight: 400;
    line-height: .98;
    margin: 0 0 38px;
}

.about-copy p {
    font-size: 21px;
    line-height: 1.48;
    max-width: 590px;
    margin: 0;
    font-weight: 500;
}

.about-photo {
    min-height: 560px;
    background:
        linear-gradient(rgba(5,5,5,.12), rgba(5,5,5,.12)),
        url("../images/about.jpeg");
    background-size: cover;
    background-position: center;
}

.awards-section {
    text-align: center;
}

.awards-section h2,
.honors-section h2 {
    color: #c9968f;
    font-size: clamp(52px, 6vw, 90px);
    font-weight: 400;
    line-height: 1;
    margin: 20px 0 70px;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-grid div {
    border: 1px solid rgba(201,150,143,.58);
    padding: 55px 24px;
}

.award-grid span {
    color: #c9968f;
    font-size: 52px;
    display: block;
    margin-bottom: 18px;
}

.award-grid p {
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
}

.honors-section {
    max-width: 1000px;
    margin: 0 auto;
}

.honors-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.honors-section li {
    border-top: 1px solid rgba(247,241,237,.18);
    padding: 26px 0;
    font-size: 23px;
    font-weight: 500;
}

.honors-section li:last-child {
    border-bottom: 1px solid rgba(247,241,237,.18);
}

.about-statement {
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
}

.about-statement p {
    color: #c9968f;
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 1.12;
    max-width: 950px;
    font-weight: 400;
}

.about-cta {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 160px;
}

.about-cta h2 {
    color: #c9968f;
    font-size: clamp(52px, 6vw, 86px);
    font-weight: 400;
    line-height: 1;
    margin: 0 0 34px;
}

.about-cta p {
    font-size: 24px;
    line-height: 1.42;
    max-width: 720px;
    margin: 0 0 38px;
    font-weight: 500;
}

/* INVESTMENT */

.investment-hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 1250px;
    margin: 0 auto;
    padding: 160px 8vw 100px;
}

.investment-hero h1 {
    color: #c9968f;
    font-size: clamp(58px, 7vw, 120px);
    font-weight: 400;
    line-height: .95;
    max-width: 1200px;
    margin: 35px auto;
}

.investment-hero p {
    font-size: 25px;
    line-height: 1.45;
    max-width: 850px;
    font-weight: 500;
}

.small-line {
    width: 90px;
    height: 1px;
    background: #c9968f;
    margin: 30px auto 45px;
}

.collections-section {
    max-width: 1350px;
    margin: 0 auto;
}

.collections-section > .kicker {
    text-align: center;
}

.collections-section h2,
.remembrance-section h2,
.client-stories h2,
.faq-section h2 {
    color: #c9968f;
    font-size: clamp(52px, 6vw, 92px);
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin: 20px 0 90px;
}

.collection-item {
    display: grid;
    grid-template-columns: 1.6fr .7fr;
    gap: 60px;
    align-items: center;
    border-top: 1px solid rgba(201,150,143,.45);
    padding: 70px 0;
}

.collection-item:last-child {
    border-bottom: 1px solid rgba(201,150,143,.45);
}

.collection-number {
    color: #c9968f;
    font-size: 16px;
    letter-spacing: 5px;
    margin: 0 0 24px;
}

.collection-item h3 {
    color: #c9968f;
    font-size: clamp(42px, 5vw, 82px);
    font-weight: 400;
    line-height: 1;
    margin: 0 0 28px;
}

.collection-item p {
    font-size: 23px;
    line-height: 1.48;
    max-width: 780px;
    margin: 0;
    font-weight: 500;
}

.collection-price {
    border-left: 1px solid rgba(201,150,143,.55);
    padding-left: 45px;
    color: #f7f1ed;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 500;
}

.collection-price span {
    display: block;
    color: #c9968f;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.featured-collection {
    background: rgba(201,150,143,.035);
    padding-left: 35px;
    padding-right: 35px;
}

.remembrance-section {
    text-align: center;
    max-width: 1150px;
    margin: 0 auto;
}

.remembrance-section p {
    font-size: 26px;
    line-height: 1.55;
    max-width: 1000px;
    font-weight: 500;
    margin: 0 auto;
}

.remembrance-section button {
    margin-top: 45px;
}

.client-stories {
    max-width: 1300px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.story-grid p {
    color: #c9968f;
    font-size: 28px;
    line-height: 1.35;
    margin: 0 0 50px;
    font-weight: 400;
}

.story-grid span {
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.faq-section {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid rgba(247,241,237,.18);
    padding: 45px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(247,241,237,.18);
}

.faq-item h3 {
    color: #c9968f;
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 20px;
}

.faq-item p {
    font-size: 23px;
    line-height: 1.5;
    max-width: 950px;
    margin: 0;
    font-weight: 500;
}

.investment-cta {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 140px 8vw 180px;
}

.investment-cta h2 {
    color: #c9968f;
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 400;
    line-height: 1;
    margin: 22px 0 34px;
}

.investment-cta p {
    font-size: 24px;
    line-height: 1.45;
    max-width: 760px;
    margin: 0 auto 42px;
    font-weight: 500;
}

/* MOBILE */

@media (max-width: 900px) {
    nav {
        position: absolute;
        top: 22px;
        width: 90%;
        align-items: flex-start;
    }

    .nav-logo {
        width: 105px;
    }

    nav ul {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    nav a {
        font-size: 12px;
    }

    section {
        padding: 90px 7vw;
    }

    .home-about-preview,
    .about-split,
    .collection-item,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .home-service-grid,
    .award-grid {
        grid-template-columns: 1fr;
    }

    .collection-price {
        border-left: none;
        border-top: 1px solid rgba(201,150,143,.45);
        padding-left: 0;
        padding-top: 28px;
    }

    .hero-content {
        margin-left: 7vw;
    }
}/* SPECIALTY GALLERIES */

.gallery-hero {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
    padding: 160px 8vw 100px;
}

.gallery-hero h1 {
    color: #c9968f;
    font-size: clamp(66px, 8vw, 128px);
    font-weight: 400;
    line-height: .95;
    margin: 28px 0;
}

.gallery-hero p {
    font-size: 24px;
    line-height: 1.45;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 500;
}

.gallery-list {
    display: grid;
    gap: 34px;
    max-width: 1350px;
    margin: 0 auto;
}

.gallery-card {
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    text-decoration: none;
    color: #f7f1ed;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,150,143,.35);
    background-size: cover;
    background-position: center;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(5,5,5,.25),
            rgba(5,5,5,.78)
        );
    z-index: 1;
    transition: .6s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(201,150,143,.08);
    opacity: 0;
    transition: .6s ease;
    z-index: 2;
}

.gallery-card div {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.gallery-card span {
    color: #c9968f;
    letter-spacing: 5px;
    font-size: 16px;
    font-weight: 700;
}

.gallery-card h2 {
    color: #c9968f;
    font-size: clamp(54px, 7vw, 110px);
    font-weight: 400;
    line-height: .95;
    margin: 18px 0;
}

.gallery-card p {
    font-size: 24px;
    line-height: 1.4;
    max-width: 650px;
    margin: 0;
    font-weight: 500;
}

.gallery-card:hover::before {
    background:
        linear-gradient(
            rgba(5,5,5,.12),
            rgba(5,5,5,.68)
        );
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card:hover h2 {
    text-shadow:
        0 0 12px rgba(201,150,143,.35),
        0 0 30px rgba(201,150,143,.18);
}

/* temporary images — replace filenames later */
.birth-gallery {
    background-image: url("../images/heroimage0.jpeg");
}

.maternity-gallery {
    background-image: url("../images/about.jpeg");
}

.newborn-gallery {
    background-image: url("../images/heroimage0.jpeg");
}

.milestone-gallery {
    background-image: url("../images/about.jpeg");
}

.bereavement-gallery {
    background-image: url("../images/heroimage0.jpeg");
}

.gallery-cta {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 150px 8vw 180px;
}

.gallery-cta h2 {
    color: #c9968f;
    font-size: clamp(52px, 6vw, 92px);
    font-weight: 400;
    line-height: 1;
    margin: 24px 0 42px;
}

/* ============================================================
   Eras in Stars Website Brand Sync v1.34
   Matches ErasOS: Cormorant Garamond, metallic Rosa,
   star cursor, responsive luxury, and 13-click Easter egg.
============================================================ */

:root{
    --eis-black:#050505;
    --eis-cream:#f7f1ed;
    --eis-rosa:#c9968f;
    --eis-rosa-deep:#9f6f69;
    --eis-rosa-light:#f4d4cc;
    --eis-champagne:#fff1dc;
    --eis-line:rgba(247,241,237,.18);
    --eis-glass:rgba(255,245,235,.045);
}

/* subtle living starfield */
body::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;
    background-image:
        radial-gradient(rgba(247,241,237,.18) .65px, transparent .75px),
        radial-gradient(rgba(201,150,143,.16) .55px, transparent .75px);
    background-size:52px 52px, 97px 97px;
    background-position:0 0, 30px 18px;
    opacity:.13;
}

body{
    font-family:"Cormorant Garamond", Georgia, serif;
}

/* shared website logo behavior */
.nav-logo{
    width:160px;
    max-width:35vw;
    filter:drop-shadow(0 0 12px rgba(201,150,143,.18));
    cursor:pointer;
    transition:transform .35s ease, filter .35s ease;
    animation:eisLogoBreath 14s ease-in-out infinite;
}

.nav-logo:hover{
    transform:scale(1.035);
    filter:drop-shadow(0 0 18px rgba(201,150,143,.4));
}

@keyframes eisLogoBreath{
    0%,82%,100%{ filter:drop-shadow(0 0 8px rgba(201,150,143,.12)); }
    88%{ filter:drop-shadow(0 0 18px rgba(244,212,204,.5)) brightness(1.08); }
}

/* metallic Rosa text engine */
.metallic-rosa,
.hero-content h1,
.home-philosophy h2,
.home-about-preview h2,
.home-services h2,
.home-contact h2,
.about-hero h1,
.about-copy h2,
.awards-section h2,
.honors-section h2,
.about-statement p,
.about-cta h2,
.investment-hero h1,
.collections-section h2,
.remembrance-section h2,
.client-stories h2,
.faq-section h2,
.investment-cta h2,
.collection-item h3,
.collection-number,
.collection-price span,
.home-service-grid h3,
.home-contact strong,
.award-grid span,
.faq-item h3,
.gallery-hero h1,
.gallery-card h2,
.gallery-card span,
.gallery-cta h2,
.cradled-hero h1,
.cradled-section h2,
.cradled-card h3{
    color:transparent !important;
    background:
        linear-gradient(115deg,
            var(--eis-rosa-deep) 0%,
            var(--eis-rosa) 18%,
            var(--eis-champagne) 34%,
            var(--eis-rosa-light) 47%,
            var(--eis-rosa) 62%,
            var(--eis-rosa-deep) 100%);
    background-size:260% auto;
    -webkit-background-clip:text;
    background-clip:text;
    text-shadow:0 0 22px rgba(201,150,143,.10);
    animation:metallicRosaSweep 16s ease-in-out infinite;
}

@keyframes metallicRosaSweep{
    0%,72%,100%{ background-position:0% center; }
    82%{ background-position:100% center; }
}

/* Rosa line elements */
.small-line,
.collection-item,
.collection-item:last-child,
.home-service-grid div,
.award-grid div,
.gallery-card{
    border-color:rgba(201,150,143,.42) !important;
}

/* ErasOS-style buttons */
button,
.eis-button,
a.eis-button{
    position:relative;
    isolation:isolate;
    border:1px solid rgba(201,150,143,.62);
    background:linear-gradient(135deg, rgba(255,255,255,.025), rgba(201,150,143,.065));
    color:var(--eis-cream);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.025);
    border-radius:0;
}

button::before,
.eis-button::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:
        linear-gradient(115deg,
            transparent 0%,
            rgba(201,150,143,.12) 28%,
            rgba(255,241,220,.6) 48%,
            rgba(201,150,143,.2) 58%,
            transparent 84%);
    transform:translateX(-140%);
    transition:transform .85s ease;
}

button:hover::before,
.eis-button:hover::before{
    transform:translateX(140%);
}

button:hover,
.eis-button:hover{
    border-color:rgba(244,212,204,.86);
    box-shadow:
        0 0 18px rgba(201,150,143,.28),
        0 0 42px rgba(201,150,143,.12),
        inset 0 0 20px rgba(201,150,143,.08);
}

/* service/package cards */
.home-service-grid div,
.collection-item,
.award-grid div,
.faq-item,
.gallery-card,
.cradled-card{
    background:linear-gradient(145deg, rgba(255,245,235,.035), rgba(201,150,143,.025));
    backdrop-filter:blur(8px);
}

.home-service-grid div{
    transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.home-service-grid div:hover{
    transform:translateY(-4px);
    border-color:rgba(244,212,204,.64) !important;
    box-shadow:0 20px 50px rgba(0,0,0,.22), 0 0 30px rgba(201,150,143,.1);
}

/* star cursor trail */
.eis-cursor-star{
    position:fixed;
    width:7px;
    height:7px;
    left:0;
    top:0;
    transform:translate(-50%,-50%) rotate(45deg);
    pointer-events:none;
    z-index:9999;
    background:radial-gradient(circle, #fff7ed 0%, #f4d4cc 35%, rgba(201,150,143,.35) 65%, transparent 75%);
    box-shadow:0 0 16px rgba(244,212,204,.55);
    animation:eisCursorFade .8s ease-out forwards;
}

@keyframes eisCursorFade{
    0%{ opacity:1; transform:translate(-50%,-50%) scale(1) rotate(45deg); }
    100%{ opacity:0; transform:translate(-50%,-70%) scale(.25) rotate(45deg); }
}

/* 13-click starburst */
.eis-starburst{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:9998;
    background:
        radial-gradient(circle at 50% 50%, rgba(201,150,143,.2), transparent 34%),
        rgba(0,0,0,.28);
    animation:eisBurstFade 2.4s ease forwards;
}

.eis-burst-star{
    position:absolute;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#fff1dc;
    box-shadow:0 0 18px rgba(244,212,204,.9);
    animation:eisBurstStar 1.8s ease-out forwards;
}

.eis-burst-message{
    position:fixed;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    color:var(--eis-cream);
    font-size:clamp(32px,6vw,88px);
    line-height:.95;
    text-align:center;
    letter-spacing:.02em;
    z-index:9999;
    opacity:0;
    animation:eisMessageIn 2.2s ease forwards;
}

.eis-burst-message span{
    display:block;
    margin-top:16px;
    font-size:clamp(14px,2vw,22px);
    letter-spacing:.32em;
    text-transform:uppercase;
    color:var(--eis-rosa-light);
}

@keyframes eisBurstFade{
    0%{ opacity:0; }
    15%{ opacity:1; }
    100%{ opacity:0; }
}

@keyframes eisBurstStar{
    0%{ opacity:0; transform:translate(0,0) scale(.2); }
    20%{ opacity:1; }
    100%{ opacity:0; transform:translate(var(--tx), var(--ty)) scale(1.8); }
}

@keyframes eisMessageIn{
    0%,10%{ opacity:0; transform:translate(-50%,-46%) scale(.96); }
    25%,75%{ opacity:1; transform:translate(-50%,-50%) scale(1); }
    100%{ opacity:0; transform:translate(-50%,-54%) scale(.98); }
}

/* Cradled page */
.cradled-hero{
    min-height:88vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    max-width:1120px;
    margin:0 auto;
    text-align:center;
    padding:160px 8vw 90px;
}

.cradled-hero h1{
    font-size:clamp(58px,7.5vw,120px);
    font-weight:400;
    line-height:.96;
    margin:28px 0;
}

.cradled-hero p,
.cradled-section p{
    font-size:24px;
    line-height:1.55;
    max-width:860px;
    margin:0 auto;
    font-weight:500;
}

.cradled-section{
    max-width:1150px;
    margin:0 auto;
    text-align:center;
}

.cradled-section h2{
    font-size:clamp(44px,5.5vw,88px);
    font-weight:400;
    line-height:1;
    margin:18px 0 34px;
}

.cradled-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:70px;
    text-align:left;
}

.cradled-card{
    border:1px solid rgba(201,150,143,.38);
    padding:38px 30px;
}

.cradled-card h3{
    font-size:32px;
    font-weight:400;
    margin:0 0 16px;
}

.cradled-card p{
    font-size:19px;
    line-height:1.45;
    margin:0;
}

/* responsive luxury */
@media (max-width:1100px){
    .home-service-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

@media (max-width:900px){
    nav{
        top:18px;
        width:92%;
        gap:18px;
    }

    .nav-logo{
        width:130px;
    }

    nav ul{
        gap:12px 18px;
        max-width:70%;
    }

    nav a{
        font-size:12px;
        letter-spacing:1.6px;
    }

    .hero-content{
        margin-left:0;
        padding-top:120px;
    }

    .button-row{
        width:100%;
    }

    .button-row button,
    button{
        width:100%;
        max-width:420px;
        min-height:54px;
    }

    .gallery-card{
        min-height:430px;
        padding:38px 28px;
    }

    .home-service-grid{
        grid-template-columns:1fr;
    }

    .cradled-hero,
    .gallery-hero,
    .investment-hero,
    .about-hero{
        padding-top:170px;
    }
}

@media (max-width:560px){
    nav{
        position:absolute;
        align-items:center;
    }

    .nav-logo{
        width:112px;
    }

    nav ul{
        justify-content:flex-end;
        gap:9px 12px;
        max-width:72%;
    }

    nav a{
        font-size:10.5px;
        letter-spacing:1.2px;
    }

    section{
        padding:76px 6vw;
    }

    .hero-content h1,
    .about-hero h1,
    .investment-hero h1,
    .gallery-hero h1,
    .cradled-hero h1{
        font-size:clamp(52px,17vw,78px);
    }

    .home-philosophy h2,
    .home-about-preview h2,
    .home-services h2,
    .home-contact h2,
    .collections-section h2,
    .gallery-cta h2{
        font-size:clamp(42px,13vw,62px);
    }

    .hero-content p,
    .home-about-preview p,
    .home-contact p,
    .investment-hero p,
    .collection-item p,
    .gallery-hero p,
    .gallery-card p,
    .cradled-hero p,
    .cradled-section p{
        font-size:19px;
    }

    .collection-item{
        padding:46px 0;
    }

    .gallery-card{
        min-height:360px;
    }
}



/* v1.36 — Website photography integration */
.home-hero {
    background:
        linear-gradient(rgba(5,5,5,.50), rgba(5,5,5,.62)),
        url("../images/web/hero-birth.webp");
    background-size: cover;
    background-position: center 42%;
}

.home-about-image,
.about-photo {
    background:
        linear-gradient(rgba(5,5,5,.08), rgba(5,5,5,.20)),
        url("../images/web/home-about.webp");
    background-size: cover;
    background-position: center;
}

.home-service-grid div {
    min-height: 260px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    position:relative;
    overflow:hidden;
    isolation:isolate;
}
.home-service-grid div::before {
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;
    background-size:cover;
    background-position:center;
    transform:scale(1.02);
    transition:transform .8s ease, opacity .8s ease;
    opacity:.62;
}
.home-service-grid div::after {
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:linear-gradient(rgba(5,5,5,.22), rgba(5,5,5,.86));
}
.home-service-grid div:hover::before { transform:scale(1.08); opacity:.82; }
.home-service-grid div:nth-child(1)::before{ background-image:url("../images/web/birth-02.webp"); }
.home-service-grid div:nth-child(2)::before{ background-image:url("../images/web/maternity-01.webp"); }
.home-service-grid div:nth-child(3)::before{ background-image:url("../images/web/newborn-01.webp"); }
.home-service-grid div:nth-child(4)::before{ background-image:url("../images/web/cakesmash-01.webp"); }
.home-service-grid div:nth-child(5)::before{ background-image:url("../images/web/bereavement-01.webp"); }

.featured-portfolio-strip {
    text-align:center;
    padding-top:110px;
}
.featured-portfolio-strip h2,
.portfolio-gallery-section h2,
.cradled-image-story h2 {
    color:transparent !important;
    background:linear-gradient(115deg,var(--eis-rosa-deep),var(--eis-rosa),var(--eis-champagne),var(--eis-rosa-light),var(--eis-rosa-deep));
    background-size:260% auto;
    -webkit-background-clip:text;
    background-clip:text;
    animation:metallicRosaSweep 16s ease-in-out infinite;
    font-size:clamp(42px, 5.5vw, 86px);
    font-weight:400;
    line-height:1;
    margin:18px 0 58px;
}
.featured-photo-grid {
    max-width:1350px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    grid-auto-rows:250px;
    gap:18px;
}
.featured-photo { margin:0; overflow:hidden; border:1px solid rgba(201,150,143,.28); background:#0b0b0b; }
.featured-photo img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(.92) contrast(1.03); transition:transform .8s ease, filter .8s ease; }
.featured-photo:hover img { transform:scale(1.055); filter:saturate(1) contrast(1.08); }
.featured-photo.tall { grid-row:span 2; }
.featured-photo.wide { grid-column:span 2; }

.birth-gallery { background-image:url("../images/web/birth-01.webp"); }
.maternity-gallery { background-image:url("../images/web/maternity-01.webp"); }
.newborn-gallery { background-image:url("../images/web/newborn-01.webp"); }
.milestone-gallery { background-image:url("../images/web/cakesmash-01.webp"); }
.bereavement-gallery { background-image:url("../images/web/bereavement-01.webp"); }

.portfolio-gallery-section {
    max-width:1400px;
    margin:0 auto;
    padding-top:90px;
}
.gallery-intro {
    font-size:22px;
    line-height:1.45;
    max-width:760px;
    margin:-34px auto 46px;
    text-align:center;
    color:rgba(247,241,237,.86);
}
.portfolio-gallery-section .kicker { text-align:center; display:block; }
.portfolio-masonry {
    columns:3 280px;
    column-gap:18px;
}
.portfolio-masonry figure {
    margin:0 0 18px;
    break-inside:avoid;
    overflow:hidden;
    border:1px solid rgba(201,150,143,.28);
    background:rgba(255,255,255,.025);
}
.portfolio-masonry img {
    width:100%;
    height:auto;
    display:block;
    transition:transform .8s ease, filter .8s ease;
}
.portfolio-masonry figure:hover img { transform:scale(1.035); filter:brightness(1.05); }
.smaller-gallery {
    max-width:760px;
    margin:0 auto;
    columns:1;
}

.cradled-image-story {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    max-width:1250px;
    margin:0 auto;
}
.cradled-image-frame {
    border:1px solid rgba(201,150,143,.32);
    overflow:hidden;
    background:rgba(255,255,255,.025);
}
.cradled-image-frame img {
    width:100%;
    display:block;
}
.cradled-image-story p:not(.kicker) {
    font-size:22px;
    line-height:1.5;
    color:rgba(247,241,237,.86);
}

a.eis-button {
    text-decoration:none;
    padding:18px 42px;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

@media (max-width: 900px) {
    .featured-photo-grid { grid-template-columns:1fr 1fr; grid-auto-rows:220px; }
    .featured-photo.wide { grid-column:span 2; }
    .featured-photo.tall { grid-row:span 1; }
    .cradled-image-story { grid-template-columns:1fr; gap:34px; }
    .portfolio-masonry { columns:2 220px; }
}

@media (max-width: 620px) {
    .featured-photo-grid { grid-template-columns:1fr; grid-auto-rows:auto; }
    .featured-photo,
    .featured-photo.tall,
    .featured-photo.wide { grid-column:auto; grid-row:auto; min-height:0; }
    .featured-photo img { height:auto; }
    .portfolio-masonry { columns:1; }
    .gallery-card { min-height:430px; padding:34px; }
    .home-service-grid div { min-height:230px; }
}

/* ============================================================
   Website QA Polish v1.38
   Clean glow buttons, full-image galleries, and linked collections.
============================================================ */

/* Buttons glow cleanly without a light beam sitting across the page. */
button,
.eis-button,
a.eis-button {
    overflow: hidden;
    background: rgba(8,8,8,.72) !important;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, color .28s ease;
}
button::before,
.eis-button::before,
a.eis-button::before {
    display: none !important;
}
button:hover,
button:focus-visible,
.eis-button:hover,
.eis-button:focus-visible,
a.eis-button:hover,
a.eis-button:focus-visible {
    transform: translateY(-2px);
    color: #fff8f4;
    border-color: rgba(244,212,204,.95);
    box-shadow:
        0 0 12px rgba(201,150,143,.46),
        0 0 32px rgba(201,150,143,.24),
        inset 0 0 18px rgba(201,150,143,.10);
}

/* Specialty cards show the full photograph instead of cropping composition. */
.gallery-card {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: #050505;
}
.gallery-card::before {
    background: linear-gradient(to top, rgba(5,5,5,.92) 0%, rgba(5,5,5,.42) 43%, rgba(5,5,5,.06) 72%, transparent 100%);
}

/* Portfolio artwork is never cropped. */
.portfolio-masonry figure {
    display: inline-block;
    width: 100%;
}
.portfolio-masonry img,
.portfolio-masonry figure.tall img,
.portfolio-masonry figure.wide img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
}
.portfolio-masonry figure:hover img {
    transform: none;
}

/* Service collection cards are real links. */
.home-service-grid a {
    min-height: 280px;
    border: 1px solid rgba(201,150,143,.42);
    padding: 38px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(145deg, rgba(255,245,235,.035), rgba(201,150,143,.025));
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.home-service-grid a:hover,
.home-service-grid a:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(244,212,204,.64);
    box-shadow: 0 20px 50px rgba(0,0,0,.22), 0 0 30px rgba(201,150,143,.14);
}
.home-service-grid a:nth-child(1){ background-image:linear-gradient(rgba(5,5,5,.24),rgba(5,5,5,.78)),url("../images/web/birth-02.webp"); }
.home-service-grid a:nth-child(2){ background-image:linear-gradient(rgba(5,5,5,.24),rgba(5,5,5,.78)),url("../images/web/maternity-01.webp"); }
.home-service-grid a:nth-child(3){ background-image:linear-gradient(rgba(5,5,5,.24),rgba(5,5,5,.78)),url("../images/web/newborn-01.webp"); }
.home-service-grid a:nth-child(4){ background-image:linear-gradient(rgba(5,5,5,.24),rgba(5,5,5,.78)),url("../images/web/cakesmash-01.webp"); }
.home-service-grid a:nth-child(5){ background-image:linear-gradient(rgba(5,5,5,.24),rgba(5,5,5,.78)),url("../images/web/bereavement-01.webp"); }
.home-service-grid a { background-size: cover; background-position: center; }

.collection-item[data-href] {
    cursor: pointer;
}
.collection-item[data-href]:hover,
.collection-item[data-href]:focus-visible {
    border-color: rgba(244,212,204,.72) !important;
    box-shadow: 0 0 28px rgba(201,150,143,.12);
    outline: none;
}
.contact-email { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }


/* v1.39 — Cradled in Constellations polish */
.cradled-section > .eis-button{
    display:inline-flex;
    margin-top:64px;
}

.cradled-section h2{
    line-height:1.12;
    padding-bottom:.18em;
    overflow:visible;
    display:inline-block;
}

@media (max-width: 700px){
    .cradled-section > .eis-button{
        margin-top:46px;
    }

    .cradled-section h2{
        line-height:1.16;
        padding-bottom:.22em;
    }
}


/* ==========================================================
   v1.40 — Website Experience + Performance
   ========================================================== */
html { scroll-behavior: smooth; }
html.eis-page-ready body { animation: eisPageIn .42s ease both; }
html.eis-page-leaving body { opacity: 0; transform: translateY(5px); transition: opacity .23s ease, transform .23s ease; }
@keyframes eisPageIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

.eis-page-loader {
  position: fixed; inset: 0; z-index: 99999; display: grid; place-items: center;
  background: #050505; transition: opacity .55s ease, visibility .55s ease;
}
.eis-page-loader.is-hidden { opacity: 0; visibility: hidden; }
.eis-loader-inner { text-align: center; color: #f7f1ed; letter-spacing: .18em; }
.eis-loader-inner img { width: min(220px, 54vw); height: auto; filter: drop-shadow(0 0 20px rgba(201,150,143,.18)); }
.eis-loader-inner p { margin: 16px 0 18px; font-size: 15px; }
.eis-loader-constellation { display: flex; justify-content: center; gap: 17px; }
.eis-loader-constellation span { width: 5px; height: 5px; border-radius: 50%; background: #c9968f; box-shadow: 0 0 12px rgba(201,150,143,.75); animation: eisLoaderTwinkle 1.2s ease-in-out infinite; }
.eis-loader-constellation span:nth-child(2){animation-delay:.16s}.eis-loader-constellation span:nth-child(3){animation-delay:.32s}.eis-loader-constellation span:nth-child(4){animation-delay:.48s}
@keyframes eisLoaderTwinkle { 0%,100% { opacity:.28; transform:scale(.72) } 50% { opacity:1; transform:scale(1.32) } }

.reveal-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity .72s ease var(--reveal-delay,0ms), transform .72s ease var(--reveal-delay,0ms); }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

.eis-site-footer { padding: 96px 8vw 46px; border-top: 1px solid rgba(201,150,143,.26); text-align: center; background: radial-gradient(circle at 50% 0%, rgba(201,150,143,.08), transparent 42%), #050505; }
.eis-footer-mark { color: #c9968f; font-size: 24px; text-shadow: 0 0 18px rgba(201,150,143,.55); }
.eis-site-footer h2 { max-width: 760px; margin: 16px auto 30px; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.02; }
.eis-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 34px; margin-bottom: 30px; }
.eis-footer-links a, .eis-studio-access { color: #f7f1ed; text-decoration: none; letter-spacing: .14em; font-size: 13px; }
.eis-footer-links a:hover, .eis-studio-access:hover { color: #c9968f; }
.eis-footer-meta { color: rgba(247,241,237,.66); font-size: 14px; margin-bottom: 18px; }
.eis-studio-access { opacity: .55; font-size: 11px; }

@media (max-width: 900px) {
  nav ul { gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
  nav a { font-size: 12px; letter-spacing: 1.2px; }
}
@media (max-width: 700px) {
  .eis-site-footer { padding: 74px 7vw 38px; }
  .eis-footer-links { flex-direction: column; gap: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
  .eis-page-loader { display: none; }
}

/* ==========================================================
   v1.41 — Typography clipping fix + social links
   ========================================================== */
/* Cormorant's long descenders need a little extra room when the
   metallic text mask is active. This prevents g, y, p, q, and j
   from being clipped at the bottom across website pages. */
.metallic-rosa,
.hero-content h1,
.home-philosophy h2,
.home-about-preview h2,
.home-services h2,
.home-contact h2,
.about-hero h1,
.about-copy h2,
.awards-section h2,
.honors-section h2,
.about-statement p,
.about-cta h2,
.investment-hero h1,
.collections-section h2,
.remembrance-section h2,
.client-stories h2,
.faq-section h2,
.investment-cta h2,
.collection-item h3,
.collection-number,
.collection-price span,
.home-service-grid h3,
.home-contact strong,
.award-grid span,
.faq-item h3,
.gallery-hero h1,
.gallery-card h2,
.gallery-card span,
.gallery-cta h2,
.cradled-hero h1,
.cradled-section h2,
.cradled-card h3,
.eis-site-footer h2 {
    padding-bottom: .18em;
    overflow: visible !important;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Give oversized display headings enough vertical space without
   changing the visual hierarchy or desktop composition. */
.hero-content h1,
.about-hero h1,
.investment-hero h1,
.gallery-hero h1,
.cradled-hero h1 {
    line-height: 1.02 !important;
}

.eis-footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 26px;
    margin: -8px 0 30px;
}

.eis-footer-socials a {
    color: #c9968f;
    text-decoration: none;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 2px;
    transition: color .3s ease, text-shadow .3s ease, transform .3s ease;
}

.eis-footer-socials a:hover,
.eis-footer-socials a:focus-visible {
    color: #f4d4cc;
    text-shadow: 0 0 16px rgba(201,150,143,.55);
    transform: translateY(-1px);
    outline: none;
}

@media (max-width: 700px) {
    .eis-footer-socials {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 26px;
    }
}


/* ==========================================================
   v1.42 — Rosa footer, heading breathing room, shooting stars
   ========================================================== */
/* Protect oversized Cormorant capitals such as the L in “Light.” */
.featured-portfolio-strip h2,
.home-philosophy h2,
.home-about-preview h2,
.home-services h2,
.home-contact h2,
.eis-site-footer h2 {
    display: inline-block;
    max-width: 100%;
    line-height: 1.14 !important;
    padding: .05em .08em .24em !important;
    margin-left: -.08em;
    overflow: visible !important;
    vertical-align: bottom;
}

/* The investment remembrance CTA needs its own breathing room. */
.remembrance-section .eis-button {
    display: inline-flex;
    margin-top: 3.25rem;
}

/* Make the entire footer feel like Rosa stationery rather than plain UI. */
.eis-site-footer,
.eis-site-footer p,
.eis-site-footer a,
.eis-site-footer .eis-footer-meta,
.eis-site-footer .eis-footer-mark {
    color: #c9968f;
}

.eis-site-footer h2,
.eis-site-footer .eis-footer-links a,
.eis-site-footer .eis-footer-socials a,
.eis-site-footer .eis-footer-meta,
.eis-site-footer .eis-studio-access,
.eis-site-footer .eis-footer-mark {
    background: linear-gradient(
        115deg,
        var(--eis-rosa-deep) 0%,
        var(--eis-rosa) 20%,
        var(--eis-champagne) 42%,
        var(--eis-rosa-light) 50%,
        var(--eis-rosa) 68%,
        var(--eis-rosa-deep) 100%
    );
    background-size: 260% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    animation: metallicRosaSweep 16s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(201,150,143,.10);
}

/* Luxury Rosa shooting stars: quiet, occasional, and always behind content. */
.eis-shooting-star-layer {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 9990;
    isolation: isolate;
}

.eis-shooting-star {
    --star-size: 5px;
    --star-travel: 38vw;
    position: absolute;
    width: var(--star-size);
    height: var(--star-size);
    border-radius: 50%;
    opacity: 0;
    background: radial-gradient(circle, #fff7f4 0 16%, #f4d4cc 22% 38%, #c9968f 56%, transparent 74%);
    box-shadow:
        0 0 7px rgba(244,212,204,.95),
        0 0 16px rgba(201,150,143,.65),
        0 0 28px rgba(201,150,143,.28);
    transform: rotate(-24deg) translate3d(0,0,0);
    animation: eisShootingStar 1.65s cubic-bezier(.22,.61,.36,1) forwards;
}

.eis-shooting-star::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    width: clamp(70px, 11vw, 180px);
    height: 1px;
    transform: translateY(-50%);
    transform-origin: right center;
    background: linear-gradient(90deg, transparent, rgba(201,150,143,.08) 18%, rgba(244,212,204,.65) 72%, rgba(255,247,244,.95));
    filter: blur(.15px);
}

.eis-shooting-star::after {
    content: "✦";
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%,-50%) rotate(24deg);
    color: #f4d4cc;
    font-size: calc(var(--star-size) * 2.2);
    line-height: 1;
    text-shadow: 0 0 8px rgba(201,150,143,.85);
}

@keyframes eisShootingStar {
    0%   { opacity: 0; transform: rotate(-24deg) translate3d(0,0,0) scale(.72); }
    12%  { opacity: .92; }
    72%  { opacity: .78; }
    100% { opacity: 0; transform: rotate(-24deg) translate3d(var(--star-travel), 0, 0) scale(1.02); }
}

@media (max-width: 700px) {
    .featured-portfolio-strip h2,
    .home-philosophy h2,
    .home-about-preview h2,
    .home-services h2,
    .home-contact h2,
    .eis-site-footer h2 {
        line-height: 1.18 !important;
        padding-bottom: .3em !important;
    }

    .remembrance-section .eis-button {
        margin-top: 2.6rem;
    }

    .eis-shooting-star {
        --star-travel: 58vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eis-shooting-star-layer { display: none !important; }
}


/* v1.43 — ensure shooting stars stay visible above page backgrounds on every public page */
.eis-shooting-star-layer {
    z-index: 9990 !important;
    mix-blend-mode: screen;
}

.eis-shooting-star {
    animation-duration: 1.9s;
}

body > header,
body > nav,
.site-nav,
.navbar,
.mobile-nav {
    position: relative;
    z-index: 9995;
}


/* ==========================================================
   v1.45 — Launch Edition luxury finish
   ========================================================== */

/* One unified metallic Rosa treatment for branded text. */
.eis-metallic-rosa,
.eis-site-footer h2,
.eis-site-footer a,
.eis-site-footer .eis-footer-meta,
.eis-site-footer .eis-footer-mark {
    background: linear-gradient(
        115deg,
        var(--eis-rosa-deep) 0%,
        var(--eis-rosa) 19%,
        var(--eis-champagne) 39%,
        var(--eis-rosa-light) 50%,
        var(--eis-rosa) 69%,
        var(--eis-rosa-deep) 100%
    );
    background-size: 280% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    animation: metallicRosaSweep 16s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(201,150,143,.10);
}

/* The footer star catches the light rather than blinking. */
.eis-footer-mark {
    display: inline-block;
    position: relative;
    transform-origin: center;
    animation: eisFooterStarTwinkle 9.5s ease-in-out infinite !important;
}
.eis-footer-mark::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 2.4em;
    height: 2.4em;
    transform: translate(-50%,-50%) scale(.2);
    border-radius: 50%;
    opacity: 0;
    background: radial-gradient(circle, rgba(244,212,204,.42), rgba(201,150,143,.08) 46%, transparent 70%);
    animation: eisFooterStarHalo 9.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes eisFooterStarTwinkle {
    0%, 78%, 100% { transform: scale(1) rotate(0deg); filter: brightness(1); text-shadow: 0 0 11px rgba(201,150,143,.38); }
    84% { transform: scale(1.22) rotate(5deg); filter: brightness(1.4); text-shadow: 0 0 10px rgba(255,247,244,.9), 0 0 28px rgba(201,150,143,.76); }
    89% { transform: scale(1.03) rotate(0deg); filter: brightness(1.08); }
}
@keyframes eisFooterStarHalo {
    0%, 78%, 100% { opacity: 0; transform: translate(-50%,-50%) scale(.2); }
    84% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
    91% { opacity: 0; transform: translate(-50%,-50%) scale(1.35); }
}

/* Let portfolio composition stay untouched; only gallery light changes. */
.featured-photo,
.portfolio-masonry figure,
.cradled-image-frame {
    transition: filter .45s ease, box-shadow .45s ease, border-color .45s ease, transform .45s ease;
}
.featured-photo img,
.portfolio-masonry img,
.cradled-image-frame img {
    transform: none !important;
    transition: filter .45s ease !important;
}
.featured-photo:hover,
.featured-photo:focus-within,
.portfolio-masonry figure:hover,
.cradled-image-frame:hover {
    border-color: rgba(244,212,204,.58);
    box-shadow: 0 18px 48px rgba(0,0,0,.34), 0 0 24px rgba(201,150,143,.12);
}
.featured-photo:hover img,
.portfolio-masonry figure:hover img,
.cradled-image-frame:hover img {
    transform: none !important;
    filter: brightness(1.055) saturate(1) contrast(1.035) !important;
}

/* Buttons press like a physical luxury control, with no page-wide light cast. */
.eis-button:active,
button:active {
    transform: translateY(0) scale(.985) !important;
    box-shadow: 0 0 10px rgba(201,150,143,.28), inset 0 2px 8px rgba(0,0,0,.38) !important;
}
.eis-button.eis-button-sparkle::after,
button.eis-button-sparkle::after {
    content: "✦";
    position: absolute;
    right: 12%;
    top: 14%;
    color: #f4d4cc;
    font-size: .8rem;
    animation: eisButtonSparkle .55s ease-out forwards;
    pointer-events: none;
}
@keyframes eisButtonSparkle {
    0% { opacity: 0; transform: scale(.35) rotate(0deg); }
    35% { opacity: 1; transform: scale(1.2) rotate(22deg); }
    100% { opacity: 0; transform: translate(8px,-8px) scale(.45) rotate(45deg); }
}

/* Shooting-star values are randomized in JS so each page feels organic. */
.eis-shooting-star {
    --star-angle: -24deg;
    --star-duration: 1.9s;
    --tail-length: 130px;
    transform: rotate(var(--star-angle)) translate3d(0,0,0);
    animation-name: eisShootingStarLaunch !important;
    animation-duration: var(--star-duration) !important;
}
.eis-shooting-star::before { width: var(--tail-length) !important; }
.eis-shooting-star::after { transform: translate(-50%,-50%) rotate(calc(var(--star-angle) * -1)); }
@keyframes eisShootingStarLaunch {
    0%   { opacity: 0; transform: rotate(var(--star-angle)) translate3d(0,0,0) scale(.72); }
    12%  { opacity: var(--star-opacity, .92); }
    72%  { opacity: calc(var(--star-opacity, .92) * .84); }
    100% { opacity: 0; transform: rotate(var(--star-angle)) translate3d(var(--star-travel),0,0) scale(1.02); }
}

/* Constellation Easter egg. */
.eis-constellation-easter-egg {
    position: fixed;
    inset: 0;
    z-index: 10050;
    pointer-events: none;
    background: rgba(2,2,4,.87);
    opacity: 0;
    animation: eisConstellationScene 2.75s ease forwards;
}
.eis-constellation-easter-egg svg { width: 100%; height: 100%; overflow: visible; }
.eis-constellation-easter-egg line {
    stroke: rgba(201,150,143,.72);
    stroke-width: 1.35;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    filter: drop-shadow(0 0 5px rgba(201,150,143,.48));
    animation: eisDrawConstellation 1.1s .28s ease forwards;
}
.eis-constellation-easter-egg circle {
    fill: #f4d4cc;
    filter: drop-shadow(0 0 7px rgba(244,212,204,.9));
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: eisConstellationPoint .7s ease forwards;
}
.eis-constellation-caption {
    position: absolute;
    left: 50%;
    top: 66%;
    transform: translate(-50%,-50%);
    text-align: center;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #f4d4cc;
    letter-spacing: .12em;
    font-size: clamp(22px,3vw,40px);
    opacity: 0;
    animation: eisConstellationCaption 2.4s .5s ease forwards;
}
.eis-constellation-caption span { display:block; margin-top:.55rem; font-size:.45em; letter-spacing:.26em; text-transform:uppercase; }
@keyframes eisConstellationScene { 0%{opacity:0} 14%,78%{opacity:1} 100%{opacity:0} }
@keyframes eisDrawConstellation { to { stroke-dashoffset:0; } }
@keyframes eisConstellationPoint { 0%{opacity:0;transform:scale(.2)} 60%{opacity:1;transform:scale(1.5)} 100%{opacity:1;transform:scale(1)} }
@keyframes eisConstellationCaption { 0%,12%{opacity:0;transform:translate(-50%,-46%)} 35%,70%{opacity:1;transform:translate(-50%,-50%)} 100%{opacity:0} }

@media (max-width: 700px) {
    .button-row,
    .home-service-grid,
    .eis-footer-links,
    .eis-footer-socials { row-gap: 14px !important; }
    .eis-button,
    a.eis-button,
    button {
        min-height: 50px;
        padding-top: 15px;
        padding-bottom: 15px;
        touch-action: manipulation;
    }
    .collection-item,
    .gallery-card,
    .cradled-card { margin-bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .eis-footer-mark,
    .eis-footer-mark::after { animation: none !important; }
    .eis-constellation-easter-egg { display:none !important; }
}
