:root {
    --tb-ink: #321b22;
    --tb-muted: #765f66;
    --tb-pink: #cf6985;
    --tb-pink-dark: #b94f70;
    --tb-pink-soft: #f9e8ef;
    --tb-cream: #fffaf7;
    --tb-paper: #fffefd;
    --tb-mint: #9bcfd1;
    --tb-mint-soft: #e5f3f1;
    --tb-caramel: #f2a23a;
    --tb-line: #eadde0;
    --tb-shadow: 0 18px 54px rgba(84, 40, 52, 0.14);
    --tb-font-ui: "Cabin", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --tb-font-display: "Cormorant", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.tonbonbon-confiseries-page {
    margin: 0;
    background: var(--tb-cream);
    color: var(--tb-ink);
    font-family: var(--tb-font-ui);
}

.tonbonbon-confiseries-page button,
.tonbonbon-confiseries-page input {
    font: inherit;
}

.tonbonbon-confiseries-page button,
.tonbonbon-confiseries-page a {
    -webkit-tap-highlight-color: transparent;
}

.tb-site-main {
    min-height: 100vh;
}

.tb-map-app {
    min-height: 100vh;
    background: var(--tb-cream);
    color: var(--tb-ink);
}

.tb-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 200;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--tb-ink);
    color: #fff;
    transform: translateY(-150%);
}

.tb-skip-link:focus {
    transform: translateY(0);
}

.tb-header {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: 230px minmax(300px, 680px) 44px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    height: 82px;
    padding: 0 34px;
    border-bottom: 1px solid rgba(207, 105, 133, 0.17);
    background: rgba(255, 250, 247, 0.96);
    box-shadow: 0 4px 20px rgba(80, 39, 51, 0.045);
    backdrop-filter: blur(12px);
}

.tb-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tb-pink-dark);
    text-decoration: none;
}

.tb-brand > img {
    display: block;
    width: auto;
    height: 54px;
    object-fit: contain;
}

.tb-brand-mark {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
}

.tb-brand-mark::before {
    position: absolute;
    bottom: 5px;
    width: 31px;
    height: 20px;
    border-radius: 5px 5px 13px 13px;
    background: repeating-linear-gradient(90deg, #d76786 0 5px, #ee91ab 5px 9px);
    content: "";
    transform: perspective(20px) rotateX(-8deg);
}

.tb-brand-mark::after {
    position: absolute;
    top: 3px;
    width: 34px;
    height: 24px;
    border-radius: 48% 48% 42% 42%;
    background: #f7bdc9;
    box-shadow: inset 0 -4px 0 rgba(207, 105, 133, 0.18);
    content: "";
}

.tb-brand-mark span::before,
.tb-brand-mark span::after {
    position: absolute;
    z-index: 2;
    top: -1px;
    width: 8px;
    height: 8px;
    background: var(--tb-pink-dark);
    content: "";
    clip-path: polygon(50% 100%, 0 35%, 14% 8%, 42% 5%, 50% 25%, 58% 5%, 86% 8%, 100% 35%);
}

.tb-brand-mark span::before { left: 9px; }
.tb-brand-mark span::after { right: 8px; top: 6px; transform: scale(0.72); }

.tb-brand-name {
    font-family: var(--tb-font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.tb-header-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(100%, 680px);
}

.tb-search {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
    min-width: 0;
    height: 46px;
    padding: 0 16px;
    border: 1px solid #e8d9dd;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(102, 52, 67, 0.07);
}

.tb-search:focus-within {
    border-color: var(--tb-pink);
    box-shadow: 0 0 0 3px rgba(207, 105, 133, 0.14);
}

.tb-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--tb-ink);
    font-size: 15px;
}

.tb-search input::placeholder {
    color: #a18b91;
}

.tb-location-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 17px;
    border: 0;
    border-radius: 999px;
    background: var(--tb-pink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(185, 79, 112, 0.23);
}

.tb-location-button:hover { background: var(--tb-pink-dark); }

.tb-menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--tb-line);
    border-radius: 50%;
    background: #fff;
    place-content: center;
    gap: 4px;
    cursor: pointer;
}

.tb-menu-button span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--tb-ink);
}

.tb-site-menu {
    position: absolute;
    z-index: 90;
    top: 68px;
    right: 28px;
    display: grid;
    min-width: 230px;
    padding: 10px;
    border: 1px solid var(--tb-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--tb-shadow);
}

.tb-site-menu[hidden] { display: none; }

.tb-site-menu a {
    padding: 11px 13px;
    border-radius: 10px;
    color: var(--tb-ink);
    font-size: 14px;
    text-decoration: none;
}

.tb-site-menu a:hover,
.tb-site-menu a[aria-current="page"] {
    background: var(--tb-pink-soft);
    color: var(--tb-pink-dark);
}

.tb-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.tb-icon-search::before {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 10px;
    height: 10px;
    border: 1.8px solid currentColor;
    border-radius: 50%;
    content: "";
}

.tb-icon-search::after {
    position: absolute;
    right: 1px;
    bottom: 2px;
    width: 7px;
    height: 1.8px;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
}

.tb-icon-location::before {
    position: absolute;
    top: 1px;
    left: 4px;
    width: 10px;
    height: 13px;
    border: 1.8px solid currentColor;
    border-radius: 8px 8px 10px 10px;
    content: "";
    transform: rotate(45deg);
}

.tb-icon-location::after {
    position: absolute;
    top: 5px;
    left: 8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.tb-explorer {
    display: grid;
    grid-template-columns: minmax(430px, 42%) minmax(0, 1fr);
    height: calc(100vh - 82px);
    min-height: 650px;
}

.tb-results {
    position: relative;
    z-index: 10;
    overflow: auto;
    padding: 34px 30px 80px;
    background: var(--tb-cream);
    scrollbar-width: thin;
    scrollbar-color: #d6bfc5 transparent;
}

.tb-results-intro {
    max-width: 560px;
}

.tb-eyebrow {
    margin: 0 0 7px;
    color: var(--tb-pink-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tb-results-intro > h1,
.tb-results-intro > h2 {
    max-width: 520px;
    margin: 0;
    font-family: var(--tb-font-display);
    font-size: clamp(36px, 3.3vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-align: left;
}

.tb-results-intro > p:last-child {
    max-width: 520px;
    margin: 17px 0 0;
    color: var(--tb-muted);
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: normal;
}

.tb-filters {
    display: flex;
    overflow: auto;
    gap: 8px;
    margin: 24px -4px 0;
    padding: 4px;
    scrollbar-width: none;
}

.tb-filters::-webkit-scrollbar { display: none; }

.tb-filters button {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid var(--tb-line);
    border-radius: 999px;
    background: #fff;
    color: var(--tb-muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.tb-filters button:hover,
.tb-filters button.is-active {
    border-color: var(--tb-pink);
    background: var(--tb-pink);
    color: #fff;
}

.tb-result-count {
    margin: 24px 0 12px;
    color: var(--tb-muted);
    font-size: 13px;
}

.tb-result-count strong { color: var(--tb-ink); }

.tb-place-list {
    display: grid;
    gap: 13px;
}

.tb-place-card {
    position: relative;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    overflow: hidden;
    min-height: 150px;
    border: 1px solid var(--tb-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tb-place-card:hover,
.tb-place-card.is-selected {
    border-color: rgba(207, 105, 133, 0.58);
    box-shadow: 0 13px 34px rgba(87, 44, 56, 0.1);
    transform: translateY(-1px);
}

.tb-place-card.is-hidden { display: none; }

.tb-card-select {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.tb-place-card > img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}

.tb-card-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 16px 18px;
    pointer-events: none;
}

.tb-card-kicker {
    margin: 0 0 3px;
    color: var(--tb-pink-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.tb-card-copy h2 {
    margin: 0;
    font-family: var(--tb-font-display);
    font-size: 25px;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.tb-card-highlight {
    margin: 7px 0 9px;
    color: var(--tb-muted);
    font-size: 12px;
    line-height: 1.35;
}

.tb-google-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #766a6d;
    font-size: 11px;
    text-decoration: none;
    pointer-events: auto;
}

.tb-google-line img {
    width: auto;
    height: 14px;
    object-fit: contain;
}

.tb-read-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 11px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--tb-pink-dark) !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
}

.tb-read-button:hover span { transform: translateX(3px); }
.tb-read-button span { transition: transform 160ms ease; }

.tb-map-region {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #edf3ee;
}

.tb-map-toolbar {
    position: absolute;
    z-index: 9;
    top: 19px;
    right: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.tb-map-toolbar > span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--tb-muted);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(63, 75, 69, 0.12);
    backdrop-filter: blur(9px);
}

.tb-map-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    touch-action: none;
    cursor: grab;
}

.tb-map-viewport:active { cursor: grabbing; }

.tb-map-canvas {
    position: absolute;
    inset: -9%;
    overflow: hidden;
    background-color: #f4f0e8;
    background-image:
        linear-gradient(28deg, transparent 48%, rgba(255,255,255,.96) 49%, rgba(255,255,255,.96) 51%, transparent 52%),
        linear-gradient(118deg, transparent 48%, rgba(255,255,255,.92) 49%, rgba(255,255,255,.92) 51%, transparent 52%),
        linear-gradient(72deg, transparent 49%, rgba(215,207,195,.46) 49.5%, rgba(215,207,195,.46) 50.5%, transparent 51%),
        linear-gradient(162deg, transparent 49%, rgba(215,207,195,.4) 49.5%, rgba(215,207,195,.4) 50.5%, transparent 51%);
    background-position: 0 0, 35px 25px, 10px 60px, 80px 30px;
    background-size: 150px 150px, 190px 190px, 110px 110px, 135px 135px;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: center;
    transition: transform 180ms ease;
}

.tb-water {
    position: absolute;
    border-radius: 45%;
    background: #c7e6e6;
    opacity: 0.75;
    filter: blur(0.2px);
    transform: rotate(-18deg);
}

.tb-water-one { right: -12%; bottom: 6%; width: 58%; height: 11%; }
.tb-water-two { right: 4%; bottom: 1%; width: 36%; height: 5%; }

.tb-park {
    position: absolute;
    border-radius: 45% 55% 38% 62%;
    background: #dcebd6;
}

.tb-park-one { top: 14%; right: 13%; width: 18%; height: 17%; transform: rotate(18deg); }
.tb-park-two { bottom: 18%; left: 9%; width: 23%; height: 13%; transform: rotate(-9deg); }

.tb-road {
    position: absolute;
    height: 8px;
    border: 2px solid #e8d5c6;
    border-right: 0;
    border-left: 0;
    background: rgba(255,255,255,.9);
    transform-origin: left center;
}

.tb-road-a { top: 21%; left: 2%; width: 90%; transform: rotate(7deg); }
.tb-road-b { top: 38%; left: -3%; width: 88%; transform: rotate(-13deg); }
.tb-road-c { top: 12%; left: 30%; width: 82%; transform: rotate(62deg); }
.tb-road-d { top: 66%; left: 4%; width: 97%; transform: rotate(5deg); }
.tb-road-e { top: 75%; left: 25%; width: 70%; transform: rotate(-41deg); }

.tb-map-label {
    position: absolute;
    color: #94877f;
    font-family: var(--tb-font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .03em;
    pointer-events: none;
}

.tb-label-opera { top: 20%; left: 28%; }
.tb-label-drouot { top: 34%; left: 42%; }
.tb-label-montorgueil { top: 66%; left: 67%; }
.tb-label-louvre { top: 76%; left: 39%; }

.tb-map-pin {
    position: absolute;
    z-index: 5;
    top: var(--pin-y);
    left: var(--pin-x);
    display: grid;
    justify-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translate(-50%, -100%);
}

.tb-pin-candy {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    border: 4px solid #fff;
    border-radius: 50% 50% 50% 12px;
    background: var(--tb-pink);
    box-shadow: 0 9px 18px rgba(92, 49, 59, 0.26);
    place-items: center;
    transform: rotate(-45deg);
    transition: transform 170ms ease, background 170ms ease;
}

.tb-pin-candy::before,
.tb-pin-candy::after {
    position: absolute;
    width: 9px;
    height: 14px;
    background: #fff0a7;
    content: "";
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.tb-pin-candy::before { left: 9px; transform: rotate(45deg); }
.tb-pin-candy::after { right: 9px; transform: rotate(225deg); }

.tb-pin-candy i {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff0a7;
    transform: rotate(45deg);
}

.tb-map-pin:hover .tb-pin-candy,
.tb-map-pin.is-selected .tb-pin-candy {
    background: var(--tb-pink-dark);
    transform: rotate(-45deg) scale(1.14);
}

.tb-pin-label {
    max-width: 150px;
    margin-top: 7px;
    padding: 7px 10px;
    border-radius: 10px;
    background: #fff;
    color: var(--tb-ink);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    box-shadow: 0 7px 18px rgba(77, 65, 59, 0.16);
    white-space: nowrap;
}

.tb-map-pin.is-hidden { display: none; }

.tb-map-controls {
    position: absolute;
    z-index: 8;
    right: 20px;
    bottom: 38px;
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(92, 74, 79, 0.12);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(63, 58, 55, 0.16);
}

.tb-map-controls button {
    display: grid;
    width: 42px;
    height: 40px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--tb-line);
    background: #fff;
    color: var(--tb-ink);
    font-size: 22px;
    cursor: pointer;
    place-items: center;
}

.tb-map-controls button:last-child { border-bottom: 0; }
.tb-map-controls button:hover { background: var(--tb-pink-soft); }

.tb-icon-target {
    width: 16px;
    height: 16px;
    border: 1.6px solid currentColor;
    border-radius: 50%;
}

.tb-icon-target::before {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.tb-icon-target::after {
    position: absolute;
    inset: -4px 6px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
}

.tb-map-attribution {
    position: absolute;
    z-index: 7;
    right: 78px;
    bottom: 15px;
    margin: 0;
    color: #857970;
    font-size: 10px;
}

.tb-mobile-sheet { display: none; }

.tb-reading-bar,
.tb-reader,
.tb-floating-map { display: none; }

.tb-map-app.is-reading .tb-header,
.tb-map-app.is-reading .tb-explorer { display: none; }

.tb-map-app.is-reading .tb-reading-bar {
    position: sticky;
    z-index: 80;
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 57px;
    border-bottom: 1px solid var(--tb-line);
    background: rgba(255, 250, 247, 0.94);
    backdrop-filter: blur(14px);
}

.tb-reading-bar > button {
    display: inline-flex;
    height: 57px;
    margin-left: 28px;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    border: 0;
    background: transparent;
    color: var(--tb-ink);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.tb-reading-logo {
    align-self: center;
    justify-self: center;
}

.tb-reading-logo img {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}

.tb-reading-actions {
    display: flex;
    justify-self: end;
    gap: 6px;
    margin-right: 27px;
}

.tb-reading-actions button {
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--tb-line);
    border-radius: 50%;
    background: #fff;
    color: var(--tb-pink-dark);
    cursor: pointer;
    place-items: center;
}

.tb-reading-actions button[aria-pressed="true"] {
    border-color: var(--tb-pink);
    background: var(--tb-pink);
    color: #fff;
}

.tb-reading-progress {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: rgba(207, 105, 133, 0.12);
}

.tb-reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--tb-pink);
    transition: width 80ms linear;
}

.tb-map-app.is-reading .tb-reader {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    min-height: calc(100vh - 57px);
    background: var(--tb-paper);
}

.tb-reader-column {
    min-width: 0;
    padding: 42px 54px 100px;
}

.tb-article {
    display: none;
    width: min(100%, 810px);
    margin: 0 auto;
}

.tb-article.is-active { display: block; }

.tb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: #9b858c;
    font-size: 12px;
}

.tb-breadcrumb button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--tb-pink-dark);
    cursor: pointer;
}

.tb-article > .tb-article-title {
    max-width: 780px;
    margin: 0;
    font-family: var(--tb-font-display);
    font-size: clamp(47px, 4.4vw, 64px);
    line-height: 0.97;
    letter-spacing: -0.052em;
}

.tb-article > .tb-article-title:focus {
    outline: none;
}

.tb-article-dek {
    max-width: 710px;
    margin: 22px 0 0;
    color: var(--tb-muted);
    font-family: var(--tb-font-display);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.32;
}

.tb-article-hero {
    margin: 30px 0 25px;
}

.tb-article-hero img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    max-height: 405px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: var(--tb-shadow);
}

.tb-article-hero figcaption {
    margin-top: 9px;
    color: #9a858b;
    font-size: 11px;
}

.tb-article-hero a { color: inherit; }

.tb-fact-card {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 24px;
    margin: 24px 0 38px;
    padding: 20px 22px;
    border: 1px solid #ecdce1;
    border-radius: 17px;
    background: #fff7fa;
}

.tb-fact-card > div span {
    display: block;
    margin-bottom: 4px;
    color: #a07884;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tb-fact-card > div strong {
    display: block;
    font-size: 13px;
    line-height: 1.35;
}

.tb-fact-card > a {
    display: grid;
    justify-items: center;
    gap: 5px;
    min-width: 112px;
    padding-left: 20px;
    border-left: 1px solid #e6cfd6;
    color: var(--tb-pink-dark);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.tb-fact-card > a img { width: auto; height: 16px; object-fit: contain; }

.tb-article-body {
    width: min(100%, 700px);
    margin: 0 auto;
}

.tb-article-body section {
    margin: 0 0 44px;
}

.tb-article-body h2 {
    margin: 0 0 16px;
    font-family: var(--tb-font-display);
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.tb-article-body p {
    margin: 0 0 19px;
    color: #5e4c52;
    font-size: 18px;
    line-height: 1.72;
}

.tb-article-body > section:first-child > p:first-of-type::first-letter {
    float: left;
    margin: 5px 7px 0 0;
    color: var(--tb-pink-dark);
    font-family: var(--tb-font-display);
    font-size: 59px;
    font-weight: 700;
    line-height: .72;
}

.tb-practical {
    padding-top: 8px;
}

.tb-practical dl {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--tb-line);
    border-radius: 18px;
    background: #fff;
}

.tb-practical dl div {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 20px;
    padding: 16px 19px;
    border-bottom: 1px solid var(--tb-line);
}

.tb-practical dl div:last-child { border-bottom: 0; }
.tb-practical dt { color: #a07884; font-size: 12px; font-weight: 700; }
.tb-practical dd { margin: 0; color: var(--tb-ink); font-size: 14px; }
.tb-practical a { color: var(--tb-pink-dark); }
.tb-practical .tb-official-link { overflow-wrap: anywhere; }

.tb-end-map {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin: 72px 0 0;
    padding: 22px 24px;
    border: 1px solid #eadfe2;
    border-radius: 20px;
    background: linear-gradient(120deg, #fff 0%, #fff 58%, #fbf3f5 100%);
    box-shadow: 0 15px 38px rgba(75, 45, 54, .08);
}

.tb-end-map-mark {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tb-pink-soft);
}

.tb-end-map-mark::before {
    position: absolute;
    top: 12px;
    left: 16px;
    width: 14px;
    height: 18px;
    border: 2px solid var(--tb-pink-dark);
    border-radius: 50% 50% 50% 0;
    content: "";
    transform: rotate(-45deg);
}

.tb-end-map-mark::after {
    position: absolute;
    top: 18px;
    left: 21px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--tb-pink-dark);
    content: "";
}

.tb-end-map-copy { min-width: 0; }

.tb-end-map-copy > p {
    margin: 0 0 5px;
    color: var(--tb-pink-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.tb-end-map h2 {
    margin: 0;
    font-family: var(--tb-font-display);
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.tb-end-map button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--tb-pink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.tb-end-map button:hover { background: var(--tb-pink-dark); box-shadow: 0 8px 18px rgba(197, 74, 112, .22); transform: translateY(-1px); }
.tb-end-map button:focus-visible { outline: 3px solid rgba(211, 99, 132, .26); outline-offset: 3px; }

.tb-reader-map {
    position: sticky;
    top: 57px;
    height: calc(100vh - 57px);
    padding: 33px 27px;
    border-left: 1px solid var(--tb-line);
    background: #f5f2eb;
}

.tb-reader-map-head p {
    margin: 0 0 4px;
    color: var(--tb-pink-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tb-reader-map-head strong {
    font-family: var(--tb-font-display);
    font-size: 30px;
}

.tb-mini-map {
    position: relative;
    overflow: hidden;
    height: min(43vh, 390px);
    margin-top: 22px;
    border-radius: 22px;
    background-color: #e9eee7;
    background-image:
        linear-gradient(30deg, transparent 47%, #fff 48%, #fff 51%, transparent 52%),
        linear-gradient(120deg, transparent 48%, rgba(255,255,255,.8) 49%, rgba(255,255,255,.8) 51%, transparent 52%);
    background-size: 100px 100px, 140px 140px;
    box-shadow: inset 0 0 0 1px rgba(89,74,78,.08);
}

.tb-mini-map::after {
    position: absolute;
    right: -15%;
    bottom: 5%;
    width: 75%;
    height: 8%;
    border-radius: 50%;
    background: #c6e1e2;
    content: "";
    transform: rotate(-15deg);
}

.tb-mini-map button {
    position: absolute;
    z-index: 2;
    top: var(--pin-y);
    left: var(--pin-x);
    display: grid;
    width: 37px;
    height: 37px;
    padding: 0;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 8px;
    background: var(--tb-pink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    place-items: center;
    transform: translate(-50%, -100%) rotate(-45deg);
    box-shadow: 0 8px 16px rgba(92,49,59,.2);
}

.tb-mini-map button span { transform: rotate(45deg); }

.tb-mini-map button.is-selected { background: var(--tb-ink); transform: translate(-50%, -100%) rotate(-45deg) scale(1.12); }

.tb-map-return {
    width: 100%;
    margin-top: 18px;
    padding: 13px 15px;
    border: 1px solid var(--tb-line);
    border-radius: 999px;
    background: #fff;
    color: var(--tb-pink-dark);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.tb-reader-place {
    display: grid;
    gap: 5px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid var(--tb-line);
    border-radius: 16px;
    background: #fff;
}

.tb-reader-place > span {
    color: var(--tb-pink-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tb-reader-place strong {
    font-family: var(--tb-font-display);
    font-size: 22px;
    line-height: 1;
}

.tb-reader-place p {
    margin: 2px 0 8px;
    color: var(--tb-muted);
    font-size: 11px;
    line-height: 1.35;
}

.tb-reader-place a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tb-pink-dark);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.tb-reader-place img { width: auto; height: 14px; object-fit: contain; }

@media (max-width: 1080px) {
    .tb-header { grid-template-columns: 190px minmax(250px, 1fr) 42px; gap: 18px; padding: 0 22px; }
    .tb-brand-name { font-size: 27px; }
    .tb-location-button span:last-child { display: none; }
    .tb-location-button { width: 44px; padding: 0; justify-content: center; }
    .tb-explorer { grid-template-columns: minmax(390px, 45%) minmax(0, 1fr); }
    .tb-results { padding-right: 22px; padding-left: 22px; }
    .tb-place-card { grid-template-columns: 135px minmax(0, 1fr); }
    .tb-map-app.is-reading .tb-reader { grid-template-columns: minmax(0, 1fr) 320px; }
    .tb-reader-column { padding-right: 38px; padding-left: 38px; }
}

@media (max-width: 760px) {
    body.tonbonbon-confiseries-page { background: var(--tb-cream); }

    .tb-header {
        position: sticky;
        top: 0;
        grid-template-columns: 44px 1fr 44px;
        gap: 9px;
        height: auto;
        min-height: 64px;
        padding: 9px 14px 10px;
    }

    .tb-brand { justify-self: center; grid-column: 2; grid-row: 1; }
    .tb-brand-mark { width: 34px; height: 34px; }
    .tb-brand-mark::before { width: 25px; height: 16px; bottom: 3px; }
    .tb-brand-mark::after { width: 28px; height: 20px; top: 1px; }
    .tb-brand-mark span::before { left: 7px; }
    .tb-brand-mark span::after { right: 6px; }
    .tb-brand > img { height: 39px; }

    .tb-menu-button { grid-column: 3; grid-row: 1; justify-self: end; width: 40px; height: 40px; }

    .tb-header-search {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        gap: 8px;
    }

    .tb-search { height: 43px; padding: 0 14px; }
    .tb-search input { font-size: 14px; }
    .tb-location-button { width: 43px; height: 43px; flex: 0 0 auto; }

    .tb-explorer {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 116px);
    }

    .tb-results { display: contents; }

    .tb-results-intro {
        order: 1;
        max-width: none;
        padding: 29px 20px 0;
    }

    .tb-filters {
        order: 2;
        margin: 15px 0 21px;
        padding: 4px 16px;
    }

    .tb-map-region { order: 3; }
    .tb-result-count { order: 4; margin: 22px 20px 11px; }
    .tb-place-list { order: 5; margin: 0 16px; padding-bottom: 120px; }

    .tb-map-region {
        flex: 0 0 auto;
        height: 43vh;
        min-height: 330px;
        max-height: 440px;
    }

    .tb-map-toolbar { top: 12px; right: 12px; left: 12px; }
    .tb-map-status { display: none; }
    .tb-map-controls { right: 12px; bottom: 92px; }
    .tb-map-controls button { width: 38px; height: 36px; }
    .tb-map-attribution { right: 62px; bottom: 70px; font-size: 8px; }
    .tb-pin-candy { width: 42px; height: 42px; }
    .tb-pin-label { display: none; }

    .tb-results-intro > h1,
    .tb-results-intro > h2 { font-size: 39px; line-height: .98; text-align: center; }
    .tb-results-intro > p:last-child { margin-top: 12px; font-size: 14px; }
    .tb-filters { margin-top: 18px; }
    .tb-result-count { margin-top: 18px; }

    .tb-place-card {
        grid-template-columns: 118px minmax(0, 1fr);
        min-height: 142px;
        border-radius: 18px;
    }

    .tb-place-card > img { min-height: 142px; }
    .tb-card-copy { padding: 13px 13px; }
    .tb-card-copy h2 { font-size: 22px; }
    .tb-card-highlight { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
    .tb-google-line span { display: none; }
    .tb-read-button { margin-top: 8px; }

    .tb-mobile-sheet {
        position: absolute;
        z-index: 10;
        right: 10px;
        bottom: 10px;
        left: 10px;
        display: block;
        min-height: 74px;
        padding: 7px 14px 12px;
        border: 1px solid rgba(207,105,133,.17);
        border-radius: 20px;
        background: rgba(255,255,255,.95);
        box-shadow: 0 13px 35px rgba(77,52,59,.2);
        backdrop-filter: blur(12px);
    }

    .tb-sheet-handle { display: block; width: 34px; height: 4px; margin: 0 auto 7px; border-radius: 9px; background: #dbc7cc; }
    .tb-sheet-place { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; }
    .tb-sheet-place p { margin: 0 0 3px; color: var(--tb-pink-dark); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .tb-sheet-place strong { display: block; font-family: var(--tb-font-display); font-size: 20px; line-height: 1; }
    .tb-sheet-place a { padding: 10px 13px; border: 0; border-radius: 999px; background: var(--tb-pink); color: #fff !important; font-size: 12px; font-weight: 700; text-decoration: none; }

    .tb-map-app.is-reading .tb-reading-bar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        height: 56px;
        padding: 0 14px;
    }

    .tb-reading-bar > button {
        display: inline-flex;
        height: auto;
        margin-left: 0;
        align-items: center;
        gap: 8px;
        padding: 8px 6px;
        border: 0;
        background: transparent;
        color: var(--tb-ink);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
    }

    .tb-reading-logo img { height: 34px; max-width: 58px; }
    .tb-reading-actions { gap: 3px; margin-right: 0; }
    .tb-reading-actions button { width: 32px; height: 32px; }

    .tb-map-app.is-reading .tb-reader {
        display: block;
        min-height: calc(100vh - 56px);
    }

    .tb-reader-column { padding: 29px 20px 112px; }
    .tb-reader-map { display: none; }
    .tb-breadcrumb { display: none; }
    .tb-article > .tb-eyebrow { margin-top: 2px; }
    .tb-article > .tb-article-title { font-size: clamp(42px, 12vw, 55px); line-height: .96; }
    .tb-article-dek { margin-top: 17px; font-size: 20px; line-height: 1.32; }
    .tb-article-hero { margin: 30px -20px 22px; }
    .tb-article-hero img { max-height: 440px; border-radius: 0; box-shadow: none; }
    .tb-article-hero img { aspect-ratio: 16 / 10; }
    .tb-article-hero figcaption { padding: 0 20px; }

    .tb-fact-card {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 25px 0 38px;
        padding: 17px;
    }

    .tb-fact-card > a {
        grid-template-columns: auto 1fr;
        justify-items: start;
        justify-self: stretch;
        padding: 14px 0 0;
        border-top: 1px solid #e6cfd6;
        border-left: 0;
    }

    .tb-article-body { width: 100%; }
    .tb-article-body section { margin-bottom: 38px; }
    .tb-article-body h2 { font-size: 31px; }
    .tb-article-body p { font-size: 17px; line-height: 1.7; }
    .tb-practical dl div { grid-template-columns: 1fr; gap: 6px; }
    .tb-end-map {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px 14px;
        margin: 46px 0 0;
        padding: 18px;
        border-radius: 18px;
    }
    .tb-end-map-mark { width: 44px; height: 44px; }
    .tb-end-map-mark::before { top: 10px; left: 14px; }
    .tb-end-map-mark::after { top: 16px; left: 19px; }
    .tb-end-map h2 { font-size: 22px; }
    .tb-end-map button { grid-column: 1 / -1; justify-content: center; width: 100%; padding: 12px 16px; }

    .tb-map-app.is-reading .tb-floating-map {
        position: fixed;
        z-index: 90;
        right: 50%;
        bottom: max(18px, env(safe-area-inset-bottom));
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 18px;
        border: 0;
        border-radius: 999px;
        background: var(--tb-pink);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 12px 32px rgba(49,27,34,.28);
        cursor: pointer;
        transform: translateX(50%);
    }

    .tb-icon-map::before {
        position: absolute;
        inset: 2px 1px;
        border: 1.7px solid currentColor;
        content: "";
        clip-path: polygon(0 15%, 33% 0, 66% 15%, 100% 0, 100% 85%, 66% 100%, 33% 85%, 0 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .tb-header,
    .tb-reading-bar,
    .tb-reader-map,
    .tb-floating-map,
    .tb-end-map { display: none !important; }
    .tb-map-app.is-reading .tb-reader { display: block; }
    .tb-reader-column { padding: 0; }
    .tb-article { width: 100%; }
}
