:root {
    color-scheme: light;
    --ink: #28221d;
    --muted: #746b62;
    --cream: #f6f0e7;
    --paper: #fffcf7;
    --line: #ded4c8;
    --terracotta: #9b5a42;
    --terracotta-dark: #72402f;
    --terracotta-soft: #ead3c5;
    --sage: #768775;
    --shadow: 0 28px 80px rgba(67, 45, 30, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.build-version {
    position: fixed;
    z-index: 1000;
    top: max(6px, env(safe-area-inset-top));
    right: max(8px, env(safe-area-inset-right));
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0.25;
    pointer-events: none;
}

.site-header,
.hero,
.steps-section,
.feature-section,
footer {
    width: min(calc(100% - 48px), 1200px);
    margin-inline: auto;
}

.site-header {
    display: grid;
    min-height: 86px;
    border-bottom: 1px solid rgba(92, 73, 59, 0.17);
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
}

.brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    place-items: center;
    color: white;
    background: var(--terracotta);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.82rem;
}

.header-nav {
    display: flex;
    gap: 34px;
}

.header-nav a,
footer > a:last-child {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.header-nav a:hover,
footer > a:last-child:hover {
    color: var(--terracotta-dark);
}

.site-header > .button {
    justify-self: end;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.75rem;
}

.button-outline {
    border-color: #c8bbae;
}

.button-outline:hover {
    background: rgba(255, 255, 255, 0.42);
}

.button-primary {
    color: white;
    background: var(--terracotta);
    box-shadow: 0 14px 30px rgba(114, 64, 47, 0.2);
}

.button-primary:hover {
    background: var(--terracotta-dark);
    box-shadow: 0 18px 36px rgba(114, 64, 47, 0.26);
}

.hero {
    display: grid;
    min-height: 700px;
    padding: 76px 0 84px;
    align-items: center;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(40px, 8vw, 110px);
}

.eyebrow {
    margin: 0 0 17px;
    color: var(--terracotta);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

h1 {
    max-width: 690px;
    margin-bottom: 27px;
    font-size: clamp(3.9rem, 7vw, 6.5rem);
    letter-spacing: -0.06em;
    line-height: 0.88;
}

h1 em,
.final-cta h2 em {
    color: var(--terracotta);
    font-weight: 400;
}

.hero-intro {
    max-width: 535px;
    margin-bottom: 31px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    margin-bottom: 32px;
    align-items: center;
    gap: 25px;
}

.text-link {
    border-bottom: 1px solid #b6a89a;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.8;
    text-decoration: none;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.trust-row i {
    display: inline-grid;
    width: 17px;
    height: 17px;
    margin-right: 4px;
    border-radius: 50%;
    place-items: center;
    color: var(--terracotta);
    background: var(--terracotta-soft);
    font-size: 0.58rem;
    font-style: normal;
}

.hero-visual {
    position: relative;
    min-height: 570px;
}

.visual-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.visual-glow-one {
    width: 430px;
    height: 430px;
    top: 48px;
    left: 50%;
    background: rgba(218, 190, 170, 0.45);
    transform: translateX(-50%);
}

.visual-glow-two {
    width: 190px;
    height: 190px;
    right: 1%;
    bottom: 6%;
    background: rgba(161, 180, 157, 0.35);
}

.phone-card {
    position: absolute;
    z-index: 2;
    width: min(350px, 75%);
    top: 0;
    left: 50%;
    overflow: hidden;
    border: 7px solid var(--paper);
    border-radius: 37px;
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateX(-50%) rotate(2.4deg);
}

.phone-top {
    display: flex;
    height: 51px;
    padding: 0 17px;
    align-items: center;
    justify-content: space-between;
}

.mini-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.61rem;
    font-weight: 800;
}

.mini-brand b {
    display: grid;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    place-items: center;
    color: white;
    background: var(--terracotta);
    font-family: Georgia, serif;
    font-size: 0.5rem;
}

.phone-dots {
    color: #a99d91;
    letter-spacing: 2px;
}

.event-photo {
    position: relative;
    height: 224px;
    overflow: hidden;
    background: linear-gradient(#d4c4b5 0 56%, #867e6b 56%);
}

.sun {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 33px;
    right: 35px;
    border-radius: 50%;
    background: rgba(255, 242, 205, 0.72);
    box-shadow: 0 0 50px rgba(255, 239, 190, 0.8);
}

.mountain {
    position: absolute;
    width: 300px;
    height: 160px;
    bottom: -70px;
    background: #7c7669;
    transform: rotate(34deg);
}

.mountain-back {
    left: -90px;
    background: #9f9788;
}

.mountain-front {
    right: -120px;
    bottom: -65px;
    background: #69665b;
    transform: rotate(-32deg);
}

.couple {
    position: absolute;
    display: flex;
    bottom: 29px;
    left: 50%;
    gap: 2px;
    transform: translateX(-50%);
}

.couple i {
    display: block;
    width: 18px;
    height: 53px;
    border-radius: 10px 10px 3px 3px;
    background: #302c28;
}

.couple i::before {
    display: block;
    width: 17px;
    height: 17px;
    margin-top: -12px;
    border-radius: 50%;
    background: #aa7b62;
    content: "";
}

.couple i:last-child {
    height: 48px;
    margin-top: 5px;
    background: #eee5da;
}

.photo-label {
    position: absolute;
    bottom: 12px;
    left: 14px;
    color: white;
    font-family: Georgia, serif;
    font-size: 0.82rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

.phone-content {
    padding: 22px;
    text-align: center;
}

.phone-kicker {
    margin-bottom: 5px;
    color: var(--terracotta);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.phone-content h2 {
    margin-bottom: 18px;
    font-size: 1.37rem;
}

.upload-area {
    display: flex;
    min-height: 120px;
    border: 1px dashed #cbb9a9;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #faf5ee;
}

.upload-arrow {
    display: grid;
    width: 31px;
    height: 31px;
    margin-bottom: 7px;
    border-radius: 50%;
    place-items: center;
    color: white;
    background: var(--terracotta);
}

.upload-area strong {
    font-family: Georgia, serif;
    font-size: 0.8rem;
}

.upload-area small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.48rem;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    align-items: center;
    gap: 10px;
    background: rgba(255, 252, 247, 0.93);
    box-shadow: 0 14px 36px rgba(76, 53, 37, 0.14);
    backdrop-filter: blur(8px);
}

.floating-card strong,
.floating-card small {
    display: block;
    white-space: nowrap;
}

.floating-card strong {
    font-size: 0.68rem;
}

.floating-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.52rem;
}

.gallery-float {
    top: 100px;
    right: -1%;
    transform: rotate(-3deg);
}

.float-icon {
    display: grid;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    place-items: center;
    color: white;
    background: var(--sage);
    font-family: Georgia, serif;
    font-size: 0.75rem;
}

.guest-float {
    bottom: 55px;
    left: -2%;
    transform: rotate(-2deg);
}

.avatars {
    display: flex;
    padding-left: 8px;
}

.avatars span {
    display: grid;
    width: 27px;
    height: 27px;
    margin-left: -8px;
    border: 2px solid var(--paper);
    border-radius: 50%;
    place-items: center;
    color: white;
    background: var(--terracotta);
    font-size: 0.52rem;
    font-weight: 800;
}

.avatars span:nth-child(2) {
    background: var(--sage);
}

.avatars span:nth-child(3) {
    background: #a68772;
}

.occasion-strip {
    display: flex;
    min-height: 96px;
    padding: 20px max(24px, calc((100vw - 1200px) / 2));
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #eee6dc;
    background: var(--ink);
}

.occasion-strip p {
    margin: 0;
    color: #bcb0a5;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.occasion-strip div {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
    font-family: Georgia, serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.occasion-strip i {
    color: var(--terracotta);
    font-size: 0.42rem;
}

.steps-section {
    padding: 120px 0 135px;
}

.section-heading {
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading h2,
.feature-copy h2,
.final-cta h2 {
    margin-bottom: 17px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.section-heading > p:last-child {
    color: var(--muted);
}

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

.step-card {
    position: relative;
    min-height: 415px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.48);
}

.featured-step {
    border-color: transparent;
    background: var(--paper);
    box-shadow: 0 22px 60px rgba(77, 53, 37, 0.11);
    transform: translateY(-13px);
}

.step-number {
    color: var(--terracotta);
    font-family: Georgia, serif;
    font-size: 0.75rem;
}

.step-illustration {
    display: grid;
    height: 205px;
    margin-bottom: 20px;
    place-items: center;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.55rem;
}

.step-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.invite-illustration {
    align-content: center;
    gap: 13px;
}

.qr-mini {
    display: grid;
    width: 95px;
    height: 95px;
    padding: 10px;
    border-radius: 8px;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    background: white;
    box-shadow: 0 10px 25px rgba(60, 45, 34, 0.08);
    transform: rotate(-4deg);
}

.qr-mini i {
    background: var(--ink);
}

.qr-mini i:nth-child(2),
.qr-mini i:nth-child(6) {
    background: transparent;
}

.qr-mini i:nth-child(5) {
    border: 5px solid var(--ink);
    background: var(--paper);
}

.link-line {
    display: flex;
    width: 180px;
    padding: 10px 12px;
    border-radius: 8px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    background: white;
    box-shadow: 0 8px 22px rgba(60, 45, 34, 0.07);
    font-size: 0.48rem;
}

.link-line b {
    color: var(--terracotta);
    font-size: 0.8rem;
}

.share-illustration {
    position: relative;
}

.stack-photo {
    position: absolute;
    width: 108px;
    height: 138px;
    border: 6px solid white;
    border-radius: 11px;
    background:
        radial-gradient(circle at 70% 28%, #edd7ad 0 10%, transparent 11%),
        linear-gradient(150deg, transparent 45%, #5e6759 46% 67%, #363c35 68%),
        #b9b6aa;
    box-shadow: 0 14px 30px rgba(62, 45, 33, 0.16);
}

.photo-one {
    left: calc(50% - 112px);
    transform: rotate(-11deg);
}

.photo-two {
    z-index: 2;
    left: calc(50% - 54px);
    background:
        radial-gradient(circle at 49% 37%, #a77c65 0 9%, transparent 10%),
        linear-gradient(90deg, #c7b09c 0 48%, #8c877c 49%);
    transform: rotate(2deg);
}

.photo-three {
    right: calc(50% - 112px);
    display: grid;
    place-items: center;
    background: #d9c6b8;
    transform: rotate(12deg);
}

.photo-three span {
    display: grid;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    place-items: center;
    color: white;
    background: var(--terracotta);
    font-size: 1.3rem;
}

.gallery-grid {
    display: grid;
    width: 210px;
    height: 150px;
    padding: 9px;
    border-radius: 11px;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    background: white;
    box-shadow: 0 12px 30px rgba(62, 45, 33, 0.12);
    transform: rotate(3deg);
}

.gallery-grid i {
    border-radius: 3px;
    background: #ac9784;
}

.gallery-grid i:nth-child(2),
.gallery-grid i:nth-child(6) {
    background: #788276;
}

.gallery-grid i:nth-child(3),
.gallery-grid i:nth-child(4) {
    background: #d8b89f;
}

.feature-section {
    display: grid;
    padding: 125px 0;
    align-items: center;
    grid-template-columns: 1.14fr 0.86fr;
    gap: clamp(55px, 8vw, 110px);
}

.feature-showcase {
    position: relative;
    min-height: 530px;
}

.feature-showcase::before {
    position: absolute;
    width: 410px;
    height: 410px;
    top: 50%;
    left: 45%;
    border-radius: 50%;
    background: rgba(223, 200, 183, 0.48);
    content: "";
    transform: translate(-50%, -50%);
}

.dashboard-window {
    position: absolute;
    z-index: 1;
    width: 112%;
    top: 50%;
    right: 0;
    overflow: hidden;
    border: 7px solid white;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-50%) rotate(-2deg);
}

.window-bar {
    display: flex;
    height: 43px;
    padding: 0 15px;
    align-items: center;
    justify-content: space-between;
    background: #f7f3ed;
}

.window-bar span {
    display: flex;
    gap: 5px;
}

.window-bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c7bbae;
}

.window-bar b {
    font-size: 0.54rem;
}

.window-body {
    display: grid;
    min-height: 400px;
    grid-template-columns: 58px 1fr;
}

.window-body aside {
    display: flex;
    padding: 20px 0;
    align-items: center;
    flex-direction: column;
    gap: 23px;
    background: var(--ink);
}

.window-body aside strong {
    display: grid;
    width: 27px;
    height: 27px;
    border-radius: 7px;
    place-items: center;
    color: white;
    background: var(--terracotta);
    font-family: Georgia, serif;
    font-size: 0.5rem;
}

.window-body aside i {
    width: 18px;
    height: 3px;
    border-radius: 3px;
    background: #6e655e;
}

.gallery {
    padding: 35px;
    background: #faf7f2;
}

.gallery > p {
    margin-bottom: 4px;
    color: var(--terracotta);
    font-size: 0.48rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gallery > h3 {
    margin-bottom: 22px;
    font-size: 1.55rem;
}

.gallery-mosaic {
    display: grid;
    height: 265px;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 7px;
}

.gallery-mosaic i {
    border-radius: 7px;
    background:
        radial-gradient(circle at 65% 28%, #e6d29e 0 9%, transparent 10%),
        linear-gradient(145deg, transparent 45%, #5e6759 46% 67%, #363c35 68%),
        #b8b2a7;
}

.gallery-mosaic i:first-child {
    grid-row: 1 / 3;
}

.gallery-mosaic i:nth-child(2) {
    background: linear-gradient(135deg, #cda58e 50%, #7d756b 51%);
}

.gallery-mosaic i:nth-child(3) {
    background: #7f8b7d;
}

.gallery-mosaic i:nth-child(4) {
    background: #dcc0aa;
}

.gallery-mosaic i:nth-child(5) {
    background: #9a806e;
}

.feature-intro {
    max-width: 430px;
    margin-bottom: 35px;
    color: var(--muted);
    line-height: 1.7;
}

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: grid;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    grid-template-columns: 40px 1fr;
    gap: 8px;
}

.feature-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.feature-list li > span {
    padding-top: 3px;
    color: var(--terracotta);
    font-family: Georgia, serif;
    font-size: 0.68rem;
}

.feature-list strong {
    font-family: Georgia, serif;
    font-size: 1.05rem;
}

.feature-list p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.final-cta {
    position: relative;
    padding: 100px 24px 106px;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.06), transparent 20rem),
        var(--terracotta-dark);
    text-align: center;
}

.final-cta .eyebrow {
    color: #dfbba9;
}

.final-cta h2 {
    margin-inline: auto;
}

.final-cta h2 em {
    color: #e1b49e;
}

.final-cta > p:not(.eyebrow) {
    max-width: 520px;
    margin: 0 auto 29px;
    color: #dfcec4;
    line-height: 1.7;
}

.button-light {
    color: var(--terracotta-dark);
    background: white;
}

.button-light:hover {
    box-shadow: 0 17px 35px rgba(43, 24, 16, 0.2);
}

.cta-spark {
    position: absolute;
    color: #bd8369;
    font-size: 2.4rem;
}

.spark-one {
    top: 24%;
    left: 14%;
}

.spark-two {
    right: 15%;
    bottom: 24%;
}

footer {
    display: grid;
    min-height: 110px;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    gap: 25px;
}

footer p {
    margin: 0;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 0.83rem;
    font-style: italic;
}

footer > a:last-child {
    justify-self: end;
}

@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr 0.9fr;
        gap: 28px;
    }

    h1 {
        font-size: clamp(3.7rem, 8vw, 5rem);
    }

    .gallery-float {
        right: -8%;
    }

    .guest-float {
        left: -10%;
    }

    .occasion-strip {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .feature-section {
        grid-template-columns: 1fr 0.8fr;
        gap: 40px;
    }
}

@media (max-width: 740px) {
    .site-header,
    .hero,
    .steps-section,
    .feature-section,
    footer {
        width: min(calc(100% - 32px), 1200px);
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .hero {
        padding-top: 63px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        z-index: 2;
    }

    h1 {
        margin-inline: auto;
        font-size: clamp(3.5rem, 16vw, 5.4rem);
    }

    .hero-intro {
        margin-inline: auto;
    }

    .hero-actions,
    .trust-row {
        justify-content: center;
    }

    .hero-visual {
        min-height: 560px;
    }

    .phone-card {
        width: min(350px, 82%);
    }

    .gallery-float {
        right: 0;
    }

    .guest-float {
        left: 0;
    }

    .occasion-strip div {
        flex-wrap: wrap;
    }

    .steps-grid {
        max-width: 500px;
        margin-inline: auto;
        grid-template-columns: 1fr;
    }

    .featured-step {
        transform: none;
    }

    .feature-section {
        padding-top: 80px;
        grid-template-columns: 1fr;
    }

    .feature-showcase {
        min-height: 440px;
    }

    .dashboard-window {
        width: 105%;
        right: -2.5%;
    }

    .feature-copy {
        max-width: 570px;
    }

    footer {
        padding: 30px 0;
        grid-template-columns: 1fr auto;
    }

    footer p {
        display: none;
    }
}

@media (max-width: 460px) {
    .site-header {
        min-height: 76px;
    }

    .site-header .brand > span:last-child {
        display: none;
    }

    .hero {
        padding-top: 55px;
    }

    h1 {
        font-size: clamp(3.1rem, 16vw, 4rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .text-link {
        align-self: center;
    }

    .trust-row {
        gap: 10px 15px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .phone-card {
        width: 86%;
    }

    .gallery-float {
        top: 75px;
        right: -10px;
    }

    .guest-float {
        bottom: 30px;
        left: -10px;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .occasion-strip div i {
        display: none;
    }

    .occasion-strip div {
        gap: 13px 20px;
    }

    .steps-section {
        padding: 90px 0;
    }

    .step-card {
        min-height: 400px;
    }

    .feature-showcase {
        min-height: 335px;
    }

    .window-body {
        min-height: 280px;
        grid-template-columns: 44px 1fr;
    }

    .gallery {
        padding: 22px 16px;
    }

    .gallery-mosaic {
        height: 170px;
    }

    .dashboard-window {
        width: 108%;
    }

    .final-cta {
        padding-block: 85px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .phone-card {
        animation: settle 750ms cubic-bezier(.2, .75, .25, 1) both;
    }

    .floating-card {
        animation: appear 650ms 250ms ease both;
    }

    @keyframes settle {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(22px) rotate(2.4deg);
        }
    }

    @keyframes appear {
        from {
            opacity: 0;
            margin-top: 14px;
        }
    }
}
