*, *::before, *::after {
    box-sizing : border-box;
    margin     : 0;
    padding    : 0;
}

:root {
    --sage       : #5F7067;
    --sage-mid   : #7A9484;
    --sage-light : #97B2A4;
    --sage-pale  : #C8D9CF;
    --sw         : #E8F0EC; /* sage-whisper – slightly green-tinted white */
    --parchment  : #FAF7F2; /* warm off-white */
    --cream      : #F3EDE6;
    --cream-deep : #E8E1D9;
    --dark-sage  : #3D5045;
    --brown      : #3A3330;
    --text       : #484540;
    --text-light : #79746C;
}

html {
    scroll-behavior : smooth;
}

body {
    font-family : 'Nunito', sans-serif;
    color       : var(--text);
    background  : var(--parchment);
    overflow-x  : hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
    position        : fixed;
    top             : 0;
    left            : 0;
    right           : 0;
    z-index         : 200; /* above paws canvas */
    padding         : 15px 48px;
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    transition      : all .45s cubic-bezier(.23, 1, .32, 1);
}

nav.scrolled {
    background              : rgba(250, 247, 242, .96);
    backdrop-filter         : blur(14px);
    -webkit-backdrop-filter : blur(14px);
    box-shadow              : 0 1px 0 rgba(95, 112, 103, .1), 0 4px 20px rgba(58, 51, 48, .06);
}

.nav-brand {
    display         : flex;
    align-items     : center;
    gap             : 10px;
    text-decoration : none;
}

.nav-brand img {
    height : 36px;
}

.nav-brand-txt {
    font-family : 'Playfair Display', serif;
    font-size   : 1.1rem;
    color       : var(--sage);
}

.nav-links {
    display    : flex;
    gap        : 28px;
    list-style : none;
}

.nav-links a {
    color           : var(--text-light);
    text-decoration : none;
    font-size       : .79rem;
    font-weight     : 500;
    letter-spacing  : .1em;
    text-transform  : uppercase;
    transition      : color .2s;
}

.nav-links a:hover {
    color : var(--sage);
}

/* ── HERO ────────────────────────────────────────────── */
#hero {
    position        : relative;
    min-height      : 100vh;
    /* gradient ends at --sw so the first wave transition is seamless */
    background      : linear-gradient(180deg, var(--sw) 0%, var(--parchment) 50%, var(--sw) 100%);
    display         : flex;
    align-items     : center;
    justify-content : center;
    padding         : 100px 40px 120px;
    overflow        : hidden;
}

.blob {
    position       : absolute;
    pointer-events : none;
    border-radius  : 60% 40% 70% 30% / 50% 60% 40% 50%;
}

.b1 {
    width      : 560px;
    height     : 460px;
    background : radial-gradient(ellipse, rgba(151, 178, 164, .18) 0%, transparent 68%);
    top        : -80px;
    right      : -60px;
    animation  : morph 16s ease-in-out infinite;
}

.b2 {
    width      : 360px;
    height     : 340px;
    background : radial-gradient(ellipse, rgba(200, 217, 207, .22) 0%, transparent 70%);
    bottom     : 60px;
    left       : -50px;
    animation  : morph 20s ease-in-out infinite reverse;
}

.b3 {
    width      : 240px;
    height     : 220px;
    background : radial-gradient(ellipse, rgba(95, 112, 103, .1) 0%, transparent 70%);
    top        : 30%;
    right      : 9%;
    animation  : morph 24s ease-in-out infinite 5s;
}

@keyframes morph {
    0%, 100% {
        border-radius : 60% 40% 70% 30% / 50% 60% 40% 50%;
        transform     : scale(1) rotate(0deg);
    }
    33% {
        border-radius : 40% 60% 30% 70% / 60% 40% 60% 40%;
        transform     : scale(1.04) rotate(4deg);
    }
    66% {
        border-radius : 70% 30% 55% 45% / 40% 70% 30% 60%;
        transform     : scale(.97) rotate(-3deg);
    }
}

.hero-inner {
    position   : relative;
    z-index    : 2;
    text-align : center;
    max-width  : 680px;
}

.logo-wrap {
    position      : relative;
    display       : inline-block;
    margin-bottom : 38px;
    animation     : float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform : translateY(0)
    }
    50% {
        transform : translateY(-10px)
    }
}

.logo-ring {
    position      : absolute;
    inset         : -13px;
    border-radius : 50%;
    border        : 1.5px dashed rgba(151, 178, 164, .42);
    animation     : spin 34s linear infinite;
}

.logo-ring2 {
    position      : absolute;
    inset         : -25px;
    border-radius : 50%;
    border        : 1px dashed rgba(151, 178, 164, .2);
    animation     : spin 55s linear infinite reverse;
}

@keyframes spin {
    from {
        transform : rotate(0)
    }
    to {
        transform : rotate(360deg)
    }
}

.hero-logo {
    width         : 145px;
    height        : 145px;
    border-radius : 50%;
    object-fit    : contain;
    box-shadow    : 0 14px 50px rgba(95, 112, 103, .22), 0 2px 8px rgba(58, 51, 48, .08);
    animation     : fu 1s ease both;
    display       : flex;
}

.hero-logo img {
    align-items     : center;
    height          : 69%;
    justify-content : center;
    padding-left    : 0;
    position        : relative;
    top             : 21px;
    left            : 10px;
}

.hero-eyebrow {
    font-size      : .72rem;
    letter-spacing : .22em;
    text-transform : uppercase;
    color          : var(--sage-mid);
    margin-bottom  : 14px;
    animation      : fu 1s .2s ease both;
    opacity        : 0;
}

h1.htitle {
    font-family   : 'Playfair Display', serif;
    font-size     : clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight   : 400;
    color         : var(--brown);
    line-height   : 1.15;
    margin-bottom : 20px;
    animation     : fu 1s .3s ease both;
    opacity       : 0;
}

.hero-tagline {
    font-family   : 'Playfair Display', serif;
    font-style    : italic;
    font-size     : clamp(1rem, 1.9vw, 1.2rem);
    color         : var(--text-light);
    line-height   : 1.8;
    margin-bottom : 10px;
    animation     : fu 1s .4s ease both;
    opacity       : 0;
}

.hero-sub {
    font-size      : .86rem;
    color          : var(--text-light);
    margin-bottom  : 44px;
    letter-spacing : .04em;
    animation      : fu 1s .5s ease both;
    opacity        : 0;
}

.hero-ctas {
    display         : flex;
    gap             : 14px;
    justify-content : center;
    flex-wrap       : wrap;
    animation       : fu 1s .6s ease both;
    opacity         : 0;
}

@keyframes fu {
    from {
        opacity   : 0;
        transform : translateY(20px)
    }
    to {
        opacity   : 1;
        transform : translateY(0)
    }
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-pill {
    display         : inline-flex;
    align-items     : center;
    gap             : 8px;
    padding         : 15px 34px;
    border-radius   : 100px;
    font-family     : 'Nunito', sans-serif;
    font-size       : .85rem;
    font-weight     : 600;
    letter-spacing  : .05em;
    text-decoration : none;
    cursor          : pointer;
    border          : none;
    transition      : all .35s cubic-bezier(.23, 1, .32, 1);
}

.btn-sage {
    background : var(--sage);
    color      : #FFFFFF;
    box-shadow : 0 6px 22px rgba(95, 112, 103, .34);
}

.btn-sage:hover {
    background : var(--sage-mid);
    transform  : translateY(-3px);
    box-shadow : 0 12px 34px rgba(95, 112, 103, .42);
}

.btn-ghost {
    background      : rgba(255, 255, 255, .7);
    color           : var(--sage);
    border          : 1.5px solid var(--sage-pale);
    backdrop-filter : blur(8px);
}

.btn-ghost:hover {
    background   : #FFFFFF;
    border-color : var(--sage-light);
    transform    : translateY(-3px);
    box-shadow   : 0 8px 22px rgba(95, 112, 103, .1);
}

/* ── WAVE SEPARATORS ──────────────────────────────────
   Rule:
     wave div background = colour of the NEXT section
     SVG path fill       = colour of the PREVIOUS section
   This gives a seamless organic edge.
───────────────────────────────────────────────────────── */
.wave {
    display     : block;
    width       : 100%;
    line-height : 0;
    position    : relative;
    z-index     : 4;
    margin-top  : -1px;
}

.wave svg {
    display : block;
    width   : 100%;
}

/* ── SHARED SECTION STYLES ──────────────────────────── */
section {
    position : relative;
    z-index  : 2;
}

.si {
    padding   : 88px 48px;
    max-width : 1080px;
    margin    : 0 auto;
}

.eyebrow {
    display        : flex;
    align-items    : center;
    gap            : 12px;
    font-size      : .72rem;
    letter-spacing : .22em;
    text-transform : uppercase;
    color          : var(--sage-mid);
    margin-bottom  : 14px;
}

.eyebrow::before {
    content    : '';
    width      : 24px;
    height     : 1.5px;
    background : var(--sage-pale);
}

h2.st {
    font-family   : 'Playfair Display', serif;
    font-size     : clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight   : 400;
    color         : var(--brown);
    line-height   : 1.2;
    margin-bottom : 36px;
}

/* ── SERVICE INTRO (first section) ──────────────────── */
#service-intro {
    background : var(--parchment);
}

.intro-grid {
    display               : grid;
    grid-template-columns : 1fr 1fr;
    gap                   : 72px;
    align-items           : start;
}

.intro-text p {
    font-size     : 1rem;
    line-height   : 2;
    color         : var(--text);
    margin-bottom : 20px;
    text-align    : justify;
}

.pullquote {
    font-family : 'Playfair Display', serif;
    font-style  : italic;
    font-size   : 1.25rem;
    color       : var(--sage);
    line-height : 1.65;
    padding     : 24px 0 24px 24px;
    border-left : 2px solid var(--sage-pale);
    margin      : 26px 0;
}

.pills {
    display        : flex;
    flex-direction : column;
    gap            : 14px;
}

.pill {
    display       : flex;
    align-items   : flex-start;
    gap           : 16px;
    background    : var(--sw);
    border-radius : 20px;
    padding       : 18px 22px;
    border        : 1px solid rgba(200, 217, 207, .7);
    transition    : transform .3s, box-shadow .3s;
}

.pill:hover {
    transform  : translateX(6px);
    box-shadow : 0 6px 24px rgba(95, 112, 103, .1);
}

.pill-icon {
    font-size   : 1.5rem;
    flex-shrink : 0;
    margin-top  : 1px;
}

.pill h4 {
    font-size     : .95rem;
    font-weight   : 600;
    color         : var(--brown);
    margin-bottom : 4px;
}

.pill p {
    font-size   : .87rem;
    color       : var(--text-light);
    line-height : 1.55;
    margin      : 0;
}

/* ── WHEN ────────────────────────────────────────────── */
#when {
    background : var(--sw);
}

.when-grid {
    grid-template-columns : repeat(auto-fit, minmax(190px, 1fr));
    gap                   : 18px;
}

.when-row {
    display : flex;
}

.wcard {
    margin        : 10px;
    background    : #FFFFFF;
    border-radius : 24px;
    padding       : 32px 22px;
    border        : 1px solid rgba(200, 217, 207, .7);
    box-shadow    : 0 3px 16px rgba(95, 112, 103, .07);
    transition    : transform .4s cubic-bezier(.23, 1, .32, 1), box-shadow .4s;
    text-align    : center;
}

.wcard:hover {
    transform  : translateY(-7px);
    box-shadow : 0 16px 44px rgba(95, 112, 103, .14);
}

.wcard .em {
    font-size     : 2rem;
    margin-bottom : 13px;
    display       : block;
}

.wcard h3 {
    font-family   : 'Playfair Display', serif;
    font-size     : 1.1rem;
    color         : var(--brown);
    margin-bottom : 9px;
    font-weight   : 500;
}

.wcard p {
    font-size   : .88rem;
    color       : var(--text-light);
    line-height : 1.7;
}

/* ── SERVICES ────────────────────────────────────────── */
#services {
    background : var(--parchment);
}

.svc-grid {
    display               : grid;
    grid-template-columns : repeat(3, 1fr);
    gap                   : 18px;
    margin-bottom         : 22px;
}

.svc {
    background    : var(--sw);
    border-radius : 26px;
    padding       : 38px 30px;
    border        : 1.5px solid rgba(200, 217, 207, .6);
    transition    : all .4s cubic-bezier(.23, 1, .32, 1);
    position      : relative;
    overflow      : hidden;
}

.svc::before {
    content       : '';
    position      : absolute;
    top           : 0;
    left          : 0;
    right         : 0;
    height        : 4px;
    background    : linear-gradient(90deg, var(--sage-pale), var(--sage-light));
    border-radius : 4px 4px 0 0;
    opacity       : 0;
    transition    : opacity .3s;
}

.svc:hover {
    transform  : translateY(-5px);
    box-shadow : 0 14px 40px rgba(95, 112, 103, .12);
}

.svc:hover::before {
    opacity : 1;
}

.svc-tag {
    font-size      : .7rem;
    letter-spacing : .16em;
    text-transform : uppercase;
    color          : var(--sage-mid);
    margin-bottom  : 9px;
}

.svc h3 {
    font-family   : 'Playfair Display', serif;
    font-size     : 1.3rem;
    color         : var(--brown);
    margin-bottom : 5px;
    font-weight   : 500;
}

.svc-dur {
    font-size     : .83rem;
    color         : var(--text-light);
    margin-bottom : 22px;
}

.svc-price {
    font-family : 'Playfair Display', serif;
    font-size   : 2.1rem;
    font-weight : 400;
    color       : var(--sage);
    line-height : 1;
}

.svc-price small {
    font-family : 'Nunito', sans-serif;
    font-size   : .88rem;
    color       : var(--text-light);
    font-weight : 400;
}

.combo-wrap {
    background    : linear-gradient(135deg, var(--sage), #4A6358);
    border-radius : 28px;
    padding       : 44px 40px;
    position      : relative;
    overflow      : hidden;
}

.combo-wrap::before {
    content       : '';
    position      : absolute;
    top           : -60px;
    right         : -60px;
    width         : 260px;
    height        : 260px;
    border-radius : 50%;
    background    : rgba(255, 255, 255, .06);
}

.combo-head {
    font-family   : 'Playfair Display', serif;
    font-size     : 1.4rem;
    color         : #FFFFFF;
    margin-bottom : 24px;
    font-weight   : 400;
}

.combo-items {
    display               : grid;
    grid-template-columns : 1fr 1fr;
    gap                   : 14px;
    position              : relative;
    z-index               : 1;
}

.combo-item {
    background    : rgba(255, 255, 255, .12);
    border-radius : 18px;
    padding       : 22px 24px;
    border        : 1px solid rgba(255, 255, 255, .18);
}

.combo-item p {
    font-size     : 18px;
    color         : rgba(255, 255, 255, .85);
    line-height   : 1.55;
    margin-bottom : 12px;
}

.combo-price {
    font-family : 'Playfair Display', serif;
    font-size   : 1.75rem;
    color       : #FFFFFF;
}

.svc-note {
    margin-top : 18px;
    font-size  : 18px;
    color      : var(--text-light);
    font-style : italic;
    text-align : center;
}

/* ── PASSES ──────────────────────────────────────────── */
#passes {
    background : var(--sw);
}

.passes-grid {
    display               : grid;
    grid-template-columns : repeat(3, 1fr);
    gap                   : 20px;
}

.pcard {
    background     : #FFFFFF;
    border-radius  : 24px;
    padding        : 36px 30px;
    border         : 1.5px solid var(--cream-deep);
    box-shadow     : 0 3px 18px rgba(58, 51, 48, .05);
    transition     : all .4s cubic-bezier(.23, 1, .32, 1);
    display        : flex;
    flex-direction : column;
}

.pcard:not(.best1):hover {
    transform  : translateY(-6px);
    box-shadow : 0 14px 42px rgba(95, 112, 103, .12);
}

.pcard.best {
    background   : linear-gradient(145deg, #7E9D8D, var(--sage));
    border-color : transparent;
    box-shadow   : 0 10px 44px rgba(95, 112, 103, .28);
}

.pcard-badge {
    display        : inline-block;
    font-size      : .68rem;
    font-weight    : 600;
    letter-spacing : 0;
    text-transform : uppercase;
    padding        : 5px 14px;
    border-radius  : 100px;
    margin-bottom  : 20px;
    background     : var(--sw);
    color          : var(--sage);
    border         : 1px solid var(--sage-pale);
}

.pcard.best .pcard-badge {
    background   : rgba(255, 255, 255, .2);
    color        : #FFFFFF;
    border-color : rgba(255, 255, 255, .25);
}

.pcard-title {
    font-family   : 'Playfair Display', serif;
    font-size     : 1.45rem;
    font-weight   : 500;
    color         : var(--brown);
    margin-bottom : 6px;
}

.pcard.best .pcard-title {
    color : #FFFFFF;
}

.pcard-sub {
    font-size     : .88rem;
    color         : var(--text-light);
    margin-bottom : 24px;
    line-height   : 1.5;
}

.pcard.best .pcard-sub {
    color : rgba(255, 255, 255, .7);
}

.pcard-divider {
    height        : 1px;
    background    : var(--cream-deep);
    margin-bottom : 20px;
}

.pcard.best .pcard-divider {
    background : rgba(255, 255, 255, .2);
}

.pcard-disc {
    font-family   : 'Playfair Display', serif;
    font-size     : 1.9rem;
    font-weight   : 400;
    color         : var(--sage);
    line-height   : 1;
    margin-bottom : 6px;
}

.pcard.best .pcard-disc {
    color : #FFFFFF;
}

.pcard-disc-label {
    font-size : .83rem;
    color     : var(--text-light);
}

.pcard.best .pcard-disc-label {
    color : rgba(255, 255, 255, .65);
}

.pcard-validity {
    margin-top  : 14px;
    font-size   : .83rem;
    color       : var(--text-light);
    display     : flex;
    align-items : center;
    gap         : 6px;
}

.pcard.best .pcard-validity {
    color : rgba(255, 255, 255, .6);
}

.pcard-validity::before {
    content   : '⏱';
    font-size : .9rem;
}

/* ── EFFECTS ─────────────────────────────────────────── */
#effects {
    background : var(--parchment);
}

.eff-grid {
    display               : grid;
    grid-template-columns : repeat(3, 1fr);
    gap                   : 18px;
}

.ecard {
    background    : var(--sw);
    border-radius : 22px;
    padding       : 30px 26px;
    border        : 1px solid rgba(200, 217, 207, .55);
    transition    : all .35s;
}

.ecard:hover {
    box-shadow : 0 10px 30px rgba(95, 112, 103, .1);
    transform  : translateY(-4px);
}

.ecard .em {
    font-size     : 1.9rem;
    margin-bottom : 12px;
    display       : block;
}

.ecard h3 {
    font-family   : 'Playfair Display', serif;
    font-size     : 1.05rem;
    color         : var(--brown);
    margin-bottom : 8px;
    font-weight   : 500;
}

.ecard p {
    font-size   : .88rem;
    color       : var(--text-light);
    line-height : 1.72;
    text-align  : justify;
}

/* ── FAQ ─────────────────────────────────────────────── */
#faq {
    background : var(--sw);
}

.faq-list {
    display        : flex;
    flex-direction : column;
    gap            : 10px;
}

.faq-item {
    background    : #FFFFFF;
    border-radius : 18px;
    border        : 1px solid rgba(200, 217, 207, .6);
    overflow      : hidden;
    box-shadow    : 0 2px 12px rgba(58, 51, 48, .04);
}

.faq-q {
    width           : 100%;
    background      : none;
    border          : none;
    padding         : 22px 28px;
    text-align      : left;
    font-family     : 'Playfair Display', serif;
    font-size       : 1.08rem;
    color           : var(--brown);
    cursor          : pointer;
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    gap             : 16px;
    transition      : color .2s;
}

.faq-q:hover {
    color : var(--sage);
}

.faq-plus {
    width           : 28px;
    height          : 28px;
    background      : var(--sw);
    border-radius   : 50%;
    display         : flex;
    align-items     : center;
    justify-content : center;
    flex-shrink     : 0;
    font-size       : 1.1rem;
    color           : var(--sage);
    transition      : transform .4s cubic-bezier(.23, 1, .32, 1), background .3s;
}

.faq-item.open .faq-plus {
    transform  : rotate(45deg);
    background : var(--sage);
    color      : #FFFFFF;
}

.faq-a {
    max-height : 0;
    overflow   : hidden;
    transition : max-height .45s cubic-bezier(.23, 1, .32, 1);
}

.faq-item.open .faq-a {
    max-height : 180px;
}

.faq-a p {
    padding     : 0 28px 22px;
    font-size   : .93rem;
    color       : var(--text-light);
    line-height : 1.8;
    text-align: justify;
}

/* ── AREA ────────────────────────────────────────────── */
#area {
    background : var(--parchment);
}

.area-grid {
    display               : grid;
    grid-template-columns : 1fr 1fr;
    gap                   : 68px;
    align-items           : center;
}

.area-text p {
    font-size     : .98rem;
    line-height   : 1.9;
    color         : var(--text);
    margin-bottom : 18px;
}

.bubbles {
    display    : flex;
    flex-wrap  : wrap;
    gap        : 10px;
    margin-top : 22px;
}

.bubble {
    background    : var(--sw);
    border        : 1.5px solid var(--sage-pale);
    color         : var(--sage);
    font-size     : .84rem;
    font-weight   : 600;
    padding       : 9px 20px;
    border-radius : 100px;
    transition    : all .3s;
}

.bubble:hover {
    background   : var(--sage);
    color        : #FFFFFF;
    border-color : var(--sage);
    transform    : scale(1.04);
}

.area-box {
    background    : var(--sw);
    border-radius : 32px;
    padding       : 40px 38px;
    border        : 1px solid rgba(200, 217, 207, .5);
}

.afeat {
    display       : flex;
    align-items   : flex-start;
    gap           : 16px;
    margin-bottom : 22px;
}

.afeat:last-child {
    margin-bottom : 0;
}

.adot {
    width         : 10px;
    height        : 10px;
    border-radius : 50%;
    background    : var(--sage-light);
    flex-shrink   : 0;
    margin-top    : 7px;
}

.afeat h4 {
    font-size     : .95rem;
    font-weight   : 600;
    color         : var(--brown);
    margin-bottom : 4px;
}

.afeat p {
    font-size   : .87rem;
    color       : var(--text-light);
    line-height : 1.65;
    text-align  : justify;
}

/* ── ABOUT (bio – végén) ─────────────────────────────── */
#about {
    background : var(--sw);
}

.about-grid {
    display               : grid;
    grid-template-columns : 1fr 1.4fr;
    gap                   : 72px;
    align-items           : center;
}

.about-logo-wrap {
    display        : flex;
    flex-direction : column;
    align-items    : center;
    gap            : 24px;
}

.about-logo {
    width         : 220px;
    height        : 220px;
    border-radius : 50%;
    object-fit    : cover;
    box-shadow    : 0 16px 56px rgba(95, 112, 103, .2), 0 2px 8px rgba(58, 51, 48, .08);
    border        : 4px solid #FFFFFF;
}

.about-name {
    font-family : 'Playfair Display', serif;
    font-size   : 1.1rem;
    color       : var(--brown);
    text-align  : center;
    line-height : 1.4;
}

.about-name small {
    display        : block;
    font-family    : 'Nunito', sans-serif;
    font-size      : .78rem;
    font-weight    : 500;
    letter-spacing : .12em;
    text-transform : uppercase;
    color          : var(--sage-mid);
    margin-top     : 4px;
}

.about-text p {
    font-size     : 1rem;
    line-height   : 2;
    color         : var(--text);
    margin-bottom : 18px;
    text-align    : justify;
}

.about-text p:last-child {
    margin-bottom : 0;
}

/* ── GALLERY ─────────────────────────────────────────── */
#gallery {
    background : var(--parchment);
}

.gallery-grid {
    display               : grid;
    grid-template-columns : repeat(3, 1fr);
    gap                   : 16px;
}

.gitem {
    border-radius   : 20px;
    overflow        : hidden;
    aspect-ratio    : 4/3;
    background      : var(--sw);
    border          : 1px solid rgba(200, 217, 207, .6);
    display         : flex;
    flex-direction  : column;
    align-items     : center;
    justify-content : center;
    gap             : 10px;
    transition      : transform .35s cubic-bezier(.23, 1, .32, 1), box-shadow .35s;
    position        : relative;
}

.gitem img {
    width : 100%;
}

.gitem:hover {
    transform  : scale(1.02);
    box-shadow : 0 12px 36px rgba(95, 112, 103, .14);
}

.gitem .gdog {
    font-size : 3rem;
    opacity   : .45;
}

.gitem .gtext {
    font-size      : .8rem;
    color          : var(--text-light);
    letter-spacing : .08em;
    text-transform : uppercase;
}

/* first item slightly larger for variety */
.gitem:nth-child(1) {
    grid-row : span 1;
}

.gitem:nth-child(4) {
    background : linear-gradient(145deg, var(--sw), var(--cream));
}

/* ── CONTACT ─────────────────────────────────────────── */
#contact {
    background : var(--dark-sage);
    position   : relative;
    overflow   : hidden;
}

#contact::before {
    content       : '';
    position      : absolute;
    top           : -100px;
    right         : -100px;
    width         : 400px;
    height        : 400px;
    border-radius : 50%;
    background    : rgba(255, 255, 255, .04);
}

#contact::after {
    content       : '';
    position      : absolute;
    bottom        : -80px;
    left          : -60px;
    width         : 300px;
    height        : 300px;
    border-radius : 50%;
    background    : rgba(255, 255, 255, .03);
}

#contact .si {
    position : relative;
    z-index  : 2;
}

#contact .eyebrow {
    color : rgba(255, 255, 255, .42);
}

#contact .eyebrow::before {
    background : rgba(255, 255, 255, .15);
}

#contact h2.st {
    color : #FFFFFF;
}

.contact-tag {
    font-family   : 'Playfair Display', serif;
    font-style    : italic;
    font-size     : 1.1rem;
    color         : rgba(255, 255, 255, .7);
    max-width     : 480px;
    line-height   : 1.75;
    margin-bottom : 48px;
}

.contact-links {
    display   : flex;
    flex-wrap : wrap;
    gap       : 14px;
}

.clink {
    display         : inline-flex;
    align-items     : center;
    gap             : 10px;
    background      : rgba(255, 255, 255, .1);
    border          : 1.5px solid rgba(255, 255, 255, .18);
    color           : #FFFFFF;
    text-decoration : none;
    padding         : 15px 28px;
    border-radius   : 100px;
    font-size       : .87rem;
    font-weight     : 500;
    backdrop-filter : blur(8px);
    transition      : all .35s cubic-bezier(.23, 1, .32, 1);
}

.clink:hover {
    background   : rgba(255, 255, 255, .2);
    border-color : rgba(255, 255, 255, .38);
    transform    : translateY(-3px);
    box-shadow   : 0 8px 22px rgba(0, 0, 0, .12);
}

.clink svg {
    width       : 15px;
    height      : 15px;
    fill        : currentColor;
    flex-shrink : 0;
}

/* ── STICKY CALL ─────────────────────────────────────── */
.sticky-call {
    display    : none;
    position   : fixed;
    bottom     : 0;
    left       : 0;
    right      : 0;
    z-index    : 200;
    background : var(--sage);
    padding    : 14px;
    text-align : center;
    box-shadow : 0 -4px 16px rgba(95, 112, 103, .24);
}

.sticky-call a {
    color           : #FFFFFF;
    font-size       : .85rem;
    font-weight     : 600;
    letter-spacing  : .08em;
    text-decoration : none;
    display         : flex;
    align-items     : center;
    justify-content : center;
    gap             : 8px;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
    background      : #252E27;
    padding         : 26px 48px;
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    flex-wrap       : wrap;
    gap             : 10px;
    position        : relative;
    z-index         : 2;
}

footer p, footer a {
    font-size       : .77rem;
    color           : rgba(255, 255, 255, .3);
    text-decoration : none;
    letter-spacing  : .04em;
}

footer a:hover {
    color : rgba(255, 255, 255, .62);
}

/* ── COOKIE ──────────────────────────────────────────── */
#ck {
    position        : fixed;
    bottom          : 22px;
    left            : 22px;
    max-width       : 390px;
    background      : rgba(250, 247, 242, .97);
    border-radius   : 22px;
    box-shadow      : 0 10px 44px rgba(58, 51, 48, .14);
    padding         : 26px;
    z-index         : 300;
    border          : 1px solid rgba(200, 217, 207, .5);
    backdrop-filter : blur(14px);
}

#ck h4 {
    font-family   : 'Playfair Display', serif;
    font-size     : 1rem;
    color         : var(--brown);
    margin-bottom : 8px;
}

#ck p {
    font-size     : .82rem;
    color         : var(--text-light);
    line-height   : 1.6;
    margin-bottom : 15px;
}

.ck-btns {
    display   : flex;
    gap       : 8px;
    flex-wrap : wrap;
}

.ckb {
    padding       : 10px 20px;
    border-radius : 100px;
    font-size     : .8rem;
    font-weight   : 600;
    cursor        : pointer;
    border        : none;
    transition    : all .2s;
}

.ckb-ok {
    background : var(--sage);
    color      : #FFFFFF;
}

.ckb-ok:hover {
    background : var(--sage-mid);
}

.ckb-no {
    background : transparent;
    color      : var(--text-light);
    border     : 1px solid var(--cream-deep);
}

.ckb-set {
    background : transparent;
    color      : var(--sage-mid);
    border     : 1px solid var(--sage-pale);
}

#ck-panel {
    display     : none;
    margin-top  : 14px;
    padding-top : 14px;
    border-top  : 1px solid var(--cream-deep);
}

#ck-panel label {
    display       : flex;
    align-items   : center;
    gap           : 9px;
    font-size     : .82rem;
    color         : var(--text);
    margin-bottom : 8px;
    cursor        : pointer;
}

/* ── REVEAL ──────────────────────────────────────────── */
.reveal {
    opacity    : 0;
    transform  : translateY(24px);
    transition : opacity .7s cubic-bezier(.23, 1, .32, 1), transform .7s cubic-bezier(.23, 1, .32, 1);
}

.reveal.in {
    opacity   : 1;
    transform : translateY(0);
}

.d1 {
    transition-delay : .1s
}

.d2 {
    transition-delay : .2s
}

.d3 {
    transition-delay : .3s
}

.d4 {
    transition-delay : .4s
}

.services-link {
    text-decoration : none;
    cursor          : pointer;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width : 960px) {
    .intro-grid, .area-grid, .about-grid {
        grid-template-columns : 1fr;
        gap                   : 44px;
    }

    .svc-grid, .eff-grid, .gallery-grid {
        grid-template-columns : 1fr 1fr;
    }
}

@media (max-width : 680px) {
    .si {
        padding : 64px 20px;
    }

    nav {
        padding : 13px 20px;
    }

    .nav-links {
        display : none;
    }

    .svc-grid, .eff-grid, .when-grid, .passes-grid, .combo-items, .gallery-grid {
        grid-template-columns : 1fr;
    }

    .svc, .ecard, .wcard, .pcard, .gitem {
        width : 100%;
    }

    .sticky-call {
        display : block;
    }

    body {
        padding-bottom : 54px;
    }

    footer {
        flex-direction : column;
        text-align     : center;
        padding        : 22px 20px;
    }

    #ck {
        left      : 12px;
        right     : 12px;
        max-width : none;
    }

    .when-row {
        display : block;
    }

    .wcard {
        margin : 10px 0;
    }
}

/* ── PRIVACY MODAL ───────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(30,38,32,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--parchment);
    border-radius: 28px;
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(30,38,32,.28);
    border: 1px solid rgba(200,217,207,.5);
    overflow: hidden;
    animation: modalIn .35s cubic-bezier(.23,1,.32,1) both;
}
@keyframes modalIn {
    from { opacity:0; transform: translateY(20px) scale(.97); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px 20px;
    border-bottom: 1px solid var(--cream-deep);
    flex-shrink: 0;
}
.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--brown);
    font-weight: 500;
}
.modal-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--sw);
    color: var(--sage);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.modal-close:hover { background: var(--sage-pale); transform: rotate(90deg); }
.modal-body {
    overflow-y: auto;
    padding: 28px 36px 36px;
    flex: 1;
    /* custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--sage-pale) transparent;
}
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb { background: var(--sage-pale); border-radius: 3px; }
.modal-effective {
    font-size: .8rem;
    color: var(--text-light);
    margin-bottom: 28px;
    letter-spacing: .04em;
}
.modal-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--brown);
    font-weight: 500;
    margin: 28px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--cream-deep);
}
.modal-body h3:first-of-type { margin-top: 0; }
.modal-body p {
    font-size: .9rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 10px;
}
.modal-body ul {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.modal-body ul li {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.65;
    padding-left: 18px;
    position: relative;
}
.modal-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sage-light);
    font-weight: 700;
}
.modal-body .processor-block {
    background: var(--sw);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(200,217,207,.6);
}
.modal-body .processor-block strong {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 4px;
}
.modal-body .processor-block p {
    font-size: .85rem;
    margin: 0;
    color: var(--text-light);
}
.modal-body a { color: var(--sage); text-decoration: underline; }
@media (max-width: 600px) {
    .modal-header { padding: 20px 22px 16px; }
    .modal-body { padding: 20px 22px 28px; }
}

.modal-overlay {text-align: justify;}