:root {
    --kec-white: #f2eee6;
    --kec-paper: #faf8f3;
    --kec-black: #111111;
    --kec-graphite: #343434;
    --kec-cobalt: #465d8c;
    --kec-champagne: #b79a6a;
    --kec-muted: #8c8982;
    --kec-display: "Bodoni Moda", Didot, "Times New Roman", serif;
    --kec-sans: "Manrope", Arial, sans-serif;
}

.kec-body,
.kec-body * {
    box-sizing: border-box;
}

.kec-body {
    margin: 0;
    min-width: 320px;
    color: var(--kec-black);
    background: var(--kec-white);
    font-family: var(--kec-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

.kec-body.kec-is-locked { overflow: hidden; }
.kec-body img { display: block; max-width: 100%; }
.kec-body button,
.kec-body input,
.kec-body textarea { font: inherit; }
.kec-body button,
.kec-body a { -webkit-tap-highlight-color: transparent; }
.kec-body address { font-style: normal; }
.kec-body button:focus-visible,
.kec-body a:focus-visible,
.kec-body input:focus-visible,
.kec-body textarea:focus-visible,
.kec-body [tabindex]:focus-visible {
    outline: 3px solid var(--kec-champagne);
    outline-offset: 4px;
}

.kec-main { position: relative; z-index: 2; outline: none; }
.kec-global-grid {
    position: fixed;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    opacity: .1;
    background-image: url("assets/baseline-grid.svg");
    background-size: 96px 96px;
    mix-blend-mode: multiply;
}

.kec-section {
    position: relative;
    width: min(100%, 1600px);
    min-height: 100svh;
    margin-inline: auto;
    padding: clamp(92px, 9vw, 150px) max(28px, calc((100vw - 1280px) / 2));
    overflow: hidden;
    isolation: isolate;
}

.kec-label {
    margin: 0;
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.kec-section-no {
    display: block;
    color: var(--kec-cobalt);
    font-family: var(--kec-display);
    font-size: clamp(4rem, 8vw, 8.5rem);
    line-height: .78;
}

.kec-section-head {
    display: grid;
    grid-template-columns: minmax(80px, .35fr) 1fr;
    gap: 20px 40px;
    width: min(870px, 100%);
    margin-bottom: clamp(62px, 9vw, 130px);
}

.kec-section-head .kec-section-no { grid-row: 1 / span 2; }
.kec-section-head h2,
.kec-gallery-head h2,
.kec-wishes-head h2,
.kec-rsvp-title h2 {
    margin: 0;
    font-family: var(--kec-display);
    font-size: clamp(3.1rem, 7vw, 7.5rem);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .9;
}

.kec-muted,
.kec-empty { color: var(--kec-muted); }
.kec-empty { max-width: 640px; padding-block: 22px; border-block: 1px solid currentColor; }

.kec-button {
    --kec-button-y: 0px;
    position: relative;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-width: 210px;
    min-height: 50px;
    padding: 13px 18px;
    border: 1px solid var(--kec-black);
    border-radius: 0;
    color: var(--kec-black);
    background: var(--kec-paper);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transform: translate3d(0, var(--kec-button-y), 0);
    transition: color .25s ease, background-color .25s ease, transform .25s ease;
}
.kec-button::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 6px;
    right: -6px;
    top: 6px;
    bottom: -6px;
    border-right: 1px solid var(--kec-champagne);
    border-bottom: 1px solid var(--kec-champagne);
    pointer-events: none;
    transition: transform .25s ease;
}
.kec-button:hover { --kec-button-y: -3px; color: var(--kec-paper); background: var(--kec-cobalt); }
.kec-button:hover::after { transform: translate3d(3px, 3px, 0); }
.kec-button:active { --kec-button-y: 1px; }
.kec-button--dark { color: var(--kec-paper); background: var(--kec-black); }
.kec-button:disabled { opacity: .5; cursor: wait; }

/* Every continuously driven element owns one composed transform. */
.kec-motion {
    --mx: 0px;
    --my: 0px;
    --rx: 0deg;
    --ry: 0deg;
    --scale: 1;
    --depth-x: 0px;
    --depth-y: 0px;
    --float-y: 0px;
    transform: perspective(1200px) translate3d(calc(var(--mx) + var(--depth-x)), calc(var(--my) + var(--depth-y) + var(--float-y)), 0) rotateX(var(--rx)) rotateY(var(--ry)) scale(var(--scale));
    transform-style: preserve-3d;
    will-change: transform;
}

.kec-reveal {
    --kec-reveal-x: 0px;
    --kec-reveal-y: 0px;
    opacity: 1;
    translate: 0 0;
    transition: opacity .85s ease, translate 1s cubic-bezier(.16, .78, .18, 1), letter-spacing 1s ease;
}
.kec-js .kec-reveal {
    --kec-reveal-y: 34px;
    opacity: 0;
    translate: var(--kec-reveal-x) var(--kec-reveal-y);
}
.kec-js .kec-reveal[data-kec-reveal="rail"] { --kec-reveal-x: 34px; --kec-reveal-y: 0px; }
.kec-js .kec-reveal[data-kec-reveal="align"] { --kec-reveal-x: -38px; --kec-reveal-y: 0px; }
.kec-js .kec-reveal[data-kec-reveal="mask"] { --kec-reveal-x: -42px; --kec-reveal-y: 0px; }
.kec-js .kec-reveal[data-kec-reveal="crop-x"] { --kec-reveal-x: 48px; --kec-reveal-y: 0px; }
.kec-js .kec-reveal[data-kec-reveal="split"] { --kec-reveal-y: 48px; letter-spacing: .06em; }
.kec-js .kec-reveal[data-kec-reveal="number"] { --kec-reveal-y: 64px; }
.kec-js .kec-reveal[data-kec-reveal="chapter"] { --kec-reveal-x: -48px; --kec-reveal-y: 0px; }
.kec-js .kec-motion.kec-reveal { --float-y: 34px; translate: 0 0; }
.kec-js .kec-motion.kec-reveal[data-kec-reveal="mask"] { --float-y: 0px; }
.kec-js .kec-reveal.is-visible {
    --kec-reveal-x: 0px;
    --kec-reveal-y: 0px;
    --float-y: 0px;
    opacity: 1;
    translate: 0 0;
}
.kec-js .kec-reveal[data-kec-reveal="split"].is-visible { letter-spacing: -.075em; }
.kec-reveal[data-kec-reveal="baseline"] { position: relative; }
.kec-reveal[data-kec-reveal="baseline"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.15s cubic-bezier(.16, .78, .18, 1) .15s;
}
.kec-reveal[data-kec-reveal="baseline"].is-visible::after { transform: scaleX(1); }

/* Opening cover: all decoration stays beneath the safe interactive layer. */
.kec-opening {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(250px, .58fr);
    min-height: 100svh;
    overflow: hidden;
    color: var(--kec-paper);
    background: var(--kec-black);
    isolation: isolate;
    transition: opacity .95s ease, visibility .95s ease;
}
.kec-opening-plane,
.kec-opening-glyphs,
.kec-opening-system,
.kec-opening-rail {
    pointer-events: none;
}
.kec-opening-plane { position: absolute; z-index: 1; transition: transform 1.05s cubic-bezier(.76, 0, .2, 1); }
.kec-opening-plane--cobalt { inset: 0 32% 0 0; background: var(--kec-cobalt); clip-path: polygon(0 0, 94% 0, 77% 100%, 0 100%); transform-origin: left; }
.kec-opening-plane--graphite { z-index: 0; inset: 58% 0 0 54%; background: var(--kec-graphite); clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%); }
.kec-opening-glyphs { position: absolute; z-index: 2; inset: 0; overflow: hidden; }
.kec-opening-glyph {
    position: absolute;
    color: transparent;
    font-family: var(--kec-display);
    font-size: clamp(22rem, 54vw, 58rem);
    font-weight: 500;
    line-height: .7;
    -webkit-text-stroke: 1px rgba(250, 248, 243, .18);
    text-shadow: 14px 16px 0 rgba(17,17,17,.08);
}
.kec-opening-glyph--one { --mx: -5vw; --my: 8vh; left: 0; top: 0; }
.kec-opening-glyph--two { --mx: 5vw; --my: -8vh; right: -3vw; bottom: -10vh; }
.kec-opening-edition { position: absolute; left: 6vw; bottom: 5vh; font-size: .6rem; letter-spacing: .32em; }
.kec-opening-system { position: absolute; z-index: 3; top: 5.5vh; right: 4vw; width: min(260px, 24vw); opacity: .62; }
.kec-opening-content {
    position: relative;
    z-index: 20;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: min(820px, 80%);
    margin-left: clamp(28px, 8vw, 140px);
    padding-block: max(72px, env(safe-area-inset-top)) max(72px, env(safe-area-inset-bottom));
    transition: opacity .55s ease, translate .75s ease;
}
.kec-opening-meta { position: absolute; top: max(30px, env(safe-area-inset-top)); left: 0; right: 0; display: flex; justify-content: space-between; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.kec-opening-content > .kec-label { margin-bottom: 24px; color: #d8c29d; }
.kec-opening h1 { margin: 0; font-family: var(--kec-display); font-size: clamp(4.5rem, 10.8vw, 11.5rem); font-weight: 400; letter-spacing: -.07em; line-height: .68; }
.kec-opening h1 span { display: block; }
.kec-opening h1 span:last-child { margin-left: .36em; }
.kec-opening h1 i { display: block; margin: .18em 0 .05em .17em; color: var(--kec-champagne); font-size: .48em; font-weight: 400; }
.kec-opening-invite { display: grid; gap: 2px; margin: 45px 0 26px; padding-left: 22%; }
.kec-opening-invite p { margin: 0; color: rgba(250,248,243,.62); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.kec-opening-invite strong { font-family: var(--kec-display); font-size: clamp(1.45rem, 3vw, 2.35rem); font-weight: 400; }
.kec-open-button { z-index: 50; margin-left: 22%; }
.kec-opening-rail { position: relative; z-index: 4; grid-column: 2; display: flex; align-items: center; justify-content: center; gap: 25px; writing-mode: vertical-rl; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; }
.kec-opening-rail i { display: block; width: 1px; height: 28vh; background: rgba(250,248,243,.36); }
.kec-opening.is-open { opacity: 0; visibility: hidden; pointer-events: none; }
.kec-opening.is-open .kec-opening-plane--cobalt { transform: translate3d(-105%, 0, 0); }
.kec-opening.is-open .kec-opening-plane--graphite { transform: translate3d(0, 105%, 0); }
.kec-opening.is-open .kec-opening-content { opacity: 0; translate: 0 -28px; }

.kec-music {
    position: fixed;
    z-index: 80;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 96px;
    min-height: 46px;
    padding: 8px 13px;
    border: 1px solid var(--kec-black);
    border-radius: 0;
    color: var(--kec-paper);
    background: var(--kec-black);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}
.kec-music-bars { display: flex; align-items: end; gap: 3px; height: 17px; }
.kec-music-bars i { width: 2px; height: 100%; background: var(--kec-champagne); animation: kec-meter 1.05s ease-in-out infinite alternate; }
.kec-music-bars i:nth-child(2) { height: 58%; animation-delay: -.4s; }
.kec-music-bars i:nth-child(3) { height: 78%; animation-delay: -.7s; }
.kec-music[aria-pressed="false"] .kec-music-bars i { animation-play-state: paused; }
@keyframes kec-meter { to { transform: scaleY(.35); } }

/* Hero split spread with crossing masthead and a real photo bleed. */
.kec-hero {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 1fr auto;
    min-height: 100svh;
    padding-top: max(55px, env(safe-area-inset-top));
    padding-bottom: 46px;
    background: var(--kec-white);
}
.kec-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background: url("assets/measurement-rail.svg") right center / auto 78% no-repeat; opacity: .55; pointer-events: none; }
.kec-hero-bleed { position: relative; z-index: 1; grid-column: 1 / 8; grid-row: 1; align-self: stretch; min-height: 76svh; margin-left: calc(-1 * max(28px, calc((100vw - 1280px) / 2))); overflow: visible; background: var(--kec-graphite); }
.kec-hero-bleed > img,
.kec-hero-bleed > .kec-cover-fallback { width: 100%; height: 100%; min-height: 76svh; object-fit: cover; object-position: center; }
.kec-shadow-plane { position: absolute; z-index: -1; inset: 28px -28px -28px 28px; background: var(--kec-champagne); opacity: .38; transform: translate3d(calc(var(--depth-x, 0px) * -.35), calc(var(--depth-y, 0px) * -.35), -1px); pointer-events: none; }
.kec-cover-fallback { display: grid; place-items: center; color: var(--kec-paper); background: var(--kec-cobalt); font-family: var(--kec-display); font-size: clamp(5rem, 15vw, 12rem); }
.kec-cover-fallback span { margin-inline: .12em; color: var(--kec-champagne); font-size: .4em; }
.kec-crop-mark { position: absolute; width: 42px; height: 42px; pointer-events: none; }
.kec-crop-mark::before,
.kec-crop-mark::after { content: ""; position: absolute; background: var(--kec-paper); }
.kec-crop-mark::before { width: 100%; height: 1px; }
.kec-crop-mark::after { width: 1px; height: 100%; }
.kec-crop-mark--a { left: 18px; top: 18px; }
.kec-crop-mark--b { right: 18px; bottom: 18px; rotate: 180deg; }
.kec-hero-title-wrap { position: relative; z-index: 5; grid-column: 7 / 12; grid-row: 1; align-self: center; pointer-events: none; }
.kec-hero-title-wrap .kec-label { margin: 0 0 26px 42%; }
.kec-hero-title-wrap h2 { margin: 0; font-family: var(--kec-display); font-size: clamp(5.2rem, 11.5vw, 12.6rem); font-weight: 400; letter-spacing: -.075em; line-height: .68; }
.kec-hero-title-wrap h2 span { display: block; text-shadow: 1px 1px 0 rgba(242,238,230,.8); }
.kec-hero-title-wrap h2 span:last-child { margin-left: .18em; color: var(--kec-cobalt); }
.kec-hero-title-wrap h2 i { display: block; margin: .12em 0 -.08em .43em; color: var(--kec-champagne); font-size: .48em; }
.kec-hero-rail { z-index: 6; grid-column: 12; grid-row: 1; display: flex; align-items: center; justify-content: center; gap: 30px; writing-mode: vertical-rl; font-size: .61rem; letter-spacing: .16em; text-transform: uppercase; }
.kec-hero-rail time { color: var(--kec-cobalt); font-weight: 600; }
.kec-hero-rail p { margin: 0; }
.kec-hero-index { --mx: 0px; --my: 0px; position: absolute; z-index: 4; right: 15%; bottom: 12%; color: rgba(17,17,17,.14); font-family: var(--kec-display); font-size: clamp(5rem, 10vw, 10rem); line-height: 1; pointer-events: none; }
.kec-scroll-cue { z-index: 8; grid-column: 1 / 13; grid-row: 2; display: flex; align-items: center; gap: 18px; width: max-content; margin: 22px 0 0; color: var(--kec-black); font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-decoration: none; text-transform: uppercase; }
.kec-scroll-cue i { display: block; width: 72px; height: 1px; background: currentColor; transform-origin: left; animation: kec-rule-pulse 2.2s ease-in-out infinite; }
@keyframes kec-rule-pulse { 50% { transform: scaleX(.35); opacity: .45; } }

/* Countdown is one typographic field, not four cards. */
.kec-countdown { background: var(--kec-black); color: var(--kec-paper); }
.kec-countdown .kec-section-head { margin-left: 52%; }
.kec-countdown .kec-section-no { color: var(--kec-champagne); }
.kec-time-composition { display: grid; grid-template-columns: 1.15fr .9fr 1fr .75fr; align-items: start; gap: clamp(12px, 3vw, 54px); width: min(1220px, 100%); margin-top: 5vh; }
.kec-time-unit { position: relative; min-width: 0; pointer-events: none; }
.kec-time-unit--2 { margin-top: 12vh; }
.kec-time-unit--3 { margin-top: 4vh; }
.kec-time-unit--4 { margin-top: 17vh; }
.kec-time-unit strong { display: block; font-family: var(--kec-display); font-size: clamp(4.5rem, 11vw, 11.5rem); font-weight: 400; letter-spacing: -.08em; line-height: .72; font-variant-numeric: tabular-nums; }
.kec-time-unit span { display: block; margin-top: 20px; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; }
.kec-time-unit i { display: block; width: 100%; height: 1px; margin-top: 12px; background: rgba(250,248,243,.36); transform-origin: left; }
.kec-time-unit--2 strong,
.kec-time-unit--4 strong { color: var(--kec-champagne); }
.kec-countdown-status { color: var(--kec-champagne); font-size: .8rem; }

/* Opposing portrait portals deliberately avoid mirrored profile cards. */
.kec-couple { background: var(--kec-paper); }
.kec-section-head--side { margin-left: 45%; }
.kec-profile { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: center; min-height: 92svh; margin-bottom: 12vh; }
.kec-profile-photo { position: relative; z-index: 1; grid-row: 1; height: min(78vh, 850px); min-height: 560px; }
.kec-profile-photo::after { content: ""; position: absolute; z-index: 8; inset: 0; background: var(--kec-cobalt); transform: scaleX(0); transform-origin: right; transition: transform 1.05s cubic-bezier(.16,.78,.18,1) .15s; pointer-events: none; }
.kec-js .kec-profile-photo::after { transform: scaleX(1); }
.kec-profile-photo--groom::after { transform-origin: left; background: var(--kec-champagne); }
.kec-js .kec-profile-photo.is-visible::after { transform: scaleX(0); }
.kec-profile-photo > img,
.kec-profile-photo > .kec-initial-fallback { width: 100%; height: 100%; object-fit: cover; }
.kec-profile-photo [hidden] { display: none !important; }
.kec-profile-photo--bride { grid-column: 1 / 7; clip-path: polygon(0 0, 86% 0, 100% 15%, 92% 100%, 0 94%); }
.kec-profile-photo--groom { grid-column: 7 / 13; clip-path: polygon(10% 0, 100% 6%, 100% 100%, 0 100%, 5% 16%); }
.kec-profile-photo--bride img { object-position: 48% center; }
.kec-profile-photo--groom img { object-position: 52% center; }
.kec-profile-copy { position: relative; z-index: 5; grid-row: 1; }
.kec-profile--bride .kec-profile-copy { grid-column: 6 / 13; margin-left: -4vw; }
.kec-profile--groom .kec-profile-copy { grid-column: 1 / 8; grid-row: 1; margin-right: -3vw; text-align: right; }
.kec-profile-copy h3 { margin: 12px 0 30px; font-family: var(--kec-display); font-size: clamp(4rem, 9vw, 10rem); font-weight: 400; letter-spacing: -.07em; line-height: .76; }
.kec-profile-copy > p:last-child { width: min(430px, 100%); margin: 0; padding-top: 20px; border-top: 1px solid var(--kec-black); font-size: .78rem; }
.kec-profile--groom .kec-profile-copy > p:last-child { margin-left: auto; }
.kec-profile-code { position: absolute; right: -16px; bottom: 18%; padding: 9px 12px; color: var(--kec-paper); background: var(--kec-cobalt); font-size: .6rem; letter-spacing: .16em; pointer-events: none; }
.kec-profile--groom .kec-profile-code { right: auto; left: -16px; }
.kec-vertical-rail { align-self: stretch; display: flex; align-items: center; justify-content: center; writing-mode: vertical-rl; font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; pointer-events: none; }
.kec-profile--bride .kec-vertical-rail { grid-column: 12; grid-row: 1; }
.kec-profile--groom .kec-vertical-rail { grid-column: 1; grid-row: 1; justify-self: start; }
.kec-initial-fallback { display: grid; place-items: center; color: var(--kec-paper); background: var(--kec-cobalt); font-family: var(--kec-display); font-size: clamp(8rem, 20vw, 18rem); }

/* Akad: narrow editorial column with vertical date and bottom rail. */
.kec-ceremony { display: grid; grid-template-columns: 1.1fr 1fr 3fr; align-items: center; gap: clamp(24px, 6vw, 90px); color: var(--kec-paper); background: var(--kec-cobalt); }
.kec-ceremony-number { position: absolute; z-index: -1; right: -1vw; top: 0; color: rgba(250,248,243,.08); font-family: var(--kec-display); font-size: clamp(20rem, 45vw, 46rem); line-height: .75; pointer-events: none; }
.kec-ceremony-date { display: flex; align-items: center; gap: 15px; writing-mode: vertical-rl; }
.kec-ceremony-date span { font-family: var(--kec-display); font-size: clamp(7rem, 15vw, 15rem); line-height: .7; }
.kec-ceremony-date i { font-size: .65rem; font-style: normal; letter-spacing: .2em; }
.kec-ceremony-copy { max-width: 650px; }
.kec-ceremony-copy h2 { margin: 12px 0 22px; font-family: var(--kec-display); font-size: clamp(4rem, 9vw, 9rem); font-weight: 400; letter-spacing: -.06em; line-height: .82; }
.kec-ceremony-copy > time { display: block; margin-bottom: 20vh; color: #dfc69a; font-size: .72rem; font-weight: 600; letter-spacing: .16em; }
.kec-bottom-rail { display: grid; grid-template-columns: .65fr 1fr; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(250,248,243,.5); }
.kec-bottom-rail strong { font-size: .85rem; }
.kec-bottom-rail address { color: rgba(250,248,243,.72); font-size: .78rem; }
.kec-ceremony-rule { display: grid; align-content: space-between; align-self: stretch; padding-block: 14%; }
.kec-ceremony-rule span { height: 1px; background: rgba(250,248,243,.45); }

/* Reception expands horizontally and uses an oversized date as architecture. */
.kec-reception { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: auto 1fr auto; align-items: center; background: var(--kec-white); }
.kec-reception::before { content: ""; position: absolute; z-index: -1; inset: 14% 0 18%; border-block: 1px solid rgba(17,17,17,.15); pointer-events: none; }
.kec-reception-head { grid-column: 1 / 13; display: flex; align-items: end; gap: 28px; }
.kec-reception-head .kec-section-no { font-size: 5rem; }
.kec-reception-date { grid-column: 1 / 7; grid-row: 2; align-self: center; color: var(--kec-cobalt); font-family: var(--kec-display); font-size: clamp(17rem, 38vw, 40rem); letter-spacing: -.12em; line-height: .64; pointer-events: none; }
.kec-reception-copy { z-index: 3; grid-column: 5 / 11; grid-row: 2; padding: 40px 0; }
.kec-reception-copy h2 { margin: 0; font-family: var(--kec-display); font-size: clamp(5rem, 12vw, 13rem); font-weight: 400; letter-spacing: -.08em; line-height: .74; }
.kec-reception-month { margin: 22px 0 6px; font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.kec-reception-copy time { font-family: var(--kec-display); font-size: 1.45rem; }
.kec-reception-address { grid-column: 9 / 13; grid-row: 3; padding: 24px 0 0 28px; border-left: 1px solid var(--kec-black); }
.kec-reception-address strong,
.kec-reception-address address { display: block; }
.kec-reception-address address { margin-top: 7px; color: var(--kec-muted); font-size: .78rem; }

/* Maps as a printed city index; CTA remains on a stable layer. */
.kec-location { display: grid; grid-template-columns: 1fr 2.4fr .8fr; grid-template-rows: auto 1fr; gap: 40px 50px; align-items: center; color: var(--kec-paper); background: var(--kec-graphite); }
.kec-location-grid { position: absolute; z-index: -1; inset: 0; background: url("assets/baseline-grid.svg") center / 96px 96px; opacity: .14; pointer-events: none; }
.kec-city-index { grid-column: 1 / 4; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(250,248,243,.45); font-size: .58rem; letter-spacing: .18em; }
.kec-city-index span:nth-child(2) { text-align: center; }
.kec-city-index span:last-child { text-align: right; }
.kec-location-main { grid-column: 1 / 3; align-self: center; }
.kec-location-main .kec-label { color: #d8c098; }
.kec-location-main h2 { max-width: 1000px; margin: 18px 0 35px; font-family: var(--kec-display); font-size: clamp(4rem, 10vw, 11rem); font-weight: 400; letter-spacing: -.065em; line-height: .8; }
.kec-location-main address { max-width: 640px; padding-left: 16%; color: rgba(250,248,243,.7); }
.kec-location-rail { grid-column: 3; display: grid; gap: 24px; align-content: center; justify-items: start; padding-left: 30px; border-left: 1px solid rgba(250,248,243,.4); }
.kec-location-rail > span { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; }
.kec-location-rail > i { color: var(--kec-champagne); font-family: var(--kec-display); font-size: 4rem; font-style: normal; }
.kec-direction-mark { width: 120px; filter: invert(1); opacity: .65; pointer-events: none; }
.kec-location-rail .kec-button { border-color: var(--kec-paper); }

/* Broken chapter index replaces a conventional straight timeline. */
.kec-story { background: var(--kec-paper); }
.kec-story::before { content: ""; position: absolute; z-index: -1; right: 3vw; top: 7%; width: min(460px, 42vw); aspect-ratio: 2.09; background: url("assets/folio-index.svg") center / contain no-repeat; opacity: .12; pointer-events: none; }
.kec-chapters { display: flex; flex-direction: column; gap: 90px; width: min(1120px, 100%); margin-inline: auto; }
.kec-chapter { display: grid; grid-template-columns: 110px minmax(100px, .55fr) minmax(260px, 1fr); gap: 28px; align-items: start; width: 82%; }
.kec-chapter--2 { align-self: flex-end; width: 74%; }
.kec-chapter--3 { margin-left: 10%; width: 88%; }
.kec-chapter--4 { align-self: flex-end; width: 66%; }
.kec-chapter-no { color: var(--kec-cobalt); font-family: var(--kec-display); font-size: clamp(4rem, 8vw, 8rem); line-height: .75; }
.kec-chapter-rule { display: flex; align-items: center; padding-top: 28px; }
.kec-chapter-rule i { width: 68%; height: 1px; background: var(--kec-black); }
.kec-chapter-rule b { width: 7px; aspect-ratio: 1; border: 1px solid var(--kec-black); background: var(--kec-champagne); }
.kec-chapter time { color: var(--kec-cobalt); font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.kec-chapter h3 { margin: 10px 0 15px; font-family: var(--kec-display); font-size: clamp(2.2rem, 4.5vw, 4.8rem); font-weight: 400; letter-spacing: -.04em; line-height: .9; }
.kec-chapter p { margin: 0; color: #64625d; font-size: .88rem; }

/* Variable-size contact runway, no carousel dependency. */
.kec-gallery { color: var(--kec-paper); background: var(--kec-black); }
.kec-gallery::before { content: ""; position: absolute; z-index: -1; left: 3%; right: 3%; bottom: 3%; height: 30px; background: url("assets/micro-divider.svg") center / min(640px, 100%) 30px no-repeat; opacity: .45; pointer-events: none; }
.kec-gallery-head { display: grid; grid-template-columns: 120px 1fr; gap: 14px 28px; align-items: end; margin-bottom: 45px; }
.kec-gallery-head .kec-section-no { grid-row: 1 / span 2; color: var(--kec-champagne); }
.kec-gallery-head h2 { grid-column: 2; }
.kec-gallery-viewport { width: calc(100vw - max(28px, calc((100vw - 1280px) / 2))); max-width: 1500px; }
.kec-gallery-track { display: flex; align-items: center; gap: clamp(18px, 3.5vw, 52px); padding: 40px 10vw 62px 0; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: none; cursor: grab; }
.kec-gallery-track:active { cursor: grabbing; }
.kec-gallery-track::-webkit-scrollbar { display: none; }
.kec-gallery-frame { flex: 0 0 auto; margin: 0; scroll-snap-align: center; }
.kec-gallery-frame > div { overflow: hidden; background: var(--kec-graphite); }
.kec-gallery-frame--portrait { width: min(390px, 72vw); }
.kec-gallery-frame--portrait > div { aspect-ratio: .72; }
.kec-gallery-frame--landscape { width: min(520px, 82vw); }
.kec-gallery-frame--landscape > div { aspect-ratio: 1.45; }
.kec-gallery-frame--narrow { width: min(280px, 58vw); }
.kec-gallery-frame--narrow > div { aspect-ratio: .55; }
.kec-gallery-frame--square { width: min(410px, 76vw); }
.kec-gallery-frame--square > div { aspect-ratio: 1; }
.kec-gallery-frame--bleed { width: min(620px, 88vw); }
.kec-gallery-frame--bleed > div { aspect-ratio: 1.12; }
.kec-gallery-frame img { width: 100%; height: 100%; object-fit: cover; scale: 1.025; transition: scale .7s cubic-bezier(.2,.7,.2,1); }
.kec-gallery-frame:hover img { scale: 1.07; }
.kec-gallery-frame figcaption { display: flex; justify-content: space-between; gap: 20px; margin-top: 12px; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.kec-gallery-frame figcaption span { color: var(--kec-champagne); font-family: var(--kec-display); font-size: 1.2rem; }
.kec-gallery-frame figcaption i { align-self: center; font-style: normal; }
.kec-gallery-controls { display: flex; align-items: center; gap: 18px; width: max-content; }
.kec-gallery-controls button { display: grid; place-items: center; width: 48px; min-height: 48px; border: 1px solid rgba(250,248,243,.6); border-radius: 0; color: var(--kec-paper); background: transparent; cursor: pointer; transition: color .2s, background-color .2s; }
.kec-gallery-controls button:hover { color: var(--kec-black); background: var(--kec-paper); }
.kec-gallery-controls span { font-size: .58rem; letter-spacing: .16em; }

/* Gift is a precise editorial folio with a one-shot mask reveal. */
.kec-gift { background: var(--kec-white); }
.kec-section-head--compact { margin-left: 18%; }
.kec-folio { position: relative; display: grid; grid-template-columns: .42fr .58fr; width: min(980px, 100%); min-height: 590px; margin-inline: auto; border: 1px solid var(--kec-black); background: var(--kec-paper); overflow: hidden; }
.kec-folio-cover { position: absolute; z-index: 4; inset: 0 50% 0 0; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px, 5vw, 68px); color: var(--kec-paper); background: var(--kec-cobalt); transform-origin: left; transition: transform .8s cubic-bezier(.2,.74,.2,1); }
.kec-folio-cover span,
.kec-folio-cover i { font-size: .6rem; font-style: normal; letter-spacing: .2em; }
.kec-folio-cover strong { font-family: var(--kec-display); font-size: clamp(4rem, 9vw, 8rem); font-weight: 400; line-height: .8; }
.kec-folio-content { grid-column: 2; align-self: stretch; padding: clamp(38px, 6vw, 75px); opacity: .2; translate: -35px 0; transition: opacity .5s ease .12s, translate .7s ease .12s; }
.kec-folio-content > p:first-child { max-width: 520px; margin: 0 0 38px; font-family: var(--kec-display); font-size: 1.25rem; line-height: 1.4; }
.kec-bank-row { display: grid; grid-template-columns: 1fr auto; gap: 5px 18px; padding: 22px 0; border-top: 1px solid rgba(17,17,17,.3); }
.kec-bank-row span,
.kec-bank-row small { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.kec-bank-row strong { font-family: var(--kec-display); font-size: 1.45rem; font-weight: 400; letter-spacing: .04em; }
.kec-bank-row small { grid-column: 1; color: var(--kec-muted); }
.kec-copy { grid-column: 2; grid-row: 1 / span 2; align-self: center; min-width: 70px; min-height: 44px; border: 1px solid var(--kec-black); border-radius: 0; color: var(--kec-black); background: transparent; font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.kec-copy:hover { color: var(--kec-paper); background: var(--kec-black); }
.kec-folio-content address { display: grid; gap: 6px; padding-top: 22px; border-top: 1px solid rgba(17,17,17,.3); font-size: .72rem; }
.kec-folio-toggle { position: absolute; z-index: 8; left: calc(50% - 66px); bottom: 30px; display: flex; justify-content: space-between; gap: 18px; min-width: 132px; min-height: 48px; padding: 13px 15px; border: 1px solid var(--kec-paper); border-radius: 0; color: var(--kec-paper); background: var(--kec-black); font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: left .75s ease, color .25s, background-color .25s, border-color .25s; }
.kec-folio.is-open .kec-folio-cover { transform: translate3d(-92%, 0, 0); }
.kec-folio.is-open .kec-folio-content { opacity: 1; translate: 0 0; }
.kec-folio.is-open .kec-folio-toggle { left: 26px; border-color: var(--kec-black); color: var(--kec-black); background: var(--kec-paper); }

/* Forms are intentionally flat and motion-free. */
.kec-rsvp { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(50px, 9vw, 140px); background: var(--kec-champagne); }
.kec-rsvp-title { position: sticky; top: 50px; }
.kec-rsvp-title .kec-section-no { margin-bottom: 40px; color: var(--kec-paper); }
.kec-form { position: relative; z-index: 4; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: clamp(34px, 6vw, 72px); color: var(--kec-black); background: var(--kec-paper); border-top: 8px solid var(--kec-black); }
.kec-field { display: grid; gap: 8px; }
.kec-field > span,
.kec-attendance legend { font-size: .61rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.kec-field input,
.kec-field textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(17,17,17,.5); border-radius: 0; color: var(--kec-black); background: transparent; resize: vertical; }
.kec-field--message,
.kec-attendance,
.kec-form > .kec-button,
.kec-form-status { grid-column: 1 / -1; }
.kec-attendance { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; border: 0; }
.kec-attendance legend { width: 100%; margin-bottom: 5px; }
.kec-attendance label { position: relative; }
.kec-attendance input { position: absolute; opacity: 0; pointer-events: none; }
.kec-attendance span { display: block; min-height: 44px; padding: 11px 15px; border: 1px solid rgba(17,17,17,.35); font-size: .72rem; cursor: pointer; }
.kec-attendance input:checked + span { color: var(--kec-paper); background: var(--kec-cobalt); border-color: var(--kec-cobalt); }
.kec-form > .kec-button { justify-self: start; }
.kec-form-status { min-height: 1.5em; margin: 0; font-size: .74rem; }
.kec-form-status.is-success { color: #386238; }
.kec-form-status.is-error { color: #a13c33; }

.kec-wishes { background: var(--kec-paper); }
.kec-wishes-head { display: grid; grid-template-columns: 110px 1fr; gap: 14px 30px; width: min(920px, 100%); margin-bottom: 60px; }
.kec-wishes-head .kec-section-no { grid-row: 1 / span 2; }
.kec-wishes-head h2 { grid-column: 2; }
.kec-wish-form { grid-template-columns: .7fr 1.3fr; width: min(1050px, 100%); margin-left: auto; border: 1px solid var(--kec-black); border-top-width: 8px; }
.kec-wish-form .kec-field--message { grid-column: 2; grid-row: 1 / span 2; }
.kec-wish-form > .kec-button,
.kec-wish-form > .kec-form-status { grid-column: 1; }
.kec-quote-wall { display: grid; grid-template-columns: 1fr 1.15fr; gap: 1px; width: min(1100px, 100%); margin: 100px auto 0; background: rgba(17,17,17,.24); }
.kec-quote { display: grid; grid-template-columns: auto 1fr; gap: 22px; min-height: 270px; padding: clamp(28px, 5vw, 58px); background: var(--kec-paper); }
.kec-quote:nth-child(3n+2) { min-height: 350px; background: var(--kec-white); }
.kec-quote > span { color: var(--kec-cobalt); font-family: var(--kec-display); font-size: 3rem; line-height: 1; }
.kec-quote blockquote { grid-column: 2; margin: 0; font-family: var(--kec-display); font-size: clamp(1.25rem, 2.8vw, 2.2rem); line-height: 1.25; }
.kec-quote strong { grid-column: 2; align-self: end; font-size: .73rem; }
.kec-quote small { grid-column: 2; color: var(--kec-muted); font-size: .55rem; letter-spacing: .16em; }

.kec-closing { display: grid; align-content: center; min-height: 100svh; padding-bottom: max(80px, env(safe-area-inset-bottom)); color: var(--kec-paper); background: var(--kec-cobalt); }
.kec-closing::before { content: ""; position: absolute; z-index: -1; inset: 13% 0; border-block: 1px solid rgba(250,248,243,.3); pointer-events: none; }
.kec-closing-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(250,248,243,.65); font-size: .57rem; letter-spacing: .18em; text-transform: uppercase; }
.kec-closing-meta span:nth-child(2) { text-align: center; }
.kec-closing-meta span:last-child { text-align: right; }
.kec-closing h2 { margin: clamp(70px, 12vh, 130px) 0 55px; font-family: var(--kec-display); font-size: clamp(6rem, 16vw, 18rem); font-weight: 400; letter-spacing: -.09em; line-height: .62; pointer-events: none; }
.kec-closing h2 span { display: block; }
.kec-closing h2 span:last-child { margin-left: 23%; }
.kec-closing h2 i { display: inline-block; margin-left: 42%; color: var(--kec-champagne); font-size: .32em; }
.kec-closing > p { width: min(580px, 76%); margin: 0 0 0 auto; font-family: var(--kec-display); font-size: 1.15rem; }
.kec-closing-baseline { display: flex; align-items: center; gap: 18px; margin-top: 70px; }
.kec-closing-baseline i { flex: 1; height: 1px; background: rgba(250,248,243,.45); }
.kec-closing-baseline b { font-size: .6rem; letter-spacing: .2em; }

@media (max-width: 980px) {
    .kec-section { padding-inline: 28px; }
    .kec-opening { grid-template-columns: 1fr; }
    .kec-opening-content { width: min(760px, 86%); }
    .kec-opening-rail { position: absolute; right: 22px; top: 0; bottom: 0; }
    .kec-opening-system { width: 180px; }
    .kec-hero-bleed { margin-left: -28px; }
    .kec-countdown .kec-section-head { margin-left: 34%; }
    .kec-time-composition { grid-template-columns: 1fr 1fr; }
    .kec-time-unit--2 { margin-top: 9vh; }
    .kec-time-unit--3 { margin-top: 0; }
    .kec-time-unit--4 { margin-top: 9vh; }
    .kec-section-head--side { margin-left: 28%; }
    .kec-ceremony { grid-template-columns: .55fr 2.45fr; }
    .kec-ceremony-rule { display: none; }
    .kec-location { grid-template-columns: 1fr 2fr; }
    .kec-city-index { grid-column: 1 / 3; }
    .kec-location-main { grid-column: 1 / 2; }
    .kec-location-rail { grid-column: 2; }
    .kec-rsvp { grid-template-columns: 1fr; }
    .kec-rsvp-title { position: static; }
}

@media (max-width: 700px) {
    .kec-section { min-height: auto; padding: 92px 22px; }
    .kec-section-head { grid-template-columns: 66px 1fr; gap: 14px 20px; }
    .kec-section-head h2,
    .kec-gallery-head h2,
    .kec-wishes-head h2,
    .kec-rsvp-title h2 { font-size: clamp(3rem, 15vw, 5rem); }
    .kec-button { min-height: 48px; }
    .kec-global-grid { background-size: 72px 72px; opacity: .07; }
    .kec-opening-content { width: calc(100% - 44px); margin-left: 22px; padding-right: 24px; }
    .kec-opening-meta { right: 22px; }
    .kec-opening h1 { font-size: clamp(4.5rem, 23vw, 7.4rem); line-height: .7; }
    .kec-opening h1 span:last-child { margin-left: .12em; }
    .kec-opening-invite,
    .kec-open-button { margin-left: 0; padding-left: 0; }
    .kec-opening-glyph { font-size: 25rem; }
    .kec-opening-glyph--one { left: -35%; }
    .kec-opening-glyph--two { right: -30%; }
    .kec-opening-rail,
    .kec-opening-system { display: none; }
    .kec-music { min-width: 48px; width: 48px; padding: 10px; }
    .kec-music > span:last-child { display: none; }
    .kec-hero { display: block; min-height: 100svh; padding-top: 58px; padding-bottom: 56px; }
    .kec-hero-bleed { width: calc(84vw + 22px); height: 62svh; min-height: 500px; margin: 0 0 0 -22px; }
    .kec-hero-bleed > img,
    .kec-hero-bleed > .kec-cover-fallback { min-height: 500px; }
    .kec-hero-title-wrap { width: 100%; margin: -52px 0 0; }
    .kec-hero-title-wrap .kec-label { margin: 0 0 20px 58%; }
    .kec-hero-title-wrap h2 { font-size: clamp(4.8rem, 23vw, 7.7rem); line-height: .7; }
    .kec-hero-title-wrap h2 span:last-child { margin-left: .08em; }
    .kec-hero-rail { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 18px; margin-top: 34px; padding-top: 14px; border-top: 1px solid var(--kec-black); writing-mode: horizontal-tb; }
    .kec-hero-index { display: none; }
    .kec-scroll-cue { display: none; }
    .kec-countdown .kec-section-head { margin-left: 0; }
    .kec-time-composition { gap: 48px 16px; }
    .kec-time-unit--2,
    .kec-time-unit--4 { margin-top: 58px; }
    .kec-time-unit strong { font-size: clamp(4.7rem, 23vw, 7.2rem); }
    .kec-section-head--side,
    .kec-section-head--compact { margin-left: 0; }
    .kec-profile { display: flex; flex-direction: column; align-items: stretch; min-height: 0; margin-bottom: 130px; }
    .kec-profile-photo { width: 88%; height: 68svh; min-height: 520px; }
    .kec-profile-photo--bride { align-self: flex-start; }
    .kec-profile-photo--groom { align-self: flex-end; order: 1; }
    .kec-profile-copy { width: 94%; margin: -28px 0 0 !important; }
    .kec-profile--bride .kec-profile-copy { align-self: flex-end; }
    .kec-profile--groom .kec-profile-copy { align-self: flex-start; order: 2; text-align: left; }
    .kec-profile-copy h3 { font-size: clamp(3.8rem, 18vw, 6.5rem); }
    .kec-profile-copy > p:last-child,
    .kec-profile--groom .kec-profile-copy > p:last-child { width: 86%; margin: 0; padding: 14px 0 0; background: var(--kec-paper); }
    .kec-vertical-rail { position: absolute; right: 0; top: 0; height: 54%; writing-mode: vertical-rl; }
    .kec-profile--groom .kec-vertical-rail { left: 0; right: auto; }
    .kec-profile-code { right: -8px; }
    .kec-profile--groom .kec-profile-code { left: -8px; }
    .kec-ceremony { grid-template-columns: 1fr; gap: 55px; }
    .kec-ceremony-date { writing-mode: horizontal-tb; justify-content: space-between; }
    .kec-ceremony-date span { font-size: 9rem; }
    .kec-ceremony-copy h2 { font-size: clamp(4rem, 19vw, 7rem); }
    .kec-ceremony-copy > time { margin-bottom: 110px; }
    .kec-bottom-rail { grid-template-columns: 1fr; }
    .kec-reception { display: block; }
    .kec-reception::before { inset: 20% 0 17%; }
    .kec-reception-head { align-items: center; }
    .kec-reception-date { margin: 100px 0 30px; font-size: min(70vw, 22rem); }
    .kec-reception-copy { margin-top: -22%; padding: 0; }
    .kec-reception-copy h2 { font-size: clamp(5rem, 24vw, 8rem); }
    .kec-reception-address { width: 76%; margin: 100px 0 0 auto; }
    .kec-location { display: block; }
    .kec-city-index { display: flex; justify-content: space-between; gap: 8px; }
    .kec-city-index span:nth-child(2) { display: none; }
    .kec-location-main { margin: 110px 0 80px; }
    .kec-location-main h2 { font-size: clamp(4rem, 18vw, 7rem); }
    .kec-location-main address { padding-left: 12%; }
    .kec-location-rail { border-left: 0; border-top: 1px solid rgba(250,248,243,.4); padding: 25px 0 0; }
    .kec-chapters { gap: 78px; }
    .kec-chapter,
    .kec-chapter--2,
    .kec-chapter--3,
    .kec-chapter--4 { grid-template-columns: 76px 1fr; width: 100%; margin-left: 0; align-self: auto; }
    .kec-chapter-rule { display: none; }
    .kec-chapter > div:last-child { grid-column: 2; }
    .kec-gallery-head,
    .kec-wishes-head { grid-template-columns: 72px 1fr; }
    .kec-gallery-viewport { width: calc(100vw - 22px); }
    .kec-gallery-track { padding-right: 12vw; }
    .kec-folio { display: block; min-height: 650px; }
    .kec-folio-cover { inset: 0; }
    .kec-folio-content { height: 650px; padding: 36px 24px 100px; overflow-y: auto; }
    .kec-folio-toggle { left: 24px; }
    .kec-folio.is-open .kec-folio-cover { transform: translate3d(-105%, 0, 0); }
    .kec-folio.is-open .kec-folio-toggle { left: 24px; }
    .kec-rsvp { display: block; }
    .kec-rsvp-title { margin-bottom: 60px; }
    .kec-form { grid-template-columns: 1fr; padding: 36px 22px; }
    .kec-field--message,
    .kec-attendance,
    .kec-form > .kec-button,
    .kec-form-status { grid-column: 1; }
    .kec-attendance { display: grid; }
    .kec-wish-form { display: grid; grid-template-columns: 1fr; }
    .kec-wish-form .kec-field--message,
    .kec-wish-form > .kec-button,
    .kec-wish-form > .kec-form-status { grid-column: 1; grid-row: auto; }
    .kec-quote-wall { grid-template-columns: 1fr; margin-top: 70px; }
    .kec-quote { min-height: 240px; }
    .kec-closing-meta { grid-template-columns: 1fr auto; }
    .kec-closing-meta span:nth-child(2) { display: none; }
    .kec-closing h2 { margin-block: 100px 55px; font-size: clamp(6rem, 27vw, 10rem); }
    .kec-closing h2 span:last-child { margin-left: 7%; }
    .kec-closing > p { width: 85%; }
}

@media (prefers-reduced-motion: reduce) {
    .kec-body *,
    .kec-body *::before,
    .kec-body *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .kec-motion {
        --depth-x: 0px !important;
        --depth-y: 0px !important;
        --rx: 0deg !important;
        --ry: 0deg !important;
        --float-y: 0px !important;
    }
    .kec-js .kec-reveal { opacity: 1 !important; translate: 0 0 !important; }
    .kec-js .kec-profile-photo::after { transform: scaleX(0) !important; }
}
