@import url('https://fonts.googleapis.com/css2?family=Beau+Rivage&display=swap');

:root{
    /* Mother of Pearl Palette */
    --cool-steel: #A0A3AB;
    --ash-grey: #99A896;
    --silver: #BAB9BB;
    --petal-frost: #ECCAD4;
    --alabaster-grey: #D8DCD9;
    --petal-pink: #eccae1;
    /* Editorial */
    --bg-main: #FCFCFB;
    --bg-band: #2E2D30;      /* dark image bands */
    --bg-band-soft: #8B8B8D; /* grey photo strip */

    --heading: #6a667b;
    --text: #6D6C70;
    --muted: #9A9CA2;
    --on-dark: #E9E8E6;

    --hairline: rgba(62,61,66,.2);
    --hairline-dark: rgba(233,232,230,.3);

    --frame: 14px; /* white frame around the page */
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    font-weight:300;
    font-size:15px;
    color:var(--text);
    background:var(--bg-main);
    line-height:1.8;
    padding:var(--frame);
}

h1,h2,h3{
    font-family:'Cormorant Garamond',serif;
    color:var(--heading);
    font-weight:500;
}

img{
    display:block;
    max-width:100%;
}


/* Micro labels (the tiny corner text in the inspo) */

.tag{
    font-family:'Inter',sans-serif;
    font-size:.62rem;
    font-weight:400;
    letter-spacing:.28em;
    text-transform:uppercase;
    color:var(--muted);
    line-height:1.6;
}

.tag a{
    color:inherit;
    text-decoration:none;
}

.band .tag{
    color:var(--on-dark);
    opacity:.75;
}


/* Mixed-type display headline: italic word over letterspaced caps */

.display{
    font-weight:500;
    line-height:1;
    text-align:center;
}

.display .caps{
    display:inline-block;
    font-size:clamp(3rem, 9vw, 6.5rem);
    letter-spacing:.08em;
    text-transform:uppercase;
}

.display .script{
    display:inline-block;
    font-style:italic;
    font-weight:500;
    font-size:clamp(1.8rem, 5vw, 3.8rem);
    letter-spacing:0;
    text-transform:none;
    margin-right:-.35em;
    transform:translateY(-.35em);
    position:relative;
    z-index:1;
}


/* Navigation */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 4px;
}

.logo{
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
    font-size:1.15rem;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--heading);
}

.nav-links{
    display:flex;
    list-style:none;
    gap:32px;
}

.nav-links a{
    font-size:.62rem;
    letter-spacing:.28em;
    text-transform:uppercase;
    text-decoration:none;
    color:var(--text);
    transition:color .3s;
}

.nav-links a:hover{
    color:var(--heading);
    border-bottom:1px solid var(--petal-frost);
}


/* Dark image bands with corner labels */

.band{
    position:relative;
    background:var(--bg-band);
    background-size:cover;
    background-position:center;
    min-height:340px;
}

.band.hero-band{
    min-height:30vh;
    background-size:100%;
    background-position:center;
    filter: saturate(100%);
    background-image:
        linear-gradient(rgba(150, 146, 153, 0.55), rgba(36, 24, 23, 0.85)),
        url("../images/motherofpearlbackground.jpg");
}

.band.quote-band{
    background-size: 80% auto;
    min-height:60vh;
    background-image:
        linear-gradient(rgba(120, 120, 122, 0.295), rgba(81, 79, 86, 0.15)),
        url("../images/silvershell.jpg");
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 10%;
}

.corner{
    position:absolute;
}

.corner.tl{ top:22px; left:24px; }
.corner.tr{ top:22px; right:24px; text-align:right; }
.corner.bl{ bottom:22px; left:24px; }
.corner.br{ bottom:22px; right:24px; text-align:right; }

.quote-band blockquote{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-weight:500;
    font-size:clamp(1.4rem, 3vw, 2.1rem);
    color:var(--on-dark);
    text-align:center;
    max-width:640px;
    line-height:1.5;
}


/* Editorial intro section (like "The PHOTO" block) */

.intro{
    padding:50px 8% 60px;
    text-align:center;
}

.intro .display{
    margin-bottom:40px;
}

.intro .content{
    max-width:560px;
    margin:auto;
    font-size:.82rem;
    letter-spacing:.06em;
    line-height:2.1;
    text-transform:none;
}

.rule{
    width:52px;
    height:1px;
    background:var(--petal-frost);
    margin:36px auto 0;
}


/* Services (flat editorial grid, no shadows, no radius) */

.services{
    padding:80px 8% 110px;
    border-top:1px solid var(--hairline);
}

.services-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:56px;
    gap:20px;
}

.services-head h2{
    font-size:clamp(2rem, 4vw, 3rem);
    font-weight:500;
    line-height:1.05;
}

.services-head h2 em{
    font-style:italic;
    display:block;
    font-size:.55em;
    letter-spacing:.04em;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:0;
    border-top:1px solid var(--hairline);
    border-bottom:1px solid var(--hairline);
}

.card{
    padding:44px 32px 52px;
    border-right:1px solid var(--hairline);
    transition:background .3s ease;
}

.card:last-child{
    border-right:none;
}

.card:hover{
    background:rgba(236,202,212,.12);
}

.card .tag{
    display:block;
    margin-bottom:22px;
}

.card h3{
    font-size:1.5rem;
    margin-bottom:14px;
    font-weight:500;
}

.card p{
    font-size:.82rem;
    letter-spacing:.04em;
    line-height:2;
}


/* Button: quiet editorial link, no pill */

.button{
    display:inline-block;
    font-size:.64rem;
    letter-spacing:.3em;
    text-transform:uppercase;
    text-decoration:none;
    color:var(--heading);
    border:1px solid var(--heading);
    padding:15px 34px;
    margin-top:36px;
    transition:.3s ease;
}

.button:hover{
    background:var(--heading);
    color:var(--bg-main);
}

.band .button{
    color:var(--on-dark);
    border-color:var(--on-dark);
}

.band .button:hover{
    background:var(--on-dark);
    color:var(--bg-band);
}

.hero-band .hero-inner{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 10%;
}

.hero-band .tagline{
    font-family: "Mrs Saint Delafield", cursive;
    font-size:clamp(2.2rem, 3.6vw, 2.7rem);
    color:var(--on-dark);
    max-width:520px;
    line-height:1.6;
}


/* Wordmark footer (the giant "nalu" block) */

.wordmark{
    padding:110px 8% 30px;
    text-align:center;
    border-top:1px solid var(--hairline);
}

.wordmark h2{
    font-size:clamp(4rem, 16vw, 11rem);
    font-weight:500;
    letter-spacing:.02em;
    text-transform:lowercase;
    line-height:.9;
}

.wordmark .footer-row{
    display:flex;
    justify-content:space-between;
    margin-top:80px;
}


/* Mobile */

@media(max-width:768px){

    body{
        --frame:8px;
    }

    .navbar{
        flex-direction:column;
        gap:16px;
    }

    .nav-links{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .services-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .card{
        border-right:none;
        border-bottom:1px solid var(--hairline);
    }

    .card:last-child{
        border-bottom:none;
    }

    .corner.bl, .corner.br{
        display:none;
    }

    .wordmark .footer-row{
        flex-direction:column;
        gap:8px;
        align-items:center;
        text-align:center;
    }
}

@media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *{ transition:none !important; }
}