:root {
    --navy: #0d456f;
    --navy-dark: #082f4d;
    --navy-soft: #eaf2f8;
    --ink: #1a232c;
    --muted: #5e6872;
    --sand: #eadcc8;
    --sand-soft: #f7f1e8;
    --cream: #fbf9f5;
    --white: #ffffff;
    --line: #dfe4e8;
    --success: #246a46;
    --danger: #9d2b2b;
    --shadow-sm: 0 12px 30px rgba(11, 39, 60, 0.08);
    --shadow-lg: 0 28px 80px rgba(11, 39, 60, 0.15);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 36px;
    --container: 1180px;
    --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--header-height);
    background: rgba(251, 249, 245, 0.92);
    border-bottom: 1px solid rgba(13, 69, 111, 0.08);
    backdrop-filter: blur(18px);
}
.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand { display: inline-flex; align-items: center; width: 118px; }
.brand img { width: 100%; height: 54px; object-fit: contain; object-position: left center; }

.menu-button {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(13, 69, 111, 0.16);
    border-radius: 50%;
    background: var(--white);
}
.menu-button__line {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--navy);
    transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] .menu-button__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] .menu-button__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .25s ease;
}
.main-nav.is-open { transform: translateX(0); }
.main-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    font-size: 1.1rem;
}
.main-nav .nav-cta {
    margin-top: 16px;
    border: 0;
    border-radius: 999px;
    text-align: center;
    color: var(--white);
    background: var(--navy);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 82px;
    background:
        radial-gradient(circle at 82% 16%, rgba(234, 220, 200, 0.92), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f1e8 100%);
}
.hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -110px;
    border: 1px solid rgba(13, 69, 111, 0.16);
    border-radius: 50%;
}
.hero-grid { display: grid; gap: 54px; align-items: center; }
.eyebrow {
    margin: 0 0 14px;
    color: var(--navy);
    font-weight: 800;
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.85rem, 12vw, 5.9rem); max-width: 9ch; }
h1 em { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h2 { font-size: clamp(2rem, 8vw, 4.35rem); }
h3 { font-size: clamp(1.3rem, 4vw, 2rem); }
.hero-lead, .lead { font-size: 1.12rem; color: var(--muted); }
.hero-lead { max-width: 56ch; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--navy);
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(13, 69, 111, .16); }
.button--ghost { color: var(--navy); background: transparent; }
.button--secondary { color: var(--ink); border-color: var(--sand); background: var(--sand); }
.button--danger { color: var(--white); border-color: var(--danger); background: var(--danger); }
.hero-meta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--muted); font-size: .9rem; }
.hero-meta span::before { content: "•"; margin-right: 8px; color: var(--navy); }

.hero-visual { position: relative; min-height: 430px; max-width: 480px; margin-inline: auto; width: 100%; }
.hero-card { position: absolute; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-card--main {
    inset: 10px 34px 32px 0;
    overflow: hidden;
    padding: 30px;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy-dark), var(--navy));
}
.hero-card--main::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -80px;
    top: -90px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
}
.hero-card--main strong { display: block; width: 12ch; margin-top: 12px; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1.1; }
.hero-card__label { color: rgba(255,255,255,.72); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.hero-card--note {
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 180px;
    padding: 22px;
    background: var(--white);
}
.hero-card--note span { display: block; color: var(--muted); font-size: .8rem; }
.hero-card--note strong { color: var(--navy); font-size: 1.12rem; }
.look-figure { position: absolute; right: 12%; bottom: -18px; width: 44%; height: 71%; }
.look-figure__head { position: absolute; left: 35%; top: 0; width: 31%; aspect-ratio: 1; border-radius: 50%; background: var(--sand); }
.look-figure__body { position: absolute; inset: 15% 20% 0; border-radius: 48% 48% 12% 12%; background: #f4efe8; }
.look-figure__coat { position: absolute; inset: 24% 0 0; clip-path: polygon(25% 0, 75% 0, 100% 100%, 57% 100%, 50% 28%, 43% 100%, 0 100%); background: #8da9bd; }
.hero-orbit { position: absolute; left: 12px; bottom: 40px; width: 105px; height: 105px; border: 1px solid rgba(13, 69, 111, .25); border-radius: 50%; }

.section { padding: 86px 0; }
.section--actions { background: var(--navy-dark); color: var(--white); }
.section-heading { display: grid; gap: 18px; margin-bottom: 34px; }
.section-heading > p { max-width: 50ch; margin: 0; color: rgba(255,255,255,.7); }
.section--actions .eyebrow { color: #bfd5e6; }
.action-grid { display: grid; gap: 18px; }
.action-card {
    padding: 26px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.06);
}
.action-card--featured { color: var(--ink); background: var(--sand-soft); }
.action-card__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 38px; }
.action-card__kicker { color: inherit; opacity: .68; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.action-card__badge { padding: 6px 10px; border-radius: 999px; background: var(--sand); color: var(--ink); font-size: .78rem; font-weight: 800; }
.action-card h3 { max-width: 18ch; }
.action-card > p { color: rgba(255,255,255,.72); }
.action-card--featured > p { color: var(--muted); }
.action-card__details { font-size: .94rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-weight: 800; }
.fineprint { margin: 20px 0 0; color: rgba(255,255,255,.55); font-size: .8rem; }

.advice-grid { display: grid; gap: 42px; align-items: center; }
.advice-visual { display: grid; gap: 14px; }
.advice-block { min-height: 165px; padding: 22px; border-radius: var(--radius); }
.advice-block span { display: block; margin-bottom: 20px; font-size: .75rem; font-weight: 800; letter-spacing: .16em; }
.advice-block strong { display: block; font-family: Georgia, serif; font-size: 1.7rem; font-weight: 400; }
.advice-block p { margin-bottom: 0; }
.advice-block--navy { color: var(--white); background: var(--navy); }
.advice-block--sand { background: var(--sand); }
.advice-block--line { border: 1px solid var(--line); background: var(--white); }
.advice-copy p { color: var(--muted); }
.advice-copy .button { margin-top: 14px; }

.section--history { background: var(--sand-soft); }
.history-grid { display: grid; gap: 32px; align-items: center; }
.history-image { position: relative; }
.history-image img { width: 100%; min-height: 280px; object-fit: cover; border-radius: var(--radius-lg); filter: grayscale(1) contrast(.92); }
.history-label { position: absolute; left: 18px; bottom: 18px; padding: 8px 12px; border-radius: 999px; color: var(--white); background: rgba(8,47,77,.86); font-size: .78rem; font-weight: 800; }
.history-copy p { color: var(--muted); }

.contact-grid { display: grid; gap: 36px; }
.contact-cards { display: grid; gap: 12px; margin: 28px 0; }
.contact-card { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.contact-card span { display: block; color: var(--muted); font-size: .78rem; }
.contact-card strong { display: block; margin-top: 3px; color: var(--navy); overflow-wrap: anywhere; }
.hours { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.hours-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 17px; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row span { color: var(--muted); }

.contact-form-wrap { padding: 22px; border-radius: var(--radius-lg); background: var(--navy-dark); color: var(--white); }
.form-heading { margin-bottom: 24px; }
.form-heading .eyebrow { color: #bfd5e6; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span:first-child { font-size: .82rem; font-weight: 800; }
.contact-form input:not([type="checkbox"]), .contact-form textarea,
.admin-form input:not([type="checkbox"]), .admin-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    outline: none;
}
.contact-form input:focus, .contact-form textarea:focus,
.admin-form input:focus, .admin-form textarea:focus { border-color: #8eb8d5; box-shadow: 0 0 0 4px rgba(142,184,213,.2); }
.contact-form textarea { resize: vertical; }
.privacy-check { grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; font-size: .8rem; color: rgba(255,255,255,.72); }
.privacy-check input { margin-top: 4px; }
.privacy-check a { text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; }
.form-status { min-height: 24px; margin: 0; font-weight: 700; }
.form-status.is-success { color: #a7e2bf; }
.form-status.is-error { color: #ffd1d1; }

.section--map { background: var(--white); }
.map-grid { display: grid; gap: 28px; align-items: stretch; }
.map-copy address { margin: 20px 0; }
.map-copy p { color: var(--muted); }
.map-shell { min-height: 420px; overflow: hidden; border-radius: var(--radius-lg); background: var(--sand-soft); box-shadow: var(--shadow-sm); }
.map-shell iframe { width: 100%; min-height: 420px; height: 100%; border: 0; }
.map-placeholder { height: 100%; min-height: 420px; display: grid; grid-template-rows: 1fr auto; }
.map-sketch { position: relative; overflow: hidden; min-height: 250px; background: #edf1ed; }
.road { position: absolute; display: block; height: 34px; background: var(--white); box-shadow: 0 0 0 1px #d9dfd9; }
.road--one { width: 130%; left: -15%; top: 44%; transform: rotate(-11deg); }
.road--two { width: 100%; left: 28%; top: 40%; transform: rotate(62deg); }
.road--three { width: 65%; left: -8%; top: 16%; transform: rotate(52deg); }
.map-pin { position: absolute; left: 54%; top: 42%; width: 46px; height: 46px; border-radius: 50% 50% 50% 0; background: var(--navy); transform: rotate(-45deg); box-shadow: var(--shadow-sm); }
.map-pin i { position: absolute; inset: 13px; border-radius: 50%; background: var(--sand); }
.map-placeholder__copy { padding: 24px; background: var(--white); }
.map-placeholder__copy p { margin: 4px 0 15px; color: var(--muted); font-size: .9rem; }

.shop-page { padding: 62px 0 90px; background: linear-gradient(180deg, var(--sand-soft), var(--cream)); }
.shop-heading { display: grid; gap: 20px; margin-bottom: 30px; }
.shop-heading h1 { max-width: none; }
.shop-heading > p { max-width: 58ch; margin: 0; color: var(--muted); }
.shop-shell {
    width: min(100% - 16px, 1440px);
    height: max(720px, calc(100svh - var(--header-height) - 130px));
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.shop-shell iframe { width: 100%; height: 100%; display: block; border: 0; }
.shop-fallback { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; }
.shop-fallback p { margin: 0; color: var(--muted); }

.site-footer { padding: 58px 0 22px; color: rgba(255,255,255,.74); background: #071f31; }
.footer-grid { display: grid; gap: 34px; }
.footer-grid > div { display: grid; align-content: start; gap: 8px; }
.footer-logo { width: 124px; height: 74px; object-fit: contain; object-position: left; background: var(--white); border-radius: 10px; padding: 6px; }
.site-footer h2 { color: var(--white); font-size: 1rem; letter-spacing: 0; }
.site-footer a:hover, .site-footer a:focus-visible, .footer-link-button:hover { color: var(--white); }
.footer-link-button { padding: 0; border: 0; text-align: left; color: inherit; background: transparent; }
.footer-bottom { margin-top: 36px; padding-top: 18px; display: flex; flex-direction: column; gap: 4px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.cookie-layer {
    position: fixed;
    z-index: 5000;
    inset: 0;
    padding: 16px;
    display: grid;
    place-items: end center;
    background: rgba(7, 31, 49, .55);
    backdrop-filter: blur(5px);
}
.cookie-layer[hidden] { display: none; }
.cookie-dialog {
    position: relative;
    width: min(100%, 720px);
    padding: 26px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}
.cookie-dialog h2 { font-size: 1.7rem; }
.cookie-dialog > p:not(.eyebrow):not(.cookie-legal) { color: var(--muted); }
.cookie-close { position: absolute; right: 14px; top: 10px; width: 40px; height: 40px; border: 0; background: transparent; font-size: 1.8rem; color: var(--muted); }
.cookie-options { display: grid; gap: 10px; margin: 20px 0; }
.cookie-options[hidden] { display: none; }
.cookie-option { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.cookie-option strong, .cookie-option small { display: block; }
.cookie-option small { color: var(--muted); margin-top: 3px; }
.cookie-actions { display: grid; gap: 10px; }
.cookie-actions [hidden] { display: none; }
.cookie-legal { margin: 14px 0 0; text-align: center; font-size: .8rem; text-decoration: underline; }

.legal-page { padding: 62px 0 90px; background: linear-gradient(180deg, var(--sand-soft), var(--cream)); }
.legal-layout { display: grid; gap: 28px; }
.legal-heading h1 { max-width: none; }
.legal-heading > p:last-child { color: var(--muted); }
.legal-card { padding: 24px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.prose h2 { margin: 36px 0 10px; font-size: 1.35rem; letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #3d4852; }
.prose a { color: var(--navy); text-decoration: underline; }

/* Admin */
.admin-body { background: var(--sand-soft); }
.admin-shell { width: min(100% - 30px, 1240px); margin: 0 auto; padding: 30px 0 70px; }
.admin-brand { display: inline-block; width: 110px; margin-bottom: 25px; }
.admin-brand img { width: 100%; height: 80px; object-fit: contain; }
.admin-header { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.admin-header h1 { max-width: none; font-size: clamp(2.4rem, 8vw, 4rem); }
.admin-header__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-grid { display: grid; gap: 20px; }
.admin-card { padding: 24px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.admin-login { max-width: 500px; margin: 30px auto; }
.admin-login h1 { max-width: none; font-size: 2.4rem; }
.admin-form { display: grid; gap: 14px; }
.admin-form label { display: grid; gap: 6px; font-weight: 700; font-size: .88rem; }
.admin-form input:not([type="checkbox"]), .admin-form textarea { border-color: var(--line); }
.admin-form-row { display: grid; gap: 12px; }
.admin-check { grid-template-columns: auto 1fr; align-items: center; }
.admin-form-actions, .admin-list-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.admin-alert { padding: 14px 16px; border-radius: 12px; }
.admin-alert--warning { background: #fff3cd; color: #674d00; }
.admin-alert--error { background: #fde2e2; color: #7d2020; }
.admin-alert--success { background: #daf2e4; color: #205d3f; }
.admin-list { display: grid; gap: 12px; }
.admin-list-item { display: grid; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.admin-list-item h3 { margin-top: 8px; font-size: 1.2rem; }
.admin-list-item p { margin-bottom: 0; color: var(--muted); }
.admin-status { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #ececec; color: #555; font-size: .7rem; font-weight: 800; }
.admin-status.is-live { background: #daf2e4; color: #205d3f; }
.admin-list-actions form { margin: 0; }
code { padding: .12em .35em; border-radius: 4px; background: rgba(13,69,111,.08); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 620px) {
    .container { width: min(100% - 48px, var(--container)); }
    .hero { padding: 92px 0 104px; }
    .action-grid, .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .action-card--featured { grid-column: span 2; }
    .advice-visual { grid-template-columns: repeat(2, 1fr); }
    .advice-block--line { grid-column: span 2; }
    .cookie-actions { grid-template-columns: repeat(2, 1fr); }
    .cookie-actions .button:last-child { grid-column: span 2; }
    .admin-form-row { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
    :root { --header-height: 92px; }
    .brand { width: 150px; }
    .brand img { height: 70px; }
    .menu-button { display: none; }
    .main-nav {
        position: static;
        inset: auto;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        background: transparent;
        transform: none;
    }
    .main-nav a { padding: 10px 12px; border: 0; font-size: .9rem; }
    .main-nav .nav-cta { margin: 0 0 0 8px; padding-inline: 18px; }
    .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 74px; }
    .hero-visual { min-height: 560px; max-width: 540px; }
    .hero-card--main { inset: 0 45px 45px 0; padding: 42px; }
    .hero-card--main strong { font-size: 2.6rem; }
    .hero-card--note { width: 210px; padding: 26px; }
    .section { padding: 118px 0; }
    .section-heading { grid-template-columns: 1.2fr .8fr; align-items: end; }
    .action-grid { grid-template-columns: repeat(3, 1fr); }
    .action-card--featured { grid-column: span 2; }
    .advice-grid { grid-template-columns: 1.05fr .95fr; gap: 80px; }
    .advice-visual { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, minmax(180px, auto)); }
    .advice-block--navy { grid-row: span 2; }
    .advice-block--line { grid-column: 2; }
    .history-grid { grid-template-columns: 1.2fr .8fr; gap: 72px; }
    .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 76px; }
    .contact-form-wrap { padding: 42px; }
    .map-grid { grid-template-columns: .7fr 1.3fr; gap: 52px; }
    .shop-heading { grid-template-columns: 1fr 1fr; align-items: end; }
    .footer-grid { grid-template-columns: 1.4fr .8fr .6fr; }
    .cookie-actions { grid-template-columns: repeat(3, auto); justify-content: end; }
    .cookie-actions .button:last-child { grid-column: auto; }
    .legal-layout { grid-template-columns: .36fr .64fr; align-items: start; gap: 60px; }
    .legal-heading { position: sticky; top: 130px; }
    .legal-card { padding: 48px; }
    .admin-header { flex-direction: row; justify-content: space-between; align-items: end; }
    .admin-grid { grid-template-columns: .8fr 1.2fr; align-items: start; }
    .admin-list-item { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 1180px) {
    .main-nav a { padding-inline: 15px; }
    .hero { min-height: calc(100svh - var(--header-height)); display: grid; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .js .reveal { opacity: 1; transform: none; }
}
